diff --git a/azure-cli.pyproj b/azure-cli.pyproj index ce90df3bea7..cd5615f4934 100644 --- a/azure-cli.pyproj +++ b/azure-cli.pyproj @@ -12,7 +12,7 @@ . {888888a0-9f3d-457c-b088-3a5042f75d52} Standard Python launcher - MSBuild|{f0ce7f81-ab4f-4088-b037-81002e6ddc44}|$(MSBuildProjectFullPath) + MSBuild|{2151c13d-4041-4c88-bb0b-54ce1a741de6}|$(MSBuildProjectFullPath) False @@ -503,6 +503,16 @@ + + + + + + + + + + @@ -988,6 +998,12 @@ + + + + + + @@ -1093,6 +1109,8 @@ + + @@ -1256,6 +1274,7 @@ + diff --git a/doc/sphinx/azhelpgen/doc_source_map.json b/doc/sphinx/azhelpgen/doc_source_map.json index b0e3842d38a..172848b058f 100644 --- a/doc/sphinx/azhelpgen/doc_source_map.json +++ b/doc/sphinx/azhelpgen/doc_source_map.json @@ -34,6 +34,7 @@ "iot": "src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/_help.py", "iotcentral": "src/command_modules/azure-cli-iotcentral/azure/cli/command_modules/iotcentral/_help.py", "keyvault": "src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_help.py", + "kusto": "src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/_help.py", "lab": "src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/_help.py", "maps": "src/command_modules/azure-cli-maps/azure/cli/command_modules/maps/_help.py", "monitor": "src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/_help.py", diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index 9daa447a19c..b5146c6d451 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -32,6 +32,7 @@ def __init__(self, import_prefix, client_name): class ResourceType(Enum): # pylint: disable=too-few-public-methods + MGMT_KUSTO = ('azure.mgmt.kusto', 'KustoManagementClient') MGMT_KEYVAULT = ('azure.mgmt.keyvault', 'KeyVaultManagementClient') MGMT_STORAGE = ('azure.mgmt.storage', 'StorageManagementClient') MGMT_COMPUTE = ('azure.mgmt.compute', 'ComputeManagementClient') diff --git a/src/command_modules/azure-cli-kusto/HISTORY.rst b/src/command_modules/azure-cli-kusto/HISTORY.rst new file mode 100644 index 00000000000..ad783afc536 --- /dev/null +++ b/src/command_modules/azure-cli-kusto/HISTORY.rst @@ -0,0 +1,9 @@ +.. :changelog: + +Release History +=============== + +0.1.0 ++++++ + +* Preview release. diff --git a/src/command_modules/azure-cli-kusto/MANIFEST.in b/src/command_modules/azure-cli-kusto/MANIFEST.in new file mode 100644 index 00000000000..bb37a2723da --- /dev/null +++ b/src/command_modules/azure-cli-kusto/MANIFEST.in @@ -0,0 +1 @@ +include *.rst diff --git a/src/command_modules/azure-cli-kusto/README.rst b/src/command_modules/azure-cli-kusto/README.rst new file mode 100644 index 00000000000..947ae59e25c --- /dev/null +++ b/src/command_modules/azure-cli-kusto/README.rst @@ -0,0 +1,4 @@ +Microsoft Azure CLI 'KUSTO' Command Module +========================================== + +Provides management capabilities for Kusto (Azure Data Explorer) clusters. \ No newline at end of file diff --git a/src/command_modules/azure-cli-kusto/azure/__init__.py b/src/command_modules/azure-cli-kusto/azure/__init__.py new file mode 100644 index 00000000000..a9dfa5391b9 --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/__init__.py @@ -0,0 +1,7 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import pkg_resources +pkg_resources.declare_namespace(__name__) diff --git a/src/command_modules/azure-cli-kusto/azure/cli/__init__.py b/src/command_modules/azure-cli-kusto/azure/cli/__init__.py new file mode 100644 index 00000000000..a9dfa5391b9 --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/cli/__init__.py @@ -0,0 +1,7 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import pkg_resources +pkg_resources.declare_namespace(__name__) diff --git a/src/command_modules/azure-cli-kusto/azure/cli/command_modules/__init__.py b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/__init__.py new file mode 100644 index 00000000000..a9dfa5391b9 --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/__init__.py @@ -0,0 +1,7 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import pkg_resources +pkg_resources.declare_namespace(__name__) diff --git a/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/__init__.py b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/__init__.py new file mode 100644 index 00000000000..80e87e9fc47 --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/__init__.py @@ -0,0 +1,30 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azure.cli.core import AzCommandsLoader + +import azure.cli.command_modules.kusto._help # pylint: disable=unused-import + + +class KustoCommandsLoader(AzCommandsLoader): + + def __init__(self, cli_ctx=None): + from azure.cli.core.commands import CliCommandType + kusto_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.kusto.custom#{}') + super(KustoCommandsLoader, self).__init__(cli_ctx=cli_ctx, + custom_command_type=kusto_custom, + min_profile='2017-03-10-profile') + + def load_command_table(self, args): + from azure.cli.command_modules.kusto.commands import load_command_table + load_command_table(self, args) + return self.command_table + + def load_arguments(self, command): + from azure.cli.command_modules.kusto._params import load_arguments + load_arguments(self, command) + + +COMMAND_LOADER_CLS = KustoCommandsLoader diff --git a/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/_client_factory.py b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/_client_factory.py new file mode 100644 index 00000000000..ed1ad0c7832 --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/_client_factory.py @@ -0,0 +1,25 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azure.cli.core.profiles import ResourceType +from azure.cli.core.commands.client_factory import get_mgmt_service_client + + +def get_kusto_management_client(cli_ctx, **_): + from azure.mgmt.kusto import KustoManagementClient + return get_mgmt_service_client(cli_ctx, KustoManagementClient) + + +def cf_cluster(cli_ctx, _): + return get_kusto_management_client(cli_ctx).clusters + + +def cf_database(cli_ctx, _): + return get_kusto_management_client(cli_ctx).databases + + +def cf_resource_groups(cli_ctx, subscription_id=None): + return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES, + subscription_id=subscription_id).resource_groups diff --git a/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/_help.py b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/_help.py new file mode 100644 index 00000000000..de1053618aa --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/_help.py @@ -0,0 +1,119 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from knack.help_files import helps + +# pylint: disable=line-too-long + +helps['kusto'] = """ + type: group + short-summary: Manage Azure Kusto resources +""" + +# Kusto cluster +helps['kusto cluster'] = """ + type: group + short-summary: Manage Azure Kusto clusters. +""" + +helps['kusto cluster create'] = """ + type: command + short-summary: Create a Kusto cluster. + examples: + - name: Create a Kusto Cluster. + text: |- + az kusto cluster create -l "Central US" -n myclustername -g myrgname --sku D13_v2 --capacity 10 +""" + +helps['kusto cluster start'] = """ + type: command + short-summary: Start a Kusto cluster. + long-summary: When the cluster is restarted, it takes about ten minutes for it to become available (like when it was originally provisioned). It takes additional time for data to load into the hot cache. +""" + +helps['kusto cluster stop'] = """ + type: command + short-summary: Stop a Kusto cluster. + long-summary: When the cluster is stopped, data is not available for queries, and you can't ingest new data. Start cluster to enable queries +""" + +helps['kusto cluster update'] = """ + type: command + short-summary: Update a Kusto cluster. + examples: + - name: update a Kusto Cluster. + text: |- + az kusto cluster update -n myclustername -g myrgname --sku D14_v2 --capacity 4 +""" + +helps['kusto cluster show'] = """ + type: command + short-summary: Get a Kusto cluster. +""" + +helps['kusto cluster list'] = """ + type: command + short-summary: List a Kusto cluster. +""" + +helps['kusto cluster delete'] = """ + type: command + short-summary: Delete a Kusto cluster. +""" + +helps['kusto cluster wait'] = """ + type: command + short-summary: Wait for a managed Kusto cluster to reach a desired state. + long-summary: If an operation on a cluster was interrupted or was started with `--no-wait`, use this command to + wait for it to complete. +""" + + +# Kusto database +helps['kusto database'] = """ + type: group + short-summary: Manage Azure Kusto databases. +""" + +helps['kusto database create'] = """ + type: command + short-summary: Create a Kusto database. + examples: + - name: create a Kusto Database. + text: |- + az kusto database create --cluster-name myclustername -g myrgname -n mydbname --soft-delete-period 365:00:00:00 --hot-cache-period 31:00:00:00 +""" + + +helps['kusto database update'] = """ + type: command + short-summary: Update a Kusto database. + examples: + - name: create a Kusto Database. + text: |- + az kusto database update --cluster-name myclustername -g myrgname -n mydbname --soft-delete-period 3650:00:00:00 --hot-cache-period 30:00:00:00 +""" + +helps['kusto database delete'] = """ + type: command + short-summary: Delete a Kusto database. +""" + +helps['kusto database list'] = """ + type: command + short-summary: List a Kusto database. +""" + +helps['kusto database show'] = """ + type: command + short-summary: Get a Kusto database. +""" + +helps['kusto database wait'] = """ + type: command + short-summary: Wait for a managed Kusto database to reach a desired state. + long-summary: If an operation on a database was interrupted or was started with `--no-wait`, use this command to + wait for it to complete. +""" diff --git a/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/_params.py b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/_params.py new file mode 100644 index 00000000000..ec7fd155c9b --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/_params.py @@ -0,0 +1,37 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +# pylint: disable=line-too-long +from knack.arguments import CLIArgumentType + +from azure.cli.core.commands.parameters import (name_type) +from azure.mgmt.kusto.models import AzureSkuName +from azure.cli.core.commands.parameters import (get_enum_type) + + +def load_arguments(self, _): + + # Kusto clusters + sku_arg_type = CLIArgumentType(help='The name of the sku.', + arg_type=get_enum_type(AzureSkuName)) + time_format_explenation = 'Time format is DDDD:HH:MM:SS (for example, 10 years would be 3650:00:00:00).' + + with self.argument_context('kusto cluster') as c: + c.ignore('kusto_management_request_options') + c.argument('cluster_name', arg_type=name_type, help='The name of the cluster.', id_part='name') + c.argument('sku', arg_type=sku_arg_type) + c.argument('capacity', type=int, help='The instance number of the VM.') + + # Kusto databases + with self.argument_context('kusto database') as c: + c.ignore('kusto_management_request_options') + c.argument('cluster_name', help='The name of the cluster.', id_part='name') + c.argument('database_name', arg_type=name_type, help='The name of the database.', id_part='child_name_1') + c.argument('soft_delete_period', help='Amount of time that data should be kept so it is available to query. ' + time_format_explenation) + c.argument('hot_cache_period', help='Amount of time that data should be kept in cache.' + time_format_explenation) + + # Kusto database list + with self.argument_context('kusto database list') as c: + c.argument('cluster_name', id_part=None) diff --git a/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/_validators.py b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/_validators.py new file mode 100644 index 00000000000..9c4b76cd5f3 --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/_validators.py @@ -0,0 +1,42 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- +from knack.util import CLIError + + +def validate_database_args(namespace): + if namespace.hot_cache_period: + hot_cache_period_in_days = round_hot_cache_to_days(namespace.hot_cache_period) + if hot_cache_period_in_days < 0: + raise CLIError('hot_cache_period must be a valid time') + if namespace.soft_delete_period: + soft_delete_period_in_days = round_soft_delete_to_days(namespace.soft_delete_period) + if soft_delete_period_in_days < 0: + raise CLIError('soft_delete_period must be a valid time') + + +def validate_cluster_args(namespace): + max_name_length = 22 + name_length = len(namespace.cluster_name) + if name_length > max_name_length: + raise CLIError('name can not be longer then ' + str(max_name_length) + " letters") + + +def round_hot_cache_to_days(time): + return round_timedelta_to_days(time, 'hot_cache_period') + + +def round_soft_delete_to_days(time): + return round_timedelta_to_days(time, 'soft_delete_period') + + +def round_timedelta_to_days(time, parameter_name): + try: + splitted = time.split(":") + numberOfDays = int(splitted[0]) + if int(splitted[1]) > 0: + numberOfDays += 1 + return numberOfDays + except: + raise CLIError(parameter_name + ' must be a valid time format') diff --git a/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/commands.py b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/commands.py new file mode 100644 index 00000000000..0ec09cfd261 --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/commands.py @@ -0,0 +1,43 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +# pylint: disable=line-too-long + +from azure.cli.command_modules.kusto._client_factory import cf_cluster, cf_database +from azure.cli.command_modules.kusto._validators import validate_cluster_args, validate_database_args + + +def load_command_table(self, _): + from azure.cli.core.commands import CliCommandType + + clusters_operations = CliCommandType( + operations_tmpl='azure.mgmt.kusto.operations.clusters_operations#ClustersOperations.{}', + client_factory=cf_cluster) + + database_operations = CliCommandType( + operations_tmpl='azure.mgmt.kusto.operations.databases_operations#DatabasesOperations.{}', + client_factory=cf_database) + + with self.command_group('kusto cluster', + clusters_operations, + client_factory=cf_cluster) as g: + g.custom_command('create', 'cluster_create', supports_no_wait=True, validator=validate_cluster_args) + g.custom_command('stop', 'cluster_stop', supports_no_wait=True) + g.custom_command('start', 'cluster_start', supports_no_wait=True) + g.command('list', 'list_by_resource_group') + g.show_command('show', 'get') + g.command('delete', 'delete', confirmation=True) + g.generic_update_command('update', custom_func_name='update_kusto_cluster') + g.wait_command('wait') + + with self.command_group('kusto database', + database_operations, + client_factory=cf_database) as g: + g.custom_command('create', 'database_create', supports_no_wait=True, validator=validate_database_args) + g.command('delete', 'delete', confirmation=True) + g.generic_update_command('update', custom_func_name='update_kusto_database', validator=validate_database_args, supports_no_wait=True) + g.command('list', 'list_by_cluster') + g.show_command('show', 'get') + g.wait_command('wait') diff --git a/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/custom.py b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/custom.py new file mode 100644 index 00000000000..d2ea3fe2185 --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/custom.py @@ -0,0 +1,173 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- +from knack.log import get_logger +from azure.mgmt.resource import ResourceManagementClient +from azure.cli.core.commands.client_factory import get_mgmt_service_client +from azure.cli.command_modules.kusto._validators import round_hot_cache_to_days, round_soft_delete_to_days +from azure.cli.core.util import sdk_no_wait + +logger = get_logger(__name__) + + +def cluster_create(cmd, + resource_group_name, + cluster_name, + sku, + location=None, + capacity=None, + custom_headers=None, + raw=False, + polling=True, + no_wait=False, + **kwargs): + + from azure.mgmt.kusto.models import Cluster, AzureSku + from azure.cli.command_modules.kusto._client_factory import cf_cluster + + if location is None: + location = _get_resource_group_location(cmd.cli_ctx, resource_group_name) + + _client = cf_cluster(cmd.cli_ctx, None) + + _cluster = Cluster(location=location, sku=AzureSku(name=sku, capacity=capacity)) + + return sdk_no_wait(no_wait, + _client.create_or_update, + resource_group_name=resource_group_name, + cluster_name=cluster_name, + parameters=_cluster, + custom_headers=custom_headers, + raw=raw, + polling=polling, + operation_config=kwargs) + + +def _cluster_get(cmd, + resource_group_name, + cluster_name, + custom_headers=None, + raw=False, + **kwargs): + + from azure.cli.command_modules.kusto._client_factory import cf_cluster + + _client = cf_cluster(cmd.cli_ctx, None) + + return _client.get(resource_group_name=resource_group_name, + cluster_name=cluster_name, + custom_headers=custom_headers, + raw=raw, + operation_config=kwargs) + + +def cluster_start(cmd, + resource_group_name, + cluster_name, + custom_headers=None, + raw=False, + polling=True, + **kwargs): + + from azure.cli.command_modules.kusto._client_factory import cf_cluster + + _client = cf_cluster(cmd.cli_ctx, None) + + return _client.start(resource_group_name=resource_group_name, + cluster_name=cluster_name, + custom_headers=custom_headers, + raw=raw, + polling=polling, + operation_config=kwargs) + + +def cluster_stop(cmd, + resource_group_name, + cluster_name, + custom_headers=None, + raw=False, + polling=True, + **kwargs): + + from azure.cli.command_modules.kusto._client_factory import cf_cluster + + _client = cf_cluster(cmd.cli_ctx, None) + + return _client.stop(resource_group_name=resource_group_name, + cluster_name=cluster_name, + custom_headers=custom_headers, + raw=raw, + polling=polling, + operation_config=kwargs) + + +def database_create(cmd, + resource_group_name, + cluster_name, + database_name, + soft_delete_period, + hot_cache_period=None, + custom_headers=None, + raw=False, + polling=True, + no_wait=False, + **kwargs): + + from azure.mgmt.kusto.models import Database + from azure.cli.command_modules.kusto._client_factory import cf_database + + _client = cf_database(cmd.cli_ctx, None) + _cluster = _cluster_get(cmd, resource_group_name, cluster_name, custom_headers, raw, **kwargs) + + if no_wait: + location = _cluster.output.location + else: + location = _cluster.location + + soft_delete_period_in_days = round_soft_delete_to_days(soft_delete_period) + hot_cache_period_in_days = round_hot_cache_to_days(hot_cache_period) + + _database = Database(location=location, + soft_delete_period_in_days=soft_delete_period_in_days, + hot_cache_period_in_days=hot_cache_period_in_days) + + return sdk_no_wait(no_wait, + _client.create_or_update, + resource_group_name=resource_group_name, + cluster_name=cluster_name, + database_name=database_name, + parameters=_database, + custom_headers=custom_headers, + raw=raw, + polling=polling, + operation_config=kwargs) + + +def update_kusto_cluster(instance, sku=None, capacity=None): + + from azure.mgmt.kusto.models import AzureSku + if sku is None: + sku = instance.sku.name + if capacity is None: + capacity = instance.sku.capacity + instance.sku = AzureSku(name=sku, capacity=capacity) + return instance + + +def update_kusto_database(instance, soft_delete_period, hot_cache_period=None): + + soft_delete_period_in_days = round_soft_delete_to_days(soft_delete_period) + hot_cache_period_in_days = round_hot_cache_to_days(hot_cache_period) + + instance.soft_delete_period_in_days = soft_delete_period_in_days + instance.hot_cache_period_in_days = hot_cache_period_in_days + + return instance + + +def _get_resource_group_location(cli_ctx, resource_group_name): + + client = get_mgmt_service_client(cli_ctx, ResourceManagementClient) + # pylint: disable=no-member + return client.resource_groups.get(resource_group_name).location diff --git a/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/tests/latest/recordings/test_kusto_cluster_life_cycle.yaml b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/tests/latest/recordings/test_kusto_cluster_life_cycle.yaml new file mode 100644 index 00000000000..e8d2e981e44 --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/tests/latest/recordings/test_kusto_cluster_life_cycle.yaml @@ -0,0 +1,1905 @@ +interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-15T09:22:02Z"}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group create] + Connection: [keep-alive] + Content-Length: ['110'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--location --name --tag] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + resourcemanagementclient/2.0.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/clitest.rg000001?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-01-15T09:22:02Z"},"properties":{"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['384'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:22:04 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-01-15T09:22:02Z"},"properties":{"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['384'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:22:05 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: '{"location": "westus", "sku": {"name": "D13_v2", "capacity": 4, "tier": + "Standard"}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + Content-Length: ['84'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/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/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002","name":"test000002","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"D13_v2","tier":"Standard","capacity":4},"properties":{"state":"Creating","queryUri":null,"dataIngestionUri":null,"trustedExternalTenants":null,"virtualNetworkConfiguration":null,"provisioningState":"Creating"}}'} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview'] + cache-control: [no-cache] + content-length: ['531'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:22:09 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['199'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:22:41 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:23:13 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:23:43 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:24:15 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:24:47 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:25:18 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:25:48 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:26:19 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:26:51 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['297'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:27:22 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:27:54 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:28:25 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:28:57 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:29:28 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:30:00 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:30:32 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:31:03 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Running","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:22:10.0270925Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:31:34 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","name":"f4864e16-3983-4cdf-a4a4-ba43b6ca7fd6","status":"Succeeded","startTime":"2019-01-15T09:22:10.0270925Z","endTime":"2019-01-15T09:31:54.6543713Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"48518d31-ddae-4f0f-9b7b-51280d170b9c","provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['466'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:32:05 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/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/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002","name":"test000002","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"D13_v2","tier":"Standard","capacity":4},"tags":{},"properties":{"state":"Running","queryUri":"https://test000002.westus.kusto.windows.net","dataIngestionUri":"https://ingest-test000002.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['648'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:32:07 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster show] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002","name":"test000002","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"D13_v2","tier":"Standard","capacity":4},"tags":{},"properties":{"state":"Running","queryUri":"https://test000002.westus.kusto.windows.net","dataIngestionUri":"https://ingest-test000002.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['648'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:32:09 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002","name":"test000002","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"D13_v2","tier":"Standard","capacity":4},"tags":{},"properties":{"state":"Running","queryUri":"https://test000002.westus.kusto.windows.net","dataIngestionUri":"https://ingest-test000002.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['648'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:32:10 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"tags": {}, "location": "West US", "sku": {"name": "D14_v2", "capacity": + 6, "tier": "Standard"}, "properties": {"trustedExternalTenants": []}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + Content-Length: ['143'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/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/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002","name":"test000002","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"D14_v2","tier":"Standard","capacity":6},"tags":{},"properties":{"trustedExternalTenants":[],"provisioningState":"Accepted"}}'} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview'] + cache-control: [no-cache] + content-length: ['445'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:32:13 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['199'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:32:44 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:33:16 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:33:48 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:34:18 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:34:49 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:35:20 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:35:52 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:36:23 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:36:54 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:37:26 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:37:57 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:38:29 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:39:00 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:39:30 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:40:02 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:40:34 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:41:05 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:41:37 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:42:07 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:42:39 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:43:11 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:43:42 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Running","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:32:12.9250995Z","percentComplete":0.5,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['474'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:44:13 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/a875ed77-2375-4649-84c5-3bdee3bfa86c?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/a875ed77-2375-4649-84c5-3bdee3bfa86c","name":"a875ed77-2375-4649-84c5-3bdee3bfa86c","status":"Succeeded","startTime":"2019-01-15T09:32:12.9250995Z","endTime":"2019-01-15T09:44:33.7608435Z","percentComplete":1.0,"properties":{"OperationKind":"ServiceConfigurationAlter","RootActivityId":"92893bea-60dc-447a-a5e4-7c164ee64d89","provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['478'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:44:45 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster update] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --capacity] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/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/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002","name":"test000002","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"D14_v2","tier":"Standard","capacity":6},"tags":{},"properties":{"state":"Running","queryUri":"https://test000002.westus.kusto.windows.net","dataIngestionUri":"https://ingest-test000002.westus.kusto.windows.net","trustedExternalTenants":[{"value":"72f988bf-86f1-41af-91ab-2d7cd011db47"}],"virtualNetworkConfiguration":null,"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['696'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:44:46 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + Content-Length: ['0'] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: ''} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationResults/32ed4318-18f2-4610-b5d3-c65bab529769?api-version=2018-09-07-preview'] + cache-control: [no-cache] + content-length: ['0'] + date: ['Tue, 15 Jan 2019 09:44:49 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/32ed4318-18f2-4610-b5d3-c65bab529769?api-version=2018-09-07-preview&operationResultResponseType=Location'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/32ed4318-18f2-4610-b5d3-c65bab529769?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/32ed4318-18f2-4610-b5d3-c65bab529769","name":"32ed4318-18f2-4610-b5d3-c65bab529769","status":"Running","startTime":"2019-01-15T09:44:50.1546383Z","endTime":"2019-01-15T09:44:50.1546383Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"0d0d9421-3fd6-43b8-9e2b-8c92e76f3851","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:45:21 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/32ed4318-18f2-4610-b5d3-c65bab529769?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/32ed4318-18f2-4610-b5d3-c65bab529769","name":"32ed4318-18f2-4610-b5d3-c65bab529769","status":"Running","startTime":"2019-01-15T09:44:50.1546383Z","endTime":"2019-01-15T09:44:50.1546383Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"0d0d9421-3fd6-43b8-9e2b-8c92e76f3851","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:45:52 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/32ed4318-18f2-4610-b5d3-c65bab529769?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/32ed4318-18f2-4610-b5d3-c65bab529769","name":"32ed4318-18f2-4610-b5d3-c65bab529769","status":"Running","startTime":"2019-01-15T09:44:50.1546383Z","endTime":"2019-01-15T09:44:50.1546383Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"0d0d9421-3fd6-43b8-9e2b-8c92e76f3851","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:46:23 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/32ed4318-18f2-4610-b5d3-c65bab529769?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/32ed4318-18f2-4610-b5d3-c65bab529769","name":"32ed4318-18f2-4610-b5d3-c65bab529769","status":"Running","startTime":"2019-01-15T09:44:50.1546383Z","endTime":"2019-01-15T09:44:50.1546383Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"0d0d9421-3fd6-43b8-9e2b-8c92e76f3851","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:46:55 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/32ed4318-18f2-4610-b5d3-c65bab529769?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/32ed4318-18f2-4610-b5d3-c65bab529769","name":"32ed4318-18f2-4610-b5d3-c65bab529769","status":"Running","startTime":"2019-01-15T09:44:50.1546383Z","endTime":"2019-01-15T09:44:50.1546383Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"0d0d9421-3fd6-43b8-9e2b-8c92e76f3851","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:47:26 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/32ed4318-18f2-4610-b5d3-c65bab529769?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/32ed4318-18f2-4610-b5d3-c65bab529769","name":"32ed4318-18f2-4610-b5d3-c65bab529769","status":"Running","startTime":"2019-01-15T09:44:50.1546383Z","endTime":"2019-01-15T09:44:50.1546383Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"0d0d9421-3fd6-43b8-9e2b-8c92e76f3851","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:47:56 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['297'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/32ed4318-18f2-4610-b5d3-c65bab529769?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/32ed4318-18f2-4610-b5d3-c65bab529769","name":"32ed4318-18f2-4610-b5d3-c65bab529769","status":"Running","startTime":"2019-01-15T09:44:50.1546383Z","endTime":"2019-01-15T09:44:50.1546383Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"0d0d9421-3fd6-43b8-9e2b-8c92e76f3851","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:48:28 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/32ed4318-18f2-4610-b5d3-c65bab529769?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/32ed4318-18f2-4610-b5d3-c65bab529769","name":"32ed4318-18f2-4610-b5d3-c65bab529769","status":"Running","startTime":"2019-01-15T09:44:50.1546383Z","endTime":"2019-01-15T09:44:50.1546383Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"0d0d9421-3fd6-43b8-9e2b-8c92e76f3851","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:48:59 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/32ed4318-18f2-4610-b5d3-c65bab529769?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/32ed4318-18f2-4610-b5d3-c65bab529769","name":"32ed4318-18f2-4610-b5d3-c65bab529769","status":"Running","startTime":"2019-01-15T09:44:50.1546383Z","endTime":"2019-01-15T09:44:50.1546383Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"0d0d9421-3fd6-43b8-9e2b-8c92e76f3851","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:49:32 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/32ed4318-18f2-4610-b5d3-c65bab529769?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/32ed4318-18f2-4610-b5d3-c65bab529769","name":"32ed4318-18f2-4610-b5d3-c65bab529769","status":"Succeeded","startTime":"2019-01-15T09:44:50.1546383Z","endTime":"2019-01-15T09:49:43.2291384Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"0d0d9421-3fd6-43b8-9e2b-8c92e76f3851","provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['466'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:50:02 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--name --yes --no-wait] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + response: + body: {string: ''} + headers: + cache-control: [no-cache] + content-length: ['0'] + date: ['Tue, 15 Jan 2019 09:50:05 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdHTE1QREVGWUk3TldNUlVGWDZGRUxUVjQ2T0NXNTY1WkdaUHxGODk5ODhFOTYyNDMzNkM5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + status: {code: 202, message: Accepted} +version: 1 diff --git a/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/tests/latest/recordings/test_kusto_cluster_stop_start.yaml b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/tests/latest/recordings/test_kusto_cluster_stop_start.yaml new file mode 100644 index 00000000000..c625d41821f --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/tests/latest/recordings/test_kusto_cluster_stop_start.yaml @@ -0,0 +1,2228 @@ +interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-15T08:25:21Z"}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group create] + Connection: [keep-alive] + Content-Length: ['110'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--location --name --tag] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + resourcemanagementclient/2.0.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/clitest.rg000001?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-01-15T08:25:21Z"},"properties":{"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['384'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:25:29 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-01-15T08:25:21Z"},"properties":{"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['384'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:25:30 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: '{"location": "westus", "sku": {"name": "D13_v2", "tier": "Standard"}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + Content-Length: ['69'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/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/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002","name":"test000002","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"D13_v2","tier":"Standard"},"properties":{"state":"Creating","queryUri":null,"dataIngestionUri":null,"trustedExternalTenants":null,"virtualNetworkConfiguration":null,"provisioningState":"Creating"}}'} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview'] + cache-control: [no-cache] + content-length: ['518'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:25:35 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['199'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:26:07 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:26:38 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:27:10 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:27:42 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:28:13 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:28:44 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:29:15 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:29:47 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:30:20 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:30:51 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:31:22 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:31:54 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:32:25 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:32:57 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:33:28 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:33:59 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['297'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:34:30 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['296'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:35:01 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Running","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:25:35.6601488Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:35:33 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","name":"2f5453a0-f76d-498d-a80f-5ecc0f4cd6d6","status":"Succeeded","startTime":"2019-01-15T08:25:35.6601488Z","endTime":"2019-01-15T08:35:34.1833336Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"9fa65139-c637-499f-80ef-3945e872c0e5","provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['466'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:40:29 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/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/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002","name":"test000002","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"D13_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","queryUri":"https://test000002.westus.kusto.windows.net","dataIngestionUri":"https://ingest-test000002.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['648'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:40:31 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster stop] + Connection: [keep-alive] + Content-Length: ['0'] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002/stop?api-version=2018-09-07-preview + response: + body: {string: ''} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationResults/7153f88a-cc4d-4870-af5c-498ce1d66bdd?api-version=2018-09-07-preview'] + cache-control: [no-cache] + content-length: ['0'] + date: ['Tue, 15 Jan 2019 08:40:34 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/7153f88a-cc4d-4870-af5c-498ce1d66bdd?api-version=2018-09-07-preview&operationResultResponseType=Location'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster stop] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/7153f88a-cc4d-4870-af5c-498ce1d66bdd?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/7153f88a-cc4d-4870-af5c-498ce1d66bdd","name":"7153f88a-cc4d-4870-af5c-498ce1d66bdd","status":"Running","startTime":"2019-01-15T08:40:34.6450058Z","endTime":"2019-01-15T08:40:35.5199824Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"82d6db47-1035-4a0b-a2e7-0dea068a6bac","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['463'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:41:05 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster stop] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/7153f88a-cc4d-4870-af5c-498ce1d66bdd?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/7153f88a-cc4d-4870-af5c-498ce1d66bdd","name":"7153f88a-cc4d-4870-af5c-498ce1d66bdd","status":"Running","startTime":"2019-01-15T08:40:34.6450058Z","endTime":"2019-01-15T08:40:35.5199824Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"82d6db47-1035-4a0b-a2e7-0dea068a6bac","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['463'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:41:36 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster stop] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/7153f88a-cc4d-4870-af5c-498ce1d66bdd?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/7153f88a-cc4d-4870-af5c-498ce1d66bdd","name":"7153f88a-cc4d-4870-af5c-498ce1d66bdd","status":"Running","startTime":"2019-01-15T08:40:34.6450058Z","endTime":"2019-01-15T08:40:35.5199824Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"82d6db47-1035-4a0b-a2e7-0dea068a6bac","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['463'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:42:07 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster stop] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/7153f88a-cc4d-4870-af5c-498ce1d66bdd?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/7153f88a-cc4d-4870-af5c-498ce1d66bdd","name":"7153f88a-cc4d-4870-af5c-498ce1d66bdd","status":"Running","startTime":"2019-01-15T08:40:34.6450058Z","endTime":"2019-01-15T08:40:35.5199824Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"82d6db47-1035-4a0b-a2e7-0dea068a6bac","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['463'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:42:39 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster stop] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/7153f88a-cc4d-4870-af5c-498ce1d66bdd?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/7153f88a-cc4d-4870-af5c-498ce1d66bdd","name":"7153f88a-cc4d-4870-af5c-498ce1d66bdd","status":"Running","startTime":"2019-01-15T08:40:34.6450058Z","endTime":"2019-01-15T08:40:35.5199824Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"82d6db47-1035-4a0b-a2e7-0dea068a6bac","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['463'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:43:09 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster stop] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/7153f88a-cc4d-4870-af5c-498ce1d66bdd?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/7153f88a-cc4d-4870-af5c-498ce1d66bdd","name":"7153f88a-cc4d-4870-af5c-498ce1d66bdd","status":"Running","startTime":"2019-01-15T08:40:34.6450058Z","endTime":"2019-01-15T08:40:35.5199824Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"82d6db47-1035-4a0b-a2e7-0dea068a6bac","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['463'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:43:41 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster stop] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/7153f88a-cc4d-4870-af5c-498ce1d66bdd?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/7153f88a-cc4d-4870-af5c-498ce1d66bdd","name":"7153f88a-cc4d-4870-af5c-498ce1d66bdd","status":"Running","startTime":"2019-01-15T08:40:34.6450058Z","endTime":"2019-01-15T08:40:35.5199824Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"82d6db47-1035-4a0b-a2e7-0dea068a6bac","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['463'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:44:12 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster stop] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/7153f88a-cc4d-4870-af5c-498ce1d66bdd?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/7153f88a-cc4d-4870-af5c-498ce1d66bdd","name":"7153f88a-cc4d-4870-af5c-498ce1d66bdd","status":"Running","startTime":"2019-01-15T08:40:34.6450058Z","endTime":"2019-01-15T08:40:35.5199824Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"82d6db47-1035-4a0b-a2e7-0dea068a6bac","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['463'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:44:43 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster stop] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/7153f88a-cc4d-4870-af5c-498ce1d66bdd?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/7153f88a-cc4d-4870-af5c-498ce1d66bdd","name":"7153f88a-cc4d-4870-af5c-498ce1d66bdd","status":"Running","startTime":"2019-01-15T08:40:34.6450058Z","endTime":"2019-01-15T08:40:35.5199824Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"82d6db47-1035-4a0b-a2e7-0dea068a6bac","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['463'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:45:15 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster stop] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/7153f88a-cc4d-4870-af5c-498ce1d66bdd?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/7153f88a-cc4d-4870-af5c-498ce1d66bdd","name":"7153f88a-cc4d-4870-af5c-498ce1d66bdd","status":"Succeeded","startTime":"2019-01-15T08:40:34.6450058Z","endTime":"2019-01-15T08:45:27.4057933Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"82d6db47-1035-4a0b-a2e7-0dea068a6bac","provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['467'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:45:46 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster show] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002","name":"test000002","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"D13_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","queryUri":"https://test000002.westus.kusto.windows.net","dataIngestionUri":"https://ingest-test000002.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['648'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:45:48 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + Content-Length: ['0'] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002/start?api-version=2018-09-07-preview + response: + body: {string: ''} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview'] + cache-control: [no-cache] + content-length: ['0'] + date: ['Tue, 15 Jan 2019 08:45:50 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview&operationResultResponseType=Location'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:46:21 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:46:51 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:47:24 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:47:54 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:48:26 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:48:57 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:49:30 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:50:01 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:50:32 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:51:03 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:51:35 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:52:06 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:52:38 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['297'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:53:09 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:53:40 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:54:12 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:54:43 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:55:14 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:55:46 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:56:15 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:56:46 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:57:17 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Running","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:45:50.8715192Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:57:49 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster start] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/65a9f2da-aa50-4bbb-a213-7121bd6fe405?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/65a9f2da-aa50-4bbb-a213-7121bd6fe405","name":"65a9f2da-aa50-4bbb-a213-7121bd6fe405","status":"Succeeded","startTime":"2019-01-15T08:45:50.6216171Z","endTime":"2019-01-15T08:57:52.3625621Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterResume","RootActivityId":"ffd0a0fc-b701-4ccb-bd47-ddd2d580f679","provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['466'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:58:20 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster show] + Connection: [keep-alive] + ParameterSetName: [-n -g] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002","name":"test000002","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"D13_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","queryUri":"https://test000002.westus.kusto.windows.net","dataIngestionUri":"https://ingest-test000002.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['648'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:58:21 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + Content-Length: ['0'] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: ''} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationResults/37fc2a6f-5962-4c8c-b826-44707a236632?api-version=2018-09-07-preview'] + cache-control: [no-cache] + content-length: ['0'] + date: ['Tue, 15 Jan 2019 08:58:25 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/37fc2a6f-5962-4c8c-b826-44707a236632?api-version=2018-09-07-preview&operationResultResponseType=Location'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/37fc2a6f-5962-4c8c-b826-44707a236632?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/37fc2a6f-5962-4c8c-b826-44707a236632","name":"37fc2a6f-5962-4c8c-b826-44707a236632","status":"Running","startTime":"2019-01-15T08:58:25.1437226Z","endTime":"2019-01-15T08:58:25.1437226Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"8158f0ac-67df-43b4-8c88-2e7ae7daa0bf","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:58:56 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/37fc2a6f-5962-4c8c-b826-44707a236632?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/37fc2a6f-5962-4c8c-b826-44707a236632","name":"37fc2a6f-5962-4c8c-b826-44707a236632","status":"Running","startTime":"2019-01-15T08:58:25.1437226Z","endTime":"2019-01-15T08:58:25.1437226Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"8158f0ac-67df-43b4-8c88-2e7ae7daa0bf","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:59:27 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/37fc2a6f-5962-4c8c-b826-44707a236632?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/37fc2a6f-5962-4c8c-b826-44707a236632","name":"37fc2a6f-5962-4c8c-b826-44707a236632","status":"Running","startTime":"2019-01-15T08:58:25.1437226Z","endTime":"2019-01-15T08:58:25.1437226Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"8158f0ac-67df-43b4-8c88-2e7ae7daa0bf","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 08:59:58 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/37fc2a6f-5962-4c8c-b826-44707a236632?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/37fc2a6f-5962-4c8c-b826-44707a236632","name":"37fc2a6f-5962-4c8c-b826-44707a236632","status":"Running","startTime":"2019-01-15T08:58:25.1437226Z","endTime":"2019-01-15T08:58:25.1437226Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"8158f0ac-67df-43b4-8c88-2e7ae7daa0bf","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:00:29 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/37fc2a6f-5962-4c8c-b826-44707a236632?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/37fc2a6f-5962-4c8c-b826-44707a236632","name":"37fc2a6f-5962-4c8c-b826-44707a236632","status":"Running","startTime":"2019-01-15T08:58:25.1437226Z","endTime":"2019-01-15T08:58:25.1437226Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"8158f0ac-67df-43b4-8c88-2e7ae7daa0bf","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:01:00 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/37fc2a6f-5962-4c8c-b826-44707a236632?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/37fc2a6f-5962-4c8c-b826-44707a236632","name":"37fc2a6f-5962-4c8c-b826-44707a236632","status":"Running","startTime":"2019-01-15T08:58:25.1437226Z","endTime":"2019-01-15T08:58:25.1437226Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"8158f0ac-67df-43b4-8c88-2e7ae7daa0bf","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:01:32 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/37fc2a6f-5962-4c8c-b826-44707a236632?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/37fc2a6f-5962-4c8c-b826-44707a236632","name":"37fc2a6f-5962-4c8c-b826-44707a236632","status":"Running","startTime":"2019-01-15T08:58:25.1437226Z","endTime":"2019-01-15T08:58:25.1437226Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"8158f0ac-67df-43b4-8c88-2e7ae7daa0bf","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:02:03 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/37fc2a6f-5962-4c8c-b826-44707a236632?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/37fc2a6f-5962-4c8c-b826-44707a236632","name":"37fc2a6f-5962-4c8c-b826-44707a236632","status":"Running","startTime":"2019-01-15T08:58:25.1437226Z","endTime":"2019-01-15T08:58:25.1437226Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"8158f0ac-67df-43b4-8c88-2e7ae7daa0bf","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:02:34 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/37fc2a6f-5962-4c8c-b826-44707a236632?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/37fc2a6f-5962-4c8c-b826-44707a236632","name":"37fc2a6f-5962-4c8c-b826-44707a236632","status":"Running","startTime":"2019-01-15T08:58:25.1437226Z","endTime":"2019-01-15T08:58:25.1437226Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"8158f0ac-67df-43b4-8c88-2e7ae7daa0bf","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:03:05 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/37fc2a6f-5962-4c8c-b826-44707a236632?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/37fc2a6f-5962-4c8c-b826-44707a236632","name":"37fc2a6f-5962-4c8c-b826-44707a236632","status":"Succeeded","startTime":"2019-01-15T08:58:25.1437226Z","endTime":"2019-01-15T09:03:19.8181677Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"8158f0ac-67df-43b4-8c88-2e7ae7daa0bf","provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['466'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:03:37 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--name --yes --no-wait] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + response: + body: {string: ''} + headers: + cache-control: [no-cache] + content-length: ['0'] + date: ['Tue, 15 Jan 2019 09:03:41 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdURFNLUEJMS0lQUzIzUVJJREpaSTVQUTdMTEtIU0lUTlZERXw4QkI0NzgyMjY4MkNCNEY0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + status: {code: 202, message: Accepted} +version: 1 diff --git a/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/tests/latest/recordings/test_kusto_database_life_cycle.yaml b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/tests/latest/recordings/test_kusto_database_life_cycle.yaml new file mode 100644 index 00000000000..67167491ac9 --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/tests/latest/recordings/test_kusto_database_life_cycle.yaml @@ -0,0 +1,1431 @@ +interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-01-15T09:03:42Z"}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group create] + Connection: [keep-alive] + Content-Length: ['110'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--location --name --tag] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + resourcemanagementclient/2.0.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/clitest.rg000001?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-01-15T09:03:42Z"},"properties":{"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['384'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:03:45 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-01-15T09:03:42Z"},"properties":{"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['384'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:03:46 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: '{"location": "westus", "sku": {"name": "D13_v2", "tier": "Standard"}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + Content-Length: ['69'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/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/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002","name":"test000002","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"D13_v2","tier":"Standard"},"properties":{"state":"Creating","queryUri":null,"dataIngestionUri":null,"trustedExternalTenants":null,"virtualNetworkConfiguration":null,"provisioningState":"Creating"}}'} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview'] + cache-control: [no-cache] + content-length: ['518'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:03:50 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['199'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:04:22 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['297'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:04:53 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:05:23 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['297'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:05:55 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:06:26 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:06:57 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:07:29 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:08:00 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:08:32 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:09:03 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:09:35 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:10:06 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:10:37 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:11:09 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:11:40 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:12:11 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:12:43 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:13:15 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:13:46 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Running","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:03:50.1852642Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:14:17 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4e9b1d51-6850-4517-84f1-987de8e9c204?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/4e9b1d51-6850-4517-84f1-987de8e9c204","name":"4e9b1d51-6850-4517-84f1-987de8e9c204","status":"Succeeded","startTime":"2019-01-15T09:03:50.1852642Z","endTime":"2019-01-15T09:14:37.201261Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreate","RootActivityId":"fd38cbd3-9e98-4c67-9874-922b728e3f57","provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['465'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:14:48 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster create] + Connection: [keep-alive] + ParameterSetName: [-n -g --sku --tier] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/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/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002","name":"test000002","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"D13_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","queryUri":"https://test000002.westus.kusto.windows.net","dataIngestionUri":"https://ingest-test000002.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['648'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:14:50 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto database create] + Connection: [keep-alive] + ParameterSetName: [--cluster-name -g -n --soft-delete-period --hot-cache-period] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002","name":"test000002","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"D13_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","queryUri":"https://test000002.westus.kusto.windows.net","dataIngestionUri":"https://ingest-test000002.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['648'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:14:52 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"location": "West US", "properties": {"softDeletePeriodInDays": 10, "hotCachePeriodInDays": + 5}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto database create] + Connection: [keep-alive] + Content-Length: ['96'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--cluster-name -g -n --soft-delete-period --hot-cache-period] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/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/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002/databases/testdb000003?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002/Databases/testdb000003","name":"test000002/testdb000003","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"West + US","properties":{"softDeletePeriodInDays":10,"hotCachePeriodInDays":5,"provisioningState":"Creating"}}'} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationResults/d3854f18-5cd8-43ea-96e1-b6c6a9354acf?api-version=2018-09-07-preview'] + cache-control: [no-cache] + content-length: ['467'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:14:55 GMT'] + etag: ['""'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['199'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto database create] + Connection: [keep-alive] + ParameterSetName: [--cluster-name -g -n --soft-delete-period --hot-cache-period] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/d3854f18-5cd8-43ea-96e1-b6c6a9354acf?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/d3854f18-5cd8-43ea-96e1-b6c6a9354acf","name":"d3854f18-5cd8-43ea-96e1-b6c6a9354acf","status":"Succeeded","startTime":"2019-01-15T09:14:55.7494969Z","endTime":"2019-01-15T09:14:58.7496663Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"9322882f-e6bb-48f8-949b-112c44f4308e","provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['467'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:15:25 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto database create] + Connection: [keep-alive] + ParameterSetName: [--cluster-name -g -n --soft-delete-period --hot-cache-period] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/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/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002/databases/testdb000003?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002/Databases/testdb000003","name":"test000002/testdb000003","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"v4.0\"","location":"West + US","tags":{},"properties":{"softDeletePeriodInDays":10,"hotCachePeriodInDays":5,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['508'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:15:27 GMT'] + etag: ['"v4.0"'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto database update] + Connection: [keep-alive] + ParameterSetName: [--cluster-name -g -n --soft-delete-period --hot-cache-period] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002/databases/testdb000003?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002/Databases/testdb000003","name":"test000002/testdb000003","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"v4.0\"","location":"West + US","tags":{},"properties":{"softDeletePeriodInDays":10,"hotCachePeriodInDays":5,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['508'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:15:29 GMT'] + etag: ['"v4.0"'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: '{"tags": {}, "location": "West US", "properties": {"softDeletePeriodInDays": + 20, "hotCachePeriodInDays": 10, "statistics": {"size": 0.0}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto database update] + Connection: [keep-alive] + Content-Length: ['138'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--cluster-name -g -n --soft-delete-period --hot-cache-period] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/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/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002/databases/testdb000003?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002/Databases/testdb000003","name":"test000002/testdb000003","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"v4.0\"","location":"West + US","tags":{},"properties":{"softDeletePeriodInDays":20,"hotCachePeriodInDays":10,"statistics":{"size":0.0},"provisioningState":"Accepted"}}'} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationResults/582b2a09-e35b-4b0f-a31f-3356b7f18855?api-version=2018-09-07-preview'] + cache-control: [no-cache] + content-length: ['508'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:15:31 GMT'] + etag: ['"v4.0"'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['199'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto database update] + Connection: [keep-alive] + ParameterSetName: [--cluster-name -g -n --soft-delete-period --hot-cache-period] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/582b2a09-e35b-4b0f-a31f-3356b7f18855?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/582b2a09-e35b-4b0f-a31f-3356b7f18855","name":"582b2a09-e35b-4b0f-a31f-3356b7f18855","status":"Succeeded","startTime":"2019-01-15T09:15:31.8728606Z","endTime":"2019-01-15T09:15:35.5605697Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"86266a2f-8ffb-4d2d-9728-49a27d883259","provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['467'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:16:01 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto database update] + Connection: [keep-alive] + ParameterSetName: [--cluster-name -g -n --soft-delete-period --hot-cache-period] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/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/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002/databases/testdb000003?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/Clusters/test000002/Databases/testdb000003","name":"test000002/testdb000003","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"v6.0\"","location":"West + US","tags":{},"properties":{"softDeletePeriodInDays":20,"hotCachePeriodInDays":10,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['509'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:16:03 GMT'] + etag: ['"v6.0"'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto database delete] + Connection: [keep-alive] + Content-Length: ['0'] + ParameterSetName: [--cluster-name -g -n -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002/databases/testdb000003?api-version=2018-09-07-preview + response: + body: {string: ''} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationResults/ca0f1349-83c0-4638-bca4-f8679ad5e4e2?api-version=2018-09-07-preview'] + cache-control: [no-cache] + content-length: ['0'] + date: ['Tue, 15 Jan 2019 09:16:07 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ca0f1349-83c0-4638-bca4-f8679ad5e4e2?api-version=2018-09-07-preview&operationResultResponseType=Location'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto database delete] + Connection: [keep-alive] + ParameterSetName: [--cluster-name -g -n -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ca0f1349-83c0-4638-bca4-f8679ad5e4e2?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/ca0f1349-83c0-4638-bca4-f8679ad5e4e2","name":"ca0f1349-83c0-4638-bca4-f8679ad5e4e2","status":"Succeeded","startTime":"2019-01-15T09:16:07.4213541Z","endTime":"2019-01-15T09:16:09.1088997Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseDelete","RootActivityId":"84b148e5-03e2-4cff-81a4-c571635e7dfc","provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['467'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:16:38 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + Content-Length: ['0'] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Kusto/clusters/test000002?api-version=2018-09-07-preview + response: + body: {string: ''} + headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationResults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095?api-version=2018-09-07-preview'] + cache-control: [no-cache] + content-length: ['0'] + date: ['Tue, 15 Jan 2019 09:16:41 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095?api-version=2018-09-07-preview&operationResultResponseType=Location'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","name":"f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","status":"Running","startTime":"2019-01-15T09:16:41.9073014Z","endTime":"2019-01-15T09:16:41.9073014Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"15bad2ab-ac66-4cfe-9bad-e6010bf6f4ff","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:17:12 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","name":"f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","status":"Running","startTime":"2019-01-15T09:16:41.9073014Z","endTime":"2019-01-15T09:16:41.9073014Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"15bad2ab-ac66-4cfe-9bad-e6010bf6f4ff","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:17:44 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","name":"f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","status":"Running","startTime":"2019-01-15T09:16:41.9073014Z","endTime":"2019-01-15T09:16:41.9073014Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"15bad2ab-ac66-4cfe-9bad-e6010bf6f4ff","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:18:16 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","name":"f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","status":"Running","startTime":"2019-01-15T09:16:41.9073014Z","endTime":"2019-01-15T09:16:41.9073014Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"15bad2ab-ac66-4cfe-9bad-e6010bf6f4ff","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:18:47 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['297'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","name":"f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","status":"Running","startTime":"2019-01-15T09:16:41.9073014Z","endTime":"2019-01-15T09:16:41.9073014Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"15bad2ab-ac66-4cfe-9bad-e6010bf6f4ff","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:19:18 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","name":"f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","status":"Running","startTime":"2019-01-15T09:16:41.9073014Z","endTime":"2019-01-15T09:16:41.9073014Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"15bad2ab-ac66-4cfe-9bad-e6010bf6f4ff","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:19:49 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","name":"f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","status":"Running","startTime":"2019-01-15T09:16:41.9073014Z","endTime":"2019-01-15T09:16:41.9073014Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"15bad2ab-ac66-4cfe-9bad-e6010bf6f4ff","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:20:21 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['297'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","name":"f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","status":"Running","startTime":"2019-01-15T09:16:41.9073014Z","endTime":"2019-01-15T09:16:41.9073014Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"15bad2ab-ac66-4cfe-9bad-e6010bf6f4ff","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:20:54 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","name":"f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","status":"Running","startTime":"2019-01-15T09:16:41.9073014Z","endTime":"2019-01-15T09:16:41.9073014Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"15bad2ab-ac66-4cfe-9bad-e6010bf6f4ff","provisioningState":"Running"}}'} + headers: + cache-control: [no-cache] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:21:25 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['299'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [kusto cluster delete] + Connection: [keep-alive] + ParameterSetName: [-n -g -y] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + azure-mgmt-kusto/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.52] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095?api-version=2018-09-07-preview + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationresults/f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","name":"f77e87ba-84d5-4ef4-b8e5-fb6c82b56095","status":"Succeeded","startTime":"2019-01-15T09:16:41.9073014Z","endTime":"2019-01-15T09:21:32.1568377Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"15bad2ab-ac66-4cfe-9bad-e6010bf6f4ff","provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['466'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 15 Jan 2019 09:21:56 GMT'] + expires: ['-1'] + pragma: [no-cache] + set-cookie: [ARRAffinity=feff4bb9075f81d2c76660b0f1646298084904ca249f0dc7ee8954d4b09d1a4f;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: ['Accept-Encoding,Accept-Encoding'] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['298'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + ParameterSetName: [--name --yes --no-wait] + User-Agent: [python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 + resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.52] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + response: + body: {string: ''} + headers: + cache-control: [no-cache] + content-length: ['0'] + date: ['Tue, 15 Jan 2019 09:22:01 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdDWU1ZTzNGNUkzR0dPUDVNWVgyS05CR0hGWVBSTk1WRjdOTnxBNTk1QTNEMTlBRUE3MzM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + status: {code: 202, message: Accepted} +version: 1 diff --git a/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/tests/latest/test_kusto_commands.py b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/tests/latest/test_kusto_commands.py new file mode 100644 index 00000000000..ed0afa91e4d --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure/cli/command_modules/kusto/tests/latest/test_kusto_commands.py @@ -0,0 +1,135 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer +import unittest + +_running_state = "Running" +_stopped_state = "Stopped" + + +class AzureKustoClusterTests(ScenarioTest): + + @ResourceGroupPreparer() + def test_kusto_cluster_life_cycle(self, resource_group): + self.kwargs.update({ + 'sku': 'D13_v2', + 'name': self.create_random_name(prefix='test', length=20), + 'location': "Central US", + 'capacity': 4 + }) + + # Create cluster + self.cmd('az kusto cluster create -n {name} -g {rg} --sku {sku} --capacity {capacity}', + checks=[self.check('name', '{name}'), + self.check('sku.name', '{sku}'), + self.check('state', _running_state), + self.check('provisioningState', 'Succeeded'), + self.check('sku.capacity', '{capacity}')]) + + # Get cluster + self.cmd('az kusto cluster show -n {name} -g {rg}', + checks=[self.check('name', '{name}'), + self.check('sku.name', '{sku}'), + self.check('state', _running_state), + self.check('provisioningState', 'Succeeded'), + self.check('sku.capacity', '{capacity}')]) + + # Update cluster + self.kwargs.update({ + 'sku': 'D14_v2', + 'capacity': 6 + }) + self.cmd('az kusto cluster update -n {name} -g {rg} --sku {sku} --capacity {capacity} ', + checks=[self.check('name', '{name}'), + self.check('sku.name', '{sku}'), + self.check('state', _running_state), + self.check('provisioningState', 'Succeeded'), + self.check('sku.capacity', '{capacity}')]) + + # Delete cluster + self.cmd('az kusto cluster delete -n {name} -g {rg} -y') + + @ResourceGroupPreparer() + def test_kusto_cluster_stop_start(self, resource_group): + self.kwargs.update({ + 'sku': 'D13_v2', + 'name': self.create_random_name(prefix='test', length=20), + }) + + self.cmd('az kusto cluster create -n {name} -g {rg} --sku {sku}', + checks=[self.check('name', '{name}'), + self.check('sku.name', '{sku}'), + self.check('state', _running_state), + self.check('provisioningState', 'Succeeded')]) + + self.cmd('az kusto cluster stop -n {name} -g {rg}') + + # Verify that the state is stopped + self.cmd('az kusto cluster show -n {name} -g {rg}', + checks=[self.check('name', '{name}'), + self.check('sku.name', '{sku}'), + self.check('state', _stopped_state), + self.check('provisioningState', 'Succeeded')]) + + self.cmd('az kusto cluster start -n {name} -g {rg}') + + # Verify that the state is running + self.cmd('az kusto cluster show -n {name} -g {rg}', + checks=[self.check('name', '{name}'), + self.check('sku.name', '{sku}'), + self.check('state', _running_state), + self.check('provisioningState', 'Succeeded')]) + + self.cmd('az kusto cluster delete -n {name} -g {rg} -y') + + +class AzureKustoDatabaseTests (ScenarioTest): + @ResourceGroupPreparer() + def test_kusto_database_life_cycle(self, resource_group): + self.kwargs.update({ + 'sku': 'D13_v2', + 'cluster_name': self.create_random_name(prefix='test', length=20), + 'database_name': self.create_random_name(prefix='testdb', length=20), + 'location': "Central US", + 'soft_delete_period': '10:00:00:00', + 'hot_cache_period': '5:00:00:00', + 'soft_delete_period_in_days': 10, + 'hot_cache_period_in_days': 5 + }) + + # Create cluster + self.cmd('az kusto cluster create -n {cluster_name} -g {rg} --sku {sku}', + checks=[self.check('name', '{cluster_name}'), + self.check('sku.name', '{sku}')]) + + # Create database + self.cmd('az kusto database create --cluster-name {cluster_name} -g {rg} -n {database_name} --soft-delete-period {soft_delete_period} --hot-cache-period {hot_cache_period}', + checks=[self.check('name', '{cluster_name}/{database_name}'), + self.check('softDeletePeriodInDays', '{soft_delete_period_in_days}'), + self.check('hotCachePeriodInDays', '{hot_cache_period_in_days}')]) + + # Update database + self.kwargs.update({ + 'soft_delete_period': '20:00:00:00', + 'hot_cache_period': '10:00:00:00', + 'soft_delete_period_in_days': 20, + 'hot_cache_period_in_days': 10 + }) + + self.cmd('az kusto database update --cluster-name {cluster_name} -g {rg} -n {database_name} --soft-delete-period {soft_delete_period} --hot-cache-period {hot_cache_period}', + checks=[self.check('name', '{cluster_name}/{database_name}'), + self.check('softDeletePeriodInDays', '{soft_delete_period_in_days}'), + self.check('hotCachePeriodInDays', '{hot_cache_period_in_days}')]) + + # Delete database + self.cmd('az kusto database delete --cluster-name {cluster_name} -g {rg} -n {database_name} -y') + + # Delete cluster + self.cmd('az kusto cluster delete -n {cluster_name} -g {rg} -y') + + +if __name__ == '__main__': + unittest.main() diff --git a/src/command_modules/azure-cli-kusto/azure_bdist_wheel.py b/src/command_modules/azure-cli-kusto/azure_bdist_wheel.py new file mode 100644 index 00000000000..8a81d1b6177 --- /dev/null +++ b/src/command_modules/azure-cli-kusto/azure_bdist_wheel.py @@ -0,0 +1,54 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +#-------------------------------------------------------------------------- + +from distutils import log as logger +import os.path + +from wheel.bdist_wheel import bdist_wheel +class azure_bdist_wheel(bdist_wheel): + """The purpose of this class is to build wheel a little differently than the sdist, + without requiring to build the wheel from the sdist (i.e. you can build the wheel + directly from source). + """ + + description = "Create an Azure wheel distribution" + + user_options = bdist_wheel.user_options + \ + [('azure-namespace-package=', None, + "Name of the deepest nspkg used")] + + def initialize_options(self): + bdist_wheel.initialize_options(self) + self.azure_namespace_package = None + + def finalize_options(self): + bdist_wheel.finalize_options(self) + if self.azure_namespace_package and not self.azure_namespace_package.endswith("-nspkg"): + raise ValueError("azure_namespace_package must finish by -nspkg") + + def run(self): + if not self.distribution.install_requires: + self.distribution.install_requires = [] + self.distribution.install_requires.append( + "{}>=2.0.0".format(self.azure_namespace_package)) + bdist_wheel.run(self) + + def write_record(self, bdist_dir, distinfo_dir): + if self.azure_namespace_package: + # Split and remove last part, assuming it's "nspkg" + subparts = self.azure_namespace_package.split('-')[0:-1] + folder_with_init = [os.path.join(*subparts[0:i+1]) for i in range(len(subparts))] + for azure_sub_package in folder_with_init: + init_file = os.path.join(bdist_dir, azure_sub_package, '__init__.py') + if os.path.isfile(init_file): + logger.info("manually remove {} while building the wheel".format(init_file)) + os.remove(init_file) + else: + raise ValueError("Unable to find {}. Are you sure of your namespace package?".format(init_file)) + bdist_wheel.write_record(self, bdist_dir, distinfo_dir) +cmdclass = { + 'bdist_wheel': azure_bdist_wheel, +} diff --git a/src/command_modules/azure-cli-kusto/setup.cfg b/src/command_modules/azure-cli-kusto/setup.cfg new file mode 100644 index 00000000000..3326c62a76e --- /dev/null +++ b/src/command_modules/azure-cli-kusto/setup.cfg @@ -0,0 +1,3 @@ +[bdist_wheel] +universal=1 +azure-namespace-package=azure-cli-command_modules-nspkg diff --git a/src/command_modules/azure-cli-kusto/setup.py b/src/command_modules/azure-cli-kusto/setup.py new file mode 100644 index 00000000000..3031337f5da --- /dev/null +++ b/src/command_modules/azure-cli-kusto/setup.py @@ -0,0 +1,60 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from codecs import open +from setuptools import setup +try: + from azure_bdist_wheel import cmdclass +except ImportError: + from distutils import log as logger + logger.warn("Wheel is not available, disabling bdist_wheel hook") + cmdclass = {} + +VERSION = "0.1.0" + +CLASSIFIERS = [ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'Intended Audience :: System Administrators', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'License :: OSI Approved :: MIT License', +] + +DEPENDENCIES = [ + 'azure-cli-core', + 'azure-mgmt-kusto==0.2.0', + 'six' +] + +with open('README.rst', 'r', encoding='utf-8') as f: + README = f.read() +with open('HISTORY.rst', 'r', encoding='utf-8') as f: + HISTORY = f.read() + +setup( + name='azure-cli-kusto', + version=VERSION, + description='Microsoft Azure Command-Line Tools KUSTO Command Module', + long_description=README + '\n\n' + HISTORY, + license='MIT', + author='Microsoft Corporation', + author_email='azpycli@microsoft.com', + url='https://github.com/Azure/azure-cli', + classifiers=CLASSIFIERS, + packages=[ + 'azure', + 'azure.cli', + 'azure.cli.command_modules', + 'azure.cli.command_modules.kusto' + ], + install_requires=DEPENDENCIES, + cmdclass=cmdclass +) diff --git a/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/_help.py b/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/_help.py index ac00d690e8d..dda5ac62c5a 100644 --- a/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/_help.py +++ b/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/_help.py @@ -3,6 +3,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- +# pylint: disable=line-too-long, too-many-lines from knack.help_files import helps