From b20a2587e21dcfbdfa7d17f95ce78e42e6b415b2 Mon Sep 17 00:00:00 2001 From: changlong-liu <59815250+changlong-liu@users.noreply.github.com> Date: Wed, 15 Jul 2020 11:56:47 +0800 Subject: [PATCH] 20200713 sdk automation/azure mgmt kusto (#12510) * Generated from 0901facf2e66cb8033bec733d0491896d94d1e27 Update custom-words.txt * version 0.9.0 * run test Co-authored-by: SDK Automation --- sdk/kusto/azure-mgmt-kusto/CHANGELOG.md | 9 + .../mgmt/kusto/_kusto_management_client.py | 2 +- .../azure/mgmt/kusto/models/__init__.py | 2 + .../models/_kusto_management_client_enums.py | 12 + .../azure/mgmt/kusto/models/_models.py | 56 +- .../azure/mgmt/kusto/models/_models_py3.py | 62 +- ...ched_database_configurations_operations.py | 4 +- ...luster_principal_assignments_operations.py | 4 +- .../kusto/operations/_clusters_operations.py | 4 +- .../_data_connections_operations.py | 91 ++- ...tabase_principal_assignments_operations.py | 4 +- .../kusto/operations/_databases_operations.py | 4 +- .../mgmt/kusto/operations/_operations.py | 4 +- .../azure/mgmt/kusto/version.py | 2 +- ...st_cli_mgmt_kusto.test_kusto_adjusted.yaml | 769 +++++++++--------- 15 files changed, 566 insertions(+), 463 deletions(-) diff --git a/sdk/kusto/azure-mgmt-kusto/CHANGELOG.md b/sdk/kusto/azure-mgmt-kusto/CHANGELOG.md index 1599e6614bb5..a076e7efca5f 100644 --- a/sdk/kusto/azure-mgmt-kusto/CHANGELOG.md +++ b/sdk/kusto/azure-mgmt-kusto/CHANGELOG.md @@ -1,5 +1,14 @@ # Release History +## 0.9.0 (2020-07-13) + +**Features** + + - Model Cluster has a new parameter enable_double_encryption + - Model ClusterUpdate has a new parameter enable_double_encryption + - Model EventGridDataConnection has a new parameter blob_storage_event_type + - Model EventGridDataConnection has a new parameter ignore_first_record + ## 0.8.0 (2020-05-31) **Breaking changes** diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/_kusto_management_client.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/_kusto_management_client.py index 5b15776f1312..595bd9af8f43 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/_kusto_management_client.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/_kusto_management_client.py @@ -61,7 +61,7 @@ def __init__( super(KustoManagementClient, self).__init__(self.config.credentials, self.config) client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} - self.api_version = '2020-02-15' + self.api_version = '2020-06-14' self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/__init__.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/__init__.py index 07825e1c5873..4b4cde2b39c2 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/__init__.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/__init__.py @@ -128,6 +128,7 @@ Compression, IotHubDataFormat, EventGridDataFormat, + BlobStorageEventType, IdentityType, DatabasePrincipalRole, DatabasePrincipalType, @@ -208,6 +209,7 @@ 'Compression', 'IotHubDataFormat', 'EventGridDataFormat', + 'BlobStorageEventType', 'IdentityType', 'DatabasePrincipalRole', 'DatabasePrincipalType', diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_kusto_management_client_enums.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_kusto_management_client_enums.py index 1e1fc88897ea..cade6676edc6 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_kusto_management_client_enums.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_kusto_management_client_enums.py @@ -109,6 +109,8 @@ class EventHubDataFormat(str, Enum): tsve = "TSVE" parquet = "PARQUET" orc = "ORC" + apacheavro = "APACHEAVRO" + w3_clogfile = "W3CLOGFILE" class Compression(str, Enum): @@ -133,6 +135,8 @@ class IotHubDataFormat(str, Enum): tsve = "TSVE" parquet = "PARQUET" orc = "ORC" + apacheavro = "APACHEAVRO" + w3_clogfile = "W3CLOGFILE" class EventGridDataFormat(str, Enum): @@ -151,6 +155,14 @@ class EventGridDataFormat(str, Enum): tsve = "TSVE" parquet = "PARQUET" orc = "ORC" + apacheavro = "APACHEAVRO" + w3_clogfile = "W3CLOGFILE" + + +class BlobStorageEventType(str, Enum): + + microsoft_storage_blob_created = "Microsoft.Storage.BlobCreated" + microsoft_storage_blob_renamed = "Microsoft.Storage.BlobRenamed" class IdentityType(str, Enum): diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models.py index 7f8739e7621a..0dbc4cf11a18 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models.py @@ -518,8 +518,12 @@ class Cluster(TrackedResource): :param enable_purge: A boolean value that indicates if the purge operations are enabled. Default value: False . :type enable_purge: bool - :param language_extensions: List of the cluster's language extensions. - :type language_extensions: ~azure.mgmt.kusto.models.LanguageExtensionsList + :ivar language_extensions: List of the cluster's language extensions. + :vartype language_extensions: + ~azure.mgmt.kusto.models.LanguageExtensionsList + :param enable_double_encryption: A boolean value that indicates if double + encryption is enabled. Default value: False . + :type enable_double_encryption: bool """ _validation = { @@ -533,6 +537,7 @@ class Cluster(TrackedResource): 'uri': {'readonly': True}, 'data_ingestion_uri': {'readonly': True}, 'state_reason': {'readonly': True}, + 'language_extensions': {'readonly': True}, } _attribute_map = { @@ -557,6 +562,7 @@ class Cluster(TrackedResource): 'key_vault_properties': {'key': 'properties.keyVaultProperties', 'type': 'KeyVaultProperties'}, 'enable_purge': {'key': 'properties.enablePurge', 'type': 'bool'}, 'language_extensions': {'key': 'properties.languageExtensions', 'type': 'LanguageExtensionsList'}, + 'enable_double_encryption': {'key': 'properties.enableDoubleEncryption', 'type': 'bool'}, } def __init__(self, **kwargs): @@ -576,7 +582,8 @@ def __init__(self, **kwargs): self.virtual_network_configuration = kwargs.get('virtual_network_configuration', None) self.key_vault_properties = kwargs.get('key_vault_properties', None) self.enable_purge = kwargs.get('enable_purge', False) - self.language_extensions = kwargs.get('language_extensions', None) + self.language_extensions = None + self.enable_double_encryption = kwargs.get('enable_double_encryption', False) class ClusterCheckNameRequest(Model): @@ -775,8 +782,12 @@ class ClusterUpdate(Resource): :param enable_purge: A boolean value that indicates if the purge operations are enabled. Default value: False . :type enable_purge: bool - :param language_extensions: List of the cluster's language extensions. - :type language_extensions: ~azure.mgmt.kusto.models.LanguageExtensionsList + :ivar language_extensions: List of the cluster's language extensions. + :vartype language_extensions: + ~azure.mgmt.kusto.models.LanguageExtensionsList + :param enable_double_encryption: A boolean value that indicates if double + encryption is enabled. Default value: False . + :type enable_double_encryption: bool """ _validation = { @@ -788,6 +799,7 @@ class ClusterUpdate(Resource): 'uri': {'readonly': True}, 'data_ingestion_uri': {'readonly': True}, 'state_reason': {'readonly': True}, + 'language_extensions': {'readonly': True}, } _attribute_map = { @@ -811,6 +823,7 @@ class ClusterUpdate(Resource): 'key_vault_properties': {'key': 'properties.keyVaultProperties', 'type': 'KeyVaultProperties'}, 'enable_purge': {'key': 'properties.enablePurge', 'type': 'bool'}, 'language_extensions': {'key': 'properties.languageExtensions', 'type': 'LanguageExtensionsList'}, + 'enable_double_encryption': {'key': 'properties.enableDoubleEncryption', 'type': 'bool'}, } def __init__(self, **kwargs): @@ -831,7 +844,8 @@ def __init__(self, **kwargs): self.virtual_network_configuration = kwargs.get('virtual_network_configuration', None) self.key_vault_properties = kwargs.get('key_vault_properties', None) self.enable_purge = kwargs.get('enable_purge', False) - self.language_extensions = kwargs.get('language_extensions', None) + self.language_extensions = None + self.enable_double_encryption = kwargs.get('enable_double_encryption', False) class Database(ProxyResource): @@ -1278,17 +1292,25 @@ class EventGridDataConnection(DataConnection): :type event_hub_resource_id: str :param consumer_group: Required. The event hub consumer group. :type consumer_group: str - :param table_name: Required. The table where the data should be ingested. - Optionally the table information can be added to each message. + :param table_name: The table where the data should be ingested. Optionally + the table information can be added to each message. :type table_name: str :param mapping_rule_name: The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. :type mapping_rule_name: str - :param data_format: Required. The data format of the message. Optionally - the data format can be added to each message. Possible values include: - 'MULTIJSON', 'JSON', 'CSV', 'TSV', 'SCSV', 'SOHSV', 'PSV', 'TXT', 'RAW', - 'SINGLEJSON', 'AVRO', 'TSVE', 'PARQUET', 'ORC' + :param data_format: The data format of the message. Optionally the data + format can be added to each message. Possible values include: 'MULTIJSON', + 'JSON', 'CSV', 'TSV', 'SCSV', 'SOHSV', 'PSV', 'TXT', 'RAW', 'SINGLEJSON', + 'AVRO', 'TSVE', 'PARQUET', 'ORC', 'APACHEAVRO', 'W3CLOGFILE' :type data_format: str or ~azure.mgmt.kusto.models.EventGridDataFormat + :param ignore_first_record: A Boolean value that, if set to true, + indicates that ingestion should ignore the first record of every file + :type ignore_first_record: bool + :param blob_storage_event_type: The name of blob storage event type to + process. Possible values include: 'Microsoft.Storage.BlobCreated', + 'Microsoft.Storage.BlobRenamed' + :type blob_storage_event_type: str or + ~azure.mgmt.kusto.models.BlobStorageEventType """ _validation = { @@ -1299,8 +1321,6 @@ class EventGridDataConnection(DataConnection): 'storage_account_resource_id': {'required': True}, 'event_hub_resource_id': {'required': True}, 'consumer_group': {'required': True}, - 'table_name': {'required': True}, - 'data_format': {'required': True}, } _attribute_map = { @@ -1315,6 +1335,8 @@ class EventGridDataConnection(DataConnection): 'table_name': {'key': 'properties.tableName', 'type': 'str'}, 'mapping_rule_name': {'key': 'properties.mappingRuleName', 'type': 'str'}, 'data_format': {'key': 'properties.dataFormat', 'type': 'str'}, + 'ignore_first_record': {'key': 'properties.ignoreFirstRecord', 'type': 'bool'}, + 'blob_storage_event_type': {'key': 'properties.blobStorageEventType', 'type': 'str'}, } def __init__(self, **kwargs): @@ -1325,6 +1347,8 @@ def __init__(self, **kwargs): self.table_name = kwargs.get('table_name', None) self.mapping_rule_name = kwargs.get('mapping_rule_name', None) self.data_format = kwargs.get('data_format', None) + self.ignore_first_record = kwargs.get('ignore_first_record', None) + self.blob_storage_event_type = kwargs.get('blob_storage_event_type', None) self.kind = 'EventGrid' @@ -1362,7 +1386,7 @@ class EventHubDataConnection(DataConnection): :param data_format: The data format of the message. Optionally the data format can be added to each message. Possible values include: 'MULTIJSON', 'JSON', 'CSV', 'TSV', 'SCSV', 'SOHSV', 'PSV', 'TXT', 'RAW', 'SINGLEJSON', - 'AVRO', 'TSVE', 'PARQUET', 'ORC' + 'AVRO', 'TSVE', 'PARQUET', 'ORC', 'APACHEAVRO', 'W3CLOGFILE' :type data_format: str or ~azure.mgmt.kusto.models.EventHubDataFormat :param event_system_properties: System properties of the event hub :type event_system_properties: list[str] @@ -1551,7 +1575,7 @@ class IotHubDataConnection(DataConnection): :param data_format: The data format of the message. Optionally the data format can be added to each message. Possible values include: 'MULTIJSON', 'JSON', 'CSV', 'TSV', 'SCSV', 'SOHSV', 'PSV', 'TXT', 'RAW', 'SINGLEJSON', - 'AVRO', 'TSVE', 'PARQUET', 'ORC' + 'AVRO', 'TSVE', 'PARQUET', 'ORC', 'APACHEAVRO', 'W3CLOGFILE' :type data_format: str or ~azure.mgmt.kusto.models.IotHubDataFormat :param event_system_properties: System properties of the iot hub :type event_system_properties: list[str] diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models_py3.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models_py3.py index b8153e7c1adf..335e27993aa2 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models_py3.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models_py3.py @@ -518,8 +518,12 @@ class Cluster(TrackedResource): :param enable_purge: A boolean value that indicates if the purge operations are enabled. Default value: False . :type enable_purge: bool - :param language_extensions: List of the cluster's language extensions. - :type language_extensions: ~azure.mgmt.kusto.models.LanguageExtensionsList + :ivar language_extensions: List of the cluster's language extensions. + :vartype language_extensions: + ~azure.mgmt.kusto.models.LanguageExtensionsList + :param enable_double_encryption: A boolean value that indicates if double + encryption is enabled. Default value: False . + :type enable_double_encryption: bool """ _validation = { @@ -533,6 +537,7 @@ class Cluster(TrackedResource): 'uri': {'readonly': True}, 'data_ingestion_uri': {'readonly': True}, 'state_reason': {'readonly': True}, + 'language_extensions': {'readonly': True}, } _attribute_map = { @@ -557,9 +562,10 @@ class Cluster(TrackedResource): 'key_vault_properties': {'key': 'properties.keyVaultProperties', 'type': 'KeyVaultProperties'}, 'enable_purge': {'key': 'properties.enablePurge', 'type': 'bool'}, 'language_extensions': {'key': 'properties.languageExtensions', 'type': 'LanguageExtensionsList'}, + 'enable_double_encryption': {'key': 'properties.enableDoubleEncryption', 'type': 'bool'}, } - def __init__(self, *, location: str, sku, tags=None, zones=None, identity=None, trusted_external_tenants=None, optimized_autoscale=None, enable_disk_encryption: bool=None, enable_streaming_ingest: bool=False, virtual_network_configuration=None, key_vault_properties=None, enable_purge: bool=False, language_extensions=None, **kwargs) -> None: + def __init__(self, *, location: str, sku, tags=None, zones=None, identity=None, trusted_external_tenants=None, optimized_autoscale=None, enable_disk_encryption: bool=None, enable_streaming_ingest: bool=False, virtual_network_configuration=None, key_vault_properties=None, enable_purge: bool=False, enable_double_encryption: bool=False, **kwargs) -> None: super(Cluster, self).__init__(tags=tags, location=location, **kwargs) self.sku = sku self.zones = zones @@ -576,7 +582,8 @@ def __init__(self, *, location: str, sku, tags=None, zones=None, identity=None, self.virtual_network_configuration = virtual_network_configuration self.key_vault_properties = key_vault_properties self.enable_purge = enable_purge - self.language_extensions = language_extensions + self.language_extensions = None + self.enable_double_encryption = enable_double_encryption class ClusterCheckNameRequest(Model): @@ -775,8 +782,12 @@ class ClusterUpdate(Resource): :param enable_purge: A boolean value that indicates if the purge operations are enabled. Default value: False . :type enable_purge: bool - :param language_extensions: List of the cluster's language extensions. - :type language_extensions: ~azure.mgmt.kusto.models.LanguageExtensionsList + :ivar language_extensions: List of the cluster's language extensions. + :vartype language_extensions: + ~azure.mgmt.kusto.models.LanguageExtensionsList + :param enable_double_encryption: A boolean value that indicates if double + encryption is enabled. Default value: False . + :type enable_double_encryption: bool """ _validation = { @@ -788,6 +799,7 @@ class ClusterUpdate(Resource): 'uri': {'readonly': True}, 'data_ingestion_uri': {'readonly': True}, 'state_reason': {'readonly': True}, + 'language_extensions': {'readonly': True}, } _attribute_map = { @@ -811,9 +823,10 @@ class ClusterUpdate(Resource): 'key_vault_properties': {'key': 'properties.keyVaultProperties', 'type': 'KeyVaultProperties'}, 'enable_purge': {'key': 'properties.enablePurge', 'type': 'bool'}, 'language_extensions': {'key': 'properties.languageExtensions', 'type': 'LanguageExtensionsList'}, + 'enable_double_encryption': {'key': 'properties.enableDoubleEncryption', 'type': 'bool'}, } - def __init__(self, *, tags=None, location: str=None, sku=None, identity=None, trusted_external_tenants=None, optimized_autoscale=None, enable_disk_encryption: bool=None, enable_streaming_ingest: bool=False, virtual_network_configuration=None, key_vault_properties=None, enable_purge: bool=False, language_extensions=None, **kwargs) -> None: + def __init__(self, *, tags=None, location: str=None, sku=None, identity=None, trusted_external_tenants=None, optimized_autoscale=None, enable_disk_encryption: bool=None, enable_streaming_ingest: bool=False, virtual_network_configuration=None, key_vault_properties=None, enable_purge: bool=False, enable_double_encryption: bool=False, **kwargs) -> None: super(ClusterUpdate, self).__init__(**kwargs) self.tags = tags self.location = location @@ -831,7 +844,8 @@ def __init__(self, *, tags=None, location: str=None, sku=None, identity=None, tr self.virtual_network_configuration = virtual_network_configuration self.key_vault_properties = key_vault_properties self.enable_purge = enable_purge - self.language_extensions = language_extensions + self.language_extensions = None + self.enable_double_encryption = enable_double_encryption class Database(ProxyResource): @@ -1278,17 +1292,25 @@ class EventGridDataConnection(DataConnection): :type event_hub_resource_id: str :param consumer_group: Required. The event hub consumer group. :type consumer_group: str - :param table_name: Required. The table where the data should be ingested. - Optionally the table information can be added to each message. + :param table_name: The table where the data should be ingested. Optionally + the table information can be added to each message. :type table_name: str :param mapping_rule_name: The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. :type mapping_rule_name: str - :param data_format: Required. The data format of the message. Optionally - the data format can be added to each message. Possible values include: - 'MULTIJSON', 'JSON', 'CSV', 'TSV', 'SCSV', 'SOHSV', 'PSV', 'TXT', 'RAW', - 'SINGLEJSON', 'AVRO', 'TSVE', 'PARQUET', 'ORC' + :param data_format: The data format of the message. Optionally the data + format can be added to each message. Possible values include: 'MULTIJSON', + 'JSON', 'CSV', 'TSV', 'SCSV', 'SOHSV', 'PSV', 'TXT', 'RAW', 'SINGLEJSON', + 'AVRO', 'TSVE', 'PARQUET', 'ORC', 'APACHEAVRO', 'W3CLOGFILE' :type data_format: str or ~azure.mgmt.kusto.models.EventGridDataFormat + :param ignore_first_record: A Boolean value that, if set to true, + indicates that ingestion should ignore the first record of every file + :type ignore_first_record: bool + :param blob_storage_event_type: The name of blob storage event type to + process. Possible values include: 'Microsoft.Storage.BlobCreated', + 'Microsoft.Storage.BlobRenamed' + :type blob_storage_event_type: str or + ~azure.mgmt.kusto.models.BlobStorageEventType """ _validation = { @@ -1299,8 +1321,6 @@ class EventGridDataConnection(DataConnection): 'storage_account_resource_id': {'required': True}, 'event_hub_resource_id': {'required': True}, 'consumer_group': {'required': True}, - 'table_name': {'required': True}, - 'data_format': {'required': True}, } _attribute_map = { @@ -1315,9 +1335,11 @@ class EventGridDataConnection(DataConnection): 'table_name': {'key': 'properties.tableName', 'type': 'str'}, 'mapping_rule_name': {'key': 'properties.mappingRuleName', 'type': 'str'}, 'data_format': {'key': 'properties.dataFormat', 'type': 'str'}, + 'ignore_first_record': {'key': 'properties.ignoreFirstRecord', 'type': 'bool'}, + 'blob_storage_event_type': {'key': 'properties.blobStorageEventType', 'type': 'str'}, } - def __init__(self, *, storage_account_resource_id: str, event_hub_resource_id: str, consumer_group: str, table_name: str, data_format, location: str=None, mapping_rule_name: str=None, **kwargs) -> None: + def __init__(self, *, storage_account_resource_id: str, event_hub_resource_id: str, consumer_group: str, location: str=None, table_name: str=None, mapping_rule_name: str=None, data_format=None, ignore_first_record: bool=None, blob_storage_event_type=None, **kwargs) -> None: super(EventGridDataConnection, self).__init__(location=location, **kwargs) self.storage_account_resource_id = storage_account_resource_id self.event_hub_resource_id = event_hub_resource_id @@ -1325,6 +1347,8 @@ def __init__(self, *, storage_account_resource_id: str, event_hub_resource_id: s self.table_name = table_name self.mapping_rule_name = mapping_rule_name self.data_format = data_format + self.ignore_first_record = ignore_first_record + self.blob_storage_event_type = blob_storage_event_type self.kind = 'EventGrid' @@ -1362,7 +1386,7 @@ class EventHubDataConnection(DataConnection): :param data_format: The data format of the message. Optionally the data format can be added to each message. Possible values include: 'MULTIJSON', 'JSON', 'CSV', 'TSV', 'SCSV', 'SOHSV', 'PSV', 'TXT', 'RAW', 'SINGLEJSON', - 'AVRO', 'TSVE', 'PARQUET', 'ORC' + 'AVRO', 'TSVE', 'PARQUET', 'ORC', 'APACHEAVRO', 'W3CLOGFILE' :type data_format: str or ~azure.mgmt.kusto.models.EventHubDataFormat :param event_system_properties: System properties of the event hub :type event_system_properties: list[str] @@ -1551,7 +1575,7 @@ class IotHubDataConnection(DataConnection): :param data_format: The data format of the message. Optionally the data format can be added to each message. Possible values include: 'MULTIJSON', 'JSON', 'CSV', 'TSV', 'SCSV', 'SOHSV', 'PSV', 'TXT', 'RAW', 'SINGLEJSON', - 'AVRO', 'TSVE', 'PARQUET', 'ORC' + 'AVRO', 'TSVE', 'PARQUET', 'ORC', 'APACHEAVRO', 'W3CLOGFILE' :type data_format: str or ~azure.mgmt.kusto.models.IotHubDataFormat :param event_system_properties: System properties of the iot hub :type event_system_properties: list[str] diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_attached_database_configurations_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_attached_database_configurations_operations.py index f3b117f8efc7..e95d3e88efa9 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_attached_database_configurations_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_attached_database_configurations_operations.py @@ -27,7 +27,7 @@ class AttachedDatabaseConfigurationsOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-02-15". + :ivar api_version: Client API Version. Constant value: "2020-06-14". """ models = models @@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-02-15" + self.api_version = "2020-06-14" self.config = config diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_cluster_principal_assignments_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_cluster_principal_assignments_operations.py index f5629e11f981..f87176c19599 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_cluster_principal_assignments_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_cluster_principal_assignments_operations.py @@ -27,7 +27,7 @@ class ClusterPrincipalAssignmentsOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-02-15". + :ivar api_version: Client API Version. Constant value: "2020-06-14". """ models = models @@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-02-15" + self.api_version = "2020-06-14" self.config = config diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_clusters_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_clusters_operations.py index 8a38204a2ee4..12e8bc86bf0d 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_clusters_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_clusters_operations.py @@ -27,7 +27,7 @@ class ClustersOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-02-15". + :ivar api_version: Client API Version. Constant value: "2020-06-14". """ models = models @@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-02-15" + self.api_version = "2020-06-14" self.config = config diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_data_connections_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_data_connections_operations.py index b174abea75dd..a744f5126ac3 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_data_connections_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_data_connections_operations.py @@ -27,7 +27,7 @@ class DataConnectionsOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-02-15". + :ivar api_version: Client API Version. Constant value: "2020-06-14". """ models = models @@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-02-15" + self.api_version = "2020-06-14" self.config = config @@ -117,32 +117,9 @@ def internal_paging(next_link=None): return deserialized list_by_database.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/dataConnections'} - def data_connection_validation_method( - self, resource_group_name, cluster_name, database_name, data_connection_name=None, properties=None, custom_headers=None, raw=False, **operation_config): - """Checks that the data connection parameters are valid. - :param resource_group_name: The name of the resource group containing - the Kusto cluster. - :type resource_group_name: str - :param cluster_name: The name of the Kusto cluster. - :type cluster_name: str - :param database_name: The name of the database in the Kusto cluster. - :type database_name: str - :param data_connection_name: The name of the data connection. - :type data_connection_name: str - :param properties: The data connection properties to validate. - :type properties: ~azure.mgmt.kusto.models.DataConnection - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: DataConnectionValidationListResult or ClientRawResponse if - raw=true - :rtype: ~azure.mgmt.kusto.models.DataConnectionValidationListResult or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` - """ + def _data_connection_validation_method_initial( + self, resource_group_name, cluster_name, database_name, data_connection_name=None, properties=None, custom_headers=None, raw=False, **operation_config): parameters = models.DataConnectionValidation(data_connection_name=data_connection_name, properties=properties) # Construct URL @@ -177,12 +154,13 @@ def data_connection_validation_method( request = self._client.post(url, query_parameters, header_parameters, body_content) response = self._client.send(request, stream=False, **operation_config) - if response.status_code not in [200]: + if response.status_code not in [200, 202]: exp = CloudError(response) exp.request_id = response.headers.get('x-ms-request-id') raise exp deserialized = None + if response.status_code == 200: deserialized = self._deserialize('DataConnectionValidationListResult', response) @@ -191,6 +169,63 @@ def data_connection_validation_method( return client_raw_response return deserialized + + def data_connection_validation_method( + self, resource_group_name, cluster_name, database_name, data_connection_name=None, properties=None, custom_headers=None, raw=False, polling=True, **operation_config): + """Checks that the data connection parameters are valid. + + :param resource_group_name: The name of the resource group containing + the Kusto cluster. + :type resource_group_name: str + :param cluster_name: The name of the Kusto cluster. + :type cluster_name: str + :param database_name: The name of the database in the Kusto cluster. + :type database_name: str + :param data_connection_name: The name of the data connection. + :type data_connection_name: str + :param properties: The data connection properties to validate. + :type properties: ~azure.mgmt.kusto.models.DataConnection + :param dict custom_headers: headers that will be added to the request + :param bool raw: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns + DataConnectionValidationListResult or + ClientRawResponse if raw==True + :rtype: + ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.kusto.models.DataConnectionValidationListResult] + or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.kusto.models.DataConnectionValidationListResult]] + :raises: :class:`CloudError` + """ + raw_result = self._data_connection_validation_method_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + database_name=database_name, + data_connection_name=data_connection_name, + properties=properties, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + deserialized = self._deserialize('DataConnectionValidationListResult', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) data_connection_validation_method.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/dataConnectionValidation'} def check_name_availability( diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_database_principal_assignments_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_database_principal_assignments_operations.py index 49122e09b978..1c2a15f98ab8 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_database_principal_assignments_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_database_principal_assignments_operations.py @@ -27,7 +27,7 @@ class DatabasePrincipalAssignmentsOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-02-15". + :ivar api_version: Client API Version. Constant value: "2020-06-14". """ models = models @@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-02-15" + self.api_version = "2020-06-14" self.config = config diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_databases_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_databases_operations.py index c1aa5100d037..89ad2c0c7af6 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_databases_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_databases_operations.py @@ -27,7 +27,7 @@ class DatabasesOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-02-15". + :ivar api_version: Client API Version. Constant value: "2020-06-14". """ models = models @@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-02-15" + self.api_version = "2020-06-14" self.config = config diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_operations.py index 6c0e7ac91645..eb09f3f97e1d 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_operations.py @@ -25,7 +25,7 @@ class Operations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-02-15". + :ivar api_version: Client API Version. Constant value: "2020-06-14". """ models = models @@ -35,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-02-15" + self.api_version = "2020-06-14" self.config = config diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/version.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/version.py index 79af2680be63..f6eb18195bcd 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/version.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/version.py @@ -9,4 +9,4 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "0.8.0" +VERSION = "0.9.0" diff --git a/sdk/kusto/azure-mgmt-kusto/tests/recordings/test_cli_mgmt_kusto.test_kusto_adjusted.yaml b/sdk/kusto/azure-mgmt-kusto/tests/recordings/test_cli_mgmt_kusto.test_kusto_adjusted.yaml index e976b9fa0d1b..021a96f43f39 100644 --- a/sdk/kusto/azure-mgmt-kusto/tests/recordings/test_cli_mgmt_kusto.test_kusto_adjusted.yaml +++ b/sdk/kusto/azure-mgmt-kusto/tests/recordings/test_cli_mgmt_kusto.test_kusto_adjusted.yaml @@ -16,17 +16,17 @@ interactions: - application/json; charset=utf-8 User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd","name":"MyClusterNameXarqRnd","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"westus","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"properties":{"enableStreamingIngest":true,"state":"Creating","provisioningState":"Creating"},"identity":{"type":"SystemAssigned"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 cache-control: - no-cache content-length: @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:12:35 GMT + - Mon, 13 Jul 2020 09:06:14 GMT etag: - '""' expires: @@ -42,7 +42,7 @@ interactions: pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -65,27 +65,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:13:07 GMT + - Mon, 13 Jul 2020 09:06:45 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -112,27 +112,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:13:36 GMT + - Mon, 13 Jul 2020 09:07:16 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -159,27 +159,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:14:06 GMT + - Mon, 13 Jul 2020 09:07:46 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -206,27 +206,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:14:38 GMT + - Mon, 13 Jul 2020 09:08:17 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -253,27 +253,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:15:07 GMT + - Mon, 13 Jul 2020 09:08:47 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -300,27 +300,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:15:37 GMT + - Mon, 13 Jul 2020 09:09:17 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -347,27 +347,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:16:07 GMT + - Mon, 13 Jul 2020 09:09:48 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -394,27 +394,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:16:39 GMT + - Mon, 13 Jul 2020 09:10:18 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -441,27 +441,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:17:09 GMT + - Mon, 13 Jul 2020 09:10:49 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -488,27 +488,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:17:39 GMT + - Mon, 13 Jul 2020 09:11:19 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -535,27 +535,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:18:10 GMT + - Mon, 13 Jul 2020 09:11:49 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -582,27 +582,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:18:40 GMT + - Mon, 13 Jul 2020 09:12:20 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -629,27 +629,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:19:10 GMT + - Mon, 13 Jul 2020 09:12:50 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -676,27 +676,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:19:42 GMT + - Mon, 13 Jul 2020 09:13:21 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -723,27 +723,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:20:12 GMT + - Mon, 13 Jul 2020 09:13:51 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -753,7 +753,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' + - '285' x-powered-by: - ASP.NET status: @@ -770,27 +770,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:20:42 GMT + - Mon, 13 Jul 2020 09:14:22 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -800,7 +800,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' + - '284' x-powered-by: - ASP.NET status: @@ -817,27 +817,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Running","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:12:37.2208106Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '469' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:21:12 GMT + - Mon, 13 Jul 2020 09:14:52 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -847,7 +847,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' + - '283' x-powered-by: - ASP.NET status: @@ -864,27 +864,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3f3aea24-2fd2-4016-9c60-90ba797740a8?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3f3aea24-2fd2-4016-9c60-90ba797740a8","name":"3f3aea24-2fd2-4016-9c60-90ba797740a8","status":"Succeeded","startTime":"2020-05-27T02:12:33.8997574Z","endTime":"2020-05-27T02:21:30.4316923Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"7d5c854d-6838-4c48-8041-1d0e969c49b7","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '473' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:21:43 GMT + - Mon, 13 Jul 2020 09:15:22 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -894,7 +894,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' + - '289' x-powered-by: - ASP.NET status: @@ -911,30 +911,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd","name":"MyClusterNameXarqRnd","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West - US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://myclusternamexarqrnd.westus.kusto.windows.net","dataIngestionUri":"https://ingest-myclusternamexarqrnd.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"provisioningState":"Succeeded"},"identity":{"principalId":"4c4fc6d7-044c-410d-be8f-5ed9f71ccc8e","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '943' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:21:43 GMT - etag: - - '""' + - Mon, 13 Jul 2020 09:15:53 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -944,15 +941,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '288' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus", "kind": "ReadWrite", "properties": {"softDeletePeriod": - "P1D"}}' + body: null headers: Accept: - application/json @@ -960,50 +956,44 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '86' - Content-Type: - - application/json; charset=utf-8 User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase?api-version=2020-02-15 + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd/Databases/MyDatabase","name":"MyClusterNameXarqRnd/MyDatabase","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"westus","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/7b43ddcc-a29d-4ebd-826d-586b0a7107b7?api-version=2020-02-15 cache-control: - no-cache content-length: - - '409' + - '499' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:21:45 GMT - etag: - - '""' + - Mon, 13 Jul 2020 09:16:23 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.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' + - '287' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1015,27 +1005,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/7b43ddcc-a29d-4ebd-826d-586b0a7107b7?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/7b43ddcc-a29d-4ebd-826d-586b0a7107b7","name":"7b43ddcc-a29d-4ebd-826d-586b0a7107b7","status":"Succeeded","startTime":"2020-05-27T02:21:46.037806Z","endTime":"2020-05-27T02:21:47.6006983Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"fb718344-dd76-4494-828e-7f8f00e1ea5a","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Succeeded","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:16:25.0397386Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Succeeded","OperationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '465' + - '502' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:22:17 GMT + - Mon, 13 Jul 2020 09:16:53 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1045,7 +1035,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '286' x-powered-by: - ASP.NET status: @@ -1062,22 +1052,22 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd/Databases/MyDatabase","name":"MyClusterNameXarqRnd/MyDatabase","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"West - US","kind":"ReadWrite","tags":{},"properties":{"isFollowed":false,"softDeletePeriodInDays":1,"softDeletePeriod":"P1D","hotCachePeriodInDays":0,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd","name":"MyClusterNameXarqRnd","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://myclusternamexarqrnd.westus.kusto.windows.net","dataIngestionUri":"https://ingest-myclusternamexarqrnd.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableStorageDoubleEncryption":false,"provisioningState":"Succeeded"},"identity":{"principalId":"4c4fc6d7-044c-410d-be8f-5ed9f71ccc8e","tenantId":"00000000-0000-0000-0000-000000000000","type":"SystemAssigned"}}' headers: cache-control: - no-cache content-length: - - '518' + - '981' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:22:18 GMT + - Mon, 13 Jul 2020 09:16:54 GMT etag: - '""' expires: @@ -1085,7 +1075,7 @@ interactions: pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1102,7 +1092,8 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus", "kind": "ReadWrite", "properties": {"softDeletePeriod": + "P1D"}}' headers: Accept: - application/json @@ -1110,26 +1101,31 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '86' + Content-Type: + - application/json; charset=utf-8 User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase?api-version=2020-02-15 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd/Databases/MyDatabase","name":"MyClusterNameXarqRnd/MyDatabase","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"West - US","kind":"ReadWrite","tags":{},"properties":{"isFollowed":false,"softDeletePeriodInDays":1,"softDeletePeriod":"P1D","hotCachePeriodInDays":0,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd/Databases/MyDatabase","name":"MyClusterNameXarqRnd/MyDatabase","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"westus","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","provisioningState":"Creating"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/af52439a-59c8-48f3-9ac2-281d7b9dddb4?api-version=2020-06-14 cache-control: - no-cache content-length: - - '518' + - '409' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:22:18 GMT + - Mon, 13 Jul 2020 09:16:56 GMT etag: - '""' expires: @@ -1137,22 +1133,18 @@ interactions: pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.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' + - '199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1164,32 +1156,27 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python - accept-language: - - en-US + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/af52439a-59c8-48f3-9ac2-281d7b9dddb4?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd","name":"MyClusterNameXarqRnd","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West - US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://myclusternamexarqrnd.westus.kusto.windows.net","dataIngestionUri":"https://ingest-myclusternamexarqrnd.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"provisioningState":"Succeeded"},"identity":{"principalId":"4c4fc6d7-044c-410d-be8f-5ed9f71ccc8e","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/af52439a-59c8-48f3-9ac2-281d7b9dddb4","name":"af52439a-59c8-48f3-9ac2-281d7b9dddb4","status":"Succeeded","startTime":"2020-07-13T09:16:57.2205646Z","endTime":"2020-07-13T09:16:59.7049702Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"652d5dec-9c67-478f-8d49-60b179b4b6e8","provisioningState":"Succeeded","OperationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '943' + - '495' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:22:18 GMT - etag: - - '""' + - Mon, 13 Jul 2020 09:17:28 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1206,7 +1193,7 @@ interactions: code: 200 message: OK - request: - body: '{"name": "abc", "type": "Microsoft.Kusto/clusters/databases/dataConnections"}' + body: null headers: Accept: - application/json @@ -1214,35 +1201,32 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '77' - Content-Type: - - application/json; charset=utf-8 User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase/checkNameAvailability?api-version=2020-02-15 + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase?api-version=2020-06-14 response: body: - string: '{"name":"abc","nameAvailable":true,"message":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd/Databases/MyDatabase","name":"MyClusterNameXarqRnd/MyDatabase","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"West + US","kind":"ReadWrite","tags":{},"properties":{"isFollowed":false,"softDeletePeriodInDays":1,"softDeletePeriod":"P1D","hotCachePeriodInDays":0,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '48' + - '518' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:22:20 GMT + - Mon, 13 Jul 2020 09:17:29 GMT + etag: + - '""' expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1251,8 +1235,8 @@ interactions: - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' x-powered-by: - ASP.NET status: @@ -1267,47 +1251,49 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/start?api-version=2020-02-15 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase?api-version=2020-06-14 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd/Databases/MyDatabase","name":"MyClusterNameXarqRnd/MyDatabase","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"West + US","kind":"ReadWrite","tags":{},"properties":{"isFollowed":false,"softDeletePeriodInDays":1,"softDeletePeriod":"P1D","hotCachePeriodInDays":0,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationResults/ddc88f9f-6f6a-4b11-a96e-3bf4b8a2ac77?api-version=2020-02-15 cache-control: - no-cache content-length: - - '0' + - '518' + content-type: + - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:22:20 GMT + - Mon, 13 Jul 2020 09:17:30 GMT + etag: + - '""' expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ddc88f9f-6f6a-4b11-a96e-3bf4b8a2ac77?api-version=2020-02-15&operationResultResponseType=Location pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.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-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1319,28 +1305,32 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ddc88f9f-6f6a-4b11-a96e-3bf4b8a2ac77?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ddc88f9f-6f6a-4b11-a96e-3bf4b8a2ac77","name":"ddc88f9f-6f6a-4b11-a96e-3bf4b8a2ac77","status":"Running","startTime":"2020-05-27T02:22:20.6525681Z","endTime":"2020-05-27T02:22:21.5432021Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"9e55ca24-fb8e-47cb-8a64-94a284372b95","provisioningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd","name":"MyClusterNameXarqRnd","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West + US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://myclusternamexarqrnd.westus.kusto.windows.net","dataIngestionUri":"https://ingest-myclusternamexarqrnd.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableStorageDoubleEncryption":false,"provisioningState":"Succeeded"},"identity":{"principalId":"4c4fc6d7-044c-410d-be8f-5ed9f71ccc8e","tenantId":"00000000-0000-0000-0000-000000000000","type":"SystemAssigned"}}' headers: cache-control: - no-cache content-length: - - '462' + - '981' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:22:51 GMT + - Mon, 13 Jul 2020 09:17:31 GMT + etag: + - '""' expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1357,7 +1347,7 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"name": "abc", "type": "Microsoft.Kusto/clusters/databases/dataConnections"}' headers: Accept: - application/json @@ -1365,30 +1355,35 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '77' + Content-Type: + - application/json; charset=utf-8 User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ddc88f9f-6f6a-4b11-a96e-3bf4b8a2ac77?api-version=2020-02-15 + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase/checkNameAvailability?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ddc88f9f-6f6a-4b11-a96e-3bf4b8a2ac77","name":"ddc88f9f-6f6a-4b11-a96e-3bf4b8a2ac77","status":"Succeeded","startTime":"2020-05-27T02:22:20.6525681Z","endTime":"2020-05-27T02:22:56.4720061Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterResume","RootActivityId":"9e55ca24-fb8e-47cb-8a64-94a284372b95","provisioningState":"Succeeded"}}' + string: '{"name":"abc","nameAvailable":true,"message":""}' headers: cache-control: - no-cache content-length: - - '466' + - '48' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:23:22 GMT + - Mon, 13 Jul 2020 09:17:32 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1397,8 +1392,8 @@ interactions: - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -1417,38 +1412,38 @@ interactions: - '0' User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/stop?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/start?api-version=2020-06-14 response: body: string: '' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + US/operationResults/cb2cfff5-5ee4-4769-bd58-9408550f158f?api-version=2020-06-14 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 02:23:23 GMT + - Mon, 13 Jul 2020 09:17:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cb2cfff5-5ee4-4769-bd58-9408550f158f?api-version=2020-06-14&operationResultResponseType=Location pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -1465,28 +1460,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cb2cfff5-5ee4-4769-bd58-9408550f158f?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/cb2cfff5-5ee4-4769-bd58-9408550f158f","name":"cb2cfff5-5ee4-4769-bd58-9408550f158f","status":"Succeeded","startTime":"2020-07-13T09:17:32.7659915Z","endTime":"2020-07-13T09:17:36.0160218Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterResume","RootActivityId":"95b178be-64f9-4518-8efe-95e99142b855","provisioningState":"Succeeded","OperationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '463' + - '495' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:23:54 GMT + - Mon, 13 Jul 2020 09:18:04 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1496,7 +1491,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '297' + - '299' x-powered-by: - ASP.NET status: @@ -1511,45 +1506,47 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/stop?api-version=2020-06-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 cache-control: - no-cache content-length: - - '463' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 27 May 2020 02:24:25 GMT + - Mon, 13 Jul 2020 09:18:04 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14&operationResultResponseType=Location pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.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-ms-ratelimit-remaining-subscription-writes: + - '1197' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1561,28 +1558,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:24:55 GMT + - Mon, 13 Jul 2020 09:18:35 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1592,7 +1589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '295' + - '299' x-powered-by: - ASP.NET status: @@ -1609,28 +1606,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:25:25 GMT + - Mon, 13 Jul 2020 09:19:06 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1640,7 +1637,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '294' + - '298' x-powered-by: - ASP.NET status: @@ -1657,28 +1654,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:25:56 GMT + - Mon, 13 Jul 2020 09:19:36 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1688,7 +1685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '293' + - '297' x-powered-by: - ASP.NET status: @@ -1705,28 +1702,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:26:25 GMT + - Mon, 13 Jul 2020 09:20:06 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1736,7 +1733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '292' + - '296' x-powered-by: - ASP.NET status: @@ -1753,28 +1750,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:26:56 GMT + - Mon, 13 Jul 2020 09:20:37 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1784,7 +1781,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '291' + - '295' x-powered-by: - ASP.NET status: @@ -1801,28 +1798,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:27:26 GMT + - Mon, 13 Jul 2020 09:21:07 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1832,7 +1829,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '290' + - '294' x-powered-by: - ASP.NET status: @@ -1849,28 +1846,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:27:57 GMT + - Mon, 13 Jul 2020 09:21:37 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1880,7 +1877,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' + - '293' x-powered-by: - ASP.NET status: @@ -1897,28 +1894,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:28:27 GMT + - Mon, 13 Jul 2020 09:22:07 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1928,7 +1925,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' + - '292' x-powered-by: - ASP.NET status: @@ -1945,28 +1942,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:28:58 GMT + - Mon, 13 Jul 2020 09:22:38 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1976,7 +1973,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' + - '291' x-powered-by: - ASP.NET status: @@ -1993,28 +1990,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:29:28 GMT + - Mon, 13 Jul 2020 09:23:08 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2024,7 +2021,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' + - '290' x-powered-by: - ASP.NET status: @@ -2041,28 +2038,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:29:58 GMT + - Mon, 13 Jul 2020 09:23:39 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2072,7 +2069,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '285' + - '289' x-powered-by: - ASP.NET status: @@ -2089,28 +2086,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:30:29 GMT + - Mon, 13 Jul 2020 09:24:09 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2120,7 +2117,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' + - '288' x-powered-by: - ASP.NET status: @@ -2137,28 +2134,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:30:59 GMT + - Mon, 13 Jul 2020 09:24:39 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2168,7 +2165,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' + - '287' x-powered-by: - ASP.NET status: @@ -2185,28 +2182,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:31:29 GMT + - Mon, 13 Jul 2020 09:25:09 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2216,7 +2213,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' + - '289' x-powered-by: - ASP.NET status: @@ -2233,28 +2230,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Running","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:23:25.0938018Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Running"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '463' + - '493' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:32:00 GMT + - Mon, 13 Jul 2020 09:25:41 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2264,7 +2261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' + - '288' x-powered-by: - ASP.NET status: @@ -2281,28 +2278,28 @@ interactions: - keep-alive User-Agent: - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.7.0 Azure-SDK-For-Python + azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9c180104-310e-4400-a2d0-8e0555d500fc?api-version=2020-02-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9c180104-310e-4400-a2d0-8e0555d500fc","name":"9c180104-310e-4400-a2d0-8e0555d500fc","status":"Succeeded","startTime":"2020-05-27T02:23:24.2655471Z","endTime":"2020-05-27T02:32:15.0700931Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"d07b3131-2f89-4394-9878-b2e36efeaa49","provisioningState":"Succeeded"}}' + US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Succeeded","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:25:56.8391979Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Succeeded","OperationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '467' + - '496' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 02:32:30 GMT + - Mon, 13 Jul 2020 09:26:11 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=6ded3081dd2d6cad0ae75c8e86bc94d4b70b07ecd8cd87933120a00a3d4c8d60;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2312,7 +2309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '285' + - '287' x-powered-by: - ASP.NET status: