From fe8c8960a59cb1a06679151d98d13a6b68b49531 Mon Sep 17 00:00:00 2001 From: Dongwei Wang Date: Wed, 23 Jan 2019 07:57:45 +0800 Subject: [PATCH] [HDInsight] - Support ESP, BYOK and update tags (#8294) --- .../azure-cli-hdinsight/HISTORY.rst | 10 + .../hdinsight/_client_factory.py | 7 + .../command_modules/hdinsight/_completers.py | 39 +- .../cli/command_modules/hdinsight/_help.py | 34 +- .../cli/command_modules/hdinsight/_params.py | 83 +- .../command_modules/hdinsight/_validators.py | 72 ++ .../cli/command_modules/hdinsight/commands.py | 2 + .../cli/command_modules/hdinsight/custom.py | 125 +- .../test_hdinsight_application.yaml | 1018 +++++++++-------- .../test_hdinsight_cluster_kafka.yaml | 389 ++++--- ...cluster_kafka_with_optional_disk_args.yaml | 515 +++------ .../test_hdinsight_cluster_min_args.yaml | 590 +++------- .../test_hdinsight_cluster_resize.yaml | 920 +++++++-------- .../test_hdinsight_cluster_rserver.yaml | 554 +++++---- ...hdinsight_cluster_with_cluster_config.yaml | 614 +++++----- ...nsight_cluster_with_component_version.yaml | 575 ++++++---- ...test_hdinsight_cluster_with_ssh_creds.yaml | 888 +++++++++----- .../latest/recordings/test_hdinsight_oms.yaml | 830 ++++++-------- .../test_hdinsight_script_action.yaml | 867 ++++++-------- .../recordings/test_hdinsight_usage.yaml | 62 +- .../tests/latest/test_hdinsight_commands.py | 10 +- .../cli/command_modules/hdinsight/util.py | 158 ++- .../azure-cli-hdinsight/setup.py | 4 +- 23 files changed, 4162 insertions(+), 4204 deletions(-) diff --git a/src/command_modules/azure-cli-hdinsight/HISTORY.rst b/src/command_modules/azure-cli-hdinsight/HISTORY.rst index fc8ca791ce2..bf82528d824 100644 --- a/src/command_modules/azure-cli-hdinsight/HISTORY.rst +++ b/src/command_modules/azure-cli-hdinsight/HISTORY.rst @@ -3,6 +3,16 @@ Release History =============== +0.3.0 ++++++ + +* BREAKING CHANGE: `create`, `application create`: Removed the `--virtual-network` and `--subnet-name` parameters. + `create`: Change the `--storage-account` to accept name or id of storage account instead of blob endpoints. +* `create`: added the `--vnet-name` and `--subnet-name` parameters. +* `create`: added support for Enterprise Security Package and disk encryption +* Added `rotate-disk-encryption-key` command +* Added `update` command + 0.2.0 +++++ diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_client_factory.py b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_client_factory.py index 5343ff4480e..ff565434350 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_client_factory.py +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_client_factory.py @@ -17,6 +17,13 @@ def cf_storage(cli_ctx, *_, **__): return get_mgmt_service_client(cli_ctx, StorageManagementClient) +def cf_network(cli_ctx, aux_subscriptions=None, **_): + from azure.cli.core.profiles import ResourceType + from azure.cli.core.commands.client_factory import get_mgmt_service_client + return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_NETWORK, + aux_subscriptions=aux_subscriptions) + + def cf_hdinsight(cli_ctx, *_, **__): from azure.cli.core.commands.client_factory import get_mgmt_service_client from azure.mgmt.hdinsight import HDInsightManagementClient diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_completers.py b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_completers.py index a8b1529115f..c98d960735e 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_completers.py +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_completers.py @@ -4,37 +4,14 @@ # -------------------------------------------------------------------------------------------- from azure.cli.core.decorators import Completer -from ._client_factory import cf_storage +from ._client_factory import cf_network +# pylint: disable=inconsistent-return-statements @Completer -def storage_account_completion_list(cmd, prefix, namespace, **kwargs): # pylint: disable=unused-argument - storage_client = cf_storage(cmd.cli_ctx) - rg = getattr(namespace, 'resource_group_name', None) - if rg: - storage_accounts = storage_client.storage_accounts.list_by_resource_group(rg) - else: - storage_accounts = storage_client.storage_accounts.list() - - def extract_blob_endpoint(storage_account): - return storage_account and storage_account.primary_endpoints and storage_account.primary_endpoints.blob - - def extract_host(uri): - import re - return re.search('//(.*)/', uri).groups()[0] - - return [extract_host(extract_blob_endpoint(s)) for s in storage_accounts] - - -@Completer -def storage_account_key_completion_list(cmd, prefix, namespace, **kwargs): # pylint: disable=unused-argument - from .util import get_key_for_storage_account - - storage_endpoint = getattr(namespace, 'storage_account', None) - if not storage_endpoint: - return [] - - rg = getattr(namespace, 'resource_group_name', None) - - key = get_key_for_storage_account(cmd, storage_endpoint, rg) - return [key] if key else [] +def subnet_completion_list(cmd, prefix, namespace, **kwargs): # pylint: disable=unused-argument + client = cf_network(cmd.cli_ctx) + if namespace.resource_group_name and namespace.vnet_name: + rg = namespace.resource_group_name + vnet = namespace.vnet_name + return [r.name for r in client.subnets.list(resource_group_name=rg, virtual_network_name=vnet)] diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_help.py b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_help.py index ce64a8f063c..8be127f2304 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_help.py +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_help.py @@ -18,10 +18,27 @@ examples: - name: Create a cluster with an existing storage account. text: |- - az hdinsight create -t spark -n MyCluster -g MyResourceGroup \\ - -p {HTTP_password} \\ - --storage-account MyStorageAccount.blob.core.windows.net \\ - --storage-account-key {storage_account_key} + az hdinsight create -t spark -g MyResourceGroup -n MyCluster \\ + -p "HttpPassword1234!" \\ + --storage-account MyStorageAccount + - name: Create a cluster with Enterprise Security Package. + text: |- + az hdinsight create -t spark -g MyResourceGroup -n MyCluster \\ + -p "HttpPassword1234!" \\ + --storage-account MyStorageAccount \\ + --subnet "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.Network/virtualNetworks/MyVnet/subnets/subnet1" \\ + --domain "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.AAD/domainServices/MyDomain.onmicrosoft.com" \\ + --assign-identity "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyMsiRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MyMSI" \\ + --cluster-admin-account MyAdminAccount@MyDomain.onmicrosoft.com + - name: Create a Kafka cluster with disk encryption. See https://docs.microsoft.com/en-us/azure/hdinsight/kafka/apache-kafka-byok. + text: |- + az hdinsight create -t kafka -g MyResourceGroup -n MyCluster \\ + -p "HttpPassword1234!" --workernode-data-disks-per-node 2 \\ + --storage-account MyStorageAccount \\ + --encryption-key-name kafkaClusterKey \\ + --encryption-key-version 00000000000000000000000000000000 \\ + --encryption-vault-uri https://MyKeyVault.vault.azure.net \\ + --assign-identity MyMSI """ helps['hdinsight list'] = """ @@ -34,6 +51,11 @@ short-summary: Place the CLI in a waiting state until an operation is complete. """ +helps['hdinsight rotate-disk-encryption-key'] = """ + type: command + short-summary: Rotate disk encryption key of the specified HDInsight cluster. +""" + helps['hdinsight application'] = """ type: group short-summary: Manage HDInsight applications. @@ -45,14 +67,14 @@ examples: - name: Create an application with a script URI. text: |- - az hdinsight application create -n MyCluster -g MyResourceGroup \\ + az hdinsight application create -g MyResourceGroup -n MyCluster \\ --application-name MyApplication \\ --script-uri https://path/to/install/script.sh \\ --script-action-name MyScriptAction \\ --script-parameters '"-option value"' - name: Create an application with a script URI and specified edge node size. text: |- - az hdinsight application create -n MyCluster -g MyResourceGroup \\ + az hdinsight application create -g MyResourceGroup -n MyCluster \\ --application-name MyApplication \\ --script-uri https://path/to/install/script.sh \\ --script-action-name MyScriptAction \\ diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_params.py b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_params.py index d6123f9cdd7..79223d731d7 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_params.py +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_params.py @@ -4,24 +4,33 @@ # -------------------------------------------------------------------------------------------- from azure.cli.core.commands.parameters import get_enum_type, name_type, tags_type, get_resource_name_completion_list, \ - get_generic_completion_list -from ._validators import validate_component_version + get_generic_completion_list, get_three_state_flag +from ._validators import (validate_component_version, + validate_storage_account, + validate_msi, + validate_subnet, + validate_domain_service) # Cluster types may be added in the future. Therefore, this list can be used for completion, but not input validation. known_cluster_types = ["hadoop", "interactivehive", "hbase", "kafka", "storm", "spark", "rserver", "mlservices"] + +# Known role (node) types. known_role_types = ["headnode", "workernode", "zookeepernode", "edgenode"] # pylint: disable=too-many-statements def load_arguments(self, _): - from ._completers import storage_account_completion_list, storage_account_key_completion_list + from ._completers import subnet_completion_list from knack.arguments import CLIArgumentType + from azure.mgmt.hdinsight.models import Tier, JsonWebKeyEncryptionAlgorithm node_size_type = CLIArgumentType(arg_group='Node', help='The size of the node. See also: https://docs.microsoft.com/en-us/azure/' 'hdinsight/hdinsight-hadoop-provision-linux-clusters#configure-cluster-size') # cluster with self.argument_context('hdinsight') as c: + + # Cluster c.argument('cluster_name', arg_type=name_type, completer=get_resource_name_completion_list('Microsoft.HDInsight/clusters'), help='The name of the cluster.') @@ -43,18 +52,26 @@ def load_arguments(self, _): 'hdinsight-versions') c.argument('cluster_configurations', arg_group='Cluster', help='Extra configurations of various components, in JSON.') - c.argument('cluster_tier', arg_type=get_enum_type(['standard', 'premium']), arg_group='Cluster', - help='The tier of the cluster: standard or premium.') + c.argument('cluster_tier', arg_type=get_enum_type(Tier), arg_group='Cluster', + help='The tier of the cluster') + c.argument('esp', arg_group='Cluster', arg_type=get_three_state_flag(), + help='Specify to create cluster with Enterprise Security Package') + + # HTTP c.argument('http_username', options_list=['--http-user', '-u'], arg_group='HTTP', help='HTTP username for the cluster. Default: admin.') c.argument('http_password', options_list=['--http-password', '-p'], arg_group='HTTP', help='HTTP password for the cluster.') + + # SSH c.argument('ssh_username', options_list=['--ssh-user', '-U'], arg_group='SSH', help='SSH username for the cluster nodes.') c.argument('ssh_password', options_list=['--ssh-password', '-P'], arg_group='SSH', help='SSH password for the cluster nodes. If none specified, uses the HTTP password.') c.argument('ssh_public_key', options_list=['--ssh-public-key', '-K'], arg_group='SSH', help='SSH public key for the cluster nodes.') + + # Node c.argument('headnode_size', arg_type=node_size_type) c.argument('workernode_size', arg_type=node_size_type) c.argument('workernode_data_disks_per_node', arg_group='Node', @@ -66,11 +83,14 @@ def load_arguments(self, _): help='The size of the data disk in GB, e.g. 1023.') c.argument('zookeepernode_size', arg_type=node_size_type) c.argument('edgenode_size', arg_type=node_size_type) - c.argument('workernode_count', options_list=['--size', '-s'], arg_group='Cluster', + c.argument('workernode_count', options_list=['--size', '-s'], arg_group='Node', help='The number of worker nodes in the cluster.') - c.argument('storage_account', arg_group='Storage', completer=storage_account_completion_list, - help='The storage account, e.g. ".blob.core.windows.net".') - c.argument('storage_account_key', arg_group='Storage', completer=storage_account_key_completion_list, + + # Storage + c.argument('storage_account', arg_group='Storage', validator=validate_storage_account, + completer=get_resource_name_completion_list('Microsoft.Storage/storageAccounts'), + help='The name or ID of the storage account.') + c.argument('storage_account_key', arg_group='Storage', help='The storage account key. A key can be retrieved automatically ' 'if the user has access to the storage account.') c.argument('storage_default_container', arg_group='Storage', @@ -78,14 +98,51 @@ def load_arguments(self, _): 'Uses the cluster name if none was specified. (WASB only)') c.argument('storage_default_filesystem', arg_group='Storage', help='The storage filesystem the cluster will use. (DFS only)') - c.argument('virtual_network', arg_group='Network', - help='The virtual network resource ID of an existing virtual network.') - c.argument('subnet_name', arg_group='Network', - help='The name of the subnet in the specified virtual network.') + + # Network + c.argument('vnet_name', arg_group='Network', validator=validate_subnet, + completer=get_resource_name_completion_list('Microsoft.Network/virtualNetworks'), + help='The name of a virtual network.') + c.argument('subnet', arg_group='Network', + completer=subnet_completion_list, + help='The name or ID of subnet. If name is supplied, `--vnet-name` must be supplied.') + + # Script Action c.argument('script_action_name', arg_group='Script Action', help='The name of the script action.') c.argument('script_uri', arg_group='Script Action', help='The URI to the script.') c.argument('script_parameters', arg_group='Script Action', help='The parameters for the script.') + # Domain Service + c.argument('domain', arg_group='Domain Service', validator=validate_domain_service, + help='The name or resource ID of the user\'s Azure Active Directory Domain Service. ' + 'Required only when create cluster with Enterprise Security Package.') + c.argument('cluster_users_group_dns', arg_group='Domain Service', nargs='+', + help='A space-delimited list of Distinguished Names for cluster user groups. ' + 'Required only when create cluster with Enterprise Security Package. ') + c.argument('cluster_admin_password', arg_group='Domain Service', + help='The domain admin password. ' + 'Required only when create cluster with Enterprise Security Package.') + c.argument('cluster_admin_account', arg_group='Domain Service', + help='The domain user account that will have admin privileges on the cluster. ' + 'Required only when create cluster with Enterprise Security Package.') + c.argument('ldaps_urls', arg_group='Domain Service', nargs='+', + help='A space-delimited list of LDAPS protocol URLs to communicate with the Active Directory. ' + 'Required only when create cluster with Enterprise Security Package.') + + # Customer Managed Key + c.argument('encryption_vault_uri', arg_group='Customer Managed Key', + help='Base key vault URI where the customers key is located eg. https://myvault.vault.azure.net') + c.argument('encryption_key_name', arg_group='Customer Managed Key', + help='Key name that is used for enabling disk encryption.') + c.argument('encryption_key_version', arg_group='Customer Managed Key', + help='Key version that is used for enabling disk encryption.') + c.argument('encryption_algorithm', arg_type=get_enum_type(JsonWebKeyEncryptionAlgorithm), + arg_group='Customer Managed Key', help='Algorithm identifier for encryption.') + + # Managed Service Identity + c.argument('assign_identity', arg_group='Managed Service Identity', validator=validate_msi, + help="The name or ID of user assigned identity.") + # application with self.argument_context('hdinsight application') as c: c.argument('application_name', arg_group='Application', help='The constant value for the application name.') diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_validators.py b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_validators.py index 76e8c4717b5..a8af3d2be99 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_validators.py +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/_validators.py @@ -11,3 +11,75 @@ def validate_component_version(namespace): if any(invalid_component_versions): raise ValueError('Component verions must be in the form component=version. ' 'Invalid component version(s): {}'.format(', '.join(invalid_component_versions))) + + +# Validate storage account. +def validate_storage_account(cmd, namespace): + from azure.cli.core.commands.client_factory import get_subscription_id + from msrestazure.tools import is_valid_resource_id, resource_id + if namespace.storage_account: + if not is_valid_resource_id(namespace.storage_account): + namespace.storage_account = resource_id( + subscription=get_subscription_id(cmd.cli_ctx), + resource_group=namespace.resource_group_name, + namespace='Microsoft.Storage', type='storageAccounts', + name=namespace.storage_account + ) + + +# Validates if a subnet id or name have been given by the user. If subnet id is given, vnet-name should not be provided. +def validate_subnet(cmd, namespace): + from msrestazure.tools import resource_id, is_valid_resource_id + from azure.cli.core.commands.client_factory import get_subscription_id + from knack.util import CLIError + + subnet = namespace.subnet + subnet_is_id = is_valid_resource_id(subnet) + vnet = namespace.vnet_name + + if (subnet_is_id and not vnet) or (not subnet and not vnet): + pass + elif subnet and not subnet_is_id and vnet: + namespace.subnet = resource_id( + subscription=get_subscription_id(cmd.cli_ctx), + resource_group=namespace.resource_group_name, + namespace='Microsoft.Network', + type='virtualNetworks', + name=vnet, + child_type_1='subnets', + child_name_1=subnet) + else: + raise CLIError('usage error: [--subnet ID | --subnet NAME --vnet-name NAME]') + delattr(namespace, 'vnet_name') + + +# Validate managed identity. +def validate_msi(cmd, namespace): + from azure.cli.core.commands.client_factory import get_subscription_id + from msrestazure.tools import is_valid_resource_id, resource_id + + if namespace.assign_identity is not None: + if not is_valid_resource_id(namespace.assign_identity): + namespace.assign_identity = resource_id( + subscription=get_subscription_id(cmd.cli_ctx), + resource_group=namespace.resource_group_name, + namespace='Microsoft.ManagedIdentity', + type='userAssignedIdentities', + name=namespace.assign_identity + ) + + +# Validate domain service. +def validate_domain_service(cmd, namespace): + from azure.cli.core.commands.client_factory import get_subscription_id + from msrestazure.tools import is_valid_resource_id, resource_id + + if namespace.domain: + if not is_valid_resource_id(namespace.domain): + namespace.domain = resource_id( + subscription=get_subscription_id(cmd.cli_ctx), + resource_group=namespace.resource_group_name, + namespace='Microsoft.AAD', + type='domainServices', + name=namespace.domain + ) diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/commands.py b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/commands.py index d83720866df..ea6beb0d90e 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/commands.py +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/commands.py @@ -52,6 +52,8 @@ def load_command_table(self, _): g.custom_command('list', 'list_clusters') g.wait_command('wait') g.command('delete', 'delete', confirmation=True, supports_no_wait=True) + g.custom_command('rotate-disk-encryption-key', 'rotate_hdi_cluster_key', supports_no_wait=True) + g.command('update', 'update', supports_no_wait=True) # usage operations with self.command_group('hdinsight', hdinsight_locations_sdk, client_factory=cf_hdinsight_locations) as g: diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/custom.py b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/custom.py index 64648e5151f..5eab86fd159 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/custom.py +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/custom.py @@ -12,7 +12,7 @@ logger = get_logger(__name__) -# pylint: disable=too-many-locals, too-many-branches, too-many-statements +# pylint: disable=too-many-locals, too-many-branches, too-many-statements, unused-argument def create_cluster(cmd, client, cluster_name, resource_group_name, cluster_type, location=None, tags=None, no_wait=False, cluster_version='default', cluster_tier=None, cluster_configurations=None, component_version=None, @@ -23,13 +23,32 @@ def create_cluster(cmd, client, cluster_name, resource_group_name, cluster_type, ssh_username='sshuser', ssh_password=None, ssh_public_key=None, storage_account=None, storage_account_key=None, storage_default_container=None, storage_default_filesystem=None, - virtual_network=None, subnet_name=None): + vnet_name=None, subnet=None, + domain=None, ldaps_urls=None, + cluster_admin_account=None, cluster_admin_password=None, + cluster_users_group_dns=None, + assign_identity=None, + encryption_vault_uri=None, encryption_key_name=None, encryption_key_version=None, + encryption_algorithm='RSA-OAEP', esp=False): + from .util import build_identities_info, build_virtual_network_profile, parse_domain_name, \ + get_storage_account_endpoint, validate_esp_cluster_create_params from azure.mgmt.hdinsight.models import ClusterCreateParametersExtended, ClusterCreateProperties, OSType, \ ClusterDefinition, ComputeProfile, HardwareProfile, Role, OsProfile, LinuxOperatingSystemProfile, \ - StorageProfile, StorageAccount, VirtualNetworkProfile, DataDisksGroups + StorageProfile, StorageAccount, DataDisksGroups, SecurityProfile, \ + DirectoryType, DiskEncryptionProperties, Tier + + validate_esp_cluster_create_params(esp, cluster_name, resource_group_name, cluster_type, + subnet, domain, cluster_admin_account, assign_identity, + ldaps_urls, cluster_admin_password, cluster_users_group_dns) + + if esp: + if cluster_tier == Tier.standard: + raise CLIError('Cluster tier cannot be {} when --esp is specified. ' + 'Please use default value or specify {} explicitly.'.format(Tier.standard, Tier.premium)) + if not cluster_tier: + cluster_tier = Tier.premium # Update optional parameters with defaults - additional_storage_accounts = [] # TODO: Add support for additional storage accounts location = location or _get_rg_location(cmd.cli_ctx, resource_group_name) # Format dictionary/free-form arguments @@ -79,18 +98,25 @@ def create_cluster(cmd, client, cluster_name, resource_group_name, cluster_type, if storage_default_container and storage_default_filesystem: raise CLIError('Either the default container or the default filesystem can be specified, but not both.') + # Retrieve primary blob service endpoint + storage_account_endpoint = None + if storage_account: + dfs = True if storage_default_filesystem else False + storage_account_endpoint = get_storage_account_endpoint(cmd, storage_account, dfs) + # Attempt to infer the storage account key from the endpoint if not storage_account_key and storage_account: from .util import get_key_for_storage_account logger.info('Storage account key not specified. Attempting to retrieve key...') - key = get_key_for_storage_account(cmd, storage_account, resource_group_name) + key = get_key_for_storage_account(cmd, storage_account) if not key: - logger.warning('Storage account key could not be inferred from storage account.') + raise CLIError('Storage account key could not be inferred from storage account.') else: storage_account_key = key # Attempt to provide a default container for WASB storage accounts - if not storage_default_container and storage_account and _is_wasb_endpoint(storage_account): + if not storage_default_container and storage_account_endpoint \ + and _is_wasb_endpoint(storage_account_endpoint): storage_default_container = cluster_name logger.warning('Default WASB container not specified, using "%s".', storage_default_container) @@ -100,14 +126,13 @@ def create_cluster(cmd, client, cluster_name, resource_group_name, cluster_type, raise CLIError('If storage details are specified, the storage account, storage account key, ' 'and either the default container or default filesystem must be specified.') - # Validate network profile parameters - if not _all_or_none(virtual_network, subnet_name): - raise CLIError('Either both the virtual network and subnet should be specified, or neither should be.') + # Validate disk encryption parameters + if not _all_or_none(encryption_vault_uri, encryption_key_name, encryption_key_version): + raise CLIError('Either the encryption vault URI, key name and key version should be specified, ' + 'or none of them should be.') + # Specify virtual network profile only when network arguments are provided - virtual_network_profile = virtual_network and VirtualNetworkProfile( - id=virtual_network, - subnet=subnet_name - ) + virtual_network_profile = subnet and build_virtual_network_profile(subnet) # Validate data disk parameters if not workernode_data_disks_per_node and workernode_data_disk_storage_account_type: @@ -173,16 +198,19 @@ def create_cluster(cmd, client, cluster_name, resource_group_name, cluster_type, # Specify storage account details only when storage arguments are provided storage_accounts.append( StorageAccount( - name=storage_account, + name=storage_account_endpoint, key=storage_account_key, container=storage_default_container, file_system=storage_default_filesystem, is_default=True - )) + ) + ) + + additional_storage_accounts = [] # TODO: Add support for additional storage accounts if additional_storage_accounts: storage_accounts += [ StorageAccount( - name=s.storage_account, + name=s.storage_account_endpoint, key=s.storage_account_key, container=s.container, is_default=False @@ -190,6 +218,31 @@ def create_cluster(cmd, client, cluster_name, resource_group_name, cluster_type, for s in additional_storage_accounts ] + cluster_identity = assign_identity and build_identities_info([assign_identity]) + + domain_name = domain and parse_domain_name(domain) + if not ldaps_urls and domain_name: + ldaps_urls = ['ldaps://{}:636'.format(domain_name)] + + security_profile = domain and SecurityProfile( + directory_type=DirectoryType.active_directory, + domain=domain_name, + ldaps_urls=ldaps_urls, + domain_username=cluster_admin_account, + domain_user_password=cluster_admin_password, + cluster_users_group_dns=cluster_users_group_dns, + aadds_resource_id=domain, + msi_resource_id=assign_identity + ) + + disk_encryption_properties = encryption_vault_uri and DiskEncryptionProperties( + vault_uri=encryption_vault_uri, + key_name=encryption_key_name, + key_version=encryption_key_version, + encryption_algorithm=encryption_algorithm, + msi_resource_id=assign_identity + ) + create_params = ClusterCreateParametersExtended( location=location, tags=tags, @@ -207,8 +260,11 @@ def create_cluster(cmd, client, cluster_name, resource_group_name, cluster_type, ), storage_profile=StorageProfile( storageaccounts=storage_accounts - ) - ) + ), + security_profile=security_profile, + disk_encryption_properties=disk_encryption_properties + ), + identity=cluster_identity ) if no_wait: @@ -224,6 +280,22 @@ def list_clusters(cmd, client, resource_group_name=None): # pylint: disable=unu return list(clusters_list) +# pylint: disable=unused-argument +def rotate_hdi_cluster_key(cmd, client, resource_group_name, cluster_name, + encryption_vault_uri, encryption_key_name, encryption_key_version, no_wait=False): + from azure.mgmt.hdinsight.models import ClusterDiskEncryptionParameters + rotate_params = ClusterDiskEncryptionParameters( + vault_uri=encryption_vault_uri, + key_name=encryption_key_name, + key_version=encryption_key_version + ) + + if no_wait: + return sdk_no_wait(no_wait, client.rotate_disk_encryption_key, resource_group_name, cluster_name, rotate_params) + + return client.rotate_disk_encryption_key(resource_group_name, cluster_name, rotate_params) + + def _all_or_none(*params): return all(params) or not any(params) @@ -248,19 +320,14 @@ def create_hdi_application(cmd, client, resource_group_name, cluster_name, appli https_endpoint_access_mode=None, https_endpoint_location=None, https_endpoint_destination_port=8080, https_endpoint_public_port=443, ssh_endpoint_location=None, ssh_endpoint_destination_port=22, ssh_endpoint_public_port=22, - virtual_network=None, subnet_name=None): + vnet_name=None, subnet=None): + from .util import build_virtual_network_profile from azure.mgmt.hdinsight.models import Application, ApplicationProperties, ComputeProfile, RuntimeScriptAction, \ - Role, VirtualNetworkProfile, LinuxOperatingSystemProfile, HardwareProfile, \ + Role, LinuxOperatingSystemProfile, HardwareProfile, \ ApplicationGetHttpsEndpoint, ApplicationGetEndpoint, OsProfile - # Validate network profile parameters - if not _all_or_none(virtual_network, subnet_name): - raise CLIError('Either both the virtual network and subnet should be specified, or neither should be.') # Specify virtual network profile only when network arguments are provided - virtual_network_profile = virtual_network and VirtualNetworkProfile( - id=virtual_network, - subnet=subnet_name - ) + virtual_network_profile = subnet and build_virtual_network_profile(subnet) os_profile = (ssh_password or ssh_public_key) and OsProfile( linux_operating_system_profile=LinuxOperatingSystemProfile( @@ -315,7 +382,7 @@ def create_hdi_application(cmd, client, resource_group_name, cluster_name, appli name=script_action_name, uri=script_uri, parameters=script_parameters, - roles=list(map(lambda role: role.name, roles)) + roles=[role.name for role in roles] ) ], https_endpoints=https_endpoints, diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_application.yaml b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_application.yaml index 8a755290cc7..b37c356fb79 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_application.yaml +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_application.yaml @@ -1,27 +1,27 @@ interactions: - request: - body: '{"location": "northcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-12-19T13:58:46Z"}}' + body: '{"location": "eastus2", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-18T07:11:50Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [group create] Connection: [keep-alive] - Content-Length: ['118'] + Content-Length: ['111'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [--location --name --tag] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"northcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-12-19T13:58:46Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-01-18T07:11:50Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['266'] + content-length: ['259'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 13:58:54 GMT'] + date: ['Fri, 18 Jan 2019 07:11:55 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -29,17 +29,17 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "northcentralus"}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "eastus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - Content-Length: ['82'] + Content-Length: ['75'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 @@ -49,9 +49,9 @@ interactions: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Wed, 19 Dec 2018 13:58:57 GMT'] + date: ['Fri, 18 Jan 2019 07:11:58 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/b86f4fc2-d936-4fd2-976c-8f6aab125e82?monitor=true&api-version=2018-07-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/90fa77fc-3820-4177-9b48-c54509b1872e?monitor=true&api-version=2018-07-01'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -68,16 +68,16 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/b86f4fc2-d936-4fd2-976c-8f6aab125e82?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/90fa77fc-3820-4177-9b48-c54509b1872e?monitor=true&api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-19T13:58:57.1742657Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-19T13:58:57.1742657Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-19T13:58:57.0960998Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-18T07:11:57.9761275Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-18T07:11:57.9761275Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-18T07:11:57.8511263Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['1122'] + content-length: ['1108'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 13:59:15 GMT'] + date: ['Fri, 18 Jan 2019 07:12:15 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -97,19 +97,17 @@ interactions: Content-Length: ['0'] ParameterSetName: [-n -g --query -o] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"keys": [{"keyName": "key1", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}, {"keyName": "key2", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 13:59:15 GMT'] + date: ['Fri, 18 Jan 2019 07:12:17 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -121,7 +119,69 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: - body: 'b''{"location": "northcentralus", "properties": {"clusterVersion": "default", + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 + response: + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-18T07:11:57.9761275Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-18T07:11:57.9761275Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-18T07:11:57.8511263Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} + headers: + cache-control: [no-cache] + content-length: ['1108'] + content-type: [application/json] + date: ['Fri, 18 Jan 2019 07:12:18 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + Content-Length: ['0'] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 + response: + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} + headers: + cache-control: [no-cache] + content-length: ['288'] + content-type: [application/json] + date: ['Fri, 18 Jan 2019 07:12:18 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 200, message: OK} +- request: + body: 'b''{"location": "eastus2", "properties": {"clusterVersion": "default", "osType": "Linux", "clusterDefinition": {"kind": "spark", "configurations": {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": "admin", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": @@ -131,41 +191,39 @@ interactions: "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": - "default", "key": "XomhLGwOL5KQ8GBbvD5UFro+eTvuWJOe4BEQPg++iQVD8svG374Mif88YUBBPVu6nzgj7RPv/2YUInQm/DvKfg=="}]}}}''' + "default", "key": "veryFakedStorageAccountKey=="}]}}, "identity": {"type": "SystemAssigned"}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - Content-Length: ['938'] + Content-Length: ['971'] Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"111674c9-be71-43e1-a9f1-351f7d58d787","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2018-12-19T13:59:22.267","quotaInfo":{"coresUsed":20},"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"634ecc31-057a-4bb2-80c0-98f7e49e42bf","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2019-01-18T07:12:40.643","quotaInfo":{"coresUsed":20},"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"a5ae21b2-7696-4ed6-927c-a39baea9f497","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{}}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] cache-control: [no-cache] - content-length: ['1063'] + content-length: ['1224'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 13:59:22 GMT'] - etag: ['"111674c9-be71-43e1-a9f1-351f7d58d787"'] + date: ['Fri, 18 Jan 2019 07:12:40 GMT'] + etag: ['"634ecc31-057a-4bb2-80c0-98f7e49e42bf"'] 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-hdi-clusteruri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-bw6a4/providers/Microsoft.HDInsight/clusters/hdicli-ydjnwnkac?api-version=2018-06-01-preview'] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-clusteruri: ['https://management.azure.com/subscriptions/1cd46e5e-1c38-4448-a475-3b5985ef7c88/resourceGroups/hdicli-dspup/providers/Microsoft.HDInsight/clusters/hdicli-ul4vi6a4s?api-version=2018-06-01-preview'] + x-ms-hdi-served-by: [global] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: @@ -175,10 +233,38 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 07:13:12 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-hdi-served-by: [global] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -187,16 +273,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 13:59:53 GMT'] + date: ['Fri, 18 Jan 2019 07:13:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -205,10 +289,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -217,16 +301,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:00:24 GMT'] + date: ['Fri, 18 Jan 2019 07:14:13 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -235,10 +317,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -247,16 +329,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:00:55 GMT'] + date: ['Fri, 18 Jan 2019 07:14:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -265,10 +345,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -277,16 +357,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:01:27 GMT'] + date: ['Fri, 18 Jan 2019 07:15:15 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -295,10 +373,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -307,16 +385,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:01:58 GMT'] + date: ['Fri, 18 Jan 2019 07:15:46 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -325,10 +401,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -337,16 +413,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:02:28 GMT'] + date: ['Fri, 18 Jan 2019 07:16:22 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -355,10 +429,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -367,16 +441,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:02:59 GMT'] + date: ['Fri, 18 Jan 2019 07:16:54 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -385,10 +457,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -397,16 +469,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:03:30 GMT'] + date: ['Fri, 18 Jan 2019 07:17:25 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -415,10 +485,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -427,16 +497,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:04:03 GMT'] + date: ['Fri, 18 Jan 2019 07:17:55 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -445,10 +513,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -457,16 +525,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:04:33 GMT'] + date: ['Fri, 18 Jan 2019 07:18:26 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -475,10 +541,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -487,16 +553,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:05:04 GMT'] + date: ['Fri, 18 Jan 2019 07:18:57 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -505,10 +569,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -517,16 +581,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:05:35 GMT'] + date: ['Fri, 18 Jan 2019 07:19:28 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -535,10 +597,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -547,16 +609,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:06:06 GMT'] + date: ['Fri, 18 Jan 2019 07:19: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -565,10 +625,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -577,16 +637,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:06:37 GMT'] + date: ['Fri, 18 Jan 2019 07:20:30 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -595,10 +653,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -607,16 +665,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:07:08 GMT'] + date: ['Fri, 18 Jan 2019 07:21:00 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -625,10 +681,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -637,16 +693,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:07:39 GMT'] + date: ['Fri, 18 Jan 2019 07:21:31 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -655,10 +709,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -667,16 +721,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:08:09 GMT'] + date: ['Fri, 18 Jan 2019 07:22:02 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -685,10 +737,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -697,16 +749,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:08:41 GMT'] + date: ['Fri, 18 Jan 2019 07:22:33 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -715,10 +765,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -727,16 +777,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:09:12 GMT'] + date: ['Fri, 18 Jan 2019 07:23:03 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -745,10 +793,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,16 +805,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:09:43 GMT'] + date: ['Fri, 18 Jan 2019 07:23:34 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -775,10 +821,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -787,16 +833,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:10:15 GMT'] + date: ['Fri, 18 Jan 2019 07:24:05 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -805,10 +849,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -817,16 +861,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:10:45 GMT'] + date: ['Fri, 18 Jan 2019 07:24:36 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -835,10 +877,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -847,16 +889,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:11:16 GMT'] + date: ['Fri, 18 Jan 2019 07:25:07 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -865,10 +905,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -877,16 +917,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:11:47 GMT'] + date: ['Fri, 18 Jan 2019 07:25:38 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -895,10 +933,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -907,16 +945,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:12:18 GMT'] + date: ['Fri, 18 Jan 2019 07:26:09 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -925,10 +961,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -937,16 +973,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:12:49 GMT'] + date: ['Fri, 18 Jan 2019 07:26:39 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -955,10 +989,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -967,16 +1001,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:13:20 GMT'] + date: ['Fri, 18 Jan 2019 07:27:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -985,10 +1017,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -997,16 +1029,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:13:51 GMT'] + date: ['Fri, 18 Jan 2019 07:27:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1015,10 +1045,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1027,16 +1057,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:14:22 GMT'] + date: ['Fri, 18 Jan 2019 07:28:12 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1045,10 +1073,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1057,16 +1085,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:14:53 GMT'] + date: ['Fri, 18 Jan 2019 07:28:42 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1075,10 +1101,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1087,16 +1113,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:15:24 GMT'] + date: ['Fri, 18 Jan 2019 07:29:13 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1105,10 +1129,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1117,16 +1141,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:15:55 GMT'] + date: ['Fri, 18 Jan 2019 07:29:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1135,10 +1157,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1147,16 +1169,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:16:25 GMT'] + date: ['Fri, 18 Jan 2019 07:30:15 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1165,10 +1185,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1177,16 +1197,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:16:57 GMT'] + date: ['Fri, 18 Jan 2019 07:30:46 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1195,10 +1213,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1207,16 +1225,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:17:27 GMT'] + date: ['Fri, 18 Jan 2019 07:31:16 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1225,10 +1241,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1237,16 +1253,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:17:59 GMT'] + date: ['Fri, 18 Jan 2019 07:31:48 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1255,10 +1269,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1267,16 +1281,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:18:30 GMT'] + date: ['Fri, 18 Jan 2019 07:32:18 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1285,10 +1297,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1297,16 +1309,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:19:01 GMT'] + date: ['Fri, 18 Jan 2019 07:32:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1315,10 +1325,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1327,16 +1337,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:19:32 GMT'] + date: ['Fri, 18 Jan 2019 07:33:20 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1345,10 +1353,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1357,16 +1365,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:20:02 GMT'] + date: ['Fri, 18 Jan 2019 07:33:51 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1375,10 +1381,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1387,16 +1393,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:20:33 GMT'] + date: ['Fri, 18 Jan 2019 07:34:24 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1405,10 +1409,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1417,16 +1421,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:21:05 GMT'] + date: ['Fri, 18 Jan 2019 07:34:54 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1435,10 +1437,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1447,16 +1449,14 @@ interactions: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:21:35 GMT'] + date: ['Fri, 18 Jan 2019 07:35:26 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1465,29 +1465,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"111674c9-be71-43e1-a9f1-351f7d58d787","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T13:59:22.267","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"634ecc31-057a-4bb2-80c0-98f7e49e42bf","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-18T07:12:40.643","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"43aa74dd-a56e-4588-9491-653510d03a57","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1468'] + content-length: ['1629'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:21:37 GMT'] + date: ['Fri, 18 Jan 2019 07:35:27 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1498,27 +1496,25 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"111674c9-be71-43e1-a9f1-351f7d58d787","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T13:59:22.267","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"634ecc31-057a-4bb2-80c0-98f7e49e42bf","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-18T07:12:40.643","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"43aa74dd-a56e-4588-9491-653510d03a57","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1468'] + content-length: ['1629'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:21:38 GMT'] + date: ['Fri, 18 Jan 2019 07:35:29 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: '{"properties": {"computeProfile": {"roles": [{"name": "edgenode", "targetInstanceCount": @@ -1536,29 +1532,27 @@ interactions: ParameterSetName: [-g -n --application-name --script-uri --script-action-name --script-parameters -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"19BB0644-2533-4B1F-9DE0-741F54A89851","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"Accepted","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"451C9C22-8A89-4660-A33C-BF06D2F2C247","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"Accepted","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] cache-control: [no-cache] - content-length: ['846'] + content-length: ['845'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:21:40 GMT'] - etag: ['"19BB0644-2533-4B1F-9DE0-741F54A89851"'] + date: ['Fri, 18 Jan 2019 07:35:30 GMT'] + etag: ['"451C9C22-8A89-4660-A33C-BF06D2F2C247"'] 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-hdi-appuri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-bw6a4/providers/Microsoft.HDInsight/clusters/hdicli-ydjnwnkac/applications/hdicliapp-owbz4k?api-version=2018-06-01-preview'] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-appuri: ['https://management.azure.com/subscriptions/1cd46e5e-1c38-4448-a475-3b5985ef7c88/resourceGroups/hdicli-dspup/providers/Microsoft.HDInsight/clusters/hdicli-ul4vi6a4s/applications/hdicliapp-tckjme?api-version=2018-06-01-preview'] + x-ms-hdi-served-by: [global] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: @@ -1571,7 +1565,7 @@ interactions: ParameterSetName: [-g -n --application-name --script-uri --script-action-name --script-parameters -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1580,16 +1574,14 @@ interactions: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:22:12 GMT'] + date: ['Fri, 18 Jan 2019 07:36:01 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1601,25 +1593,135 @@ interactions: ParameterSetName: [-g -n --application-name --script-uri --script-action-name --script-parameters -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"5E049BA6-999C-41B2-9B85-02DDA48D87DF","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} + headers: + cache-control: [no-cache] + content-length: ['857'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 07:36:03 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-hdi-served-by: [global] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight application wait] + Connection: [keep-alive] + ParameterSetName: [--created -n -g --application-name] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"5E049BA6-999C-41B2-9B85-02DDA48D87DF","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} + headers: + cache-control: [no-cache] + content-length: ['857'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 07:36: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-hdi-served-by: [global] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight application wait] + Connection: [keep-alive] + ParameterSetName: [--created -n -g --application-name] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"5E049BA6-999C-41B2-9B85-02DDA48D87DF","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} + headers: + cache-control: [no-cache] + content-length: ['857'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 07:36:34 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-hdi-served-by: [global] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight application wait] + Connection: [keep-alive] + ParameterSetName: [--created -n -g --application-name] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"5E049BA6-999C-41B2-9B85-02DDA48D87DF","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} + headers: + cache-control: [no-cache] + content-length: ['857'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 07:37:05 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-hdi-served-by: [global] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight application wait] + Connection: [keep-alive] + ParameterSetName: [--created -n -g --application-name] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"E2856319-8CC2-443B-B1A5-2DE866960182","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"5E049BA6-999C-41B2-9B85-02DDA48D87DF","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['858'] + content-length: ['857'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:22:13 GMT'] + date: ['Fri, 18 Jan 2019 07:37:37 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1630,26 +1732,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"E2856319-8CC2-443B-B1A5-2DE866960182","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"5E049BA6-999C-41B2-9B85-02DDA48D87DF","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['858'] + content-length: ['857'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:22:14 GMT'] + date: ['Fri, 18 Jan 2019 07:38:07 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1660,26 +1760,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"E2856319-8CC2-443B-B1A5-2DE866960182","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"5E049BA6-999C-41B2-9B85-02DDA48D87DF","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['858'] + content-length: ['857'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:22:45 GMT'] + date: ['Fri, 18 Jan 2019 07:38:38 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1690,26 +1788,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"E2856319-8CC2-443B-B1A5-2DE866960182","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"5E049BA6-999C-41B2-9B85-02DDA48D87DF","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['858'] + content-length: ['857'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:23:16 GMT'] + date: ['Fri, 18 Jan 2019 07:39:09 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1720,26 +1816,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"E2856319-8CC2-443B-B1A5-2DE866960182","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"5E049BA6-999C-41B2-9B85-02DDA48D87DF","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['858'] + content-length: ['857'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:23:47 GMT'] + date: ['Fri, 18 Jan 2019 07:39:40 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1750,26 +1844,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"E2856319-8CC2-443B-B1A5-2DE866960182","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"5E049BA6-999C-41B2-9B85-02DDA48D87DF","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['858'] + content-length: ['857'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:24:18 GMT'] + date: ['Fri, 18 Jan 2019 07:40:11 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1780,26 +1872,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"3D9A4C60-2B05-4B9D-A6C2-DBA27DAB5464","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"5E049BA6-999C-41B2-9B85-02DDA48D87DF","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"AzureVMConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['862'] + content-length: ['857'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:24:49 GMT'] + date: ['Fri, 18 Jan 2019 07:40:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1810,26 +1900,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"3D9A4C60-2B05-4B9D-A6C2-DBA27DAB5464","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"0C480568-EA91-4FE7-B7FC-E56364F5D705","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['862'] + content-length: ['861'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:25:20 GMT'] + date: ['Fri, 18 Jan 2019 07:41:12 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1840,26 +1928,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"C6C41965-C03D-4471-A573-146A2DFFDFB2","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":null,"destinationPort":22,"publicPort":22}],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"BCC17CF2-6789-44B4-ABB8-3D9EEAF3F2B8","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":null,"destinationPort":22,"publicPort":22}],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['916'] + content-length: ['915'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:25:51 GMT'] + date: ['Fri, 18 Jan 2019 07:41:43 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1870,26 +1956,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"C6C41965-C03D-4471-A573-146A2DFFDFB2","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":null,"destinationPort":22,"publicPort":22}],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"BCC17CF2-6789-44B4-ABB8-3D9EEAF3F2B8","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":null,"destinationPort":22,"publicPort":22}],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['916'] + content-length: ['915'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:26:22 GMT'] + date: ['Fri, 18 Jan 2019 07:42:14 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1900,26 +1984,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"C6C41965-C03D-4471-A573-146A2DFFDFB2","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":null,"destinationPort":22,"publicPort":22}],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"BCC17CF2-6789-44B4-ABB8-3D9EEAF3F2B8","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":null,"destinationPort":22,"publicPort":22}],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['916'] + content-length: ['915'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:26:54 GMT'] + date: ['Fri, 18 Jan 2019 07:42:45 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1930,26 +2012,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"C6C41965-C03D-4471-A573-146A2DFFDFB2","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":null,"destinationPort":22,"publicPort":22}],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"BCC17CF2-6789-44B4-ABB8-3D9EEAF3F2B8","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":null,"destinationPort":22,"publicPort":22}],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['916'] + content-length: ['915'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:27:24 GMT'] + date: ['Fri, 18 Jan 2019 07:43:16 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1960,26 +2040,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"C6C41965-C03D-4471-A573-146A2DFFDFB2","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":null,"destinationPort":22,"publicPort":22}],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"BCC17CF2-6789-44B4-ABB8-3D9EEAF3F2B8","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":null,"destinationPort":22,"publicPort":22}],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['916'] + content-length: ['915'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:27:56 GMT'] + date: ['Fri, 18 Jan 2019 07:43:47 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1990,26 +2068,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"C6C41965-C03D-4471-A573-146A2DFFDFB2","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":null,"destinationPort":22,"publicPort":22}],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"BCC17CF2-6789-44B4-ABB8-3D9EEAF3F2B8","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":null,"destinationPort":22,"publicPort":22}],"provisioningState":"InProgress","applicationState":"ApplicationConfiguration","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['916'] + content-length: ['915'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:28:27 GMT'] + date: ['Fri, 18 Jan 2019 07:44:18 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -2020,26 +2096,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [--created -n -g --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"79B39E69-1541-4743-925E-067964463E66","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":"hdicliapp-000004.hdicli-000003-ssh.azurehdinsight.net:22","destinationPort":22,"publicPort":22}],"provisioningState":"Succeeded","applicationState":"Running","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"F54DFB35-7060-4307-B270-879336FEDEC6","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":"hdicliapp-000004.hdicli-000003-ssh.azurehdinsight.net:22","destinationPort":22,"publicPort":22}],"provisioningState":"Succeeded","applicationState":"Running","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['955'] + content-length: ['954'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:28:58 GMT'] + date: ['Fri, 18 Jan 2019 07:44:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -2050,26 +2124,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications?api-version=2018-06-01-preview response: - body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"79B39E69-1541-4743-925E-067964463E66","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":"hdicliapp-000004.hdicli-000003-ssh.azurehdinsight.net:22","destinationPort":22,"publicPort":22}],"provisioningState":"Succeeded","applicationState":"Running","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}]}'} + body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"F54DFB35-7060-4307-B270-879336FEDEC6","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":"hdicliapp-000004.hdicli-000003-ssh.azurehdinsight.net:22","destinationPort":22,"publicPort":22}],"provisioningState":"Succeeded","applicationState":"Running","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}]}'} headers: cache-control: [no-cache] - content-length: ['967'] + content-length: ['966'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:28:59 GMT'] + date: ['Fri, 18 Jan 2019 07:44:50 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -2080,26 +2152,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --application-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"79B39E69-1541-4743-925E-067964463E66","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":"hdicliapp-000004.hdicli-000003-ssh.azurehdinsight.net:22","destinationPort":22,"publicPort":22}],"provisioningState":"Succeeded","applicationState":"Running","createdDate":"2018-12-19T14:21:41.337","applicationType":"CustomApplication"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004","name":"hdicliapp-000004","type":"Microsoft.HDInsight/clusters/applications","etag":"F54DFB35-7060-4307-B270-879336FEDEC6","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"Standard_D3_V2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":"hdicliapp-000004.hdicli-000003-ssh.azurehdinsight.net:22","destinationPort":22,"publicPort":22}],"provisioningState":"Succeeded","applicationState":"Running","createdDate":"2019-01-18T07:35:31.34","applicationType":"CustomApplication"}}'} headers: cache-control: [no-cache] - content-length: ['955'] + content-length: ['954'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:29:01 GMT'] + date: ['Fri, 18 Jan 2019 07:44:50 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -2111,25 +2181,23 @@ interactions: Content-Length: ['0'] ParameterSetName: [-g -n --application-name --yes] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications/hdicliapp-000004?api-version=2018-06-01-preview response: body: {string: ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/031d07a7-fb0f-4b10-94cc-aeead12f7b6a-0-r?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/a1e0f818-1383-4874-ab85-85aa27936cca-0?api-version=2018-06-01-preview'] cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 14:29:03 GMT'] + date: ['Fri, 18 Jan 2019 07:44:53 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/operationresults/031d07a7-fb0f-4b10-94cc-aeead12f7b6a-0-r?api-version=2018-06-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/operationresults/a1e0f818-1383-4874-ab85-85aa27936cca-0?api-version=2018-06-01-preview'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] x-ms-ratelimit-remaining-subscription-deletes: ['14999'] status: {code: 202, message: Accepted} - request: @@ -2141,25 +2209,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --application-name --yes] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/031d07a7-fb0f-4b10-94cc-aeead12f7b6a-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/a1e0f818-1383-4874-ab85-85aa27936cca-0?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:30:04 GMT'] + date: ['Fri, 18 Jan 2019 07:45:53 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -2170,25 +2236,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --application-name --yes] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/031d07a7-fb0f-4b10-94cc-aeead12f7b6a-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/a1e0f818-1383-4874-ab85-85aa27936cca-0?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:30:35 GMT'] + date: ['Fri, 18 Jan 2019 07:46:25 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -2199,25 +2263,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --application-name --yes] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/031d07a7-fb0f-4b10-94cc-aeead12f7b6a-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/a1e0f818-1383-4874-ab85-85aa27936cca-0?api-version=2018-06-01-preview response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:31:06 GMT'] + date: ['Fri, 18 Jan 2019 07:46:56 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -2228,7 +2290,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/applications?api-version=2018-06-01-preview @@ -2238,16 +2300,14 @@ interactions: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 14:31:08 GMT'] + date: ['Fri, 18 Jan 2019 07:46:58 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -2260,7 +2320,7 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [--name --yes --no-wait] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 @@ -2269,9 +2329,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 14:31:10 GMT'] + date: ['Fri, 18 Jan 2019 07:46:59 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRCVzZBNC1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkREU1BVUC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka.yaml b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka.yaml index 7ca29d79af2..09d363b3448 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka.yaml +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka.yaml @@ -1,27 +1,27 @@ interactions: - request: - body: '{"location": "northcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-12-19T03:26:32Z"}}' + body: '{"location": "eastus2", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-17T11:34:13Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [group create] Connection: [keep-alive] - Content-Length: ['118'] + Content-Length: ['111'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [--location --name --tag] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"northcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-12-19T03:26:32Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-01-17T11:34:13Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['266'] + content-length: ['259'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:26:33 GMT'] + date: ['Thu, 17 Jan 2019 11:34:19 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -29,17 +29,17 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "northcentralus"}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "eastus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - Content-Length: ['82'] + Content-Length: ['75'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 @@ -49,9 +49,9 @@ interactions: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:26:36 GMT'] + date: ['Thu, 17 Jan 2019 11:34:22 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/dbb71dd2-cc94-44d0-94ec-563ef3204427?monitor=true&api-version=2018-07-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/f3af2177-37b0-40f0-a3f5-b111e09b2cf5?monitor=true&api-version=2018-07-01'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -68,16 +68,16 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/dbb71dd2-cc94-44d0-94ec-563ef3204427?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/f3af2177-37b0-40f0-a3f5-b111e09b2cf5?monitor=true&api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-19T03:26:36.2708037Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-19T03:26:36.2708037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-19T03:26:36.0676387Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-17T11:34:22.0036066Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-17T11:34:22.0036066Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-17T11:34:21.8004671Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['1122'] + content-length: ['1108'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 03:26:53 GMT'] + date: ['Thu, 17 Jan 2019 11:34:39 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -97,19 +97,17 @@ interactions: Content-Length: ['0'] ParameterSetName: [-n -g --query -o] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"keys": [{"keyName": "key1", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}, {"keyName": "key2", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 03:26:55 GMT'] + date: ['Thu, 17 Jan 2019 11:34:41 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -121,7 +119,69 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: - body: 'b''{"location": "northcentralus", "properties": {"clusterVersion": "default", + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + -t --workernode-data-disks-per-node] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 + response: + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-17T11:34:22.0036066Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-17T11:34:22.0036066Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-17T11:34:21.8004671Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} + headers: + cache-control: [no-cache] + content-length: ['1108'] + content-type: [application/json] + date: ['Thu, 17 Jan 2019 11:34:42 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + Content-Length: ['0'] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + -t --workernode-data-disks-per-node] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 + response: + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} + headers: + cache-control: [no-cache] + content-length: ['288'] + content-type: [application/json] + date: ['Thu, 17 Jan 2019 11:34:42 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 200, message: OK} +- request: + body: 'b''{"location": "eastus2", "properties": {"clusterVersion": "default", "osType": "Linux", "clusterDefinition": {"kind": "kafka", "configurations": {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": "admin", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": @@ -131,41 +191,40 @@ interactions: "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}, "dataDisksGroups": [{"disksPerNode": 4}]}]}, "storageProfile": {"storageaccounts": [{"name": "hdicli000002.blob.core.windows.net", - "isDefault": true, "container": "default", "key": "e2E6LXaS3Ju9SXbSAk2IMvc19Ny0d8Tf60koq0v8sPaimtHzc1kJ6J7e+vTSJad7Y8LJ4e4Ziazp3rIhQ706zQ=="}]}}}''' + "isDefault": true, "container": "default", "key": "veryFakedStorageAccountKey=="}]}}, + "identity": {"type": "SystemAssigned"}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - Content-Length: ['980'] + Content-Length: ['1013'] Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"64a07955-007c-47e7-bdba-d800e76a78bc","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1812120705.json","kind":"kafka","componentVersion":{"kafka":"1.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2018-12-19T03:27:00.677","quotaInfo":{"coresUsed":20},"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"228dc578-33c6-4714-8261-97edd99da422","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1901050618.json","kind":"kafka","componentVersion":{"kafka":"1.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2019-01-17T11:34:49.457","quotaInfo":{"coresUsed":20},"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"49a428e2-7207-48b5-abd4-f888b60b0ed2","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] cache-control: [no-cache] - content-length: ['1156'] + content-length: ['1317'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:27:01 GMT'] - etag: ['"64a07955-007c-47e7-bdba-d800e76a78bc"'] + date: ['Thu, 17 Jan 2019 11:34:50 GMT'] + etag: ['"228dc578-33c6-4714-8261-97edd99da422"'] 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-hdi-clusteruri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-tlvem/providers/Microsoft.HDInsight/clusters/hdicli-psspagmmi?api-version=2018-06-01-preview'] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-clusteruri: ['https://management.azure.com/subscriptions/f5d3a199-7c91-4db1-b074-8b45561beadb/resourceGroups/hdicli-55czy/providers/Microsoft.HDInsight/clusters/hdicli-zl6fa5rdy?api-version=2018-06-01-preview'] + x-ms-hdi-served-by: [southcentralus] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: @@ -175,10 +234,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -187,16 +246,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:27:31 GMT'] + date: ['Thu, 17 Jan 2019 11:35:21 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -205,10 +262,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -217,16 +274,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:28:03 GMT'] + date: ['Thu, 17 Jan 2019 11:35:52 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -235,10 +290,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -247,16 +302,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:28:34 GMT'] + date: ['Thu, 17 Jan 2019 11:36:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -265,10 +318,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -277,16 +330,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:29:05 GMT'] + date: ['Thu, 17 Jan 2019 11:36:54 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -295,10 +346,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -307,16 +358,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:29:36 GMT'] + date: ['Thu, 17 Jan 2019 11:37:26 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -325,10 +374,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -337,16 +386,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:30:07 GMT'] + date: ['Thu, 17 Jan 2019 11:37:58 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -355,10 +402,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -367,16 +414,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:30:38 GMT'] + date: ['Thu, 17 Jan 2019 11:38:29 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -385,10 +430,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -397,16 +442,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:31:09 GMT'] + date: ['Thu, 17 Jan 2019 11:39:02 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -415,10 +458,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -427,16 +470,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:31:40 GMT'] + date: ['Thu, 17 Jan 2019 11:39:33 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -445,10 +486,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -457,16 +498,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:32:11 GMT'] + date: ['Thu, 17 Jan 2019 11:40:05 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -475,10 +514,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -487,16 +526,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:32:42 GMT'] + date: ['Thu, 17 Jan 2019 11:40:36 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -505,10 +542,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -517,16 +554,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:33:13 GMT'] + date: ['Thu, 17 Jan 2019 11:41:07 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -535,10 +570,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -547,16 +582,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:33:44 GMT'] + date: ['Thu, 17 Jan 2019 11:41:38 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -565,10 +598,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -577,16 +610,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:34:15 GMT'] + date: ['Thu, 17 Jan 2019 11:42:09 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -595,10 +626,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -607,16 +638,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:34:46 GMT'] + date: ['Thu, 17 Jan 2019 11:42:42 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -625,10 +654,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -637,16 +666,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:35:17 GMT'] + date: ['Thu, 17 Jan 2019 11:43:13 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -655,10 +682,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -667,16 +694,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:35:48 GMT'] + date: ['Thu, 17 Jan 2019 11:43:45 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -685,10 +710,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -697,16 +722,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:36:19 GMT'] + date: ['Thu, 17 Jan 2019 11:44:16 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -715,10 +738,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -727,16 +750,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:36:50 GMT'] + date: ['Thu, 17 Jan 2019 11:44:47 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -745,10 +766,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,16 +778,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:37:21 GMT'] + date: ['Thu, 17 Jan 2019 11:45:18 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -775,10 +794,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -787,16 +806,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:37:52 GMT'] + date: ['Thu, 17 Jan 2019 11:45:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -805,10 +822,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -817,16 +834,14 @@ interactions: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:38:23 GMT'] + date: ['Thu, 17 Jan 2019 11:46:21 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -835,29 +850,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"64a07955-007c-47e7-bdba-d800e76a78bc","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1812120705.json","kind":"kafka","componentVersion":{"kafka":"1.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T03:27:00.677","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"228dc578-33c6-4714-8261-97edd99da422","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1901050618.json","kind":"kafka","componentVersion":{"kafka":"1.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-17T11:34:49.457","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"e52e8cd2-314e-4f0e-9766-5df96b513232","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1561'] + content-length: ['1722'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:38:25 GMT'] + date: ['Thu, 17 Jan 2019 11:46:22 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -868,27 +881,25 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"64a07955-007c-47e7-bdba-d800e76a78bc","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1812120705.json","kind":"kafka","componentVersion":{"kafka":"1.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T03:27:00.677","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"228dc578-33c6-4714-8261-97edd99da422","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1901050618.json","kind":"kafka","componentVersion":{"kafka":"1.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-17T11:34:49.457","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"e52e8cd2-314e-4f0e-9766-5df96b513232","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1561'] + content-length: ['1722'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:38:27 GMT'] + date: ['Thu, 17 Jan 2019 11:46:25 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -901,7 +912,7 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [--name --yes --no-wait] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 @@ -910,9 +921,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 03:38:28 GMT'] + date: ['Thu, 17 Jan 2019 11:46:27 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRUTFZFTS1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkQ1NUNaWS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka_with_optional_disk_args.yaml b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka_with_optional_disk_args.yaml index 01b6b6acf58..970ec54143a 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka_with_optional_disk_args.yaml +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_kafka_with_optional_disk_args.yaml @@ -1,27 +1,27 @@ interactions: - request: - body: '{"location": "northcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-12-19T03:38:29Z"}}' + body: '{"location": "eastus2", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-17T12:35:07Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [group create] Connection: [keep-alive] - Content-Length: ['118'] + Content-Length: ['111'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [--location --name --tag] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"northcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-12-19T03:38:29Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-01-17T12:35:07Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['266'] + content-length: ['259'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:38:30 GMT'] + date: ['Thu, 17 Jan 2019 12:35:12 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -29,17 +29,17 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "northcentralus"}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "eastus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - Content-Length: ['82'] + Content-Length: ['75'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 @@ -49,15 +49,15 @@ interactions: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:38:34 GMT'] + date: ['Thu, 17 Jan 2019 12:35:15 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/c32d8eb6-b203-4156-91eb-1b7414707136?monitor=true&api-version=2018-07-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/3660ab74-dedb-4e57-8166-119589d4e366?monitor=true&api-version=2018-07-01'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -68,16 +68,16 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/c32d8eb6-b203-4156-91eb-1b7414707136?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/3660ab74-dedb-4e57-8166-119589d4e366?monitor=true&api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-19T03:38:34.5239623Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-19T03:38:34.5239623Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-19T03:38:34.2583180Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-17T12:35:15.9710922Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-17T12:35:15.9710922Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-17T12:35:15.8148417Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['1122'] + content-length: ['1108'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 03:38:52 GMT'] + date: ['Thu, 17 Jan 2019 12:35:33 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -97,19 +97,17 @@ interactions: Content-Length: ['0'] ParameterSetName: [-n -g --query -o] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"keys": [{"keyName": "key1", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}, {"keyName": "key2", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 03:38:53 GMT'] + date: ['Thu, 17 Jan 2019 12:35:34 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -120,148 +118,6 @@ interactions: x-content-type-options: [nosniff] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} -- request: - body: 'b''{"location": "northcentralus", "properties": {"clusterVersion": "default", - "osType": "Linux", "clusterDefinition": {"kind": "kafka", "configurations": - {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": - "admin", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": - [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": - "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", - "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, - "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": - {"username": "sshuser", "password": "Password1!"}}, "dataDisksGroups": [{"disksPerNode": - 4}]}]}, "storageProfile": {"storageaccounts": [{"name": "hdicli000002.blob.core.windows.net", - "isDefault": true, "container": "default", "key": "DaR1B5ghI7ZYFCEcYmd+Z8i0j8Gzbl+ERPgd90CM/IgPHl2e/XeJgcjNCOTNSQjrUG1yEiqRfthai6BccFUGhQ=="}]}}}''' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [hdinsight create] - Connection: [keep-alive] - Content-Length: ['980'] - Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container - -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type - --workernode-data-disk-size] - User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - accept-language: [en-US] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"0ce5ee66-9022-452e-a0d5-05eeb2fcac8d","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1812120705.json","kind":"kafka","componentVersion":{"kafka":"1.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2018-12-19T03:38:58.173","quotaInfo":{"coresUsed":20},"tier":"standard"}}'} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] - cache-control: [no-cache] - content-length: ['1156'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:38:58 GMT'] - etag: ['"0ce5ee66-9022-452e-a0d5-05eeb2fcac8d"'] - 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-hdi-clusteruri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-q43ik/providers/Microsoft.HDInsight/clusters/hdicli-tlseql6fw?api-version=2018-06-01-preview'] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [hdinsight create] - Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container - -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type - --workernode-data-disk-size] - User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: {string: '{"status":"InProgress"}'} - headers: - cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:39:29 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [hdinsight create] - Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container - -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type - --workernode-data-disk-size] - User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: {string: '{"status":"InProgress"}'} - headers: - cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:39: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [hdinsight create] - Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container - -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type - --workernode-data-disk-size] - User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: {string: '{"status":"InProgress"}'} - headers: - cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:40:31 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - status: {code: 200, message: OK} - request: body: null headers: @@ -269,29 +125,29 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 response: - body: {string: '{"status":"InProgress"}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-17T12:35:15.9710922Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-17T12:35:15.9710922Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-17T12:35:15.8148417Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:41:02 GMT'] + content-length: ['1108'] + content-type: [application/json] + date: ['Thu, 17 Jan 2019 12:35:35 GMT'] expires: ['-1'] pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] status: {code: 200, message: OK} - request: body: null @@ -300,60 +156,79 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + Content-Length: ['0'] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"status":"InProgress"}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:41:33 GMT'] + content-length: ['288'] + content-type: [application/json] + date: ['Thu, 17 Jan 2019 12:35:37 GMT'] expires: ['-1'] pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: - body: null + body: 'b''{"location": "eastus2", "properties": {"clusterVersion": "default", + "osType": "Linux", "clusterDefinition": {"kind": "kafka", "configurations": + {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": + "admin", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": + [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": + "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", + "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, + "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": + {"username": "sshuser", "password": "Password1!"}}, "dataDisksGroups": [{"disksPerNode": + 4}]}]}, "storageProfile": {"storageaccounts": [{"name": "hdicli000002.blob.core.windows.net", + "isDefault": true, "container": "default", "key": "veryFakedStorageAccountKey=="}]}}, + "identity": {"type": "SystemAssigned"}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + Content-Length: ['1013'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"status":"InProgress"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"f34d0920-cc99-4f2c-8988-9b9f206aac85","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1901050618.json","kind":"kafka","componentVersion":{"kafka":"1.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2019-01-17T12:35:43.673","quotaInfo":{"coresUsed":20},"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"935ead9b-0544-4ccd-aa6d-401c882ea794","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] cache-control: [no-cache] - content-length: ['23'] + content-length: ['1317'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:42:04 GMT'] + date: ['Thu, 17 Jan 2019 12:35:43 GMT'] + etag: ['"f34d0920-cc99-4f2c-8988-9b9f206aac85"'] 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-clusteruri: ['https://management.azure.com/subscriptions/f5d3a199-7c91-4db1-b074-8b45561beadb/resourceGroups/hdicli-gs5bm/providers/Microsoft.HDInsight/clusters/hdicli-sr4w4gejg?api-version=2018-06-01-preview'] + x-ms-hdi-served-by: [southcentralus] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -362,11 +237,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -375,16 +250,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:42:35 GMT'] + date: ['Thu, 17 Jan 2019 12:36:15 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -393,11 +266,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -406,16 +279,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:43:06 GMT'] + date: ['Thu, 17 Jan 2019 12:36:46 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -424,11 +295,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -437,16 +308,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:43:37 GMT'] + date: ['Thu, 17 Jan 2019 12:37:17 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -455,11 +324,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -468,16 +337,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:44:09 GMT'] + date: ['Thu, 17 Jan 2019 12:37:48 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -486,11 +353,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -499,16 +366,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:44:39 GMT'] + date: ['Thu, 17 Jan 2019 12:38:19 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -517,11 +382,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -530,16 +395,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:45:10 GMT'] + date: ['Thu, 17 Jan 2019 12:38:50 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -548,11 +411,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -561,16 +424,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:45:41 GMT'] + date: ['Thu, 17 Jan 2019 12:39:21 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -579,11 +440,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -592,16 +453,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:46:12 GMT'] + date: ['Thu, 17 Jan 2019 12:39:53 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -610,11 +469,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -623,16 +482,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:46:43 GMT'] + date: ['Thu, 17 Jan 2019 12:40:24 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -641,11 +498,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -654,16 +511,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:47:15 GMT'] + date: ['Thu, 17 Jan 2019 12:40:55 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -672,11 +527,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -685,16 +540,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:47:46 GMT'] + date: ['Thu, 17 Jan 2019 12:41:26 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -703,11 +556,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -716,16 +569,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:48:19 GMT'] + date: ['Thu, 17 Jan 2019 12:41:58 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -734,11 +585,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -747,16 +598,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:48:49 GMT'] + date: ['Thu, 17 Jan 2019 12:42:29 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -765,11 +614,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -778,16 +627,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:49:20 GMT'] + date: ['Thu, 17 Jan 2019 12:43:01 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -796,11 +643,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -809,16 +656,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:49:52 GMT'] + date: ['Thu, 17 Jan 2019 12:43:32 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -827,11 +672,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -840,16 +685,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:50:23 GMT'] + date: ['Thu, 17 Jan 2019 12:44:03 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -858,11 +701,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -871,16 +714,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:50:54 GMT'] + date: ['Thu, 17 Jan 2019 12:44:34 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -889,11 +730,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -902,16 +743,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:51:25 GMT'] + date: ['Thu, 17 Jan 2019 12:45:06 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -920,11 +759,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -933,16 +772,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:51:56 GMT'] + date: ['Thu, 17 Jan 2019 12:45:37 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -951,11 +788,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -964,16 +801,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:52:27 GMT'] + date: ['Thu, 17 Jan 2019 12:46:08 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -982,11 +817,11 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -995,16 +830,14 @@ interactions: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:52:58 GMT'] + date: ['Thu, 17 Jan 2019 12:46:39 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1013,30 +846,28 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --workernode-data-disks-per-node --workernode-data-disk-storage-account-type --workernode-data-disk-size] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"0ce5ee66-9022-452e-a0d5-05eeb2fcac8d","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1812120705.json","kind":"kafka","componentVersion":{"kafka":"1.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T03:38:58.173","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"f34d0920-cc99-4f2c-8988-9b9f206aac85","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1901050618.json","kind":"kafka","componentVersion":{"kafka":"1.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-17T12:35:43.673","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"4d1afef3-9ac1-4ec0-9ee7-1e087ff9b827","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1561'] + content-length: ['1722'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:53:00 GMT'] + date: ['Thu, 17 Jan 2019 12:46:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1047,27 +878,25 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"0ce5ee66-9022-452e-a0d5-05eeb2fcac8d","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1812120705.json","kind":"kafka","componentVersion":{"kafka":"1.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T03:38:58.173","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"f34d0920-cc99-4f2c-8988-9b9f206aac85","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1901050618.json","kind":"kafka","componentVersion":{"kafka":"1.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":4,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-17T12:35:43.673","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"4d1afef3-9ac1-4ec0-9ee7-1e087ff9b827","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1561'] + content-length: ['1722'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 03:53:01 GMT'] + date: ['Thu, 17 Jan 2019 12:46:43 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1080,7 +909,7 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [--name --yes --no-wait] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 @@ -1089,9 +918,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 03:53:03 GMT'] + date: ['Thu, 17 Jan 2019 12:46:45 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRRNDNJSy1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRHUzVCTS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_min_args.yaml b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_min_args.yaml index a1413c17234..e3b583b0b0c 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_min_args.yaml +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_min_args.yaml @@ -1,27 +1,27 @@ interactions: - request: - body: '{"location": "northcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-12-19T06:16:00Z"}}' + body: '{"location": "eastus2", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-17T09:25:56Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [group create] Connection: [keep-alive] - Content-Length: ['118'] + Content-Length: ['111'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [--location --name --tag] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"northcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-12-19T06:16:00Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-01-17T09:25:56Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['266'] + content-length: ['259'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:16:06 GMT'] + date: ['Thu, 17 Jan 2019 09:26:04 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -29,17 +29,17 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "northcentralus"}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "eastus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - Content-Length: ['82'] + Content-Length: ['75'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 @@ -49,15 +49,15 @@ interactions: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:16:08 GMT'] + date: ['Thu, 17 Jan 2019 09:26:09 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/380b60a4-4a9c-4dfc-8e3b-e526f6e86e63?monitor=true&api-version=2018-07-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/d398f46e-f727-41bf-9dc8-a56ab8d4389b?monitor=true&api-version=2018-07-01'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -68,16 +68,16 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/380b60a4-4a9c-4dfc-8e3b-e526f6e86e63?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/d398f46e-f727-41bf-9dc8-a56ab8d4389b?monitor=true&api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-19T06:16:08.6114083Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-19T06:16:08.6114083Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-19T06:16:08.5332871Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-17T09:26:08.9942547Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-17T09:26:08.9942547Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-17T09:26:08.8223779Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['1122'] + content-length: ['1108'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 06:16:26 GMT'] + date: ['Thu, 17 Jan 2019 09:26:26 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -97,19 +97,17 @@ interactions: Content-Length: ['0'] ParameterSetName: [-n -g --query -o] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"keys": [{"keyName": "key1", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}, {"keyName": "key2", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 06:16:27 GMT'] + date: ['Thu, 17 Jan 2019 09:26:28 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -129,17 +127,17 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 response: - body: {string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-19T06:16:08.6114083Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-19T06:16:08.6114083Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-19T06:16:08.5332871Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}]}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-17T09:26:08.9942547Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-17T09:26:08.9942547Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-17T09:26:08.8223779Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['1134'] + content-length: ['1108'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 06:16:28 GMT'] + date: ['Thu, 17 Jan 2019 09:26:30 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -159,19 +157,17 @@ interactions: Content-Length: ['0'] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"keys": [{"keyName": "key1", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}, {"keyName": "key2", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 06:16:29 GMT'] + date: ['Thu, 17 Jan 2019 09:26:30 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -183,8 +179,8 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: - body: 'b''b\''{"location": "northcentralus", "properties": {"clusterVersion": - "default", "osType": "Linux", "clusterDefinition": {"kind": "spark", "configurations": + body: 'b''b\''{"location": "eastus2", "properties": {"clusterVersion": "default", + "osType": "Linux", "clusterDefinition": {"kind": "spark", "configurations": {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": "admin", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": @@ -193,40 +189,39 @@ interactions: "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": - "hdicli-000003", "key": "cnbICaccVfv98ctzSsdot/QF76tSVJEyAigg3RsNWXn9l/CSfy1+kj9gLfUCNmR6WVViQDlrMxG4zbSfp62VHg=="}]}}}\''''' + "hdicli-000003", "key": "veryFakedStorageAccountKey=="}]}}, "identity": {"type": + "SystemAssigned"}}\''''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - Content-Length: ['947'] + Content-Length: ['980'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"1a2ccaae-48bf-442f-bf29-be038bf5375c","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2018-12-19T06:16:35.113","quotaInfo":{"coresUsed":20},"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"010ac3a5-0328-45b7-8d53-40d17a9c3201","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2019-01-17T09:26:38.727","quotaInfo":{"coresUsed":20},"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"c2aa99f0-0605-4335-b9b6-a42de7bc89e7","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] cache-control: [no-cache] - content-length: ['1063'] + content-length: ['1224'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:16:35 GMT'] - etag: ['"1a2ccaae-48bf-442f-bf29-be038bf5375c"'] + date: ['Thu, 17 Jan 2019 09:26:38 GMT'] + etag: ['"010ac3a5-0328-45b7-8d53-40d17a9c3201"'] 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-hdi-clusteruri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-tpx3l/providers/Microsoft.HDInsight/clusters/hdicli-g537jjz35?api-version=2018-06-01-preview'] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-clusteruri: ['https://management.azure.com/subscriptions/f5d3a199-7c91-4db1-b074-8b45561beadb/resourceGroups/hdicli-xjuye/providers/Microsoft.HDInsight/clusters/hdicli-r7wwua3sd?api-version=2018-06-01-preview'] + x-ms-hdi-served-by: [southcentralus] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: @@ -238,152 +233,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: {string: '{"status":"InProgress"}'} - headers: - cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:17:06 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [hdinsight create] - Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account] - User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: {string: '{"status":"InProgress"}'} - headers: - cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:17:37 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [hdinsight create] - Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account] - User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: {string: '{"status":"InProgress"}'} - headers: - cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:18:08 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [hdinsight create] - Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account] - User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: {string: '{"status":"InProgress"}'} - headers: - cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:18:39 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [hdinsight create] - Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account] - User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: {string: '{"status":"InProgress"}'} - headers: - cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:19:10 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [hdinsight create] - Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account] - User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -392,16 +242,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:19:41 GMT'] + date: ['Thu, 17 Jan 2019 09:27:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -412,7 +260,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -421,16 +269,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:20:13 GMT'] + date: ['Thu, 17 Jan 2019 09:27:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -441,7 +287,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -450,16 +296,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:20:43 GMT'] + date: ['Thu, 17 Jan 2019 09:28:12 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -470,7 +314,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -479,16 +323,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:21:13 GMT'] + date: ['Thu, 17 Jan 2019 09:28:43 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -499,7 +341,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -508,16 +350,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:21:45 GMT'] + date: ['Thu, 17 Jan 2019 09:29:14 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -528,7 +368,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -537,16 +377,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:22:16 GMT'] + date: ['Thu, 17 Jan 2019 09:29:45 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -557,7 +395,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -566,16 +404,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:22:47 GMT'] + date: ['Thu, 17 Jan 2019 09:30:17 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -586,7 +422,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -595,16 +431,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:23:18 GMT'] + date: ['Thu, 17 Jan 2019 09:30:48 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -615,7 +449,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -624,16 +458,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:23:50 GMT'] + date: ['Thu, 17 Jan 2019 09:31:20 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -644,7 +476,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -653,16 +485,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:24:20 GMT'] + date: ['Thu, 17 Jan 2019 09:31:51 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -673,7 +503,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -682,16 +512,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:24:51 GMT'] + date: ['Thu, 17 Jan 2019 09:32:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -702,7 +530,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -711,16 +539,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:25:22 GMT'] + date: ['Thu, 17 Jan 2019 09:32:55 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -731,7 +557,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -740,16 +566,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:25:53 GMT'] + date: ['Thu, 17 Jan 2019 09:33:26 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -760,7 +584,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -769,16 +593,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:26:25 GMT'] + date: ['Thu, 17 Jan 2019 09:33:58 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -789,7 +611,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -798,16 +620,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:26:57 GMT'] + date: ['Thu, 17 Jan 2019 09:34:29 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -818,7 +638,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -827,16 +647,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:27:28 GMT'] + date: ['Thu, 17 Jan 2019 09:35:01 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -847,7 +665,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -856,16 +674,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:27:59 GMT'] + date: ['Thu, 17 Jan 2019 09:35:32 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -876,7 +692,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -885,16 +701,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:28:31 GMT'] + date: ['Thu, 17 Jan 2019 09:36: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -905,7 +719,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -914,16 +728,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:29:02 GMT'] + date: ['Thu, 17 Jan 2019 09:36:35 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -934,7 +746,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -943,16 +755,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:29:32 GMT'] + date: ['Thu, 17 Jan 2019 09:37:06 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -963,7 +773,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -972,16 +782,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:30:04 GMT'] + date: ['Thu, 17 Jan 2019 09:37:37 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -992,7 +800,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1001,16 +809,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:30:34 GMT'] + date: ['Thu, 17 Jan 2019 09:38:08 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1021,7 +827,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1030,16 +836,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:31:05 GMT'] + date: ['Thu, 17 Jan 2019 09:38:39 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1050,7 +854,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1059,16 +863,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:31:36 GMT'] + date: ['Thu, 17 Jan 2019 09:39:11 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1079,7 +881,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1088,16 +890,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:32:07 GMT'] + date: ['Thu, 17 Jan 2019 09:39:42 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1108,7 +908,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1117,16 +917,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:32:38 GMT'] + date: ['Thu, 17 Jan 2019 09:40:13 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1137,7 +935,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1146,16 +944,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:33:09 GMT'] + date: ['Thu, 17 Jan 2019 09:40:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1166,7 +962,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1175,16 +971,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:33:41 GMT'] + date: ['Thu, 17 Jan 2019 09:41:15 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1195,7 +989,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1204,16 +998,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:34:11 GMT'] + date: ['Thu, 17 Jan 2019 09:41:46 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1224,7 +1016,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1233,16 +1025,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:34:42 GMT'] + date: ['Thu, 17 Jan 2019 09:42:18 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1253,7 +1043,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1262,16 +1052,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:35:14 GMT'] + date: ['Thu, 17 Jan 2019 09:42:50 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1282,7 +1070,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1291,16 +1079,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:35:44 GMT'] + date: ['Thu, 17 Jan 2019 09:43:21 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1311,7 +1097,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1320,16 +1106,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:36:15 GMT'] + date: ['Thu, 17 Jan 2019 09:43:52 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1340,7 +1124,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1349,16 +1133,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:36:46 GMT'] + date: ['Thu, 17 Jan 2019 09:44:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1369,7 +1151,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1378,16 +1160,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:37:17 GMT'] + date: ['Thu, 17 Jan 2019 09:44:54 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1398,7 +1178,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1407,16 +1187,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:37:49 GMT'] + date: ['Thu, 17 Jan 2019 09:45:26 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1427,7 +1205,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1436,16 +1214,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:38:19 GMT'] + date: ['Thu, 17 Jan 2019 09:45:57 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1456,7 +1232,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1465,16 +1241,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:38:50 GMT'] + date: ['Thu, 17 Jan 2019 09:46:29 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1485,7 +1259,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1494,16 +1268,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:39:22 GMT'] + date: ['Thu, 17 Jan 2019 09:47:00 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1514,7 +1286,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1523,16 +1295,14 @@ interactions: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:39:53 GMT'] + date: ['Thu, 17 Jan 2019 09:47:31 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1543,26 +1313,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l -p -t --storage-account] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"1a2ccaae-48bf-442f-bf29-be038bf5375c","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T06:16:35.113","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"010ac3a5-0328-45b7-8d53-40d17a9c3201","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-17T09:26:38.727","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"20975b3b-500d-4b91-9af3-96bec20a104e","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1468'] + content-length: ['1629'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:39:53 GMT'] + date: ['Thu, 17 Jan 2019 09:47:32 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1573,27 +1341,25 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"1a2ccaae-48bf-442f-bf29-be038bf5375c","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T06:16:35.113","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"010ac3a5-0328-45b7-8d53-40d17a9c3201","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-17T09:26:38.727","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"20975b3b-500d-4b91-9af3-96bec20a104e","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1468'] + content-length: ['1629'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:39:56 GMT'] + date: ['Thu, 17 Jan 2019 09:47:36 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1606,7 +1372,7 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [--name --yes --no-wait] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 @@ -1615,9 +1381,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 06:39:58 GMT'] + date: ['Thu, 17 Jan 2019 09:47:37 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRUUFgzTC1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRYSlVZRS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_resize.yaml b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_resize.yaml index 48af40a8b09..207d25dc267 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_resize.yaml +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_resize.yaml @@ -1,45 +1,45 @@ interactions: - request: - body: '{"location": "northcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-12-19T06:46:15Z"}}' + body: '{"location": "eastus2", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-17T10:42:59Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [group create] Connection: [keep-alive] - Content-Length: ['118'] + Content-Length: ['111'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [--location --name --tag] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"northcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-12-19T06:46:15Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-01-17T10:42:59Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['266'] + content-length: ['259'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:46:20 GMT'] + date: ['Thu, 17 Jan 2019 10:43: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'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "northcentralus"}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "eastus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - Content-Length: ['82'] + Content-Length: ['75'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 @@ -49,9 +49,9 @@ interactions: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:46:23 GMT'] + date: ['Thu, 17 Jan 2019 10:43:08 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/3bb933dc-5a58-4794-b11d-05e3caef5b3b?monitor=true&api-version=2018-07-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/cf1fabfe-0082-4021-82ce-d6f8f03bf3f7?monitor=true&api-version=2018-07-01'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -68,16 +68,16 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/3bb933dc-5a58-4794-b11d-05e3caef5b3b?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/cf1fabfe-0082-4021-82ce-d6f8f03bf3f7?monitor=true&api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-19T06:46:23.9005899Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-19T06:46:23.9005899Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-19T06:46:23.8381010Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-17T10:43:08.8851750Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-17T10:43:08.8851750Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-17T10:43:08.7289246Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['1122'] + content-length: ['1108'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 06:46:41 GMT'] + date: ['Thu, 17 Jan 2019 10:43:26 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -97,19 +97,17 @@ interactions: Content-Length: ['0'] ParameterSetName: [-n -g --query -o] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"keys": [{"keyName": "key1", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}, {"keyName": "key2", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 06:46:43 GMT'] + date: ['Thu, 17 Jan 2019 10:43:27 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -121,51 +119,33 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: - body: 'b''{"location": "northcentralus", "properties": {"clusterVersion": "default", - "osType": "Linux", "clusterDefinition": {"kind": "spark", "configurations": - {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": - "admin", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": - [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": - "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", - "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, - "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": - {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": - [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": - "default", "key": "iiaeUJByImy6L5RRfT9M0wxn9UTcpaaqGnO+0bTtL2PgrwXYQGcuZavw3FWZB9JU1bWZZ2dgokIA5rLaVa7Drw=="}]}}}''' + body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"4e29f9bf-8dcf-42d2-8572-b6bd37fce5e0","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2018-12-19T06:46:49.087","quotaInfo":{"coresUsed":20},"tier":"standard"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-17T10:43:08.8851750Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-17T10:43:08.8851750Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-17T10:43:08.7289246Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] cache-control: [no-cache] - content-length: ['1063'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:46:49 GMT'] - etag: ['"4e29f9bf-8dcf-42d2-8572-b6bd37fce5e0"'] + content-length: ['1108'] + content-type: [application/json] + date: ['Thu, 17 Jan 2019 10:43:29 GMT'] expires: ['-1'] pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-clusteruri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-qdrpp/providers/Microsoft.HDInsight/clusters/hdicli-p5hrdwie3?api-version=2018-06-01-preview'] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -174,27 +154,74 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + Content-Length: ['0'] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"status":"InProgress"}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] - content-length: ['23'] + content-length: ['288'] + content-type: [application/json] + date: ['Thu, 17 Jan 2019 10:43:30 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 200, message: OK} +- request: + body: 'b''{"location": "eastus2", "properties": {"clusterVersion": "default", + "osType": "Linux", "clusterDefinition": {"kind": "spark", "configurations": + {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": + "admin", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": + [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": + "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", + "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, + "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": + {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": + [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": + "default", "key": "veryFakedStorageAccountKey=="}]}}, "identity": {"type": "SystemAssigned"}}''' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + Content-Length: ['971'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"42ea9258-5ce2-47cf-ac24-5e2c95ca8099","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2019-01-17T10:43:37.36","quotaInfo":{"coresUsed":20},"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"af273a15-7896-4b61-be69-2a68a0d51309","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} + headers: + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] + cache-control: [no-cache] + content-length: ['1223'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:47:20 GMT'] + date: ['Thu, 17 Jan 2019 10:43:37 GMT'] + etag: ['"42ea9258-5ce2-47cf-ac24-5e2c95ca8099"'] 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-clusteruri: ['https://management.azure.com/subscriptions/f5d3a199-7c91-4db1-b074-8b45561beadb/resourceGroups/hdicli-m6bmy/providers/Microsoft.HDInsight/clusters/hdicli-6tttjli7y?api-version=2018-06-01-preview'] + x-ms-hdi-served-by: [southcentralus] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -203,9 +230,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -214,16 +241,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:47:51 GMT'] + date: ['Thu, 17 Jan 2019 10:44:08 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -232,9 +257,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -243,16 +268,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:48:22 GMT'] + date: ['Thu, 17 Jan 2019 10:44:39 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -261,9 +284,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -272,16 +295,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:48:53 GMT'] + date: ['Thu, 17 Jan 2019 10:45:11 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -290,9 +311,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -301,16 +322,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:49:24 GMT'] + date: ['Thu, 17 Jan 2019 10:45:42 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -319,9 +338,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -330,16 +349,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:49:55 GMT'] + date: ['Thu, 17 Jan 2019 10:46:13 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -348,9 +365,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -359,16 +376,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:50:26 GMT'] + date: ['Thu, 17 Jan 2019 10:46:45 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -377,9 +392,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -388,16 +403,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:50:57 GMT'] + date: ['Thu, 17 Jan 2019 10:47:16 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -406,9 +419,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -417,16 +430,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:51:27 GMT'] + date: ['Thu, 17 Jan 2019 10:47:47 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -435,9 +446,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -446,16 +457,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:51:59 GMT'] + date: ['Thu, 17 Jan 2019 10:48:19 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -464,9 +473,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -475,16 +484,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:52:30 GMT'] + date: ['Thu, 17 Jan 2019 10:48:50 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -493,9 +500,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -504,16 +511,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:53:01 GMT'] + date: ['Thu, 17 Jan 2019 10:49:21 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -522,9 +527,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -533,16 +538,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:53:31 GMT'] + date: ['Thu, 17 Jan 2019 10:49:58 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -551,9 +554,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -562,16 +565,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:54:03 GMT'] + date: ['Thu, 17 Jan 2019 10:50:30 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -580,9 +581,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -591,16 +592,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:54:34 GMT'] + date: ['Thu, 17 Jan 2019 10:51:01 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -609,9 +608,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -620,16 +619,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:55:05 GMT'] + date: ['Thu, 17 Jan 2019 10:51:33 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -638,9 +635,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -649,16 +646,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:55:36 GMT'] + date: ['Thu, 17 Jan 2019 10:52: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -667,9 +662,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -678,16 +673,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:56:07 GMT'] + date: ['Thu, 17 Jan 2019 10:52:35 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -696,9 +689,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -707,16 +700,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:56:37 GMT'] + date: ['Thu, 17 Jan 2019 10:53:07 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -725,9 +716,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -736,16 +727,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:57:09 GMT'] + date: ['Thu, 17 Jan 2019 10:53:38 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -754,9 +743,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -765,16 +754,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:57:40 GMT'] + date: ['Thu, 17 Jan 2019 10:54:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -783,9 +770,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -794,16 +781,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:58:11 GMT'] + date: ['Thu, 17 Jan 2019 10:54:40 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -812,9 +797,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -823,16 +808,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:58:42 GMT'] + date: ['Thu, 17 Jan 2019 10:55:11 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -841,9 +824,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -852,16 +835,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:59:13 GMT'] + date: ['Thu, 17 Jan 2019 10:55:43 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -870,9 +851,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -881,16 +862,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 06:59:44 GMT'] + date: ['Thu, 17 Jan 2019 10:56:14 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -899,9 +878,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -910,16 +889,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:00:15 GMT'] + date: ['Thu, 17 Jan 2019 10:56:46 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -928,9 +905,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -939,16 +916,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:00:46 GMT'] + date: ['Thu, 17 Jan 2019 10:57:17 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -957,9 +932,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -968,16 +943,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:01:17 GMT'] + date: ['Thu, 17 Jan 2019 10:57:47 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -986,9 +959,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -997,16 +970,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:01:48 GMT'] + date: ['Thu, 17 Jan 2019 10:58:19 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1015,9 +986,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1026,16 +997,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:02:19 GMT'] + date: ['Thu, 17 Jan 2019 10:58:51 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1044,9 +1013,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1055,16 +1024,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:02:50 GMT'] + date: ['Thu, 17 Jan 2019 10:59:22 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1073,9 +1040,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1084,16 +1051,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:03:21 GMT'] + date: ['Thu, 17 Jan 2019 10:59:53 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1102,9 +1067,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1113,16 +1078,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:03:52 GMT'] + date: ['Thu, 17 Jan 2019 11:00:24 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1131,9 +1094,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1142,16 +1105,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:04:23 GMT'] + date: ['Thu, 17 Jan 2019 11:00:56 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1160,9 +1121,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1171,16 +1132,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:04:54 GMT'] + date: ['Thu, 17 Jan 2019 11:01:27 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1189,9 +1148,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1200,16 +1159,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:05:25 GMT'] + date: ['Thu, 17 Jan 2019 11:01:58 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1218,9 +1175,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1229,16 +1186,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:05:56 GMT'] + date: ['Thu, 17 Jan 2019 11:02:29 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1247,9 +1202,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1258,16 +1213,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:06:27 GMT'] + date: ['Thu, 17 Jan 2019 11:03:01 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1276,9 +1229,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1287,16 +1240,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:06:58 GMT'] + date: ['Thu, 17 Jan 2019 11:03:32 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1305,9 +1256,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1316,16 +1267,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:07:29 GMT'] + date: ['Thu, 17 Jan 2019 11:04:03 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1334,9 +1283,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1345,16 +1294,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:08:01 GMT'] + date: ['Thu, 17 Jan 2019 11:04:34 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1363,9 +1310,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1374,16 +1321,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:08:32 GMT'] + date: ['Thu, 17 Jan 2019 11:05:05 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1392,9 +1337,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1403,16 +1348,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:09:03 GMT'] + date: ['Thu, 17 Jan 2019 11:05:36 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1421,9 +1364,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1432,16 +1375,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:09:34 GMT'] + date: ['Thu, 17 Jan 2019 11:06:08 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1450,9 +1391,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1461,16 +1402,14 @@ interactions: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:10:05 GMT'] + date: ['Thu, 17 Jan 2019 11:06:40 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1479,28 +1418,26 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"4e29f9bf-8dcf-42d2-8572-b6bd37fce5e0","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T06:46:49.087","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"42ea9258-5ce2-47cf-ac24-5e2c95ca8099","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-17T10:43:37.36","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"67ce67fe-e25c-4969-8379-43e83795440a","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1468'] + content-length: ['1628'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:10:06 GMT'] + date: ['Thu, 17 Jan 2019 11:06:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1511,27 +1448,25 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"4e29f9bf-8dcf-42d2-8572-b6bd37fce5e0","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T06:46:49.087","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"42ea9258-5ce2-47cf-ac24-5e2c95ca8099","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-17T10:43:37.36","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"67ce67fe-e25c-4969-8379-43e83795440a","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1468'] + content-length: ['1628'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:10:08 GMT'] + date: ['Thu, 17 Jan 2019 11:06:43 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: '{"targetInstanceCount": 2}' @@ -1544,25 +1479,23 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/roles/workernode/resize?api-version=2018-06-01-preview response: body: {string: ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview'] cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 07:10:10 GMT'] + date: ['Thu, 17 Jan 2019 11:06:45 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/operationresults/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/operationresults/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: @@ -1574,25 +1507,50 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 17 Jan 2019 11:07:46 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight resize] + Connection: [keep-alive] + ParameterSetName: [-n -g --target-instance-count] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:11:11 GMT'] + date: ['Thu, 17 Jan 2019 11:08:17 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1603,25 +1561,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:11:41 GMT'] + date: ['Thu, 17 Jan 2019 11:08:48 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1632,25 +1588,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:12:13 GMT'] + date: ['Thu, 17 Jan 2019 11:09:18 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1661,25 +1615,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:12:43 GMT'] + date: ['Thu, 17 Jan 2019 11:09:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1690,25 +1642,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:13:14 GMT'] + date: ['Thu, 17 Jan 2019 11:10:20 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1719,25 +1669,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:13:46 GMT'] + date: ['Thu, 17 Jan 2019 11:10:51 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1748,25 +1696,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:14:16 GMT'] + date: ['Thu, 17 Jan 2019 11:11:21 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1777,25 +1723,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:14:46 GMT'] + date: ['Thu, 17 Jan 2019 11:11:52 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1806,25 +1750,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:15:17 GMT'] + date: ['Thu, 17 Jan 2019 11:12:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1835,25 +1777,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:15:48 GMT'] + date: ['Thu, 17 Jan 2019 11:12:54 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1864,25 +1804,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:16:19 GMT'] + date: ['Thu, 17 Jan 2019 11:13:24 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1893,25 +1831,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:16:49 GMT'] + date: ['Thu, 17 Jan 2019 11:13:55 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1922,25 +1858,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:17:20 GMT'] + date: ['Thu, 17 Jan 2019 11:14:25 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1951,25 +1885,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:17:50 GMT'] + date: ['Thu, 17 Jan 2019 11:14:56 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1980,25 +1912,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:18:21 GMT'] + date: ['Thu, 17 Jan 2019 11:15:27 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -2009,25 +1939,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:18:52 GMT'] + date: ['Thu, 17 Jan 2019 11:15:58 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -2038,25 +1966,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:19:23 GMT'] + date: ['Thu, 17 Jan 2019 11:16:28 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -2067,25 +1993,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:19:54 GMT'] + date: ['Thu, 17 Jan 2019 11:16: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -2096,25 +2020,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:20:25 GMT'] + date: ['Thu, 17 Jan 2019 11:17:30 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -2125,25 +2047,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:20:55 GMT'] + date: ['Thu, 17 Jan 2019 11:18:01 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -2154,25 +2074,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:21:26 GMT'] + date: ['Thu, 17 Jan 2019 11:18:31 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -2183,25 +2101,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:21:59 GMT'] + date: ['Thu, 17 Jan 2019 11:19:03 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -2212,25 +2128,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:22:30 GMT'] + date: ['Thu, 17 Jan 2019 11:19:34 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -2241,25 +2155,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g --target-instance-count] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ee3b79a2-996d-43c5-a5b6-dadd49597531-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/13f64dda-99eb-451e-affe-a08b63cd4222-0-r?api-version=2018-06-01-preview response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:23:01 GMT'] + date: ['Thu, 17 Jan 2019 11:20: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -2270,27 +2182,25 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"4e29f9bf-8dcf-42d2-8572-b6bd37fce5e0","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T06:46:49.087","quotaInfo":{"coresUsed":16},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"42ea9258-5ce2-47cf-ac24-5e2c95ca8099","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-17T10:43:37.36","quotaInfo":{"coresUsed":16},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"67ce67fe-e25c-4969-8379-43e83795440a","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1468'] + content-length: ['1628'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:23:03 GMT'] + date: ['Thu, 17 Jan 2019 11:20:06 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -2303,7 +2213,7 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [--name --yes --no-wait] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 @@ -2312,9 +2222,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 07:23:06 GMT'] + date: ['Thu, 17 Jan 2019 11:20:08 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRRRFJQUC1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRNNkJNWS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_rserver.yaml b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_rserver.yaml index 443ffeab265..0b918ee3161 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_rserver.yaml +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_rserver.yaml @@ -1,27 +1,27 @@ interactions: - request: - body: '{"location": "northcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-12-19T07:46:49Z"}}' + body: '{"location": "eastus2", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-17T13:03:34Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [group create] Connection: [keep-alive] - Content-Length: ['118'] + Content-Length: ['111'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [--location --name --tag] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"northcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-12-19T07:46:49Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-01-17T13:03:34Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['266'] + content-length: ['259'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:46:53 GMT'] + date: ['Thu, 17 Jan 2019 13:03:39 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -29,17 +29,17 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "northcentralus"}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "eastus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - Content-Length: ['82'] + Content-Length: ['75'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 @@ -49,9 +49,9 @@ interactions: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:46:56 GMT'] + date: ['Thu, 17 Jan 2019 13:03:42 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/a1826d09-4089-4ba1-a101-8027ac8fd1a7?monitor=true&api-version=2018-07-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/00e6a3c7-b419-498e-99e6-6464be6236f9?monitor=true&api-version=2018-07-01'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -68,16 +68,16 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/a1826d09-4089-4ba1-a101-8027ac8fd1a7?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/00e6a3c7-b419-498e-99e6-6464be6236f9?monitor=true&api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-19T07:46:56.7438885Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-19T07:46:56.7438885Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-19T07:46:56.6657726Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-17T13:03:42.6872513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-17T13:03:42.6872513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-17T13:03:42.5309907Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['1122'] + content-length: ['1108'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 07:47:14 GMT'] + date: ['Thu, 17 Jan 2019 13:03:59 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -97,19 +97,17 @@ interactions: Content-Length: ['0'] ParameterSetName: [-n -g --query -o] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"keys": [{"keyName": "key1", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}, {"keyName": "key2", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 07:47:16 GMT'] + date: ['Thu, 17 Jan 2019 13:04:01 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -121,10 +119,72 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: - body: 'b''{"location": "northcentralus", "properties": {"clusterVersion": "3.6", - "osType": "Linux", "clusterDefinition": {"kind": "rserver", "configurations": - {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": - "admin", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + -t --edgenode-size -v] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 + response: + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-17T13:03:42.6872513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-17T13:03:42.6872513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-17T13:03:42.5309907Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} + headers: + cache-control: [no-cache] + content-length: ['1108'] + content-type: [application/json] + date: ['Thu, 17 Jan 2019 13:04:03 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + Content-Length: ['0'] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + -t --edgenode-size -v] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 + response: + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} + headers: + cache-control: [no-cache] + content-length: ['288'] + content-type: [application/json] + date: ['Thu, 17 Jan 2019 13:04:04 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 200, message: OK} +- request: + body: 'b''{"location": "eastus2", "properties": {"clusterVersion": "3.6", "osType": + "Linux", "clusterDefinition": {"kind": "rserver", "configurations": {"gateway": + {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": "admin", + "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, @@ -133,41 +193,39 @@ interactions: 1, "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": - "default", "key": "FjwJbCLAI4Ph1Jd9VNlZb1r/s9cbrsGAtlBHcYPd4KbCzJgxjEgjend/iEQuQDXxvA0TEWdFh4X2F1lRNkBzWA=="}]}}}''' + "default", "key": "veryFakedStorageAccountKey=="}]}}, "identity": {"type": "SystemAssigned"}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - Content-Length: ['1121'] + Content-Length: ['1154'] Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"f35e20f5-6f6d-4046-b9e6-f40ad1d73215","tags":null,"properties":{"clusterVersion":"3.6.1000.0","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/rserver-3.6.1000.0.1812120705.json","kind":"rserver","componentVersion":{"spark":"2.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2018-12-19T07:47:22.347","quotaInfo":{"coresUsed":24},"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"cc3c1ac0-a226-4744-be33-10096d986aef","tags":null,"properties":{"clusterVersion":"3.6.1000.0","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/rserver-3.6.1000.0.1901050618.json","kind":"rserver","componentVersion":{"spark":"2.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2019-01-17T13:04:12.153","quotaInfo":{"coresUsed":24},"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"02aa581b-b5b1-4a0c-984a-c9434b459ea5","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] cache-control: [no-cache] - content-length: ['1238'] + content-length: ['1399'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:47:22 GMT'] - etag: ['"f35e20f5-6f6d-4046-b9e6-f40ad1d73215"'] + date: ['Thu, 17 Jan 2019 13:04:12 GMT'] + etag: ['"cc3c1ac0-a226-4744-be33-10096d986aef"'] 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-hdi-clusteruri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-ldko4/providers/Microsoft.HDInsight/clusters/hdicli-zq4zedms4?api-version=2018-06-01-preview'] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-clusteruri: ['https://management.azure.com/subscriptions/f5d3a199-7c91-4db1-b074-8b45561beadb/resourceGroups/hdicli-w2p6g/providers/Microsoft.HDInsight/clusters/hdicli-qwzug33zq?api-version=2018-06-01-preview'] + x-ms-hdi-served-by: [southcentralus] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: @@ -177,10 +235,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -189,16 +247,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:47:53 GMT'] + date: ['Thu, 17 Jan 2019 13:04:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -207,10 +263,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -219,16 +275,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:48:24 GMT'] + date: ['Thu, 17 Jan 2019 13:05:15 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -237,10 +291,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -249,16 +303,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:48:55 GMT'] + date: ['Thu, 17 Jan 2019 13:05:46 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -267,10 +319,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -279,16 +331,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:49:26 GMT'] + date: ['Thu, 17 Jan 2019 13:06:17 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -297,10 +347,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -309,16 +359,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:49:57 GMT'] + date: ['Thu, 17 Jan 2019 13:06:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -327,10 +375,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -339,16 +387,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:50:28 GMT'] + date: ['Thu, 17 Jan 2019 13:07:20 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -357,10 +403,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -369,16 +415,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:50:59 GMT'] + date: ['Thu, 17 Jan 2019 13:07:51 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -387,10 +431,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -399,16 +443,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:51:31 GMT'] + date: ['Thu, 17 Jan 2019 13:08:22 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -417,10 +459,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -429,16 +471,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:52:02 GMT'] + date: ['Thu, 17 Jan 2019 13:08:53 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -447,10 +487,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -459,16 +499,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:52:32 GMT'] + date: ['Thu, 17 Jan 2019 13:09:25 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -477,10 +515,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -489,16 +527,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:53:03 GMT'] + date: ['Thu, 17 Jan 2019 13:09:56 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -507,10 +543,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -519,16 +555,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:53:34 GMT'] + date: ['Thu, 17 Jan 2019 13:10:27 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -537,10 +571,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -549,16 +583,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:54:05 GMT'] + date: ['Thu, 17 Jan 2019 13:10:57 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -567,10 +599,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -579,16 +611,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:54:36 GMT'] + date: ['Thu, 17 Jan 2019 13:11:29 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -597,10 +627,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -609,16 +639,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:55:08 GMT'] + date: ['Thu, 17 Jan 2019 13:12:00 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -627,10 +655,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -639,16 +667,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:55:39 GMT'] + date: ['Thu, 17 Jan 2019 13:12:31 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -657,10 +683,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -669,16 +695,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:56:10 GMT'] + date: ['Thu, 17 Jan 2019 13:13:02 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -687,10 +711,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -699,16 +723,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:56:41 GMT'] + date: ['Thu, 17 Jan 2019 13:13:34 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -717,10 +739,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -729,16 +751,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:57:11 GMT'] + date: ['Thu, 17 Jan 2019 13:14:05 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -747,10 +767,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -759,16 +779,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:57:42 GMT'] + date: ['Thu, 17 Jan 2019 13:14:37 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -777,10 +795,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -789,16 +807,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:58:13 GMT'] + date: ['Thu, 17 Jan 2019 13:15:08 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -807,10 +823,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -819,16 +835,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:58:44 GMT'] + date: ['Thu, 17 Jan 2019 13:15:39 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -837,10 +851,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -849,16 +863,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:59:15 GMT'] + date: ['Thu, 17 Jan 2019 13:16:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -867,10 +879,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -879,16 +891,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 07:59:46 GMT'] + date: ['Thu, 17 Jan 2019 13:16:42 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -897,10 +907,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -909,16 +919,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:00:17 GMT'] + date: ['Thu, 17 Jan 2019 13:17:13 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -927,10 +935,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -939,16 +947,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:00:48 GMT'] + date: ['Thu, 17 Jan 2019 13:17:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -957,10 +963,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -969,16 +975,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:01:20 GMT'] + date: ['Thu, 17 Jan 2019 13:18:16 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -987,10 +991,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -999,16 +1003,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:01:50 GMT'] + date: ['Thu, 17 Jan 2019 13:18:47 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1017,10 +1019,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1029,16 +1031,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:02:21 GMT'] + date: ['Thu, 17 Jan 2019 13:19:18 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1047,10 +1047,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1059,16 +1059,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:02:52 GMT'] + date: ['Thu, 17 Jan 2019 13:19:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1077,10 +1075,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1089,16 +1087,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:03:23 GMT'] + date: ['Thu, 17 Jan 2019 13:20:20 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1107,10 +1103,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1119,16 +1115,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:03:54 GMT'] + date: ['Thu, 17 Jan 2019 13:20:52 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1137,10 +1131,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1149,16 +1143,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:04:26 GMT'] + date: ['Thu, 17 Jan 2019 13:21:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1167,10 +1159,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1179,16 +1171,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:04:57 GMT'] + date: ['Thu, 17 Jan 2019 13:21:54 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1197,10 +1187,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1209,16 +1199,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:05:28 GMT'] + date: ['Thu, 17 Jan 2019 13:22:26 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1227,10 +1215,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1239,16 +1227,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:05:58 GMT'] + date: ['Thu, 17 Jan 2019 13:22:56 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1257,10 +1243,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1269,16 +1255,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:06:30 GMT'] + date: ['Thu, 17 Jan 2019 13:23:28 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1287,10 +1271,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1299,16 +1283,14 @@ interactions: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:07:00 GMT'] + date: ['Thu, 17 Jan 2019 13:23: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1317,29 +1299,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --edgenode-size -v] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"f35e20f5-6f6d-4046-b9e6-f40ad1d73215","tags":null,"properties":{"clusterVersion":"3.6.1000.0","clusterHdpVersion":"2.6.2.38-1","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/rserver-3.6.1000.0.1812120705.json","kind":"rserver","componentVersion":{"spark":"2.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T07:47:22.347","quotaInfo":{"coresUsed":24},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"EDGESSH","protocol":"TCP","location":"hdicli-000003-ed-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"cc3c1ac0-a226-4744-be33-10096d986aef","tags":null,"properties":{"clusterVersion":"3.6.1000.0","clusterHdpVersion":"2.6.2.38-1","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/rserver-3.6.1000.0.1901050618.json","kind":"rserver","componentVersion":{"spark":"2.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-17T13:04:12.153","quotaInfo":{"coresUsed":24},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"EDGESSH","protocol":"TCP","location":"hdicli-000003-ed-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"fed63e46-6cd4-4935-94b7-ac306c3cae57","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1742'] + content-length: ['1903'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:07:02 GMT'] + date: ['Thu, 17 Jan 2019 13:24:00 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1350,27 +1330,25 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"f35e20f5-6f6d-4046-b9e6-f40ad1d73215","tags":null,"properties":{"clusterVersion":"3.6.1000.0","clusterHdpVersion":"2.6.2.38-1","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/rserver-3.6.1000.0.1812120705.json","kind":"rserver","componentVersion":{"spark":"2.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T07:47:22.347","quotaInfo":{"coresUsed":24},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"EDGESSH","protocol":"TCP","location":"hdicli-000003-ed-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"cc3c1ac0-a226-4744-be33-10096d986aef","tags":null,"properties":{"clusterVersion":"3.6.1000.0","clusterHdpVersion":"2.6.2.38-1","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/rserver-3.6.1000.0.1901050618.json","kind":"rserver","componentVersion":{"spark":"2.1"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-17T13:04:12.153","quotaInfo":{"coresUsed":24},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"EDGESSH","protocol":"TCP","location":"hdicli-000003-ed-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"fed63e46-6cd4-4935-94b7-ac306c3cae57","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1742'] + content-length: ['1903'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:07:04 GMT'] + date: ['Thu, 17 Jan 2019 13:24:02 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1383,7 +1361,7 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [--name --yes --no-wait] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 @@ -1392,9 +1370,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 08:07:05 GMT'] + date: ['Thu, 17 Jan 2019 13:24:05 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRMREtPNC1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRXMlA2Ry1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_cluster_config.yaml b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_cluster_config.yaml index 9b86e7bcbba..8f0ddcf6c9b 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_cluster_config.yaml +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_cluster_config.yaml @@ -1,27 +1,27 @@ interactions: - request: - body: '{"location": "northcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-12-19T08:40:58Z"}}' + body: '{"location": "eastus2", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-18T02:47:45Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [group create] Connection: [keep-alive] - Content-Length: ['118'] + Content-Length: ['111'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [--location --name --tag] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"northcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-12-19T08:40:58Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-01-18T02:47:45Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['266'] + content-length: ['259'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:41:03 GMT'] + date: ['Fri, 18 Jan 2019 02:47:54 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -29,17 +29,17 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "northcentralus"}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "eastus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - Content-Length: ['82'] + Content-Length: ['75'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 @@ -49,15 +49,15 @@ interactions: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:41:05 GMT'] + date: ['Fri, 18 Jan 2019 02:47:58 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/15752973-cb49-4158-baae-6019d8e22ee5?monitor=true&api-version=2018-07-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/d4641974-8a0e-49e2-b37f-7f0f879fc11c?monitor=true&api-version=2018-07-01'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -68,16 +68,16 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/15752973-cb49-4158-baae-6019d8e22ee5?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/d4641974-8a0e-49e2-b37f-7f0f879fc11c?monitor=true&api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-19T08:41:05.6322256Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-19T08:41:05.6322256Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-19T08:41:05.5853805Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-18T02:47:58.6874281Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-18T02:47:58.6874281Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-18T02:47:58.5155503Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['1122'] + content-length: ['1108'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 08:41:22 GMT'] + date: ['Fri, 18 Jan 2019 02:48:16 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -97,19 +97,17 @@ interactions: Content-Length: ['0'] ParameterSetName: [-n -g --query -o] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"keys": [{"keyName": "key1", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}, {"keyName": "key2", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 08:41:24 GMT'] + date: ['Fri, 18 Jan 2019 02:48:18 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -118,55 +116,37 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: - body: 'b''{"location": "northcentralus", "properties": {"clusterVersion": "default", - "osType": "Linux", "clusterDefinition": {"kind": "spark", "configurations": - {"gateway": {"restAuthCredential.username": "admin", "restAuthCredential.isEnabled": - "true", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": - [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": - "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", - "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, - "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": - {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": - [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": - "default", "key": "s+BC8LTpA+EbPklXdD7uuOHN3HmPXPrEkwhct5ehQYsJ7NhGqpwVq9+x9Rh/WpacB3Hs9QHUaXzNNRPWzOUNOg=="}]}}}''' + body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"4f8db3a3-ad54-4004-b68f-065db8c832bc","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2018-12-19T08:41:30.987","quotaInfo":{"coresUsed":20},"tier":"standard"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-18T02:47:58.6874281Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-18T02:47:58.6874281Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-18T02:47:58.5155503Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] cache-control: [no-cache] - content-length: ['1063'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:41:31 GMT'] - etag: ['"4f8db3a3-ad54-4004-b68f-065db8c832bc"'] + content-length: ['1108'] + content-type: [application/json] + date: ['Fri, 18 Jan 2019 02:48:19 GMT'] expires: ['-1'] pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-clusteruri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-dfe3a/providers/Microsoft.HDInsight/clusters/hdicli-atnhvocpq?api-version=2018-06-01-preview'] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -175,58 +155,76 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + Content-Length: ['0'] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"status":"InProgress"}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:42:02 GMT'] + content-length: ['288'] + content-type: [application/json] + date: ['Fri, 18 Jan 2019 02:48:20 GMT'] expires: ['-1'] pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: - body: null + body: 'b''{"location": "eastus2", "properties": {"clusterVersion": "default", + "osType": "Linux", "clusterDefinition": {"kind": "spark", "configurations": + {"gateway": {"restAuthCredential.username": "admin", "restAuthCredential.isEnabled": + "true", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": + [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": + "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", + "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, + "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": + {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": + [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": + "default", "key": "veryFakedStorageAccountKey=="}]}}, "identity": {"type": "SystemAssigned"}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + Content-Length: ['971'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"status":"InProgress"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"48657e31-8fa5-4f83-a2fa-d5bbeca21564","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2019-01-18T02:48:33.283","quotaInfo":{"coresUsed":20},"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"e927ce4e-e2cd-4a55-b55b-efe5ce434349","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] cache-control: [no-cache] - content-length: ['23'] + content-length: ['1224'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:42:33 GMT'] + date: ['Fri, 18 Jan 2019 02:48:33 GMT'] + etag: ['"48657e31-8fa5-4f83-a2fa-d5bbeca21564"'] 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-clusteruri: ['https://management.azure.com/subscriptions/f5d3a199-7c91-4db1-b074-8b45561beadb/resourceGroups/hdicli-enf4r/providers/Microsoft.HDInsight/clusters/hdicli-tk7n4qjuu?api-version=2018-06-01-preview'] + x-ms-hdi-served-by: [southcentralus] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -235,10 +233,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -247,16 +245,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:43:03 GMT'] + date: ['Fri, 18 Jan 2019 02:49: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -265,10 +261,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -277,16 +273,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:43:34 GMT'] + date: ['Fri, 18 Jan 2019 02:49:35 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -295,10 +289,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -307,16 +301,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:44:06 GMT'] + date: ['Fri, 18 Jan 2019 02:50:07 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -325,10 +317,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -337,16 +329,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:44:37 GMT'] + date: ['Fri, 18 Jan 2019 02:50:38 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -355,10 +345,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -367,16 +357,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:45:07 GMT'] + date: ['Fri, 18 Jan 2019 02:51:09 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -385,10 +373,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -397,16 +385,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:45:39 GMT'] + date: ['Fri, 18 Jan 2019 02:51:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -415,10 +401,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -427,16 +413,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:46:10 GMT'] + date: ['Fri, 18 Jan 2019 02:52:12 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -445,10 +429,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -457,16 +441,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:46:41 GMT'] + date: ['Fri, 18 Jan 2019 02:52:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -475,10 +457,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -487,16 +469,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:47:12 GMT'] + date: ['Fri, 18 Jan 2019 02:53:15 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -505,10 +485,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -517,16 +497,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:47:43 GMT'] + date: ['Fri, 18 Jan 2019 02:53:47 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -535,10 +513,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -547,16 +525,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:48:14 GMT'] + date: ['Fri, 18 Jan 2019 02:54:18 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -565,10 +541,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -577,16 +553,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:48:45 GMT'] + date: ['Fri, 18 Jan 2019 02:54:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -595,10 +569,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -607,16 +581,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:49:16 GMT'] + date: ['Fri, 18 Jan 2019 02:55:20 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -625,10 +597,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -637,16 +609,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:49:47 GMT'] + date: ['Fri, 18 Jan 2019 02:55:52 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -655,10 +625,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -667,16 +637,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:50:18 GMT'] + date: ['Fri, 18 Jan 2019 02:56:22 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -685,10 +653,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -697,16 +665,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:50:49 GMT'] + date: ['Fri, 18 Jan 2019 02:56:54 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -715,10 +681,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -727,16 +693,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:51:21 GMT'] + date: ['Fri, 18 Jan 2019 02:57:26 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -745,10 +709,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,16 +721,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:51:52 GMT'] + date: ['Fri, 18 Jan 2019 02:57:57 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -775,10 +737,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -787,16 +749,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:52:22 GMT'] + date: ['Fri, 18 Jan 2019 02:58:27 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -805,10 +765,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -817,16 +777,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:52:54 GMT'] + date: ['Fri, 18 Jan 2019 02:58: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -835,10 +793,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -847,16 +805,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:53:24 GMT'] + date: ['Fri, 18 Jan 2019 02:59:30 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -865,10 +821,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -877,16 +833,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:53:55 GMT'] + date: ['Fri, 18 Jan 2019 03:00:02 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -895,10 +849,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -907,16 +861,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:54:27 GMT'] + date: ['Fri, 18 Jan 2019 03:00:33 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -925,10 +877,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -937,16 +889,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:54:57 GMT'] + date: ['Fri, 18 Jan 2019 03:01: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -955,10 +905,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -967,16 +917,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:55:28 GMT'] + date: ['Fri, 18 Jan 2019 03:01:36 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -985,10 +933,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -997,16 +945,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:56:00 GMT'] + date: ['Fri, 18 Jan 2019 03:02:07 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1015,10 +961,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1027,16 +973,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:56:30 GMT'] + date: ['Fri, 18 Jan 2019 03:02:39 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1045,10 +989,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1057,16 +1001,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:57:02 GMT'] + date: ['Fri, 18 Jan 2019 03:03:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1075,10 +1017,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1087,16 +1029,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:57:33 GMT'] + date: ['Fri, 18 Jan 2019 03:03:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1105,10 +1045,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1117,16 +1057,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:58:03 GMT'] + date: ['Fri, 18 Jan 2019 03:04:12 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1135,10 +1073,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1147,16 +1085,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:58:35 GMT'] + date: ['Fri, 18 Jan 2019 03:04:43 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1165,10 +1101,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1177,16 +1113,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:59:06 GMT'] + date: ['Fri, 18 Jan 2019 03:05:15 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1195,10 +1129,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1207,16 +1141,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 08:59:36 GMT'] + date: ['Fri, 18 Jan 2019 03:05:46 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1225,10 +1157,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1237,16 +1169,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:00:08 GMT'] + date: ['Fri, 18 Jan 2019 03:06:17 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1255,10 +1185,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1267,16 +1197,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:00:39 GMT'] + date: ['Fri, 18 Jan 2019 03:06:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1285,10 +1213,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1297,16 +1225,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:01:10 GMT'] + date: ['Fri, 18 Jan 2019 03:07:20 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1315,10 +1241,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1327,16 +1253,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:01:40 GMT'] + date: ['Fri, 18 Jan 2019 03:07:51 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1345,10 +1269,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1357,16 +1281,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:02:12 GMT'] + date: ['Fri, 18 Jan 2019 03:08:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1375,10 +1297,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1387,16 +1309,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:02:42 GMT'] + date: ['Fri, 18 Jan 2019 03:08:53 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1405,10 +1325,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1417,16 +1337,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:03:14 GMT'] + date: ['Fri, 18 Jan 2019 03:09:25 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1435,10 +1353,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1447,16 +1365,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:03:45 GMT'] + date: ['Fri, 18 Jan 2019 03:09:57 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1465,10 +1381,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1477,16 +1393,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:04:17 GMT'] + date: ['Fri, 18 Jan 2019 03:10:28 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1495,10 +1409,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1507,16 +1421,14 @@ interactions: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:04:48 GMT'] + date: ['Fri, 18 Jan 2019 03:10: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1525,29 +1437,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --cluster-configurations] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"4f8db3a3-ad54-4004-b68f-065db8c832bc","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T08:41:30.987","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"48657e31-8fa5-4f83-a2fa-d5bbeca21564","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-18T02:48:33.283","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"7df5badd-d878-4a1f-bd40-49badf9c60df","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1468'] + content-length: ['1629'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:04:50 GMT'] + date: ['Fri, 18 Jan 2019 03:11:00 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1558,27 +1468,25 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"4f8db3a3-ad54-4004-b68f-065db8c832bc","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T08:41:30.987","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"48657e31-8fa5-4f83-a2fa-d5bbeca21564","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-18T02:48:33.283","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"7df5badd-d878-4a1f-bd40-49badf9c60df","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1468'] + content-length: ['1629'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:04:53 GMT'] + date: ['Fri, 18 Jan 2019 03:11:03 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1591,7 +1499,7 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [--name --yes --no-wait] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 @@ -1600,9 +1508,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 09:04:55 GMT'] + date: ['Fri, 18 Jan 2019 03:11:05 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRERkUzQS1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRFTkY0Ui1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_component_version.yaml b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_component_version.yaml index 24e660eaf86..973cdf7b98f 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_component_version.yaml +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_component_version.yaml @@ -1,45 +1,45 @@ interactions: - request: - body: '{"location": "northcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-12-19T09:20:29Z"}}' + body: '{"location": "eastus2", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-17T13:32:02Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [group create] Connection: [keep-alive] - Content-Length: ['118'] + Content-Length: ['111'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [--location --name --tag] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"northcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-12-19T09:20:29Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-01-17T13:32:02Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['266'] + content-length: ['259'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:20:35 GMT'] + date: ['Thu, 17 Jan 2019 13:32:08 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'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "northcentralus"}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "eastus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - Content-Length: ['82'] + Content-Length: ['75'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 @@ -49,9 +49,9 @@ interactions: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:20:39 GMT'] + date: ['Thu, 17 Jan 2019 13:32:11 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/10268a2f-3bee-4438-a799-ba84cdef9016?monitor=true&api-version=2018-07-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/c5c87230-9a41-4e23-9a29-e1d4b4d6fea4?monitor=true&api-version=2018-07-01'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -68,16 +68,16 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/10268a2f-3bee-4438-a799-ba84cdef9016?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/c5c87230-9a41-4e23-9a29-e1d4b4d6fea4?monitor=true&api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-19T09:20:40.0205660Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-19T09:20:40.0205660Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-19T09:20:39.9580881Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-17T13:32:11.3051967Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-17T13:32:11.3051967Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-17T13:32:11.1333019Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['1122'] + content-length: ['1108'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 09:20:57 GMT'] + date: ['Thu, 17 Jan 2019 13:32:28 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -97,19 +97,17 @@ interactions: Content-Length: ['0'] ParameterSetName: [-n -g --query -o] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"keys": [{"keyName": "key1", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}, {"keyName": "key2", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 09:20:59 GMT'] + date: ['Thu, 17 Jan 2019 13:32:29 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -121,7 +119,69 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: - body: 'b''{"location": "northcentralus", "properties": {"clusterVersion": "default", + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + -t --component-version] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 + response: + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-17T13:32:11.3051967Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-17T13:32:11.3051967Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-17T13:32:11.1333019Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} + headers: + cache-control: [no-cache] + content-length: ['1108'] + content-type: [application/json] + date: ['Thu, 17 Jan 2019 13:32:31 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + Content-Length: ['0'] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + -t --component-version] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 + response: + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} + headers: + cache-control: [no-cache] + content-length: ['288'] + content-type: [application/json] + date: ['Thu, 17 Jan 2019 13:32:32 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] + status: {code: 200, message: OK} +- request: + body: 'b''{"location": "eastus2", "properties": {"clusterVersion": "default", "osType": "Linux", "clusterDefinition": {"kind": "spark", "componentVersion": {"spark": "2.2"}, "configurations": {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": "admin", "restAuthCredential.password": @@ -131,42 +191,153 @@ interactions: "targetInstanceCount": 3, "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdicli000002.blob.core.windows.net", - "isDefault": true, "container": "default", "key": "It6kVV5Ok/EaTkMo5mAJhc0HgQ1Z5LZ6LpPACxnEXuJrKir/idhsNYPmdnSawLyAclcgVN8JH/uuGh1M1ZSIsA=="}]}}}''' + "isDefault": true, "container": "default", "key": "veryFakedStorageAccountKey=="}]}}, + "identity": {"type": "SystemAssigned"}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - Content-Length: ['976'] + Content-Length: ['1009'] Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"1d6923be-1686-4158-8d39-48899abbfebd","tags":null,"properties":{"clusterVersion":"3.6.1000.3","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json","kind":"spark","componentVersion":{"spark":"2.2"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2018-12-19T09:21:05.093","quotaInfo":{"coresUsed":20},"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"ef7692dd-f162-4ad9-b8a6-ffa5784af171","tags":null,"properties":{"clusterVersion":"3.6.1000.3","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json","kind":"spark","componentVersion":{"spark":"2.2"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2019-01-17T13:32:39.683","quotaInfo":{"coresUsed":20},"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"6c590f05-0d0f-4155-a75d-62a016d8a621","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] cache-control: [no-cache] - content-length: ['1061'] + content-length: ['1222'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:21:04 GMT'] - etag: ['"1d6923be-1686-4158-8d39-48899abbfebd"'] + date: ['Thu, 17 Jan 2019 13:32:39 GMT'] + etag: ['"ef7692dd-f162-4ad9-b8a6-ffa5784af171"'] 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-hdi-clusteruri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-qn4uh/providers/Microsoft.HDInsight/clusters/hdicli-dxtelwicm?api-version=2018-06-01-preview'] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-hdi-clusteruri: ['https://management.azure.com/subscriptions/f5d3a199-7c91-4db1-b074-8b45561beadb/resourceGroups/hdicli-ak35f/providers/Microsoft.HDInsight/clusters/hdicli-h4pxoo2my?api-version=2018-06-01-preview'] + x-ms-hdi-served-by: [southcentralus] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + -t --component-version] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 17 Jan 2019 13:33:11 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + -t --component-version] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 17 Jan 2019 13:33:42 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + -t --component-version] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 17 Jan 2019 13:34:14 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + -t --component-version] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 17 Jan 2019 13:34:45 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-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -175,10 +346,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -187,16 +358,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:21:37 GMT'] + date: ['Thu, 17 Jan 2019 13:35:17 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -205,10 +374,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -217,16 +386,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:22:09 GMT'] + date: ['Thu, 17 Jan 2019 13:35:47 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -235,10 +402,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -247,16 +414,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:22:40 GMT'] + date: ['Thu, 17 Jan 2019 13:36:18 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -265,10 +430,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -277,16 +442,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:23:10 GMT'] + date: ['Thu, 17 Jan 2019 13:36:51 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -295,10 +458,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -307,16 +470,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:23:42 GMT'] + date: ['Thu, 17 Jan 2019 13:37:22 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -325,10 +486,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -337,16 +498,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:24:13 GMT'] + date: ['Thu, 17 Jan 2019 13:37:53 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -355,10 +514,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -367,16 +526,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:24:46 GMT'] + date: ['Thu, 17 Jan 2019 13:38:24 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -385,10 +542,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -397,16 +554,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:25:16 GMT'] + date: ['Thu, 17 Jan 2019 13:38:55 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -415,10 +570,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -427,16 +582,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:25:47 GMT'] + date: ['Thu, 17 Jan 2019 13:39:26 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -445,10 +598,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -457,16 +610,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:26:18 GMT'] + date: ['Thu, 17 Jan 2019 13:39:58 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -475,10 +626,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -487,16 +638,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:26:49 GMT'] + date: ['Thu, 17 Jan 2019 13:40:29 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -505,10 +654,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -517,16 +666,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:27:21 GMT'] + date: ['Thu, 17 Jan 2019 13:41:00 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -535,10 +682,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -547,16 +694,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:27:51 GMT'] + date: ['Thu, 17 Jan 2019 13:41:31 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -565,10 +710,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -577,16 +722,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:28:22 GMT'] + date: ['Thu, 17 Jan 2019 13:42:03 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -595,10 +738,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -607,16 +750,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:28:54 GMT'] + date: ['Thu, 17 Jan 2019 13:42:35 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -625,10 +766,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -637,16 +778,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:29:24 GMT'] + date: ['Thu, 17 Jan 2019 13:43:05 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -655,10 +794,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -667,16 +806,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:29:56 GMT'] + date: ['Thu, 17 Jan 2019 13:43:37 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -685,10 +822,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -697,16 +834,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:30:26 GMT'] + date: ['Thu, 17 Jan 2019 13:44:08 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -715,10 +850,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -727,16 +862,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:30:57 GMT'] + date: ['Thu, 17 Jan 2019 13:44:40 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -745,10 +878,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,16 +890,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:31:28 GMT'] + date: ['Thu, 17 Jan 2019 13:45:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -775,10 +906,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -787,16 +918,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:32:00 GMT'] + date: ['Thu, 17 Jan 2019 13:45:42 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -805,10 +934,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -817,16 +946,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:32:31 GMT'] + date: ['Thu, 17 Jan 2019 13:46:13 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -835,10 +962,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -847,16 +974,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:33:02 GMT'] + date: ['Thu, 17 Jan 2019 13:46:45 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -865,10 +990,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -877,16 +1002,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:33:33 GMT'] + date: ['Thu, 17 Jan 2019 13:47:15 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -895,10 +1018,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -907,16 +1030,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:34:04 GMT'] + date: ['Thu, 17 Jan 2019 13:47:47 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -925,10 +1046,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -937,16 +1058,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:34:35 GMT'] + date: ['Thu, 17 Jan 2019 13:48:19 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -955,10 +1074,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -967,16 +1086,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:35:06 GMT'] + date: ['Thu, 17 Jan 2019 13:48:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -985,10 +1102,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -997,16 +1114,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:35:39 GMT'] + date: ['Thu, 17 Jan 2019 13:49:21 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1015,10 +1130,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1027,16 +1142,14 @@ interactions: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:36:10 GMT'] + date: ['Thu, 17 Jan 2019 13:49:52 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1045,29 +1158,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container -t --component-version] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"1d6923be-1686-4158-8d39-48899abbfebd","tags":null,"properties":{"clusterVersion":"3.6.1000.3","clusterHdpVersion":"2.6.3.84-1","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json","kind":"spark","componentVersion":{"spark":"2.2"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T09:21:05.093","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"ef7692dd-f162-4ad9-b8a6-ffa5784af171","tags":null,"properties":{"clusterVersion":"3.6.1000.3","clusterHdpVersion":"2.6.3.84-1","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json","kind":"spark","componentVersion":{"spark":"2.2"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-17T13:32:39.683","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"de4dc649-af66-4a05-b2cc-4e2bfe36b591","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1463'] + content-length: ['1624'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:36:11 GMT'] + date: ['Thu, 17 Jan 2019 13:49:54 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1078,27 +1189,25 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"1d6923be-1686-4158-8d39-48899abbfebd","tags":null,"properties":{"clusterVersion":"3.6.1000.3","clusterHdpVersion":"2.6.3.84-1","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json","kind":"spark","componentVersion":{"spark":"2.2"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T09:21:05.093","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"ef7692dd-f162-4ad9-b8a6-ffa5784af171","tags":null,"properties":{"clusterVersion":"3.6.1000.3","clusterHdpVersion":"2.6.3.84-1","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json","kind":"spark","componentVersion":{"spark":"2.2"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-17T13:32:39.683","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"de4dc649-af66-4a05-b2cc-4e2bfe36b591","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1463'] + content-length: ['1624'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:36:13 GMT'] + date: ['Thu, 17 Jan 2019 13:49:55 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1111,7 +1220,7 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [--name --yes --no-wait] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 @@ -1120,9 +1229,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 09:36:15 GMT'] + date: ['Thu, 17 Jan 2019 13:49:58 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRRTjRVSC1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRBSzM1Ri1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_ssh_creds.yaml b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_ssh_creds.yaml index a58dd25da70..4beda420e26 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_ssh_creds.yaml +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_cluster_with_ssh_creds.yaml @@ -1,27 +1,27 @@ interactions: - request: - body: '{"location": "northcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-12-19T09:43:31Z"}}' + body: '{"location": "eastus2", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-18T03:29:38Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [group create] Connection: [keep-alive] - Content-Length: ['118'] + Content-Length: ['111'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [--location --name --tag] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"northcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-12-19T09:43:31Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-01-18T03:29:38Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['266'] + content-length: ['259'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:43:35 GMT'] + date: ['Fri, 18 Jan 2019 03:29:43 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -29,17 +29,17 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "northcentralus"}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "eastus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - Content-Length: ['82'] + Content-Length: ['75'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 @@ -49,15 +49,15 @@ interactions: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:43:39 GMT'] + date: ['Fri, 18 Jan 2019 03:29:47 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/d19914fd-b40e-4f33-8363-35f6abec77ac?monitor=true&api-version=2018-07-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/6e65138c-3f21-411b-a550-a597ec3f7052?monitor=true&api-version=2018-07-01'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -68,16 +68,16 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/d19914fd-b40e-4f33-8363-35f6abec77ac?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/6e65138c-3f21-411b-a550-a597ec3f7052?monitor=true&api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-19T09:43:39.3312840Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-19T09:43:39.3312840Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-19T09:43:38.9719123Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-18T03:29:46.7473380Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-18T03:29:46.7473380Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-18T03:29:46.5442051Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['1122'] + content-length: ['1108'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 09:43:56 GMT'] + date: ['Fri, 18 Jan 2019 03:30:04 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -97,19 +97,79 @@ interactions: Content-Length: ['0'] ParameterSetName: [-n -g --query -o] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 + response: + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} + headers: + cache-control: [no-cache] + content-length: ['288'] + content-type: [application/json] + date: ['Fri, 18 Jan 2019 03:30:06 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 + response: + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-18T03:29:46.7473380Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-18T03:29:46.7473380Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-18T03:29:46.5442051Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} + headers: + cache-control: [no-cache] + content-length: ['1108'] + content-type: [application/json] + date: ['Fri, 18 Jan 2019 03:30:06 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + Content-Length: ['0'] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"keys": [{"keyName": "key1", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}, {"keyName": "key2", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 09:43:58 GMT'] + date: ['Fri, 18 Jan 2019 03:30:07 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -121,7 +181,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: - body: 'b''{"location": "northcentralus", "properties": {"clusterVersion": "default", + body: 'b''{"location": "eastus2", "properties": {"clusterVersion": "default", "osType": "Linux", "clusterDefinition": {"kind": "spark", "configurations": {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": "admin", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": @@ -131,41 +191,39 @@ interactions: "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": - "default", "key": "fhkokRyJziwfdEQo+e2aptvg8aCpdCAI5CV4D6IhTO6hDxDPT5JHu2vIfW4kTb9EbLOZB3PSvCT+wfUYTC7d0Q=="}]}}}''' + "default", "key": "veryFakedStorageAccountKey=="}]}}, "identity": {"type": "SystemAssigned"}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - Content-Length: ['938'] + Content-Length: ['971'] Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"0095402c-a8d5-4930-bc40-2f9ebd6840a7","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2018-12-19T09:44:04.453","quotaInfo":{"coresUsed":20},"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"fb029aaa-4106-49b8-aa73-0ed3d9155a81","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2019-01-18T03:30:16.52","quotaInfo":{"coresUsed":20},"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"d6b0bbfb-0246-4bd4-a358-8dcbe0ff7a54","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] cache-control: [no-cache] - content-length: ['1063'] + content-length: ['1223'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:44:05 GMT'] - etag: ['"0095402c-a8d5-4930-bc40-2f9ebd6840a7"'] + date: ['Fri, 18 Jan 2019 03:30:16 GMT'] + etag: ['"fb029aaa-4106-49b8-aa73-0ed3d9155a81"'] 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-hdi-clusteruri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-kz4vm/providers/Microsoft.HDInsight/clusters/hdicli-f5enhlnhe?api-version=2018-06-01-preview'] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-clusteruri: ['https://management.azure.com/subscriptions/f5d3a199-7c91-4db1-b074-8b45561beadb/resourceGroups/hdicli-3d5h5/providers/Microsoft.HDInsight/clusters/hdicli-42zooqn6a?api-version=2018-06-01-preview'] + x-ms-hdi-served-by: [southcentralus] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: @@ -175,10 +233,318 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 03:30:48 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 03:31:19 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 03:31:50 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 03:32:22 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 03:32:53 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 03:33:25 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 03:33:56 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 03:34:27 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 03:34:58 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 03:35:29 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 03:36:01 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-hdi-served-by: [southcentralus] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -187,16 +553,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:44:35 GMT'] + date: ['Fri, 18 Jan 2019 03:36:32 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -205,10 +569,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -217,16 +581,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:45:06 GMT'] + date: ['Fri, 18 Jan 2019 03:37: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -235,10 +597,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -247,16 +609,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:45:38 GMT'] + date: ['Fri, 18 Jan 2019 03:37:35 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -265,10 +625,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -277,16 +637,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:46:08 GMT'] + date: ['Fri, 18 Jan 2019 03:38:07 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -295,10 +653,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -307,16 +665,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:46:40 GMT'] + date: ['Fri, 18 Jan 2019 03:38:38 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -325,10 +681,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -337,16 +693,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:47:11 GMT'] + date: ['Fri, 18 Jan 2019 03:39:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -355,10 +709,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -367,16 +721,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:47:41 GMT'] + date: ['Fri, 18 Jan 2019 03:39:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -385,10 +737,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -397,16 +749,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:48:12 GMT'] + date: ['Fri, 18 Jan 2019 03:40:12 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -415,10 +765,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -427,16 +777,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:48:44 GMT'] + date: ['Fri, 18 Jan 2019 03:40:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -445,10 +793,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -457,16 +805,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:49:15 GMT'] + date: ['Fri, 18 Jan 2019 03:41:17 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -475,10 +821,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -487,16 +833,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:49:45 GMT'] + date: ['Fri, 18 Jan 2019 03:41:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -505,10 +849,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -517,16 +861,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:50:17 GMT'] + date: ['Fri, 18 Jan 2019 03:42:20 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -535,10 +877,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -547,16 +889,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:50:47 GMT'] + date: ['Fri, 18 Jan 2019 03:42:51 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -565,10 +905,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -577,16 +917,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:51:19 GMT'] + date: ['Fri, 18 Jan 2019 03:43:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -595,10 +933,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -607,16 +945,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:51:51 GMT'] + date: ['Fri, 18 Jan 2019 03:43:54 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -625,10 +961,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -637,16 +973,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:52:22 GMT'] + date: ['Fri, 18 Jan 2019 03:44:25 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -655,10 +989,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -667,16 +1001,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:52:53 GMT'] + date: ['Fri, 18 Jan 2019 03:44:57 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -685,10 +1017,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -697,16 +1029,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:53:24 GMT'] + date: ['Fri, 18 Jan 2019 03:45:28 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -715,10 +1045,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -727,16 +1057,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:53:55 GMT'] + date: ['Fri, 18 Jan 2019 03:46:00 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -745,10 +1073,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,16 +1085,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:54:27 GMT'] + date: ['Fri, 18 Jan 2019 03:46:31 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -775,10 +1101,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -787,16 +1113,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:54:58 GMT'] + date: ['Fri, 18 Jan 2019 03:47:02 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -805,10 +1129,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -817,16 +1141,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:55:28 GMT'] + date: ['Fri, 18 Jan 2019 03:47:33 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -835,10 +1157,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -847,16 +1169,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:55:59 GMT'] + date: ['Fri, 18 Jan 2019 03:48:05 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -865,10 +1185,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -877,16 +1197,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:56:31 GMT'] + date: ['Fri, 18 Jan 2019 03:48:35 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -895,10 +1213,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -907,16 +1225,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:57:01 GMT'] + date: ['Fri, 18 Jan 2019 03:49:07 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -925,10 +1241,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -937,16 +1253,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:57:33 GMT'] + date: ['Fri, 18 Jan 2019 03:49:38 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -955,10 +1269,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -967,16 +1281,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:58:03 GMT'] + date: ['Fri, 18 Jan 2019 03:50:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -985,10 +1297,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -997,16 +1309,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:58:34 GMT'] + date: ['Fri, 18 Jan 2019 03:50:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1015,10 +1325,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1027,16 +1337,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:59:05 GMT'] + date: ['Fri, 18 Jan 2019 03:51:13 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1045,10 +1353,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1057,16 +1365,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 09:59:36 GMT'] + date: ['Fri, 18 Jan 2019 03:51:43 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1075,10 +1381,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1087,16 +1393,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:00:08 GMT'] + date: ['Fri, 18 Jan 2019 03:52:15 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1105,10 +1409,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1117,16 +1421,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:00:38 GMT'] + date: ['Fri, 18 Jan 2019 03:52:46 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1135,10 +1437,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1147,16 +1449,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:01:09 GMT'] + date: ['Fri, 18 Jan 2019 03:53:18 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1165,10 +1465,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1177,16 +1477,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:01:40 GMT'] + date: ['Fri, 18 Jan 2019 03:53:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1195,10 +1493,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1207,16 +1505,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:02:12 GMT'] + date: ['Fri, 18 Jan 2019 03:54:20 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1225,10 +1521,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1237,16 +1533,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:02:43 GMT'] + date: ['Fri, 18 Jan 2019 03:54:52 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1255,10 +1549,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1267,16 +1561,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:03:13 GMT'] + date: ['Fri, 18 Jan 2019 03:55:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1285,10 +1577,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1297,16 +1589,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:03:45 GMT'] + date: ['Fri, 18 Jan 2019 03:55:54 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1315,10 +1605,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1327,16 +1617,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:04:16 GMT'] + date: ['Fri, 18 Jan 2019 03:56:25 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1345,10 +1633,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1357,16 +1645,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:04:47 GMT'] + date: ['Fri, 18 Jan 2019 03:56:56 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1375,10 +1661,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1387,16 +1673,14 @@ interactions: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:05:18 GMT'] + date: ['Fri, 18 Jan 2019 03:57:28 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1405,29 +1689,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"0095402c-a8d5-4930-bc40-2f9ebd6840a7","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T09:44:04.453","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"fb029aaa-4106-49b8-aa73-0ed3d9155a81","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-18T03:30:16.52","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"fe601d41-ff1a-4101-86a1-36283dd6e689","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1468'] + content-length: ['1628'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:05:19 GMT'] + date: ['Fri, 18 Jan 2019 03:57:29 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1438,27 +1720,25 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"0095402c-a8d5-4930-bc40-2f9ebd6840a7","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T09:44:04.453","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"fb029aaa-4106-49b8-aa73-0ed3d9155a81","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-18T03:30:16.52","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"fe601d41-ff1a-4101-86a1-36283dd6e689","tenantId":"0cd3df99-e02f-4fd8-a7d8-3b19eeadaba5","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1468'] + content-length: ['1628'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:05:21 GMT'] + date: ['Fri, 18 Jan 2019 03:57:32 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [southcentralus] status: {code: 200, message: OK} - request: body: null @@ -1471,7 +1751,7 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [--name --yes --no-wait] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 @@ -1480,9 +1760,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 10:05:23 GMT'] + date: ['Fri, 18 Jan 2019 03:57:34 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRLWjRWTS1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkQzRDVINS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_oms.yaml b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_oms.yaml index 7bc76474ccb..74b30fc1545 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_oms.yaml +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_oms.yaml @@ -1,27 +1,27 @@ interactions: - request: - body: '{"location": "northcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-12-19T10:53:29Z"}}' + body: '{"location": "eastus2", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-18T07:56:51Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [group create] Connection: [keep-alive] - Content-Length: ['118'] + Content-Length: ['111'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [--location --name --tag] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"northcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-12-19T10:53:29Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-01-18T07:56:51Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['266'] + content-length: ['259'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:53:34 GMT'] + date: ['Fri, 18 Jan 2019 07:56:57 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -29,17 +29,17 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "northcentralus"}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "eastus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - Content-Length: ['82'] + Content-Length: ['75'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 @@ -49,9 +49,9 @@ interactions: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:53:37 GMT'] + date: ['Fri, 18 Jan 2019 07:57:00 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/a2fd606f-400d-42b4-87dc-6a6a13ab31f1?monitor=true&api-version=2018-07-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/49c83468-fc67-4260-b784-76cdaafa0304?monitor=true&api-version=2018-07-01'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -68,16 +68,16 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/a2fd606f-400d-42b4-87dc-6a6a13ab31f1?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/49c83468-fc67-4260-b784-76cdaafa0304?monitor=true&api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-19T10:53:36.9669288Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-19T10:53:36.9669288Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-19T10:53:36.8888187Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-18T07:57:00.3243514Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-18T07:57:00.3243514Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-18T07:57:00.2149586Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['1122'] + content-length: ['1108'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 10:53:54 GMT'] + date: ['Fri, 18 Jan 2019 07:57:17 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -97,19 +97,17 @@ interactions: Content-Length: ['0'] ParameterSetName: [-n -g --query -o] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"keys": [{"keyName": "key1", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}, {"keyName": "key2", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 10:53:56 GMT'] + date: ['Fri, 18 Jan 2019 07:57:19 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -121,7 +119,69 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: - body: 'b''{"location": "northcentralus", "properties": {"clusterVersion": "default", + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 + response: + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-18T07:57:00.3243514Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-18T07:57:00.3243514Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-18T07:57:00.2149586Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} + headers: + cache-control: [no-cache] + content-length: ['1108'] + content-type: [application/json] + date: ['Fri, 18 Jan 2019 07:57:20 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + Content-Length: ['0'] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 + response: + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} + headers: + cache-control: [no-cache] + content-length: ['288'] + content-type: [application/json] + date: ['Fri, 18 Jan 2019 07:57:21 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 200, message: OK} +- request: + body: 'b''{"location": "eastus2", "properties": {"clusterVersion": "default", "osType": "Linux", "clusterDefinition": {"kind": "spark", "configurations": {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": "admin", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": @@ -131,41 +191,39 @@ interactions: "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": - "default", "key": "UBsb8sW8gXEpG9tI3+I+xy93oPusbIccwfEiW2MfHXRRuuLVfmUGCiyBhriRGso+h86Fq97khXmIgtR7m8ZZIw=="}]}}}''' + "default", "key": "veryFakedStorageAccountKey=="}]}}, "identity": {"type": "SystemAssigned"}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - Content-Length: ['938'] + Content-Length: ['971'] Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"68b6dffe-19aa-42d9-8c92-7cd4b7f058b7","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2018-12-19T10:54:01.687","quotaInfo":{"coresUsed":20},"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"33da797a-5873-42fd-9344-a6f82c739042","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2019-01-18T07:57:45.333","quotaInfo":{"coresUsed":20},"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"00cfa6be-53e8-48c6-bc43-0230282460e0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{}}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] cache-control: [no-cache] - content-length: ['1063'] + content-length: ['1224'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:54:01 GMT'] - etag: ['"68b6dffe-19aa-42d9-8c92-7cd4b7f058b7"'] + date: ['Fri, 18 Jan 2019 07:57:45 GMT'] + etag: ['"33da797a-5873-42fd-9344-a6f82c739042"'] 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-hdi-clusteruri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-336ef/providers/Microsoft.HDInsight/clusters/hdicli-ylovdwvzl?api-version=2018-06-01-preview'] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-clusteruri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-kr4m2/providers/Microsoft.HDInsight/clusters/hdicli-dhc2ujfp4?api-version=2018-06-01-preview'] + x-ms-hdi-served-by: [global] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: @@ -175,10 +233,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -187,16 +245,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:54:33 GMT'] + date: ['Fri, 18 Jan 2019 07:58:17 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -205,10 +261,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -217,16 +273,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:55:04 GMT'] + date: ['Fri, 18 Jan 2019 07:58:48 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -235,10 +289,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -247,16 +301,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:55:35 GMT'] + date: ['Fri, 18 Jan 2019 07:59:19 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -265,10 +317,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -277,16 +329,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:56:06 GMT'] + date: ['Fri, 18 Jan 2019 07:59:50 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -295,10 +345,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -307,16 +357,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:56:37 GMT'] + date: ['Fri, 18 Jan 2019 08:00:21 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -325,10 +373,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -337,16 +385,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:57:07 GMT'] + date: ['Fri, 18 Jan 2019 08:00:52 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -355,10 +401,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -367,16 +413,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:57:38 GMT'] + date: ['Fri, 18 Jan 2019 08:01:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -385,10 +429,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -397,16 +441,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:58:09 GMT'] + date: ['Fri, 18 Jan 2019 08:01:54 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -415,10 +457,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -427,16 +469,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:58:40 GMT'] + date: ['Fri, 18 Jan 2019 08:02:25 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -445,10 +485,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -457,16 +497,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:59:11 GMT'] + date: ['Fri, 18 Jan 2019 08:02:56 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -475,10 +513,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -487,16 +525,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 10:59:42 GMT'] + date: ['Fri, 18 Jan 2019 08:03:27 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -505,10 +541,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -517,16 +553,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:00:14 GMT'] + date: ['Fri, 18 Jan 2019 08:03: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -535,10 +569,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -547,16 +581,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:00:44 GMT'] + date: ['Fri, 18 Jan 2019 08:04:29 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -565,10 +597,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -577,16 +609,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:01:15 GMT'] + date: ['Fri, 18 Jan 2019 08:05:01 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -595,10 +625,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -607,16 +637,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:01:46 GMT'] + date: ['Fri, 18 Jan 2019 08:05:32 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -625,10 +653,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -637,16 +665,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:02:18 GMT'] + date: ['Fri, 18 Jan 2019 08:06: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -655,10 +681,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -667,16 +693,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:02:48 GMT'] + date: ['Fri, 18 Jan 2019 08:06:37 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -685,10 +709,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -697,16 +721,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:03:19 GMT'] + date: ['Fri, 18 Jan 2019 08:07:07 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -715,10 +737,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -727,16 +749,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:03:50 GMT'] + date: ['Fri, 18 Jan 2019 08:07:38 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -745,10 +765,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,16 +777,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:04:22 GMT'] + date: ['Fri, 18 Jan 2019 08:08:09 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -775,10 +793,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -787,16 +805,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:04:52 GMT'] + date: ['Fri, 18 Jan 2019 08:08:40 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -805,10 +821,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -817,16 +833,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:05:24 GMT'] + date: ['Fri, 18 Jan 2019 08:09:12 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -835,10 +849,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -847,16 +861,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:05:54 GMT'] + date: ['Fri, 18 Jan 2019 08:09:42 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -865,10 +877,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -877,16 +889,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:06:25 GMT'] + date: ['Fri, 18 Jan 2019 08:10:13 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -895,10 +905,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -907,16 +917,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:06:57 GMT'] + date: ['Fri, 18 Jan 2019 08:10:45 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -925,10 +933,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -937,16 +945,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:07:27 GMT'] + date: ['Fri, 18 Jan 2019 08:11:16 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -955,10 +961,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -967,16 +973,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:07:58 GMT'] + date: ['Fri, 18 Jan 2019 08:11:46 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -985,10 +989,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -997,16 +1001,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:08:29 GMT'] + date: ['Fri, 18 Jan 2019 08:12:18 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1015,10 +1017,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1027,16 +1029,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:09:00 GMT'] + date: ['Fri, 18 Jan 2019 08:12:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1045,10 +1045,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1057,16 +1057,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:09:31 GMT'] + date: ['Fri, 18 Jan 2019 08:13:20 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1075,10 +1073,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1087,16 +1085,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:10:01 GMT'] + date: ['Fri, 18 Jan 2019 08:13:50 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1105,10 +1101,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1117,16 +1113,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:10:32 GMT'] + date: ['Fri, 18 Jan 2019 08:14:22 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1135,10 +1129,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1147,16 +1141,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:11:04 GMT'] + date: ['Fri, 18 Jan 2019 08:14:53 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1165,10 +1157,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1177,16 +1169,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:11:35 GMT'] + date: ['Fri, 18 Jan 2019 08:15:24 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1195,10 +1185,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1207,16 +1197,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:12:06 GMT'] + date: ['Fri, 18 Jan 2019 08:15:55 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1225,10 +1213,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1237,16 +1225,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:12:37 GMT'] + date: ['Fri, 18 Jan 2019 08:16:26 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1255,10 +1241,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1267,16 +1253,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:13:08 GMT'] + date: ['Fri, 18 Jan 2019 08:16:57 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1285,10 +1269,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1297,16 +1281,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:13:39 GMT'] + date: ['Fri, 18 Jan 2019 08:17:28 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1315,10 +1297,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1327,16 +1309,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:14:10 GMT'] + date: ['Fri, 18 Jan 2019 08:17: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1345,10 +1325,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1357,16 +1337,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:14:41 GMT'] + date: ['Fri, 18 Jan 2019 08:18:30 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1375,10 +1353,38 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 08:19:01 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-hdi-served-by: [global] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight create] + Connection: [keep-alive] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container + --ssh-user --ssh-password] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1387,16 +1393,14 @@ interactions: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:15:12 GMT'] + date: ['Fri, 18 Jan 2019 08:19:32 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1405,29 +1409,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"68b6dffe-19aa-42d9-8c92-7cd4b7f058b7","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T10:54:01.687","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"33da797a-5873-42fd-9344-a6f82c739042","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-18T07:57:45.333","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"4c278a1e-74b9-4981-932b-8cbc20a9f851","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1468'] + content-length: ['1629'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:15:13 GMT'] + date: ['Fri, 18 Jan 2019 08:19:34 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1438,27 +1440,25 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"68b6dffe-19aa-42d9-8c92-7cd4b7f058b7","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T10:54:01.687","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"33da797a-5873-42fd-9344-a6f82c739042","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-18T07:57:45.333","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"4c278a1e-74b9-4981-932b-8cbc20a9f851","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1468'] + content-length: ['1629'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:15:15 GMT'] + date: ['Fri, 18 Jan 2019 08:19:36 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1469,7 +1469,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/extensions/clustermonitoring?api-version=2018-06-01-preview @@ -1479,16 +1479,14 @@ interactions: cache-control: [no-cache] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:15:16 GMT'] + date: ['Fri, 18 Jan 2019 08:19:38 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: '{"workspaceId": "1d364e89-bb71-4503-aa3d-a23535aea7bd"}' @@ -1501,25 +1499,23 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [-g -n --workspace-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/extensions/clustermonitoring?api-version=2018-06-01-preview response: body: {string: ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ceed5af0-eaf6-40d3-8d96-cfe059bd3a85-0?api-version=2018-06-01-preview'] cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 11:15:19 GMT'] + date: ['Fri, 18 Jan 2019 08:19:41 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/operationresults/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/operationresults/ceed5af0-eaf6-40d3-8d96-cfe059bd3a85-0?api-version=2018-06-01-preview'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: @@ -1531,83 +1527,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --workspace-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview - response: - body: {string: '{"status":"InProgress"}'} - headers: - cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:16:20 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [hdinsight oms enable] - Connection: [keep-alive] - ParameterSetName: [-g -n --workspace-id] - User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview - response: - body: {string: '{"status":"InProgress"}'} - headers: - cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:16:51 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [hdinsight oms enable] - Connection: [keep-alive] - ParameterSetName: [-g -n --workspace-id] - User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ceed5af0-eaf6-40d3-8d96-cfe059bd3a85-0?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:17:22 GMT'] + date: ['Fri, 18 Jan 2019 08:20:42 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1618,25 +1554,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --workspace-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ceed5af0-eaf6-40d3-8d96-cfe059bd3a85-0?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:17:52 GMT'] + date: ['Fri, 18 Jan 2019 08:21:12 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1647,25 +1581,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --workspace-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ceed5af0-eaf6-40d3-8d96-cfe059bd3a85-0?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:18:23 GMT'] + date: ['Fri, 18 Jan 2019 08:21:42 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1676,25 +1608,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --workspace-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ceed5af0-eaf6-40d3-8d96-cfe059bd3a85-0?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:18:54 GMT'] + date: ['Fri, 18 Jan 2019 08:22:13 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1705,25 +1635,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --workspace-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ceed5af0-eaf6-40d3-8d96-cfe059bd3a85-0?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:19:25 GMT'] + date: ['Fri, 18 Jan 2019 08:22:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1734,25 +1662,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --workspace-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ceed5af0-eaf6-40d3-8d96-cfe059bd3a85-0?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:19:58 GMT'] + date: ['Fri, 18 Jan 2019 08:23:14 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1763,25 +1689,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --workspace-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ceed5af0-eaf6-40d3-8d96-cfe059bd3a85-0?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:20:29 GMT'] + date: ['Fri, 18 Jan 2019 08:23:45 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1792,25 +1716,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --workspace-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ceed5af0-eaf6-40d3-8d96-cfe059bd3a85-0?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:20:59 GMT'] + date: ['Fri, 18 Jan 2019 08:24:16 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1821,25 +1743,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --workspace-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ceed5af0-eaf6-40d3-8d96-cfe059bd3a85-0?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:21:30 GMT'] + date: ['Fri, 18 Jan 2019 08:24:47 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1850,25 +1770,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --workspace-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/348a1118-184a-4157-8450-8e2522c8f39f-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/ceed5af0-eaf6-40d3-8d96-cfe059bd3a85-0?api-version=2018-06-01-preview response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:22:01 GMT'] + date: ['Fri, 18 Jan 2019 08:25:18 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1879,7 +1797,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --workspace-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/extensions/clustermonitoring?api-version=2018-06-01-preview response: @@ -1888,16 +1806,14 @@ interactions: cache-control: [no-cache] content-length: ['86'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:22:02 GMT'] + date: ['Fri, 18 Jan 2019 08:25:19 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1908,7 +1824,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/extensions/clustermonitoring?api-version=2018-06-01-preview @@ -1918,16 +1834,14 @@ interactions: cache-control: [no-cache] content-length: ['86'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:22:03 GMT'] + date: ['Fri, 18 Jan 2019 08:25:21 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1939,25 +1853,23 @@ interactions: Content-Length: ['0'] ParameterSetName: [-g -n] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/extensions/clustermonitoring?api-version=2018-06-01-preview response: body: {string: ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/2aad4666-cb0e-4fc7-a170-9ea8b91c0568-0-r?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/5c1bbef1-78a8-413e-b66d-bb85fc1ec44c-0?api-version=2018-06-01-preview'] cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 11:22:08 GMT'] + date: ['Fri, 18 Jan 2019 08:25:24 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/operationresults/2aad4666-cb0e-4fc7-a170-9ea8b91c0568-0-r?api-version=2018-06-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/operationresults/5c1bbef1-78a8-413e-b66d-bb85fc1ec44c-0?api-version=2018-06-01-preview'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] x-ms-ratelimit-remaining-subscription-deletes: ['14999'] status: {code: 202, message: Accepted} - request: @@ -1969,25 +1881,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/2aad4666-cb0e-4fc7-a170-9ea8b91c0568-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/5c1bbef1-78a8-413e-b66d-bb85fc1ec44c-0?api-version=2018-06-01-preview response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:23:08 GMT'] + date: ['Fri, 18 Jan 2019 08:26:24 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1998,7 +1908,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/extensions/clustermonitoring?api-version=2018-06-01-preview @@ -2008,16 +1918,14 @@ interactions: cache-control: [no-cache] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:23:11 GMT'] + date: ['Fri, 18 Jan 2019 08:26:27 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -2030,7 +1938,7 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [--name --yes --no-wait] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 @@ -2039,9 +1947,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 11:23:13 GMT'] + date: ['Fri, 18 Jan 2019 08:26:29 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkQzMzZFRi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRLUjRNMi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_script_action.yaml b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_script_action.yaml index faf40f765d8..2a9064f04f7 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_script_action.yaml +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_script_action.yaml @@ -1,27 +1,27 @@ interactions: - request: - body: '{"location": "northcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-12-19T11:57:35Z"}}' + body: '{"location": "eastus2", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-18T09:17:16Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [group create] Connection: [keep-alive] - Content-Length: ['118'] + Content-Length: ['111'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [--location --name --tag] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"northcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-12-19T11:57:35Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-01-18T09:17:16Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['266'] + content-length: ['259'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:57:41 GMT'] + date: ['Fri, 18 Jan 2019 09:17:20 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -29,17 +29,17 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "northcentralus"}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "eastus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - Content-Length: ['82'] + Content-Length: ['75'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 @@ -49,9 +49,9 @@ interactions: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:57:43 GMT'] + date: ['Fri, 18 Jan 2019 09:17:24 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/74704129-3079-4b64-b4e3-56c618e34c61?monitor=true&api-version=2018-07-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/31be353f-a0f8-4e60-b727-45b79a59d2fe?monitor=true&api-version=2018-07-01'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -68,16 +68,16 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/74704129-3079-4b64-b4e3-56c618e34c61?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/31be353f-a0f8-4e60-b727-45b79a59d2fe?monitor=true&api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-19T11:57:44.1538283Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-19T11:57:44.1538283Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-19T11:57:44.0757077Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-18T09:17:24.0483239Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-18T09:17:24.0483239Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-18T09:17:23.9545692Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['1122'] + content-length: ['1108'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 11:58:01 GMT'] + date: ['Fri, 18 Jan 2019 09:17:41 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -97,19 +97,17 @@ interactions: Content-Length: ['0'] ParameterSetName: [-n -g --query -o] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"keys": [{"keyName": "key1", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}, {"keyName": "key2", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Wed, 19 Dec 2018 11:58:03 GMT'] + date: ['Fri, 18 Jan 2019 09:17:43 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -120,54 +118,6 @@ interactions: x-content-type-options: [nosniff] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} -- request: - body: 'b''{"location": "northcentralus", "properties": {"clusterVersion": "default", - "osType": "Linux", "clusterDefinition": {"kind": "spark", "configurations": - {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": - "admin", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": - [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": - "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", - "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, - "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": - {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": - [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": - "default", "key": "fSVyxz/C8YomKEcDWLTvEY6ky0GrnEfxuZ4ND1L1/puBoNYDqhgCnX/abxxDdpOBxEYs1faWQfjfaA/ghBbgTw=="}]}}}''' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [hdinsight create] - Connection: [keep-alive] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container - --ssh-user --ssh-password] - User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - accept-language: [en-US] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"097a1cbf-3b35-4529-9b8e-c4047d707b9b","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2018-12-19T11:58:09.08","quotaInfo":{"coresUsed":20},"tier":"standard"}}'} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] - cache-control: [no-cache] - content-length: ['1062'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:58:09 GMT'] - etag: ['"097a1cbf-3b35-4529-9b8e-c4047d707b9b"'] - 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-hdi-clusteruri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-aotfj/providers/Microsoft.HDInsight/clusters/hdicli-f4jiilgld?api-version=2018-06-01-preview'] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] - status: {code: 200, message: OK} - request: body: null headers: @@ -175,28 +125,28 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 response: - body: {string: '{"status":"InProgress"}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-18T09:17:24.0483239Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-18T09:17:24.0483239Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-18T09:17:23.9545692Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:58:39 GMT'] + content-length: ['1108'] + content-type: [application/json] + date: ['Fri, 18 Jan 2019 09:17:44 GMT'] expires: ['-1'] pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] status: {code: 200, message: OK} - request: body: null @@ -205,88 +155,118 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + Content-Length: ['0'] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"status":"InProgress"}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] - content-length: ['23'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:59:11 GMT'] + content-length: ['288'] + content-type: [application/json] + date: ['Fri, 18 Jan 2019 09:17:44 GMT'] expires: ['-1'] pragma: [no-cache] + server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 + Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: - body: null + body: 'b''{"location": "eastus2", "properties": {"clusterVersion": "default", + "osType": "Linux", "clusterDefinition": {"kind": "spark", "configurations": + {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": + "admin", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": + [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": + "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", + "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, + "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": + {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": + [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": + "default", "key": "veryFakedStorageAccountKey=="}]}}, "identity": {"type": "SystemAssigned"}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + Content-Length: ['971'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"status":"InProgress"}'} + body: {string: '{"error":{"code":"GatewayTimeout","message":"The gateway did not + receive a response from ''Microsoft.HDInsight'' within the specified time + period."}}'} headers: cache-control: [no-cache] - content-length: ['23'] + connection: [close] + content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 11:59:41 GMT'] + date: ['Fri, 18 Jan 2019 09:18:08 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] - status: {code: 200, message: OK} + x-ms-failure-cause: [service] + status: {code: 504, message: Gateway Timeout} - request: - body: null + body: 'b''{"location": "eastus2", "properties": {"clusterVersion": "default", + "osType": "Linux", "clusterDefinition": {"kind": "spark", "configurations": + {"gateway": {"restAuthCredential.isEnabled": "true", "restAuthCredential.username": + "admin", "restAuthCredential.password": "Password1!"}}}, "computeProfile": {"roles": + [{"name": "headnode", "targetInstanceCount": 2, "hardwareProfile": {"vmSize": + "large"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", + "password": "Password1!"}}}, {"name": "workernode", "targetInstanceCount": 3, + "hardwareProfile": {"vmSize": "large"}, "osProfile": {"linuxOperatingSystemProfile": + {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": + [{"name": "hdicli000002.blob.core.windows.net", "isDefault": true, "container": + "default", "key": "veryFakedStorageAccountKey=="}]}}, "identity": {"type": "SystemAssigned"}}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + Content-Length: ['971'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"status":"InProgress"}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"c7ced27d-5327-4667-af23-475a8bdcdb6c","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2019-01-18T09:18:29.53","quotaInfo":{"coresUsed":20},"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"be0ee6be-57c8-4650-9ad2-29c1401c5c16","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{}}}'} headers: + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview'] cache-control: [no-cache] - content-length: ['23'] + content-length: ['1223'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:00:13 GMT'] + date: ['Fri, 18 Jan 2019 09:18:30 GMT'] + etag: ['"c7ced27d-5327-4667-af23-475a8bdcdb6c"'] 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-clusteruri: ['https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-koyay/providers/Microsoft.HDInsight/clusters/hdicli-wrs2fnyqy?api-version=2018-06-01-preview'] + x-ms-hdi-served-by: [global] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -295,10 +275,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -307,16 +287,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:00:44 GMT'] + date: ['Fri, 18 Jan 2019 09:19:01 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -325,10 +303,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -337,16 +315,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:01:15 GMT'] + date: ['Fri, 18 Jan 2019 09:19:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -355,10 +331,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -367,16 +343,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:01:46 GMT'] + date: ['Fri, 18 Jan 2019 09:20:13 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -385,10 +359,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -397,16 +371,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:02:17 GMT'] + date: ['Fri, 18 Jan 2019 09:20:44 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -415,10 +387,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -427,16 +399,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:02:48 GMT'] + date: ['Fri, 18 Jan 2019 09:21:15 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -445,10 +415,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -457,16 +427,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:03:19 GMT'] + date: ['Fri, 18 Jan 2019 09:21:46 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -475,10 +443,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -487,16 +455,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:03:51 GMT'] + date: ['Fri, 18 Jan 2019 09:22:17 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -505,10 +471,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -517,16 +483,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:04:22 GMT'] + date: ['Fri, 18 Jan 2019 09:22:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -535,10 +499,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -547,16 +511,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:04:53 GMT'] + date: ['Fri, 18 Jan 2019 09:23:20 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -565,10 +527,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -577,16 +539,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:05:24 GMT'] + date: ['Fri, 18 Jan 2019 09:23:51 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -595,10 +555,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -607,16 +567,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:05:55 GMT'] + date: ['Fri, 18 Jan 2019 09:24:21 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -625,10 +583,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -637,16 +595,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:06:27 GMT'] + date: ['Fri, 18 Jan 2019 09:24:52 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -655,10 +611,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -667,16 +623,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:06:58 GMT'] + date: ['Fri, 18 Jan 2019 09:25:24 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -685,10 +639,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -697,16 +651,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:07:28 GMT'] + date: ['Fri, 18 Jan 2019 09:25:55 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -715,10 +667,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -727,16 +679,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:08:01 GMT'] + date: ['Fri, 18 Jan 2019 09:26:26 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -745,10 +695,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,16 +707,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:08:32 GMT'] + date: ['Fri, 18 Jan 2019 09:26:57 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -775,10 +723,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -787,16 +735,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:09:04 GMT'] + date: ['Fri, 18 Jan 2019 09:27:28 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -805,10 +751,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -817,16 +763,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:09:34 GMT'] + date: ['Fri, 18 Jan 2019 09:28:00 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -835,10 +779,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -847,16 +791,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:10:06 GMT'] + date: ['Fri, 18 Jan 2019 09:28:46 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -865,10 +807,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -877,16 +819,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:10:37 GMT'] + date: ['Fri, 18 Jan 2019 09:29:17 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -895,10 +835,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -907,16 +847,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:11:07 GMT'] + date: ['Fri, 18 Jan 2019 09:29:47 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -925,10 +863,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -937,16 +875,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:11:38 GMT'] + date: ['Fri, 18 Jan 2019 09:30:19 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -955,10 +891,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -967,16 +903,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:12:10 GMT'] + date: ['Fri, 18 Jan 2019 09:30:50 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -985,10 +919,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -997,16 +931,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:12:40 GMT'] + date: ['Fri, 18 Jan 2019 09:31:21 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1015,10 +947,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1027,16 +959,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:13:11 GMT'] + date: ['Fri, 18 Jan 2019 09:31:52 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1045,10 +975,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1057,16 +987,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:13:42 GMT'] + date: ['Fri, 18 Jan 2019 09:32:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1075,10 +1003,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1087,16 +1015,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:14:14 GMT'] + date: ['Fri, 18 Jan 2019 09:32:54 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1105,10 +1031,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1117,16 +1043,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:14:45 GMT'] + date: ['Fri, 18 Jan 2019 09:33:25 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1135,10 +1059,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1147,16 +1071,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:15:17 GMT'] + date: ['Fri, 18 Jan 2019 09:33:57 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1165,10 +1087,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1177,16 +1099,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:15:48 GMT'] + date: ['Fri, 18 Jan 2019 09:34:27 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1195,10 +1115,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1207,16 +1127,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:16:19 GMT'] + date: ['Fri, 18 Jan 2019 09:34:58 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1225,10 +1143,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1237,16 +1155,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:16:50 GMT'] + date: ['Fri, 18 Jan 2019 09:35:29 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1255,10 +1171,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1267,16 +1183,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:17:21 GMT'] + date: ['Fri, 18 Jan 2019 09:36:00 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1285,10 +1199,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1297,16 +1211,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:17:53 GMT'] + date: ['Fri, 18 Jan 2019 09:36:31 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1315,10 +1227,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1327,16 +1239,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:18:23 GMT'] + date: ['Fri, 18 Jan 2019 09:37:02 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1345,10 +1255,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1357,16 +1267,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:18:54 GMT'] + date: ['Fri, 18 Jan 2019 09:37:33 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1375,10 +1283,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1387,16 +1295,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:19:25 GMT'] + date: ['Fri, 18 Jan 2019 09:38: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1405,10 +1311,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1417,16 +1323,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:19:56 GMT'] + date: ['Fri, 18 Jan 2019 09:38:36 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1435,10 +1339,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1447,16 +1351,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:20:27 GMT'] + date: ['Fri, 18 Jan 2019 09:39:06 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1465,10 +1367,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1477,16 +1379,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:20:58 GMT'] + date: ['Fri, 18 Jan 2019 09:39:37 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1495,10 +1395,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1507,16 +1407,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:21:29 GMT'] + date: ['Fri, 18 Jan 2019 09:40:08 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1525,10 +1423,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1537,16 +1435,14 @@ interactions: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:22:00 GMT'] + date: ['Fri, 18 Jan 2019 09:40:39 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1555,10 +1451,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1567,16 +1463,14 @@ interactions: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:22:31 GMT'] + date: ['Fri, 18 Jan 2019 09:41:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1585,29 +1479,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [hdinsight create] Connection: [keep-alive] - ParameterSetName: [-n -g -l -p -t --storage-account --storage-account-key --storage-default-container + ParameterSetName: [-n -g -l -p -t --storage-account --storage-default-container --ssh-user --ssh-password] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"097a1cbf-3b35-4529-9b8e-c4047d707b9b","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T11:58:09.08","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"c7ced27d-5327-4667-af23-475a8bdcdb6c","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-18T09:18:29.53","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"a51edbc4-107a-4e05-8683-279913628342","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1467'] + content-length: ['1628'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:22:32 GMT'] + date: ['Fri, 18 Jan 2019 09:41:12 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1618,27 +1510,25 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003?api-version=2018-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"097a1cbf-3b35-4529-9b8e-c4047d707b9b","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2018-12-19T11:58:09.08","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003","name":"hdicli-000003","type":"Microsoft.HDInsight/clusters","location":"East + US 2","etag":"c7ced27d-5327-4667-af23-475a8bdcdb6c","tags":null,"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3005-27","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1812120705.json","kind":"spark","componentVersion":{"spark":"2.3"}},"computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"large"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"Medium"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2019-01-18T09:18:29.53","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdicli-000003-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdicli-000003.azurehdinsight.net","port":443}],"tier":"standard"},"identity":{"type":"SystemAssigned","principalId":"a51edbc4-107a-4e05-8683-279913628342","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{}}}'} headers: cache-control: [no-cache] - content-length: ['1467'] + content-length: ['1628'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:22:35 GMT'] + date: ['Fri, 18 Jan 2019 09:41:13 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: '{"scriptActions": [{"name": "InstallGiraph", "uri": "https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh", @@ -1652,25 +1542,23 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [-g -n --script-action-name --script-uri --roles --persist-on-success] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/executeScriptActions?api-version=2018-06-01-preview response: body: {string: ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/4d63028c-dd5c-446e-81ca-35d82348ff1d-0-r?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/80140e27-7e45-4654-8882-e3364af5f66e-0?api-version=2018-06-01-preview'] cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 12:22:36 GMT'] + date: ['Fri, 18 Jan 2019 09:41:15 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/operationresults/4d63028c-dd5c-446e-81ca-35d82348ff1d-0-r?api-version=2018-06-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/operationresults/80140e27-7e45-4654-8882-e3364af5f66e-0?api-version=2018-06-01-preview'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: @@ -1682,25 +1570,50 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --script-action-name --script-uri --roles --persist-on-success] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/80140e27-7e45-4654-8882-e3364af5f66e-0?api-version=2018-06-01-preview + response: + body: {string: '{"status":"InProgress"}'} + headers: + cache-control: [no-cache] + content-length: ['23'] + content-type: [application/json; charset=utf-8] + date: ['Fri, 18 Jan 2019 09:42:16 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-hdi-served-by: [global] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [hdinsight script-action execute] + Connection: [keep-alive] + ParameterSetName: [-g -n --script-action-name --script-uri --roles --persist-on-success] + User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/4d63028c-dd5c-446e-81ca-35d82348ff1d-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/80140e27-7e45-4654-8882-e3364af5f66e-0?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:23:37 GMT'] + date: ['Fri, 18 Jan 2019 09:42:47 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1711,25 +1624,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --script-action-name --script-uri --roles --persist-on-success] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/4d63028c-dd5c-446e-81ca-35d82348ff1d-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/80140e27-7e45-4654-8882-e3364af5f66e-0?api-version=2018-06-01-preview response: body: {string: '{"status":"InProgress"}'} headers: cache-control: [no-cache] content-length: ['23'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:24:09 GMT'] + date: ['Fri, 18 Jan 2019 09:43:18 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1740,25 +1651,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --script-action-name --script-uri --roles --persist-on-success] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/4d63028c-dd5c-446e-81ca-35d82348ff1d-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/80140e27-7e45-4654-8882-e3364af5f66e-0?api-version=2018-06-01-preview response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:24:39 GMT'] + date: ['Fri, 18 Jan 2019 09:43:49 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1769,7 +1678,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --persisted] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/scriptActions?api-version=2018-06-01-preview @@ -1779,16 +1688,14 @@ interactions: cache-control: [no-cache] content-length: ['215'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:24:41 GMT'] + date: ['Fri, 18 Jan 2019 09:43:50 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1800,7 +1707,7 @@ interactions: Content-Length: ['0'] ParameterSetName: [-g -n --script-action-name] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/scriptActions/InstallGiraph?api-version=2018-06-01-preview @@ -1809,14 +1716,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 12:24:43 GMT'] + date: ['Fri, 18 Jan 2019 09:43:52 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] x-ms-ratelimit-remaining-subscription-deletes: ['14999'] status: {code: 200, message: OK} - request: @@ -1828,7 +1733,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --persisted] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/scriptActions?api-version=2018-06-01-preview @@ -1838,16 +1743,14 @@ interactions: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:24:43 GMT'] + date: ['Fri, 18 Jan 2019 09:43:54 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1858,26 +1761,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/scriptExecutionHistory?api-version=2018-06-01-preview response: - body: {string: '{"value":[{"scriptExecutionId":936157568156541,"name":"InstallGiraph","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2018-12-19T12:22:44.8006016Z","endTime":"2018-12-19T12:24:36.2684446Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]}]}'} + body: {string: '{"value":[{"scriptExecutionId":961980762107216,"name":"InstallGiraph","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2019-01-18T09:41:20.4314221Z","endTime":"2019-01-18T09:43:42.415363Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]}]}'} headers: cache-control: [no-cache] - content-length: ['469'] + content-length: ['468'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:24:46 GMT'] + date: ['Fri, 18 Jan 2019 09:43:55 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1888,31 +1789,29 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --script-execution-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/scriptExecutionHistory/936157568156541?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/scriptExecutionHistory/961980762107216?api-version=2018-06-01-preview response: - body: {string: '{"scriptExecutionId":936157568156541,"name":"InstallGiraph","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2018-12-19T12:22:44.8006016Z","endTime":"2018-12-19T12:24:36.2684446Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}],"debugInformation":"{\"href\":\"http://hn0-hdicli.2arm5iivvwnefbaiglur1rh34a.ex.internal.cloudapp.net:8080/api/v1/clusters/hdicli-000003/requests/28\",\"tasks\":[{\"href\":\"http://hn0-hdicli.2arm5iivvwnefbaiglur1rh34a.ex.internal.cloudapp.net:8080/api/v1/clusters/hdicli-000003/requests/28/tasks/96\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction - ACTIONEXECUTE\",\"end_time\":1545222271224,\"error_log\":\"/var/lib/ambari-agent/data/errors-96.txt\",\"exit_code\":0,\"host_name\":\"hn0-hdicli.2arm5iivvwnefbaiglur1rh34a.ex.internal.cloudapp.net\",\"id\":\"96\",\"output_log\":\"/var/lib/ambari-agent/data/output-96.txt\",\"request_id\":\"28\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1545222243306,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn0-hdicli.2arm5iivvwnefbaiglur1rh34a.ex.internal.cloudapp.net:8080/api/v1/clusters/hdicli-000003/requests/28/tasks/97\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction - ACTIONEXECUTE\",\"end_time\":1545222264258,\"error_log\":\"/var/lib/ambari-agent/data/errors-97.txt\",\"exit_code\":0,\"host_name\":\"hn1-hdicli.2arm5iivvwnefbaiglur1rh34a.ex.internal.cloudapp.net\",\"id\":\"97\",\"output_log\":\"/var/lib/ambari-agent/data/output-97.txt\",\"request_id\":\"28\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1545222243306,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn0-hdicli.2arm5iivvwnefbaiglur1rh34a.ex.internal.cloudapp.net:8080/api/v1/clusters/hdicli-000003/requests/28/tasks/98\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction - ACTIONEXECUTE\",\"end_time\":1545222246365,\"error_log\":\"/var/lib/ambari-agent/data/errors-98.txt\",\"exit_code\":0,\"host_name\":\"wn0-hdicli.2arm5iivvwnefbaiglur1rh34a.ex.internal.cloudapp.net\",\"id\":\"98\",\"output_log\":\"/var/lib/ambari-agent/data/output-98.txt\",\"request_id\":\"28\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1545222243306,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn0-hdicli.2arm5iivvwnefbaiglur1rh34a.ex.internal.cloudapp.net:8080/api/v1/clusters/hdicli-000003/requests/28/tasks/99\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction - ACTIONEXECUTE\",\"end_time\":1545222246401,\"error_log\":\"/var/lib/ambari-agent/data/errors-99.txt\",\"exit_code\":0,\"host_name\":\"wn1-hdicli.2arm5iivvwnefbaiglur1rh34a.ex.internal.cloudapp.net\",\"id\":\"99\",\"output_log\":\"/var/lib/ambari-agent/data/output-99.txt\",\"request_id\":\"28\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1545222243306,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn0-hdicli.2arm5iivvwnefbaiglur1rh34a.ex.internal.cloudapp.net:8080/api/v1/clusters/hdicli-000003/requests/28/tasks/100\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction - ACTIONEXECUTE\",\"end_time\":1545222246324,\"error_log\":\"/var/lib/ambari-agent/data/errors-100.txt\",\"exit_code\":0,\"host_name\":\"wn3-hdicli.2arm5iivvwnefbaiglur1rh34a.ex.internal.cloudapp.net\",\"id\":\"100\",\"output_log\":\"/var/lib/ambari-agent/data/output-100.txt\",\"request_id\":\"28\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1545222243306,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}}]}"}'} + body: {string: '{"scriptExecutionId":961980762107216,"name":"InstallGiraph","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2019-01-18T09:41:20.4314221Z","endTime":"2019-01-18T09:43:42.415363Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}],"debugInformation":"{\"href\":\"http://hn1-hdicli.fosqvqp2gliuvnd3yax4nmajzg.cx.internal.cloudapp.net:8080/api/v1/clusters/hdicli-000003/requests/28\",\"tasks\":[{\"href\":\"http://hn1-hdicli.fosqvqp2gliuvnd3yax4nmajzg.cx.internal.cloudapp.net:8080/api/v1/clusters/hdicli-000003/requests/28/tasks/96\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction + ACTIONEXECUTE\",\"end_time\":1547804618296,\"error_log\":\"/var/lib/ambari-agent/data/errors-96.txt\",\"exit_code\":0,\"host_name\":\"hn0-hdicli.fosqvqp2gliuvnd3yax4nmajzg.cx.internal.cloudapp.net\",\"id\":\"96\",\"output_log\":\"/var/lib/ambari-agent/data/output-96.txt\",\"request_id\":\"28\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1547804592379,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn1-hdicli.fosqvqp2gliuvnd3yax4nmajzg.cx.internal.cloudapp.net:8080/api/v1/clusters/hdicli-000003/requests/28/tasks/97\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction + ACTIONEXECUTE\",\"end_time\":1547804618208,\"error_log\":\"/var/lib/ambari-agent/data/errors-97.txt\",\"exit_code\":0,\"host_name\":\"hn1-hdicli.fosqvqp2gliuvnd3yax4nmajzg.cx.internal.cloudapp.net\",\"id\":\"97\",\"output_log\":\"/var/lib/ambari-agent/data/output-97.txt\",\"request_id\":\"28\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1547804592380,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn1-hdicli.fosqvqp2gliuvnd3yax4nmajzg.cx.internal.cloudapp.net:8080/api/v1/clusters/hdicli-000003/requests/28/tasks/98\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction + ACTIONEXECUTE\",\"end_time\":1547804595235,\"error_log\":\"/var/lib/ambari-agent/data/errors-98.txt\",\"exit_code\":0,\"host_name\":\"wn0-hdicli.fosqvqp2gliuvnd3yax4nmajzg.cx.internal.cloudapp.net\",\"id\":\"98\",\"output_log\":\"/var/lib/ambari-agent/data/output-98.txt\",\"request_id\":\"28\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1547804592380,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn1-hdicli.fosqvqp2gliuvnd3yax4nmajzg.cx.internal.cloudapp.net:8080/api/v1/clusters/hdicli-000003/requests/28/tasks/99\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction + ACTIONEXECUTE\",\"end_time\":1547804595325,\"error_log\":\"/var/lib/ambari-agent/data/errors-99.txt\",\"exit_code\":0,\"host_name\":\"wn1-hdicli.fosqvqp2gliuvnd3yax4nmajzg.cx.internal.cloudapp.net\",\"id\":\"99\",\"output_log\":\"/var/lib/ambari-agent/data/output-99.txt\",\"request_id\":\"28\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1547804592380,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn1-hdicli.fosqvqp2gliuvnd3yax4nmajzg.cx.internal.cloudapp.net:8080/api/v1/clusters/hdicli-000003/requests/28/tasks/100\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction + ACTIONEXECUTE\",\"end_time\":1547804595293,\"error_log\":\"/var/lib/ambari-agent/data/errors-100.txt\",\"exit_code\":0,\"host_name\":\"wn2-hdicli.fosqvqp2gliuvnd3yax4nmajzg.cx.internal.cloudapp.net\",\"id\":\"100\",\"output_log\":\"/var/lib/ambari-agent/data/output-100.txt\",\"request_id\":\"28\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1547804592380,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}}]}"}'} headers: cache-control: [no-cache] - content-length: ['4169'] + content-length: ['4168'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:24:47 GMT'] + date: ['Fri, 18 Jan 2019 09:43:57 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: '{"scriptActions": [{"name": "InstallGiraph1", "uri": "https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh", @@ -1926,25 +1825,23 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [-g -n --script-action-name --script-uri --roles] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/executeScriptActions?api-version=2018-06-01-preview response: body: {string: ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/3cc82e1c-91d0-4a3d-a685-449a5100bd68-0-r?api-version=2018-06-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/e1cfa171-40ea-4884-835f-9cfc6ac96358-0?api-version=2018-06-01-preview'] cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 12:24:48 GMT'] + date: ['Fri, 18 Jan 2019 09:43:58 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/operationresults/3cc82e1c-91d0-4a3d-a685-449a5100bd68-0-r?api-version=2018-06-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/operationresults/e1cfa171-40ea-4884-835f-9cfc6ac96358-0?api-version=2018-06-01-preview'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: @@ -1956,25 +1853,23 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --script-action-name --script-uri --roles] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/3cc82e1c-91d0-4a3d-a685-449a5100bd68-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/azureasyncoperations/e1cfa171-40ea-4884-835f-9cfc6ac96358-0?api-version=2018-06-01-preview response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:25:50 GMT'] + date: ['Fri, 18 Jan 2019 09:44: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -1985,26 +1880,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/scriptExecutionHistory?api-version=2018-06-01-preview response: - body: {string: '{"value":[{"scriptExecutionId":936158892458212,"name":"InstallGiraph1","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2018-12-19T12:24:54.7462772Z","endTime":"2018-12-19T12:25:04.977916Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]},{"scriptExecutionId":936157568156541,"name":"InstallGiraph","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2018-12-19T12:22:44.8006016Z","endTime":"2018-12-19T12:24:36.2684446Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]}]}'} + body: {string: '{"value":[{"scriptExecutionId":961982388787013,"name":"InstallGiraph1","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2019-01-18T09:44:04.2111391Z","endTime":"2019-01-18T09:44:14.3758558Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]},{"scriptExecutionId":961980762107216,"name":"InstallGiraph","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2019-01-18T09:41:20.4314221Z","endTime":"2019-01-18T09:43:42.415363Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]}]}'} headers: cache-control: [no-cache] content-length: ['927'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:25:52 GMT'] + date: ['Fri, 18 Jan 2019 09:45:01 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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -2016,23 +1909,21 @@ interactions: Content-Length: ['0'] ParameterSetName: [-g -n --script-execution-id] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/scriptExecutionHistory/936158892458212/promote?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/scriptExecutionHistory/961982388787013/promote?api-version=2018-06-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 12:25:52 GMT'] + date: ['Fri, 18 Jan 2019 09:45:03 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: @@ -2044,7 +1935,7 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n --persisted] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/scriptActions?api-version=2018-06-01-preview @@ -2054,16 +1945,14 @@ interactions: cache-control: [no-cache] content-length: ['216'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:25:55 GMT'] + date: ['Fri, 18 Jan 2019 09:45: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -2074,26 +1963,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [-g -n] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.HDInsight/clusters/hdicli-000003/scriptExecutionHistory?api-version=2018-06-01-preview response: - body: {string: '{"value":[{"scriptExecutionId":936158892458212,"name":"InstallGiraph1","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2018-12-19T12:24:54.7462772Z","endTime":"2018-12-19T12:25:04.977916Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]},{"scriptExecutionId":936157568156541,"name":"InstallGiraph","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2018-12-19T12:22:44.8006016Z","endTime":"2018-12-19T12:24:36.2684446Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]}]}'} + body: {string: '{"value":[{"scriptExecutionId":961982388787013,"name":"InstallGiraph1","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2019-01-18T09:44:04.2111391Z","endTime":"2019-01-18T09:44:14.3758558Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]},{"scriptExecutionId":961980762107216,"name":"InstallGiraph","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2019-01-18T09:41:20.4314221Z","endTime":"2019-01-18T09:43:42.415363Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]}]}'} headers: cache-control: [no-cache] content-length: ['927'] content-type: [application/json; charset=utf-8] - date: ['Wed, 19 Dec 2018 12:25:56 GMT'] + date: ['Fri, 18 Jan 2019 09:45: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-hdi-matched-rule: [ClusterResourcesAndSubResources] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -2106,7 +1993,7 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [--name --yes --no-wait] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 @@ -2115,9 +2002,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 19 Dec 2018 12:25:58 GMT'] + date: ['Fri, 18 Jan 2019 09:45:08 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRBT1RGSi1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRLT1lBWS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_usage.yaml b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_usage.yaml index a0a65763a63..346a0a12415 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_usage.yaml +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/recordings/test_hdinsight_usage.yaml @@ -1,27 +1,27 @@ interactions: - request: - body: '{"location": "northcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-12-21T11:12:16Z"}}' + body: '{"location": "eastus2", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-18T07:51:44Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [group create] Connection: [keep-alive] - Content-Length: ['118'] + Content-Length: ['111'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [--location --name --tag] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"northcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-12-21T11:12:16Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001","name":"hdicli-000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-01-18T07:51:44Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] - content-length: ['266'] + content-length: ['259'] content-type: [application/json; charset=utf-8] - date: ['Fri, 21 Dec 2018 11:12:22 GMT'] + date: ['Fri, 18 Jan 2019 07:51:51 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -29,17 +29,17 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "northcentralus"}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "eastus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - Content-Length: ['82'] + Content-Length: ['75'] Content-Type: [application/json; charset=utf-8] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002?api-version=2018-07-01 @@ -49,9 +49,9 @@ interactions: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Fri, 21 Dec 2018 11:12:26 GMT'] + date: ['Fri, 18 Jan 2019 07:51:55 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/37aa04d3-c438-4eae-9ae3-e9e2d3df1073?monitor=true&api-version=2018-07-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/3c5d6ae2-cae8-4bbe-8f2c-6b6655d90b4a?monitor=true&api-version=2018-07-01'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -68,16 +68,16 @@ interactions: Connection: [keep-alive] ParameterSetName: [-n -g -l --sku] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/37aa04d3-c438-4eae-9ae3-e9e2d3df1073?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/3c5d6ae2-cae8-4bbe-8f2c-6b6655d90b4a?monitor=true&api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-21T11:12:26.3884200Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-21T11:12:26.3884200Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-21T11:12:26.3258959Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002","name":"hdicli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-18T07:51:56.4433922Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-18T07:51:56.4433922Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-18T07:51:56.3183953Z","primaryEndpoints":{"blob":"https://hdicli000002.blob.core.windows.net/","queue":"https://hdicli000002.queue.core.windows.net/","table":"https://hdicli000002.table.core.windows.net/","file":"https://hdicli000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] - content-length: ['1122'] + content-length: ['1108'] content-type: [application/json] - date: ['Fri, 21 Dec 2018 11:12:43 GMT'] + date: ['Fri, 18 Jan 2019 07:52:13 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -97,19 +97,17 @@ interactions: Content-Length: ['0'] ParameterSetName: [-n -g --query -o] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-000001/providers/Microsoft.Storage/storageAccounts/hdicli000002/listKeys?api-version=2018-07-01 response: - body: {string: '{"keys": [{"keyName": "key1", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}, {"keyName": "key2", "value": "veryFakedStorageAccountKey==", - "permissions": "FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Fri, 21 Dec 2018 11:12:44 GMT'] + date: ['Fri, 18 Jan 2019 07:52:15 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -129,26 +127,24 @@ interactions: Connection: [keep-alive] ParameterSetName: [-l] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + azure-mgmt-hdinsight/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HDInsight/locations/northcentralus/usages?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HDInsight/locations/eastus2/usages?api-version=2018-06-01-preview response: - body: {string: '{"value":[{"unit":"Count","currentValue":56,"limit":60,"name":{"value":"cores","localizedValue":"Cores"}}]}'} + body: {string: '{"value":[{"unit":"Count","currentValue":902,"limit":1000,"name":{"value":"cores","localizedValue":"Cores"}}]}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['110'] content-type: [application/json; charset=utf-8] - date: ['Fri, 21 Dec 2018 11:12:46 GMT'] + date: ['Fri, 18 Jan 2019 07:52:16 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-hdi-matched-rule: [SubscriptionManagementOperations] - x-ms-hdi-routed-to: [RegionalRp] - x-ms-hdi-served-by: [northcentralus] + x-ms-hdi-served-by: [global] status: {code: 200, message: OK} - request: body: null @@ -161,7 +157,7 @@ interactions: Content-Type: [application/json; charset=utf-8] ParameterSetName: [--name --yes --no-wait] User-Agent: [python/3.7.1 (Windows-10-10.0.14393-SP0) msrest/0.6.1 msrest_azure/0.4.34 - resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.55] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/hdicli-000001?api-version=2018-05-01 @@ -170,9 +166,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Fri, 21 Dec 2018 11:12:48 GMT'] + date: ['Fri, 18 Jan 2019 07:52:18 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkQ2U1FGMy1OT1JUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoibm9ydGhjZW50cmFsdXMifQ?api-version=2018-05-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1IRElDTEk6MkRRNkxOUS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/test_hdinsight_commands.py b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/test_hdinsight_commands.py index ed937701f63..1bb6397849f 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/test_hdinsight_commands.py +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/tests/latest/test_hdinsight_commands.py @@ -7,7 +7,7 @@ class HDInsightClusterTests(ScenarioTest): - location = 'northcentralus' + location = 'eastus2' # Uses 'rg' kwarg @ResourceGroupPreparer(name_prefix='hdicli-', location=location, random_name_length=12) @@ -287,11 +287,11 @@ def _create_hdinsight_cluster(self, *additional_create_arguments): self.kwargs.update({ 'loc': self.location, 'cluster': self.create_random_name(prefix='hdicli-', length=16), - 'http-password': 'Password1!', + 'http_password': 'Password1!', 'cluster_type': 'spark' }) - create_cluster_format = 'az hdinsight create -n {cluster} -g {rg} -l {loc} -p {http-password} -t {cluster_type} ' \ + create_cluster_format = 'az hdinsight create -n {cluster} -g {rg} -l {loc} -p {http_password} -t {cluster_type} ' \ + ' '.join(additional_create_arguments) self.cmd(create_cluster_format, checks=[ self.check('properties.provisioningState', 'Succeeded'), @@ -306,14 +306,14 @@ def _create_hdinsight_cluster(self, *additional_create_arguments): ]) @staticmethod - def _wasb_arguments(storage_account_info, specify_key=True, specify_container=True): + def _wasb_arguments(storage_account_info, specify_key=False, specify_container=True): storage_account_name, storage_account_key = storage_account_info storage_account_key = storage_account_key.strip() key_args = ' --storage-account-key "{}"'.format(storage_account_key) if specify_key else "" container_args = ' --storage-default-container {}'.format('default') if specify_container else "" - return '--storage-account {}.blob.core.windows.net{}{}'\ + return '--storage-account {}{}{}'\ .format(storage_account_name, key_args, container_args) @staticmethod diff --git a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/util.py b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/util.py index b38a550d348..5160cd27943 100644 --- a/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/util.py +++ b/src/command_modules/azure-cli-hdinsight/azure/cli/command_modules/hdinsight/util.py @@ -4,43 +4,143 @@ # -------------------------------------------------------------------------------------------- -def get_key_for_storage_account(cmd, storage_blob_endpoint, rg=None): # pylint: disable=unused-argument +def get_key_for_storage_account(cmd, storage_account): # pylint: disable=unused-argument from ._client_factory import cf_storage - storage_account_name = _extract_storage_account_name_from_endpoint(storage_blob_endpoint) + from msrestazure.tools import parse_resource_id, is_valid_resource_id + from knack.util import CLIError - # The storage account's resource group might not necessarily be the cluster's resource group - storage_client = cf_storage(cmd.cli_ctx) - storage_account_rg = None - if rg: - # Check the storage accounts in the specified resource group first - storage_accounts = storage_client.storage_accounts.list_by_resource_group(rg) - for sa in storage_accounts: - if _parse_resource_name_from_id(sa.id) == storage_account_name: - storage_account_rg = _parse_resource_group_from_id(sa.id) - break + storage_account_key = None + if is_valid_resource_id(storage_account): + parsed_storage_account = parse_resource_id(storage_account) + resource_group_name = parsed_storage_account['resource_group'] + storage_account_name = parsed_storage_account['resource_name'] - if not storage_account_rg: - storage_accounts = storage_client.storage_accounts.list() - for sa in storage_accounts: - if _parse_resource_name_from_id(sa.id) == storage_account_name: - storage_account_rg = _parse_resource_group_from_id(sa.id) - break + storage_client = cf_storage(cmd.cli_ctx) + keys = storage_client.storage_accounts.list_keys(resource_group_name, storage_account_name) + storage_account_key = keys.keys[0].value # pylint: disable=no-member + elif storage_account: + raise CLIError('Failed to get access key for storage account: {}'.format(storage_account)) + return storage_account_key - if not storage_account_rg: - return None - keys = storage_client.storage_accounts.list_keys(storage_account_rg, storage_account_name).keys - return keys and keys[0] and keys[0].value +def get_storage_account_endpoint(cmd, storage_account, dfs): + from ._client_factory import cf_storage + from msrestazure.tools import parse_resource_id, is_valid_resource_id + host = None + if is_valid_resource_id(storage_account): + parsed_storage_account = parse_resource_id(storage_account) + resource_group_name = parsed_storage_account['resource_group'] + storage_account_name = parsed_storage_account['resource_name'] + + storage_client = cf_storage(cmd.cli_ctx) + storage_account = storage_client.storage_accounts.get_properties( + resource_group_name=resource_group_name, + account_name=storage_account_name) + + def extract_endpoint(storage_account, dfs): + if not storage_account: + return None + return storage_account.primary_endpoints.dfs if dfs else storage_account.primary_endpoints.blob + + def extract_host(uri): + import re + return uri and re.search('//(.*)/', uri).groups()[0] + + host = extract_host(extract_endpoint(storage_account, dfs)) + return host + + +def build_identities_info(identities): + from azure.mgmt.hdinsight.models import ClusterIdentity, ResourceIdentityType + identity = None + if identities: + identity_type = ResourceIdentityType.user_assigned + identity = ClusterIdentity(type=identity_type) + identity.user_assigned_identities = {e: {} for e in identities} + + return identity + + +def build_virtual_network_profile(subnet): + from msrestazure.tools import resource_id, parse_resource_id, is_valid_resource_id + from azure.mgmt.hdinsight.models import VirtualNetworkProfile + from knack.util import CLIError + + vnet_profile = None + if is_valid_resource_id(subnet): + parsed_subnet_id = parse_resource_id(subnet) + subscription_name = parsed_subnet_id['subscription'] + resource_group_name = parsed_subnet_id['resource_group'] + vnet_namespace = parsed_subnet_id['namespace'] + vnet_type = parsed_subnet_id['type'] + vnet_name = parsed_subnet_id['name'] + vnet_id = resource_id( + subscription=subscription_name, + resource_group=resource_group_name, + namespace=vnet_namespace, + type=vnet_type, + name=vnet_name) + vnet_profile = VirtualNetworkProfile(id=vnet_id, subnet=subnet) + elif subnet: + raise CLIError('Invalid subnet: {}'.format(subnet)) + return vnet_profile -def _extract_storage_account_name_from_endpoint(storage_blob_endpoint): - return storage_blob_endpoint.split('.')[0] +def parse_domain_name(domain): + from msrestazure.tools import parse_resource_id, is_valid_resource_id + domain_name = None + if is_valid_resource_id(domain): + parsed_subnet_id = parse_resource_id(domain) + domain_name = parsed_subnet_id['resource_name'] + return domain_name -def _parse_resource_group_from_id(resource_id): - import re - return re.search('subscriptions/[^/]+/resourceGroups/([^/]+)/', resource_id).groups()[0] +# Validate ESP cluster creation required parameters +def validate_esp_cluster_create_params(esp, + cluster_name, + resource_group_name, + cluster_type, + subnet, + domain, + cluster_admin_account, + assign_identity, + ldaps_urls, + cluster_admin_password, + cluster_users_group_dns): + from knack.util import CLIError + if esp: + missing_params = [] + if not cluster_name: + missing_params.append("--name/-n") + if not resource_group_name: + missing_params.append("--resource-group/-g") + if not cluster_type: + missing_params.append("--type/-t") + if not subnet: + missing_params.append("--subnet") + if not domain: + missing_params.append("--domain") + if not cluster_admin_account: + missing_params.append("--cluster-admin-account") + if not assign_identity: + missing_params.append("--assign-identity") + if missing_params: + raise CLIError('the following params are required ' + 'when --esp is specified: {}'.format(', '.join(missing_params))) + else: + esp_params = [] + if domain: + esp_params.append("--domain") + if cluster_admin_account: + esp_params.append("--cluster-admin_account") + if ldaps_urls: + esp_params.append("--ldaps-urls") + if cluster_admin_password: + esp_params.append("--cluster-admin-password") + if cluster_users_group_dns: + esp_params.append("--cluster-users-group-dns") -def _parse_resource_name_from_id(resource_id): - return resource_id.split('/')[-1] + if esp_params: + raise CLIError('the following params are required only ' + 'when --esp is specified: {}'.format(', '.join(esp_params))) diff --git a/src/command_modules/azure-cli-hdinsight/setup.py b/src/command_modules/azure-cli-hdinsight/setup.py index df05b1209c9..b7c81274e62 100644 --- a/src/command_modules/azure-cli-hdinsight/setup.py +++ b/src/command_modules/azure-cli-hdinsight/setup.py @@ -14,7 +14,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") cmdclass = {} -VERSION = "0.2.0" +VERSION = "0.3.0" CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', @@ -31,6 +31,8 @@ DEPENDENCIES = [ 'azure-mgmt-hdinsight==0.2.0', + 'azure-mgmt-storage==3.1.1', + 'azure-mgmt-network==2.4.0', 'azure-cli-core', ]