From 83610564fa2aa2f5cf6eeabbe952b9e38939987e Mon Sep 17 00:00:00 2001 From: Zohar Hen Date: Fri, 29 Oct 2021 06:13:27 +0300 Subject: [PATCH] Kusto: releasing 2021-08-27 client (#3974) * 2021-08-27 new api version Co-authored-by: kai ru <69238381+kairu-ms@users.noreply.github.com> --- src/kusto/azext_kusto/__init__.py | 7 +- src/kusto/azext_kusto/_help.py | 17 + src/kusto/azext_kusto/azext_metadata.json | 1 - .../azext_kusto/generated/_client_factory.py | 16 +- src/kusto/azext_kusto/generated/_help.py | 370 +- src/kusto/azext_kusto/generated/_params.py | 265 +- src/kusto/azext_kusto/generated/action.py | 209 +- src/kusto/azext_kusto/generated/commands.py | 284 +- src/kusto/azext_kusto/generated/custom.py | 766 +- src/kusto/azext_kusto/manual/__init__.py | 104 + .../azext_kusto/manual/latest/__init__.py | 12 + .../recordings/test_kusto_Scenario.yaml | 13832 ++++++++++++++++ .../latest/test_kusto_scenario_coverage.md | 2 + .../azext_kusto/manual/tests/__init__.py | 79 +- .../manual/tests/latest/example_steps.py | 849 + .../tests/latest/recordings/test_kusto.yaml | 6221 ------- .../recordings/test_kusto_Scenario.yaml | 13832 ++++++++++++++++ .../tests/latest/test_kusto_scenario.py | 721 +- .../latest/test_kusto_scenario_coverage.md | 60 + .../azext_kusto/tests/latest/example_steps.py | 568 +- .../recordings/test_kusto_Scenario.yaml | 9991 +++++++++-- .../tests/latest/test_kusto_scenario.py | 292 +- .../vendored_sdks/kusto/_configuration.py | 2 +- .../kusto/_kusto_management_client.py | 23 +- .../vendored_sdks/kusto/aio/_configuration.py | 2 +- .../kusto/aio/_kusto_management_client.py | 23 +- .../kusto/aio/operations/__init__.py | 10 +- ...ched_database_configurations_operations.py | 75 +- ...luster_principal_assignments_operations.py | 10 +- .../aio/operations/_clusters_operations.py | 108 +- .../_data_connections_operations.py | 14 +- ...tabase_principal_assignments_operations.py | 10 +- .../aio/operations/_databases_operations.py | 20 +- .../_managed_private_endpoints_operations.py | 634 + .../kusto/aio/operations/_operations.py | 2 +- .../_operations_results_operations.py | 2 +- ...private_endpoint_connections_operations.py | 430 + .../_private_link_resources_operations.py | 178 + .../aio/operations/_scripts_operations.py | 12 +- .../vendored_sdks/kusto/models/__init__.py | 49 + .../models/_kusto_management_client_enums.py | 16 + .../vendored_sdks/kusto/models/_models.py | 594 +- .../vendored_sdks/kusto/models/_models_py3.py | 638 +- .../kusto/operations/__init__.py | 10 +- ...ched_database_configurations_operations.py | 76 +- ...luster_principal_assignments_operations.py | 10 +- .../kusto/operations/_clusters_operations.py | 114 +- .../_data_connections_operations.py | 14 +- ...tabase_principal_assignments_operations.py | 10 +- .../kusto/operations/_databases_operations.py | 20 +- .../_managed_private_endpoints_operations.py | 647 + .../kusto/operations/_operations.py | 2 +- .../_operations_results_operations.py | 2 +- ...private_endpoint_connections_operations.py | 440 + .../_private_link_resources_operations.py | 184 + .../kusto/operations/_scripts_operations.py | 12 +- src/kusto/gen.zip | Bin 35564 -> 42371 bytes src/kusto/report.md | 270 +- src/kusto/setup.py | 2 +- 59 files changed, 43764 insertions(+), 9399 deletions(-) create mode 100644 src/kusto/azext_kusto/_help.py create mode 100644 src/kusto/azext_kusto/manual/latest/__init__.py create mode 100644 src/kusto/azext_kusto/manual/latest/recordings/test_kusto_Scenario.yaml create mode 100644 src/kusto/azext_kusto/manual/latest/test_kusto_scenario_coverage.md create mode 100644 src/kusto/azext_kusto/manual/tests/latest/example_steps.py delete mode 100644 src/kusto/azext_kusto/manual/tests/latest/recordings/test_kusto.yaml create mode 100644 src/kusto/azext_kusto/manual/tests/latest/recordings/test_kusto_Scenario.yaml create mode 100644 src/kusto/azext_kusto/manual/tests/latest/test_kusto_scenario_coverage.md create mode 100644 src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_managed_private_endpoints_operations.py create mode 100644 src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_private_endpoint_connections_operations.py create mode 100644 src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_private_link_resources_operations.py create mode 100644 src/kusto/azext_kusto/vendored_sdks/kusto/operations/_managed_private_endpoints_operations.py create mode 100644 src/kusto/azext_kusto/vendored_sdks/kusto/operations/_private_endpoint_connections_operations.py create mode 100644 src/kusto/azext_kusto/vendored_sdks/kusto/operations/_private_link_resources_operations.py diff --git a/src/kusto/azext_kusto/__init__.py b/src/kusto/azext_kusto/__init__.py index ef7aec28329..746438a53c4 100644 --- a/src/kusto/azext_kusto/__init__.py +++ b/src/kusto/azext_kusto/__init__.py @@ -7,13 +7,10 @@ # Changes may cause incorrect behavior and will be lost if the code is # regenerated. # -------------------------------------------------------------------------- +# pylint: disable=unused-import +import azext_kusto._help from azure.cli.core import AzCommandsLoader -from azext_kusto.generated._help import helps # pylint: disable=unused-import -try: - from azext_kusto.manual._help import helps # pylint: disable=reimported -except ImportError: - pass class KustoManagementClientCommandsLoader(AzCommandsLoader): diff --git a/src/kusto/azext_kusto/_help.py b/src/kusto/azext_kusto/_help.py new file mode 100644 index 00000000000..e7f7490152f --- /dev/null +++ b/src/kusto/azext_kusto/_help.py @@ -0,0 +1,17 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=wildcard-import +# pylint: disable=unused-wildcard-import +# pylint: disable=unused-import +from .generated._help import helps # pylint: disable=reimported +try: + from .manual._help import helps # pylint: disable=reimported +except ImportError: + pass diff --git a/src/kusto/azext_kusto/azext_metadata.json b/src/kusto/azext_kusto/azext_metadata.json index cfc30c747c7..3695b0d7077 100644 --- a/src/kusto/azext_kusto/azext_metadata.json +++ b/src/kusto/azext_kusto/azext_metadata.json @@ -1,4 +1,3 @@ { - "azext.isExperimental": true, "azext.minCliCoreVersion": "2.15.0" } \ No newline at end of file diff --git a/src/kusto/azext_kusto/generated/_client_factory.py b/src/kusto/azext_kusto/generated/_client_factory.py index a58f0d0b8e2..8ae40c5dfd7 100644 --- a/src/kusto/azext_kusto/generated/_client_factory.py +++ b/src/kusto/azext_kusto/generated/_client_factory.py @@ -28,6 +28,14 @@ def cf_database(cli_ctx, *_): return cf_kusto_cl(cli_ctx).databases +def cf_attached_database_configuration(cli_ctx, *_): + return cf_kusto_cl(cli_ctx).attached_database_configurations + + +def cf_managed_private_endpoint(cli_ctx, *_): + return cf_kusto_cl(cli_ctx).managed_private_endpoints + + def cf_database_principal_assignment(cli_ctx, *_): return cf_kusto_cl(cli_ctx).database_principal_assignments @@ -36,8 +44,12 @@ def cf_script(cli_ctx, *_): return cf_kusto_cl(cli_ctx).scripts -def cf_attached_database_configuration(cli_ctx, *_): - return cf_kusto_cl(cli_ctx).attached_database_configurations +def cf_private_endpoint_connection(cli_ctx, *_): + return cf_kusto_cl(cli_ctx).private_endpoint_connections + + +def cf_private_link_resource(cli_ctx, *_): + return cf_kusto_cl(cli_ctx).private_link_resources def cf_data_connection(cli_ctx, *_): diff --git a/src/kusto/azext_kusto/generated/_help.py b/src/kusto/azext_kusto/generated/_help.py index 596d510f76d..6ee19772439 100644 --- a/src/kusto/azext_kusto/generated/_help.py +++ b/src/kusto/azext_kusto/generated/_help.py @@ -12,6 +12,11 @@ from knack.help_files import helps +helps['kusto'] = ''' + type: group + short-summary: Manage Kusto +''' + helps['kusto cluster'] = """ type: group short-summary: Manage cluster with kusto @@ -81,16 +86,25 @@ long-summary: | Usage: --key-vault-properties key-name=XX key-version=XX key-vault-uri=XX user-identity=XX - key-name: Required. The name of the key vault key. + key-name: The name of the key vault key. key-version: The version of the key vault key. - key-vault-uri: Required. The Uri of the key vault. + key-vault-uri: The Uri of the key vault. user-identity: The user assigned identity (ARM resource id) that has access to the key. + - name: --accepted-audiences + short-summary: "The cluster's accepted audiences." + long-summary: | + Usage: --accepted-audiences value=XX + + value: GUID or valid URL representing an accepted audience. + + Multiple actions can be specified by using more than one --accepted-audiences argument. examples: - name: KustoClustersCreateOrUpdate text: |- az kusto cluster create --name "kustoclusterrptest4" --type "SystemAssigned" --location "westus" \ ---enable-double-encryption false --enable-purge true --enable-streaming-ingest true --sku name="Standard_L8s" \ -capacity=2 tier="Standard" --resource-group "kustorptest" +--allowed-ip-range-list "0.0.0.0/0" --enable-auto-stop true --enable-double-encryption false --enable-purge true \ +--enable-streaming-ingest true --public-network-access "Enabled" --sku name="Standard_L8s" capacity=2 tier="Standard" \ +--resource-group "kustorptest" """ helps['kusto cluster update'] = """ @@ -135,16 +149,25 @@ long-summary: | Usage: --key-vault-properties key-name=XX key-version=XX key-vault-uri=XX user-identity=XX - key-name: Required. The name of the key vault key. + key-name: The name of the key vault key. key-version: The version of the key vault key. - key-vault-uri: Required. The Uri of the key vault. + key-vault-uri: The Uri of the key vault. user-identity: The user assigned identity (ARM resource id) that has access to the key. + - name: --accepted-audiences + short-summary: "The cluster's accepted audiences." + long-summary: | + Usage: --accepted-audiences value=XX + + value: GUID or valid URL representing an accepted audience. + + Multiple actions can be specified by using more than one --accepted-audiences argument. examples: - name: KustoClustersUpdate text: |- az kusto cluster update --name "kustoclusterrptest4" --type "SystemAssigned" --location "westus" \ ---enable-purge true --enable-streaming-ingest true --engine-type "V2" --key-vault-properties key-name="keyName" \ -key-vault-uri="https://dummy.keyvault.com" key-version="keyVersion" --resource-group "kustorptest" +--enable-auto-stop true --enable-purge true --enable-streaming-ingest true --engine-type "V3" --key-vault-properties \ +key-name="keyName" key-vault-uri="https://dummy.keyvault.com" key-version="keyVersion" --restrict-outbound-network-acce\ +ss "Disabled" --resource-group "kustorptest" """ helps['kusto cluster delete'] = """ @@ -214,6 +237,16 @@ az kusto cluster list-language-extension --name "kustoclusterrptest4" --resource-group "kustorptest" """ +helps['kusto cluster list-outbound-network-dependency-endpoint'] = """ + type: command + short-summary: "Gets the network endpoints of all outbound dependencies of a Kusto cluster." + examples: + - name: Get Kusto cluster outbound network dependencies + text: |- + az kusto cluster list-outbound-network-dependency-endpoint --name "kustoclusterrptest" --resource-group \ +"kustorptest" +""" + helps['kusto cluster list-sku'] = """ type: command short-summary: "Returns the SKUs available for the provided resource. And Lists eligible SKUs for Kusto resource \ @@ -402,8 +435,7 @@ - name: Kusto ReadWrite database create or update text: |- az kusto database create --cluster-name "kustoclusterrptest4" --database-name "KustoDatabase8" \ ---parameters "{\\"location\\":\\"westus\\",\\"properties\\":{\\"softDeletePeriod\\":\\"P1D\\"}}" --resource-group \ -"kustorptest" +--read-write-database location="westus" soft-delete-period="P1D" --resource-group "kustorptest" """ helps['kusto database update'] = """ @@ -432,7 +464,7 @@ - name: KustoDatabasesUpdate text: |- az kusto database update --cluster-name "kustoclusterrptest4" --database-name "KustoDatabase8" \ ---parameters "{\\"properties\\":{\\"hotCachePeriod\\":\\"P1D\\"}}" --resource-group "kustorptest" +--read-write-database hot-cache-period="P1D" --resource-group "kustorptest" """ helps['kusto database delete'] = """ @@ -527,6 +559,191 @@ --resource-group "kustorptest" --deleted """ +helps['kusto attached-database-configuration'] = """ + type: group + short-summary: Manage attached database configuration with kusto +""" + +helps['kusto attached-database-configuration list'] = """ + type: command + short-summary: "Returns the list of attached database configurations of the given Kusto cluster." + examples: + - name: KustoAttachedDatabaseConfigurationsListByCluster + text: |- + az kusto attached-database-configuration list --cluster-name "kustoclusterrptest4" --resource-group \ +"kustorptest" +""" + +helps['kusto attached-database-configuration show'] = """ + type: command + short-summary: "Returns an attached database configuration." + examples: + - name: AttachedDatabaseConfigurationsGet + text: |- + az kusto attached-database-configuration show --name "attachedDatabaseConfigurations1" --cluster-name \ +"kustoclusterrptest4" --resource-group "kustorptest" +""" + +helps['kusto attached-database-configuration create'] = """ + type: command + short-summary: "Create an attached database configuration." + parameters: + - name: --table-level-sharing-properties + short-summary: "Table level sharing specifications" + long-summary: | + Usage: --table-level-sharing-properties tables-to-include=XX tables-to-exclude=XX \ +external-tables-to-include=XX external-tables-to-exclude=XX materialized-views-to-include=XX \ +materialized-views-to-exclude=XX + + tables-to-include: List of tables to include in the follower database + tables-to-exclude: List of tables to exclude from the follower database + external-tables-to-include: List of external tables to include in the follower database + external-tables-to-exclude: List of external tables exclude from the follower database + materialized-views-to-include: List of materialized views to include in the follower database + materialized-views-to-exclude: List of materialized views exclude from the follower database + examples: + - name: AttachedDatabaseConfigurationsCreateOrUpdate + text: |- + az kusto attached-database-configuration create --name "attachedDatabaseConfigurations1" --cluster-name \ +"kustoclusterrptest4" --location "westus" --cluster-resource-id "/subscriptions/12345678-1234-1234-1234-123456789098/re\ +sourceGroups/kustorptest/providers/Microsoft.Kusto/Clusters/KustoClusterLeader" --database-name "kustodatabase" \ +--default-principals-modification-kind "Union" --table-level-sharing-properties external-tables-to-exclude="ExternalTab\ +le2" external-tables-to-include="ExternalTable1" materialized-views-to-exclude="MaterializedViewTable2" \ +materialized-views-to-include="MaterializedViewTable1" tables-to-exclude="Table2" tables-to-include="Table1" \ +--resource-group "kustorptest" +""" + +helps['kusto attached-database-configuration update'] = """ + type: command + short-summary: "Update an attached database configuration." + parameters: + - name: --table-level-sharing-properties + short-summary: "Table level sharing specifications" + long-summary: | + Usage: --table-level-sharing-properties tables-to-include=XX tables-to-exclude=XX \ +external-tables-to-include=XX external-tables-to-exclude=XX materialized-views-to-include=XX \ +materialized-views-to-exclude=XX + + tables-to-include: List of tables to include in the follower database + tables-to-exclude: List of tables to exclude from the follower database + external-tables-to-include: List of external tables to include in the follower database + external-tables-to-exclude: List of external tables exclude from the follower database + materialized-views-to-include: List of materialized views to include in the follower database + materialized-views-to-exclude: List of materialized views exclude from the follower database +""" + +helps['kusto attached-database-configuration delete'] = """ + type: command + short-summary: "Deletes the attached database configuration with the given name." + examples: + - name: AttachedDatabaseConfigurationsDelete + text: |- + az kusto attached-database-configuration delete --name "attachedDatabaseConfigurations1" --cluster-name \ +"kustoclusterrptest4" --resource-group "kustorptest" +""" + +helps['kusto attached-database-configuration wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the kusto attached-database-configuration is \ +met. + examples: + - name: Pause executing next line of CLI script until the kusto attached-database-configuration is successfully \ +created. + text: |- + az kusto attached-database-configuration wait --name "attachedDatabaseConfigurations1" --cluster-name \ +"kustoclusterrptest4" --resource-group "kustorptest" --created + - name: Pause executing next line of CLI script until the kusto attached-database-configuration is successfully \ +updated. + text: |- + az kusto attached-database-configuration wait --name "attachedDatabaseConfigurations1" --cluster-name \ +"kustoclusterrptest4" --resource-group "kustorptest" --updated + - name: Pause executing next line of CLI script until the kusto attached-database-configuration is successfully \ +deleted. + text: |- + az kusto attached-database-configuration wait --name "attachedDatabaseConfigurations1" --cluster-name \ +"kustoclusterrptest4" --resource-group "kustorptest" --deleted +""" + +helps['kusto managed-private-endpoint'] = """ + type: group + short-summary: Manage managed private endpoint with kusto +""" + +helps['kusto managed-private-endpoint list'] = """ + type: command + short-summary: "Returns the list of managed private endpoints." + examples: + - name: KustoManagedPrivateEndpointsList + text: |- + az kusto managed-private-endpoint list --cluster-name "kustoclusterrptest4" --resource-group \ +"kustorptest" +""" + +helps['kusto managed-private-endpoint show'] = """ + type: command + short-summary: "Gets a managed private endpoint." + examples: + - name: KustoManagedPrivateEndpointsGet + text: |- + az kusto managed-private-endpoint show --cluster-name "kustoclusterrptest4" --name \ +"kustoManagedPrivateEndpoint1" --resource-group "kustorptest" +""" + +helps['kusto managed-private-endpoint create'] = """ + type: command + short-summary: "Creates a managed private endpoint." + examples: + - name: KustoManagedPrivateEndpointsCreateOrUpdate + text: |- + az kusto managed-private-endpoint create --cluster-name "kustoclusterrptest4" --name \ +"kustoManagedPrivateEndpoint1" --group-id "blob" --private-link-resource-id "/subscriptions/12345678-1234-1234-1234-123\ +456789098/resourceGroups/kustorptest/providers/Microsoft.Storage/storageAccounts/storageAccountTest" --request-message \ +"Please Approve." --resource-group "kustorptest" +""" + +helps['kusto managed-private-endpoint update'] = """ + type: command + short-summary: "Updates a managed private endpoint." + examples: + - name: KustoManagedPrivateEndpointsUpdate + text: |- + az kusto managed-private-endpoint update --cluster-name "kustoclusterrptest4" --name \ +"kustoManagedPrivateEndpoint1" --group-id "blob" --private-link-resource-id "/subscriptions/12345678-1234-1234-1234-123\ +456789098/resourceGroups/kustorptest/providers/Microsoft.Storage/storageAccounts/storageAccountTest" --request-message \ +"Please Approve Managed Private Endpoint Request." --resource-group "kustorptest" +""" + +helps['kusto managed-private-endpoint delete'] = """ + type: command + short-summary: "Deletes a managed private endpoint." + examples: + - name: ManagedPrivateEndpointsDelete + text: |- + az kusto managed-private-endpoint delete --cluster-name "kustoclusterrptest4" --name \ +"kustoManagedPrivateEndpoint1" --resource-group "kustorptest" +""" + +helps['kusto managed-private-endpoint wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the kusto managed-private-endpoint is met. + examples: + - name: Pause executing next line of CLI script until the kusto managed-private-endpoint is successfully \ +created. + text: |- + az kusto managed-private-endpoint wait --cluster-name "kustoclusterrptest4" --name \ +"kustoManagedPrivateEndpoint1" --resource-group "kustorptest" --created + - name: Pause executing next line of CLI script until the kusto managed-private-endpoint is successfully \ +updated. + text: |- + az kusto managed-private-endpoint wait --cluster-name "kustoclusterrptest4" --name \ +"kustoManagedPrivateEndpoint1" --resource-group "kustorptest" --updated + - name: Pause executing next line of CLI script until the kusto managed-private-endpoint is successfully \ +deleted. + text: |- + az kusto managed-private-endpoint wait --cluster-name "kustoclusterrptest4" --name \ +"kustoManagedPrivateEndpoint1" --resource-group "kustorptest" --deleted +""" + helps['kusto database-principal-assignment'] = """ type: group short-summary: Manage database principal assignment with kusto @@ -680,109 +897,116 @@ --resource-group "kustorptest" --name "kustoScript1" --deleted """ -helps['kusto attached-database-configuration'] = """ +helps['kusto private-endpoint-connection'] = """ type: group - short-summary: Manage attached database configuration with kusto + short-summary: Manage private endpoint connection with kusto """ -helps['kusto attached-database-configuration list'] = """ +helps['kusto private-endpoint-connection list'] = """ type: command - short-summary: "Returns the list of attached database configurations of the given Kusto cluster." + short-summary: "Returns the list of private endpoint connections." examples: - - name: KustoAttachedDatabaseConfigurationsListByCluster + - name: KustoPrivateEndpointConnectionsList text: |- - az kusto attached-database-configuration list --cluster-name "kustoclusterrptest4" --resource-group \ + az kusto private-endpoint-connection list --cluster-name "kustoclusterrptest4" --resource-group \ "kustorptest" """ -helps['kusto attached-database-configuration show'] = """ +helps['kusto private-endpoint-connection show'] = """ type: command - short-summary: "Returns an attached database configuration." + short-summary: "Gets a private endpoint connection." examples: - - name: AttachedDatabaseConfigurationsGet + - name: Gets private endpoint connection. text: |- - az kusto attached-database-configuration show --name "attachedDatabaseConfigurations1" --cluster-name \ -"kustoclusterrptest4" --resource-group "kustorptest" + az kusto private-endpoint-connection show --cluster-name "kustoclusterrptest4" --name \ +"privateEndpointConnectionName" --resource-group "kustorptest" """ -helps['kusto attached-database-configuration create'] = """ +helps['kusto private-endpoint-connection create'] = """ type: command - short-summary: "Create an attached database configuration." + short-summary: "Approve or reject a private endpoint connection with a given name." parameters: - - name: --table-level-sharing-properties --tls - short-summary: "Table level sharing specifications" + - name: --connection-state --private-link-service-connection-state + short-summary: "Connection State of the Private Endpoint Connection." long-summary: | - Usage: --table-level-sharing-properties tables-to-include=XX tables-to-exclude=XX \ -external-tables-to-include=XX external-tables-to-exclude=XX materialized-views-to-include=XX \ -materialized-views-to-exclude=XX + Usage: --private-link-service-connection-state status=XX description=XX - tables-to-include: List of tables to include in the follower database - tables-to-exclude: List of tables to exclude from the follower database - external-tables-to-include: List of external tables to include in the follower database - external-tables-to-exclude: List of external tables exclude from the follower database - materialized-views-to-include: List of materialized views to include in the follower database - materialized-views-to-exclude: List of materialized views exclude from the follower database + status: The private link service connection status. + description: The private link service connection description. examples: - - name: AttachedDatabaseConfigurationsCreateOrUpdate + - name: Approve or reject a private endpoint connection with a given name. text: |- - az kusto attached-database-configuration create --name "attachedDatabaseConfigurations1" --cluster-name \ -"kustoclusterrptest4" --location "westus" --cluster-resource-id "/subscriptions/12345678-1234-1234-1234-123456789098/re\ -sourceGroups/kustorptest/providers/Microsoft.Kusto/Clusters/KustoClusterLeader" --database-name "kustodatabase" \ ---default-principals-modification-kind "Union" --table-level-sharing-properties external-tables-to-exclude="ExternalTab\ -le2" external-tables-to-include="ExternalTable1" materialized-views-to-exclude="MaterializedViewTable2" \ -materialized-views-to-include="MaterializedViewTable1" tables-to-exclude="Table2" tables-to-include="Table1" \ ---resource-group "kustorptest" + az kusto private-endpoint-connection create --cluster-name "kustoclusterrptest4" \ +--private-link-service-connection-state description="Approved by johndoe@contoso.com" status="Approved" --name \ +"privateEndpointConnectionName" --resource-group "kustorptest" """ -helps['kusto attached-database-configuration update'] = """ +helps['kusto private-endpoint-connection update'] = """ type: command - short-summary: "Update an attached database configuration." + short-summary: "Approve or reject a private endpoint connection with a given name." parameters: - - name: --table-level-sharing-properties --tls - short-summary: "Table level sharing specifications" + - name: --connection-state --private-link-service-connection-state + short-summary: "Connection State of the Private Endpoint Connection." long-summary: | - Usage: --table-level-sharing-properties tables-to-include=XX tables-to-exclude=XX \ -external-tables-to-include=XX external-tables-to-exclude=XX materialized-views-to-include=XX \ -materialized-views-to-exclude=XX + Usage: --private-link-service-connection-state status=XX description=XX - tables-to-include: List of tables to include in the follower database - tables-to-exclude: List of tables to exclude from the follower database - external-tables-to-include: List of external tables to include in the follower database - external-tables-to-exclude: List of external tables exclude from the follower database - materialized-views-to-include: List of materialized views to include in the follower database - materialized-views-to-exclude: List of materialized views exclude from the follower database + status: The private link service connection status. + description: The private link service connection description. """ -helps['kusto attached-database-configuration delete'] = """ +helps['kusto private-endpoint-connection delete'] = """ type: command - short-summary: "Deletes the attached database configuration with the given name." + short-summary: "Deletes a private endpoint connection with a given name." examples: - - name: AttachedDatabaseConfigurationsDelete + - name: Deletes a private endpoint connection with a given name. text: |- - az kusto attached-database-configuration delete --name "attachedDatabaseConfigurations1" --cluster-name \ -"kustoclusterrptest4" --resource-group "kustorptest" + az kusto private-endpoint-connection delete --cluster-name "kustoclusterrptest4" --name \ +"privateEndpointConnectionName" --resource-group "kustorptest" """ -helps['kusto attached-database-configuration wait'] = """ +helps['kusto private-endpoint-connection wait'] = """ type: command - short-summary: Place the CLI in a waiting state until a condition of the kusto attached-database-configuration is \ -met. + short-summary: Place the CLI in a waiting state until a condition of the kusto private-endpoint-connection is met. examples: - - name: Pause executing next line of CLI script until the kusto attached-database-configuration is successfully \ + - name: Pause executing next line of CLI script until the kusto private-endpoint-connection is successfully \ created. text: |- - az kusto attached-database-configuration wait --name "attachedDatabaseConfigurations1" --cluster-name \ -"kustoclusterrptest4" --resource-group "kustorptest" --created - - name: Pause executing next line of CLI script until the kusto attached-database-configuration is successfully \ + az kusto private-endpoint-connection wait --cluster-name "kustoclusterrptest4" --name \ +"privateEndpointConnectionName" --resource-group "kustorptest" --created + - name: Pause executing next line of CLI script until the kusto private-endpoint-connection is successfully \ updated. text: |- - az kusto attached-database-configuration wait --name "attachedDatabaseConfigurations1" --cluster-name \ -"kustoclusterrptest4" --resource-group "kustorptest" --updated - - name: Pause executing next line of CLI script until the kusto attached-database-configuration is successfully \ + az kusto private-endpoint-connection wait --cluster-name "kustoclusterrptest4" --name \ +"privateEndpointConnectionName" --resource-group "kustorptest" --updated + - name: Pause executing next line of CLI script until the kusto private-endpoint-connection is successfully \ deleted. text: |- - az kusto attached-database-configuration wait --name "attachedDatabaseConfigurations1" --cluster-name \ -"kustoclusterrptest4" --resource-group "kustorptest" --deleted + az kusto private-endpoint-connection wait --cluster-name "kustoclusterrptest4" --name \ +"privateEndpointConnectionName" --resource-group "kustorptest" --deleted +""" + +helps['kusto private-link-resource'] = """ + type: group + short-summary: Manage private link resource with kusto +""" + +helps['kusto private-link-resource list'] = """ + type: command + short-summary: "Returns the list of private link resources." + examples: + - name: Gets private endpoint connections. + text: |- + az kusto private-link-resource list --cluster-name "kustoclusterrptest4" --resource-group "kustorptest" +""" + +helps['kusto private-link-resource show'] = """ + type: command + short-summary: "Gets a private link resource." + examples: + - name: Gets private endpoint connection. + text: |- + az kusto private-link-resource show --cluster-name "kustoclusterrptest4" --name "cluster" \ +--resource-group "kustorptest" """ helps['kusto data-connection'] = """ diff --git a/src/kusto/azext_kusto/generated/_params.py b/src/kusto/azext_kusto/generated/_params.py index 11fd391cb5c..a9e0ea6b3ea 100644 --- a/src/kusto/azext_kusto/generated/_params.py +++ b/src/kusto/azext_kusto/generated/_params.py @@ -27,11 +27,13 @@ AddOptimizedAutoscale, AddVirtualNetworkConfiguration, AddKeyVaultProperties, + AddAcceptedAudiences, AddClustersValue, AddReadWriteDatabase, AddReadOnlyFollowingDatabase, AddDatabasesValue, - AddTableLevelSharingProperties + AddTableLevelSharingProperties, + AddPrivateLinkServiceConnectionState ) @@ -75,18 +77,33 @@ def load_arguments(self, _): 'operations are enabled.') c.argument('enable_double_encryption', arg_type=get_three_state_flag(), help='A boolean value that indicates ' 'if double encryption is enabled.') + c.argument('public_network_access', arg_type=get_enum_type(['Enabled', 'Disabled']), help='Public network ' + 'access to the cluster is enabled by default. When disabled, only private endpoint connection to ' + 'the cluster is allowed') + c.argument('allowed_ip_range_list', nargs='+', help='The list of ips in the format of CIDR allowed to connect ' + 'to the cluster.') c.argument('engine_type', arg_type=get_enum_type(['V2', 'V3']), help='The engine type') + c.argument('accepted_audiences', action=AddAcceptedAudiences, nargs='+', help='The cluster\'s accepted ' + 'audiences.') + c.argument('enable_auto_stop', arg_type=get_three_state_flag(), help='A boolean value that indicates if the ' + 'cluster could be automatically stopped (due to lack of data or no activity for many days).') + c.argument('restrict_outbound_network_access', options_list=['--restrict-outbound-network-access', '--network-access'], + arg_type=get_enum_type(['Enabled', 'Disabled']), help='Whether ' + 'or not to restrict outbound network access. Value is optional but if passed in, must be ' + '\'Enabled\' or \'Disabled\'') + c.argument('allowed_fqdn_list', nargs='+', help='List of allowed FQDNs(Fully Qualified Domain Name) for egress ' + 'from Cluster.') c.argument('type_', options_list=['--type'], arg_type=get_enum_type(['None', 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned']), help='The type of managed identity used. The type \'SystemAssigned, UserAssigned\' includes both an ' 'implicitly created identity and a set of user-assigned identities. The type \'None\' will remove ' 'all identities.', arg_group='Identity') c.argument('user_assigned_identities', options_list=['--user-assigned-identities', '--uai'], - type=validate_file_or_dict, help='The list of user identities associated with the Kusto cluster. ' - 'The user identity dictionary key references will be ARM resource ids in the form: ' - '\'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIde' - 'ntity/userAssignedIdentities/{identityName}\'. Expected value: json-string/@json-file.', - arg_group='Identity') + type=validate_file_or_dict, help='The list of user identities ' + 'associated with the Kusto cluster. The user identity dictionary key references will be ARM ' + 'resource ids in the form: \'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/prov' + 'iders/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}\'. Expected value: ' + 'json-string/json-file/@json-file.', arg_group='Identity') with self.argument_context('kusto cluster update') as c: c.argument('resource_group_name', resource_group_name_type) @@ -115,18 +132,33 @@ def load_arguments(self, _): 'operations are enabled.') c.argument('enable_double_encryption', arg_type=get_three_state_flag(), help='A boolean value that indicates ' 'if double encryption is enabled.') + c.argument('public_network_access', arg_type=get_enum_type(['Enabled', 'Disabled']), help='Public network ' + 'access to the cluster is enabled by default. When disabled, only private endpoint connection to ' + 'the cluster is allowed') + c.argument('allowed_ip_range_list', nargs='+', help='The list of ips in the format of CIDR allowed to connect ' + 'to the cluster.') c.argument('engine_type', arg_type=get_enum_type(['V2', 'V3']), help='The engine type') + c.argument('accepted_audiences', action=AddAcceptedAudiences, nargs='+', help='The cluster\'s accepted ' + 'audiences.') + c.argument('enable_auto_stop', arg_type=get_three_state_flag(), help='A boolean value that indicates if the ' + 'cluster could be automatically stopped (due to lack of data or no activity for many days).') + c.argument('restrict_outbound_network_access', options_list=['--restrict-outbound-network-access', '--network-access'], + arg_type=get_enum_type(['Enabled', 'Disabled']), help='Whether ' + 'or not to restrict outbound network access. Value is optional but if passed in, must be ' + '\'Enabled\' or \'Disabled\'') + c.argument('allowed_fqdn_list', nargs='+', help='List of allowed FQDNs(Fully Qualified Domain Name) for egress ' + 'from Cluster.') c.argument('type_', options_list=['--type'], arg_type=get_enum_type(['None', 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned']), help='The type of managed identity used. The type \'SystemAssigned, UserAssigned\' includes both an ' 'implicitly created identity and a set of user-assigned identities. The type \'None\' will remove ' 'all identities.', arg_group='Identity') c.argument('user_assigned_identities', options_list=['--user-assigned-identities', '--uai'], - type=validate_file_or_dict, help='The list of user identities associated with the Kusto cluster. ' - 'The user identity dictionary key references will be ARM resource ids in the form: ' - '\'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIde' - 'ntity/userAssignedIdentities/{identityName}\'. Expected value: json-string/@json-file.', - arg_group='Identity') + type=validate_file_or_dict, help='The list of user identities ' + 'associated with the Kusto cluster. The user identity dictionary key references will be ARM ' + 'resource ids in the form: \'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/prov' + 'iders/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}\'. Expected value: ' + 'json-string/json-file/@json-file.', arg_group='Identity') with self.argument_context('kusto cluster delete') as c: c.argument('resource_group_name', resource_group_name_type) @@ -163,6 +195,11 @@ def load_arguments(self, _): c.argument('cluster_name', options_list=['--name', '-n', '--cluster-name'], type=str, help='The name of the ' 'Kusto cluster.') + with self.argument_context('kusto cluster list-outbound-network-dependency-endpoint') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', options_list=['--name', '-n', '--cluster-name'], type=str, help='The name of the ' + 'Kusto cluster.') + with self.argument_context('kusto cluster list-sku') as c: c.argument('resource_group_name', resource_group_name_type) c.argument('cluster_name', options_list=['--name', '-n', '--cluster-name'], type=str, help='The name of the ' @@ -295,6 +332,117 @@ def load_arguments(self, _): c.argument('database_name', type=str, help='The name of the database in the Kusto cluster.', id_part='child_name_1') + with self.argument_context('kusto attached-database-configuration list') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.') + + with self.argument_context('kusto attached-database-configuration show') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.', id_part='name') + c.argument('attached_database_configuration_name', options_list=['--name', '-n', + '--attached-database-configuration-name'], + type=str, help='The name of the attached database configuration.', id_part='child_name_1') + + with self.argument_context('kusto attached-database-configuration create') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.') + c.argument('attached_database_configuration_name', options_list=['--name', '-n', + '--attached-database-configuration-name'], + type=str, help='The name of the attached database configuration.') + c.argument('location', arg_type=get_location_type(self.cli_ctx), required=False, + validator=get_default_location_from_resource_group) + c.argument('database_name', type=str, help='The name of the database which you would like to attach, use * if ' + 'you want to follow all current and future databases.') + c.argument('cluster_resource_id', type=str, help='The resource id of the cluster where the databases you would ' + 'like to attach reside.') + c.argument('default_principals_modification_kind', arg_type=get_enum_type(['Union', 'Replace', 'None']), + help='The default principals modification kind') + c.argument('table_level_sharing_properties', options_list=['--table-level-sharing-properties', '--tls'], + action=AddTableLevelSharingProperties, nargs='+', help='Table ' + 'level sharing specifications') + + with self.argument_context('kusto attached-database-configuration update') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.', id_part='name') + c.argument('attached_database_configuration_name', options_list=['--name', '-n', + '--attached-database-configuration-name'], + type=str, help='The name of the attached database configuration.', id_part='child_name_1') + c.argument('location', arg_type=get_location_type(self.cli_ctx), required=False, + validator=get_default_location_from_resource_group) + c.argument('database_name', type=str, help='The name of the database which you would like to attach, use * if ' + 'you want to follow all current and future databases.') + c.argument('cluster_resource_id', type=str, help='The resource id of the cluster where the databases you would ' + 'like to attach reside.') + c.argument('default_principals_modification_kind', arg_type=get_enum_type(['Union', 'Replace', 'None']), + help='The default principals modification kind') + c.argument('table_level_sharing_properties', options_list=['--table-level-sharing-properties', '--tls'], + action=AddTableLevelSharingProperties, nargs='+', help='Table level sharing specifications') + c.ignore('parameters') + + with self.argument_context('kusto attached-database-configuration delete') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.', id_part='name') + c.argument('attached_database_configuration_name', options_list=['--name', '-n', + '--attached-database-configuration-name'], + type=str, help='The name of the attached database configuration.', id_part='child_name_1') + + with self.argument_context('kusto attached-database-configuration wait') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.', id_part='name') + c.argument('attached_database_configuration_name', options_list=['--name', '-n', + '--attached-database-configuration-name'], + type=str, help='The name of the attached database configuration.', id_part='child_name_1') + + with self.argument_context('kusto managed-private-endpoint list') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.') + + with self.argument_context('kusto managed-private-endpoint show') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.', id_part='name') + c.argument('managed_private_endpoint_name', options_list=['--name', '-n', '--managed-private-endpoint-name'], + type=str, help='The name of the managed private endpoint.', id_part='child_name_1') + + with self.argument_context('kusto managed-private-endpoint create') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.') + c.argument('managed_private_endpoint_name', options_list=['--name', '-n', '--managed-private-endpoint-name'], + type=str, help='The name of the managed private endpoint.') + c.argument('private_link_resource_id', options_list=['--private-link-resource-id', '--private-link'], + type=str, help='The ARM resource ID of the resource for which the ' + 'managed private endpoint is created.') + c.argument('private_link_resource_region', options_list=['--private-link-resource-region', '--region'], + type=str, help='The region of the resource to which the managed ' + 'private endpoint is created.') + c.argument('group_id', type=str, help='The groupId in which the managed private endpoint is created.') + c.argument('request_message', type=str, help='The user request message.') + + with self.argument_context('kusto managed-private-endpoint update') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.', id_part='name') + c.argument('managed_private_endpoint_name', options_list=['--name', '-n', '--managed-private-endpoint-name'], + type=str, help='The name of the managed private endpoint.', id_part='child_name_1') + c.argument('private_link_resource_id', options_list=['--private-link-resource-id', '--private-link'], + type=str, help='The ARM resource ID of the resource for which the ' + 'managed private endpoint is created.') + c.argument('private_link_resource_region', options_list=['--private-link-resource-region', '--region'], + type=str, help='The region of the resource to which the managed ' + 'private endpoint is created.') + c.argument('group_id', type=str, help='The groupId in which the managed private endpoint is created.') + c.argument('request_message', type=str, help='The user request message.') + + with self.argument_context('kusto managed-private-endpoint delete') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.', id_part='name') + c.argument('managed_private_endpoint_name', options_list=['--name', '-n', '--managed-private-endpoint-name'], + type=str, help='The name of the managed private endpoint.', id_part='child_name_1') + + with self.argument_context('kusto managed-private-endpoint wait') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.', id_part='name') + c.argument('managed_private_endpoint_name', options_list=['--name', '-n', '--managed-private-endpoint-name'], + type=str, help='The name of the managed private endpoint.', id_part='child_name_1') + with self.argument_context('kusto database-principal-assignment list') as c: c.argument('resource_group_name', resource_group_name_type) c.argument('cluster_name', type=str, help='The name of the Kusto cluster.') @@ -405,65 +553,60 @@ def load_arguments(self, _): c.argument('script_name', options_list=['--name', '-n', '--script-name'], type=str, help='The name of the ' 'Kusto database script.', id_part='child_name_2') - with self.argument_context('kusto attached-database-configuration list') as c: + with self.argument_context('kusto private-endpoint-connection list') as c: c.argument('resource_group_name', resource_group_name_type) c.argument('cluster_name', type=str, help='The name of the Kusto cluster.') - with self.argument_context('kusto attached-database-configuration show') as c: + with self.argument_context('kusto private-endpoint-connection show') as c: c.argument('resource_group_name', resource_group_name_type) c.argument('cluster_name', type=str, help='The name of the Kusto cluster.', id_part='name') - c.argument('attached_database_configuration_name', options_list=['--name', '-n', - '--attached-database-configuration-name'], - type=str, help='The name of the attached database configuration.', id_part='child_name_1') + c.argument('private_endpoint_connection_name', options_list=['--name', '-n', '--private-endpoint-connection-nam' + 'e'], type=str, help='The name of the private ' + 'endpoint connection.', id_part='child_name_1') - with self.argument_context('kusto attached-database-configuration create') as c: + with self.argument_context('kusto private-endpoint-connection create') as c: c.argument('resource_group_name', resource_group_name_type) c.argument('cluster_name', type=str, help='The name of the Kusto cluster.') - c.argument('attached_database_configuration_name', options_list=['--name', '-n', - '--attached-database-configuration-name'], - type=str, help='The name of the attached database configuration.') - c.argument('location', arg_type=get_location_type(self.cli_ctx), required=False, - validator=get_default_location_from_resource_group) - c.argument('database_name', type=str, help='The name of the database which you would like to attach, use * if ' - 'you want to follow all current and future databases.') - c.argument('cluster_resource_id', type=str, help='The resource id of the cluster where the databases you would ' - 'like to attach reside.') - c.argument('default_principals_modification_kind', arg_type=get_enum_type(['Union', 'Replace', 'None']), - help='The default principals modification kind') - c.argument('table_level_sharing_properties', options_list=['--table-level-sharing-properties', '--tls'], - action=AddTableLevelSharingProperties, nargs='+', help='Table level sharing specifications') + c.argument('private_endpoint_connection_name', + options_list=['--name', '-n', '--private-endpoint-connection-name'], type=str, + help='The name of the private endpoint connection.') + c.argument('private_link_service_connection_state', options_list=['--private-link-service-connection-state', '--connection-state'], + action=AddPrivateLinkServiceConnectionState, nargs='+', + help='Connection State of the Private Endpoint Connection.') - with self.argument_context('kusto attached-database-configuration update') as c: + with self.argument_context('kusto private-endpoint-connection update') as c: c.argument('resource_group_name', resource_group_name_type) c.argument('cluster_name', type=str, help='The name of the Kusto cluster.', id_part='name') - c.argument('attached_database_configuration_name', options_list=['--name', '-n', - '--attached-database-configuration-name'], - type=str, help='The name of the attached database configuration.', id_part='child_name_1') - c.argument('location', arg_type=get_location_type(self.cli_ctx), required=False, - validator=get_default_location_from_resource_group) - c.argument('database_name', type=str, help='The name of the database which you would like to attach, use * if ' - 'you want to follow all current and future databases.') - c.argument('cluster_resource_id', type=str, help='The resource id of the cluster where the databases you would ' - 'like to attach reside.') - c.argument('default_principals_modification_kind', arg_type=get_enum_type(['Union', 'Replace', 'None']), - help='The default principals modification kind') - c.argument('table_level_sharing_properties', options_list=['--table-level-sharing-properties', '--tls'], - action=AddTableLevelSharingProperties, nargs='+', help='Table level sharing specifications') + c.argument('private_endpoint_connection_name', options_list=['--name', '-n', '--private-endpoint-connection-nam' + 'e'], type=str, help='The name of the private ' + 'endpoint connection.', id_part='child_name_1') + c.argument('private_link_service_connection_state', options_list=['--private-link-service-connection-state', '--connection-state'], + action=AddPrivateLinkServiceConnectionState, nargs='+', help='Connection State of the Private Endpoint Connection.') c.ignore('parameters') - with self.argument_context('kusto attached-database-configuration delete') as c: + with self.argument_context('kusto private-endpoint-connection delete') as c: c.argument('resource_group_name', resource_group_name_type) c.argument('cluster_name', type=str, help='The name of the Kusto cluster.', id_part='name') - c.argument('attached_database_configuration_name', options_list=['--name', '-n', - '--attached-database-configuration-name'], - type=str, help='The name of the attached database configuration.', id_part='child_name_1') + c.argument('private_endpoint_connection_name', options_list=['--name', '-n', '--private-endpoint-connection-nam' + 'e'], type=str, help='The name of the private ' + 'endpoint connection.', id_part='child_name_1') - with self.argument_context('kusto attached-database-configuration wait') as c: + with self.argument_context('kusto private-endpoint-connection wait') as c: c.argument('resource_group_name', resource_group_name_type) c.argument('cluster_name', type=str, help='The name of the Kusto cluster.', id_part='name') - c.argument('attached_database_configuration_name', options_list=['--name', '-n', - '--attached-database-configuration-name'], - type=str, help='The name of the attached database configuration.', id_part='child_name_1') + c.argument('private_endpoint_connection_name', options_list=['--name', '-n', '--private-endpoint-connection-nam' + 'e'], type=str, help='The name of the private ' + 'endpoint connection.', id_part='child_name_1') + + with self.argument_context('kusto private-link-resource list') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.') + + with self.argument_context('kusto private-link-resource show') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', type=str, help='The name of the Kusto cluster.', id_part='name') + c.argument('private_link_resource_name', options_list=['--name', '-n', '--private-link-resource-name'], + type=str, help='The name of the private link resource.', id_part='child_name_1') with self.argument_context('kusto data-connection list') as c: c.argument('resource_group_name', resource_group_name_type) @@ -527,9 +670,9 @@ def load_arguments(self, _): c.argument('event_system_properties', nargs='+', help='System properties of the event hub') c.argument('compression', arg_type=get_enum_type(['None', 'GZip']), help='The event hub messages compression ' 'type') - c.argument('managed_identity_resource_id', options_list=['--managed-identity-resource-id', '--mi-rid'], - type=str, help='The resource ID of a managed identity (system or user assigned) to be used to ' - 'authenticate with event hub.') + c.argument('managed_identity_resource_id', options_list=['--managed-identity-resource-id', '--managed-identity'], + type=str, help='The resource ID of a managed identity (system or ' + 'user assigned) to be used to authenticate with event hub.') with self.argument_context('kusto data-connection iot-hub create') as c: c.argument('resource_group_name', resource_group_name_type) @@ -604,9 +747,9 @@ def load_arguments(self, _): c.argument('event_system_properties', nargs='+', help='System properties of the event hub') c.argument('compression', arg_type=get_enum_type(['None', 'GZip']), help='The event hub messages compression ' 'type') - c.argument('managed_identity_resource_id', options_list=['--managed-identity-resource-id', '--mi-rid'], - type=str, help='The resource ID of a managed identity (system or user assigned) to be used to ' - 'authenticate with event hub.') + c.argument('managed_identity_resource_id', options_list=['--managed-identity-resource-id', '--managed-identity'], + type=str, help='The resource ID of a managed identity (system or ' + 'user assigned) to be used to authenticate with event hub.') with self.argument_context('kusto data-connection iot-hub update') as c: c.argument('resource_group_name', resource_group_name_type) @@ -690,9 +833,9 @@ def load_arguments(self, _): c.argument('event_system_properties', nargs='+', help='System properties of the event hub') c.argument('compression', arg_type=get_enum_type(['None', 'GZip']), help='The event hub messages compression ' 'type') - c.argument('managed_identity_resource_id', options_list=['--managed-identity-resource-id', '--mi-rid'], - type=str, help='The resource ID of a managed identity (system or user assigned) to be used to ' - 'authenticate with event hub.') + c.argument('managed_identity_resource_id', options_list=['--managed-identity-resource-id', '--managed-identity'], + type=str, help='The resource ID of a managed identity (system or ' + 'user assigned) to be used to authenticate with event hub.') with self.argument_context('kusto data-connection iot-hub data-connection-validation') as c: c.argument('resource_group_name', resource_group_name_type) diff --git a/src/kusto/azext_kusto/generated/action.py b/src/kusto/azext_kusto/generated/action.py index 0c8d6145982..cca095ce83b 100644 --- a/src/kusto/azext_kusto/generated/action.py +++ b/src/kusto/azext_kusto/generated/action.py @@ -7,8 +7,13 @@ # Changes may cause incorrect behavior and will be lost if the code is # regenerated. # -------------------------------------------------------------------------- + + # pylint: disable=protected-access +# pylint: disable=no-self-use + + import argparse from collections import defaultdict from knack.util import CLIError @@ -19,7 +24,7 @@ def __call__(self, parser, namespace, values, option_string=None): action = self.get_action(values, option_string) namespace.sku = action - def get_action(self, values, option_string): # pylint: disable=no-self-use + def get_action(self, values, option_string): try: properties = defaultdict(list) for (k, v) in (x.split('=', 1) for x in values): @@ -31,15 +36,22 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use for k in properties: kl = k.lower() v = properties[k] + if kl == 'name': d['name'] = v[0] + elif kl == 'capacity': d['capacity'] = v[0] + elif kl == 'tier': d['tier'] = v[0] + else: - raise CLIError('Unsupported Key {} is provided for parameter sku. All possible keys are: name, ' - 'capacity, tier'.format(k)) + raise CLIError( + 'Unsupported Key {} is provided for parameter sku. All possible keys are: name, capacity, tier' + .format(k) + ) + return d @@ -48,7 +60,7 @@ def __call__(self, parser, namespace, values, option_string=None): action = self.get_action(values, option_string) super(AddTrustedExternalTenants, self).__call__(parser, namespace, action, option_string) - def get_action(self, values, option_string): # pylint: disable=no-self-use + def get_action(self, values, option_string): try: properties = defaultdict(list) for (k, v) in (x.split('=', 1) for x in values): @@ -60,11 +72,16 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use for k in properties: kl = k.lower() v = properties[k] + if kl == 'value': d['value'] = v[0] + else: - raise CLIError('Unsupported Key {} is provided for parameter trusted_external_tenants. All possible ' - 'keys are: value'.format(k)) + raise CLIError( + 'Unsupported Key {} is provided for parameter trusted-external-tenants. All possible keys are:' + ' value'.format(k) + ) + return d @@ -73,7 +90,7 @@ def __call__(self, parser, namespace, values, option_string=None): action = self.get_action(values, option_string) namespace.optimized_autoscale = action - def get_action(self, values, option_string): # pylint: disable=no-self-use + def get_action(self, values, option_string): try: properties = defaultdict(list) for (k, v) in (x.split('=', 1) for x in values): @@ -85,17 +102,25 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use for k in properties: kl = k.lower() v = properties[k] + if kl == 'version': d['version'] = v[0] + elif kl == 'is-enabled': d['is_enabled'] = v[0] + elif kl == 'minimum': d['minimum'] = v[0] + elif kl == 'maximum': d['maximum'] = v[0] + else: - raise CLIError('Unsupported Key {} is provided for parameter optimized_autoscale. All possible keys ' - 'are: version, is-enabled, minimum, maximum'.format(k)) + raise CLIError( + 'Unsupported Key {} is provided for parameter optimized-autoscale. All possible keys are: version,' + ' is-enabled, minimum, maximum'.format(k) + ) + return d @@ -104,7 +129,7 @@ def __call__(self, parser, namespace, values, option_string=None): action = self.get_action(values, option_string) namespace.virtual_network_configuration = action - def get_action(self, values, option_string): # pylint: disable=no-self-use + def get_action(self, values, option_string): try: properties = defaultdict(list) for (k, v) in (x.split('=', 1) for x in values): @@ -116,16 +141,22 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use for k in properties: kl = k.lower() v = properties[k] + if kl == 'subnet-id': d['subnet_id'] = v[0] + elif kl == 'engine-public-ip-id': d['engine_public_ip_id'] = v[0] + elif kl == 'data-management-public-ip-id': d['data_management_public_ip_id'] = v[0] + else: - raise CLIError('Unsupported Key {} is provided for parameter virtual_network_configuration. All ' - 'possible keys are: subnet-id, engine-public-ip-id, data-management-public-ip-id'. - format(k)) + raise CLIError( + 'Unsupported Key {} is provided for parameter virtual-network-configuration. All possible keys are:' + ' subnet-id, engine-public-ip-id, data-management-public-ip-id'.format(k) + ) + return d @@ -134,7 +165,7 @@ def __call__(self, parser, namespace, values, option_string=None): action = self.get_action(values, option_string) namespace.key_vault_properties = action - def get_action(self, values, option_string): # pylint: disable=no-self-use + def get_action(self, values, option_string): try: properties = defaultdict(list) for (k, v) in (x.split('=', 1) for x in values): @@ -146,17 +177,55 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use for k in properties: kl = k.lower() v = properties[k] + if kl == 'key-name': d['key_name'] = v[0] + elif kl == 'key-version': d['key_version'] = v[0] + elif kl == 'key-vault-uri': d['key_vault_uri'] = v[0] + elif kl == 'user-identity': d['user_identity'] = v[0] + + else: + raise CLIError( + 'Unsupported Key {} is provided for parameter key-vault-properties. All possible keys are:' + ' key-name, key-version, key-vault-uri, user-identity'.format(k) + ) + + return d + + +class AddAcceptedAudiences(argparse._AppendAction): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + super(AddAcceptedAudiences, self).__call__(parser, namespace, action, option_string) + + def get_action(self, values, option_string): + try: + properties = defaultdict(list) + for (k, v) in (x.split('=', 1) for x in values): + properties[k].append(v) + properties = dict(properties) + except ValueError: + raise CLIError('usage error: {} [KEY=VALUE ...]'.format(option_string)) + d = {} + for k in properties: + kl = k.lower() + v = properties[k] + + if kl == 'value': + d['value'] = v[0] + else: - raise CLIError('Unsupported Key {} is provided for parameter key_vault_properties. All possible keys ' - 'are: key-name, key-version, key-vault-uri, user-identity'.format(k)) + raise CLIError( + 'Unsupported Key {} is provided for parameter accepted-audiences. All possible keys are: value' + .format(k) + ) + return d @@ -165,7 +234,7 @@ def __call__(self, parser, namespace, values, option_string=None): action = self.get_action(values, option_string) super(AddClustersValue, self).__call__(parser, namespace, action, option_string) - def get_action(self, values, option_string): # pylint: disable=no-self-use + def get_action(self, values, option_string): try: properties = defaultdict(list) for (k, v) in (x.split('=', 1) for x in values): @@ -177,11 +246,16 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use for k in properties: kl = k.lower() v = properties[k] + if kl == 'language-extension-name': d['language_extension_name'] = v[0] + else: - raise CLIError('Unsupported Key {} is provided for parameter value. All possible keys are: ' - 'language-extension-name'.format(k)) + raise CLIError( + 'Unsupported Key {} is provided for parameter value. All possible keys are: language-extension-name' + .format(k) + ) + return d @@ -190,7 +264,7 @@ def __call__(self, parser, namespace, values, option_string=None): action = self.get_action(values, option_string) namespace.read_write_database = action - def get_action(self, values, option_string): # pylint: disable=no-self-use + def get_action(self, values, option_string): try: properties = defaultdict(list) for (k, v) in (x.split('=', 1) for x in values): @@ -202,16 +276,24 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use for k in properties: kl = k.lower() v = properties[k] + if kl == 'soft-delete-period': d['soft_delete_period'] = v[0] + elif kl == 'hot-cache-period': d['hot_cache_period'] = v[0] + elif kl == 'location': d['location'] = v[0] + else: - raise CLIError('Unsupported Key {} is provided for parameter read_write_database. All possible keys ' - 'are: soft-delete-period, hot-cache-period, location'.format(k)) + raise CLIError( + 'Unsupported Key {} is provided for parameter read-write-database. All possible keys are:' + ' soft-delete-period, hot-cache-period, location'.format(k) + ) + d['kind'] = 'ReadWrite' + return d @@ -220,7 +302,7 @@ def __call__(self, parser, namespace, values, option_string=None): action = self.get_action(values, option_string) namespace.read_only_following_database = action - def get_action(self, values, option_string): # pylint: disable=no-self-use + def get_action(self, values, option_string): try: properties = defaultdict(list) for (k, v) in (x.split('=', 1) for x in values): @@ -232,14 +314,21 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use for k in properties: kl = k.lower() v = properties[k] + if kl == 'hot-cache-period': d['hot_cache_period'] = v[0] + elif kl == 'location': d['location'] = v[0] + else: - raise CLIError('Unsupported Key {} is provided for parameter read_only_following_database. All ' - 'possible keys are: hot-cache-period, location'.format(k)) + raise CLIError( + 'Unsupported Key {} is provided for parameter read-only-following-database. All possible keys are:' + ' hot-cache-period, location'.format(k) + ) + d['kind'] = 'ReadOnlyFollowing' + return d @@ -248,7 +337,7 @@ def __call__(self, parser, namespace, values, option_string=None): action = self.get_action(values, option_string) super(AddDatabasesValue, self).__call__(parser, namespace, action, option_string) - def get_action(self, values, option_string): # pylint: disable=no-self-use + def get_action(self, values, option_string): try: properties = defaultdict(list) for (k, v) in (x.split('=', 1) for x in values): @@ -260,21 +349,31 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use for k in properties: kl = k.lower() v = properties[k] + if kl == 'role': d['role'] = v[0] + elif kl == 'name': d['name'] = v[0] + elif kl == 'type': d['type'] = v[0] + elif kl == 'fqn': d['fqn'] = v[0] + elif kl == 'email': d['email'] = v[0] + elif kl == 'app-id': d['app_id'] = v[0] + else: - raise CLIError('Unsupported Key {} is provided for parameter value. All possible keys are: role, name, ' - 'type, fqn, email, app-id'.format(k)) + raise CLIError( + 'Unsupported Key {} is provided for parameter value. All possible keys are: role, name, type, fqn,' + ' email, app-id'.format(k) + ) + return d @@ -283,7 +382,7 @@ def __call__(self, parser, namespace, values, option_string=None): action = self.get_action(values, option_string) namespace.table_level_sharing_properties = action - def get_action(self, values, option_string): # pylint: disable=no-self-use + def get_action(self, values, option_string): try: properties = defaultdict(list) for (k, v) in (x.split('=', 1) for x in values): @@ -295,21 +394,65 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use for k in properties: kl = k.lower() v = properties[k] + if kl == 'tables-to-include': d['tables_to_include'] = v + elif kl == 'tables-to-exclude': d['tables_to_exclude'] = v + elif kl == 'external-tables-to-include': d['external_tables_to_include'] = v + elif kl == 'external-tables-to-exclude': d['external_tables_to_exclude'] = v + elif kl == 'materialized-views-to-include': d['materialized_views_to_include'] = v + elif kl == 'materialized-views-to-exclude': d['materialized_views_to_exclude'] = v + + else: + raise CLIError( + 'Unsupported Key {} is provided for parameter table-level-sharing-properties. All possible keys' + ' are: tables-to-include, tables-to-exclude, external-tables-to-include,' + ' external-tables-to-exclude, materialized-views-to-include, materialized-views-to-exclude'.format( + k + ) + ) + + return d + + +class AddPrivateLinkServiceConnectionState(argparse.Action): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + namespace.private_link_service_connection_state = action + + def get_action(self, values, option_string): + try: + properties = defaultdict(list) + for (k, v) in (x.split('=', 1) for x in values): + properties[k].append(v) + properties = dict(properties) + except ValueError: + raise CLIError('usage error: {} [KEY=VALUE ...]'.format(option_string)) + d = {} + for k in properties: + kl = k.lower() + v = properties[k] + + if kl == 'status': + d['status'] = v[0] + + elif kl == 'description': + d['description'] = v[0] + else: - raise CLIError('Unsupported Key {} is provided for parameter table_level_sharing_properties. All ' - 'possible keys are: tables-to-include, tables-to-exclude, external-tables-to-include, ' - 'external-tables-to-exclude, materialized-views-to-include, ' - 'materialized-views-to-exclude'.format(k)) + raise CLIError( + 'Unsupported Key {} is provided for parameter private-link-service-connection-state. All possible' + ' keys are: status, description'.format(k) + ) + return d diff --git a/src/kusto/azext_kusto/generated/commands.py b/src/kusto/azext_kusto/generated/commands.py index 908f485a134..2b0fea2627b 100644 --- a/src/kusto/azext_kusto/generated/commands.py +++ b/src/kusto/azext_kusto/generated/commands.py @@ -9,16 +9,116 @@ # -------------------------------------------------------------------------- # pylint: disable=too-many-statements # pylint: disable=too-many-locals +# pylint: disable=bad-continuation +# pylint: disable=line-too-long from azure.cli.core.commands import CliCommandType +from azext_kusto.generated._client_factory import ( + cf_cluster, + cf_cluster_principal_assignment, + cf_database, + cf_attached_database_configuration, + cf_managed_private_endpoint, + cf_database_principal_assignment, + cf_script, + cf_private_endpoint_connection, + cf_private_link_resource, + cf_data_connection, + cf_operation_result, +) + + +kusto_attached_database_configuration = CliCommandType( + operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._attached_database_configurations_operations#AttachedDatabaseConfigurationsOperations.{}', + client_factory=cf_attached_database_configuration, +) + + +kusto_cluster = CliCommandType( + operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._clusters_operations#ClustersOperations.{}', + client_factory=cf_cluster, +) + + +kusto_cluster_principal_assignment = CliCommandType( + operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._cluster_principal_assignments_operations#ClusterPrincipalAssignmentsOperations.{}', + client_factory=cf_cluster_principal_assignment, +) + + +kusto_data_connection = CliCommandType( + operations_tmpl=( + 'azext_kusto.vendored_sdks.kusto.operations._data_connections_operations#DataConnectionsOperations.{}' + ), + client_factory=cf_data_connection, +) + + +kusto_database = CliCommandType( + operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._databases_operations#DatabasesOperations.{}', + client_factory=cf_database, +) + + +kusto_database_principal_assignment = CliCommandType( + operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._database_principal_assignments_operations#DatabasePrincipalAssignmentsOperations.{}', + client_factory=cf_database_principal_assignment, +) + + +kusto_managed_private_endpoint = CliCommandType( + operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._managed_private_endpoints_operations#ManagedPrivateEndpointsOperations.{}', + client_factory=cf_managed_private_endpoint, +) + + +kusto_operation_result = CliCommandType( + operations_tmpl=( + 'azext_kusto.vendored_sdks.kusto.operations._operations_results_operations#OperationsResultsOperations.{}' + ), + client_factory=cf_operation_result, +) + + +kusto_private_endpoint_connection = CliCommandType( + operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._private_endpoint_connections_operations#PrivateEndpointConnectionsOperations.{}', + client_factory=cf_private_endpoint_connection, +) + + +kusto_private_link_resource = CliCommandType( + operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._private_link_resources_operations#PrivateLinkResourcesOperations.{}', + client_factory=cf_private_link_resource, +) + + +kusto_script = CliCommandType( + operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._scripts_operations#ScriptsOperations.{}', + client_factory=cf_script, +) def load_command_table(self, _): - from azext_kusto.generated._client_factory import cf_cluster - kusto_cluster = CliCommandType( - operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._clusters_operations#ClustersOperations.{}', - client_factory=cf_cluster) + with self.command_group( + 'kusto attached-database-configuration', + kusto_attached_database_configuration, + client_factory=cf_attached_database_configuration, + ) as g: + g.custom_command('list', 'kusto_attached_database_configuration_list') + g.custom_show_command('show', 'kusto_attached_database_configuration_show') + g.custom_command('create', 'kusto_attached_database_configuration_create', supports_no_wait=True) + g.generic_update_command( + 'update', + supports_no_wait=True, + custom_func_name='kusto_attached_database_configuration_update', + setter_name='begin_create_or_update', + ) + g.custom_command( + 'delete', 'kusto_attached_database_configuration_delete', supports_no_wait=True, confirmation=True + ) + g.custom_wait_command('wait', 'kusto_attached_database_configuration_show') + with self.command_group('kusto cluster', kusto_cluster, client_factory=cf_cluster) as g: g.custom_command('list', 'kusto_cluster_list') g.custom_show_command('show', 'kusto_cluster_show') @@ -30,33 +130,61 @@ def load_command_table(self, _): g.custom_command('diagnose-virtual-network', 'kusto_cluster_diagnose_virtual_network', supports_no_wait=True) g.custom_command('list-follower-database', 'kusto_cluster_list_follower_database') g.custom_command('list-language-extension', 'kusto_cluster_list_language_extension') + g.custom_command( + 'list-outbound-network-dependency-endpoint', 'kusto_cluster_list_outbound_network_dependency_endpoint' + ) g.custom_command('list-sku', 'kusto_cluster_list_sku') - g.custom_command('remove-language-extension', 'kusto_cluster_remove_language_extension', - supports_no_wait=True) + g.custom_command('remove-language-extension', 'kusto_cluster_remove_language_extension', supports_no_wait=True) g.custom_command('start', 'kusto_cluster_start', supports_no_wait=True) g.custom_command('stop', 'kusto_cluster_stop', supports_no_wait=True) g.custom_wait_command('wait', 'kusto_cluster_show') - from azext_kusto.generated._client_factory import cf_cluster_principal_assignment - kusto_cluster_principal_assignment = CliCommandType( - operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._cluster_principal_assignments_operations#ClusterPr' - 'incipalAssignmentsOperations.{}', - client_factory=cf_cluster_principal_assignment) - with self.command_group('kusto cluster-principal-assignment', kusto_cluster_principal_assignment, - client_factory=cf_cluster_principal_assignment) as g: + with self.command_group( + 'kusto cluster-principal-assignment', + kusto_cluster_principal_assignment, + client_factory=cf_cluster_principal_assignment, + ) as g: g.custom_command('list', 'kusto_cluster_principal_assignment_list') g.custom_show_command('show', 'kusto_cluster_principal_assignment_show') g.custom_command('create', 'kusto_cluster_principal_assignment_create', supports_no_wait=True) - g.generic_update_command('update', setter_name='begin_create_or_update', - custom_func_name='kusto_cluster_principal_assignment_update', supports_no_wait=True) - g.custom_command('delete', 'kusto_cluster_principal_assignment_delete', supports_no_wait=True, - confirmation=True) + g.generic_update_command( + 'update', + supports_no_wait=True, + custom_func_name='kusto_cluster_principal_assignment_update', + setter_name='begin_create_or_update', + ) + g.custom_command( + 'delete', 'kusto_cluster_principal_assignment_delete', supports_no_wait=True, confirmation=True + ) g.custom_wait_command('wait', 'kusto_cluster_principal_assignment_show') - from azext_kusto.generated._client_factory import cf_database - kusto_database = CliCommandType( - operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._databases_operations#DatabasesOperations.{}', - client_factory=cf_database) + with self.command_group('kusto data-connection', kusto_data_connection, client_factory=cf_data_connection) as g: + g.custom_command('list', 'kusto_data_connection_list') + g.custom_show_command('show', 'kusto_data_connection_show') + g.custom_command('event-grid create', 'kusto_data_connection_event_grid_create', supports_no_wait=True) + g.custom_command('event-hub create', 'kusto_data_connection_event_hub_create', supports_no_wait=True) + g.custom_command('iot-hub create', 'kusto_data_connection_iot_hub_create', supports_no_wait=True) + g.custom_command('event-grid update', 'kusto_data_connection_event_grid_update', supports_no_wait=True) + g.custom_command('event-hub update', 'kusto_data_connection_event_hub_update', supports_no_wait=True) + g.custom_command('iot-hub update', 'kusto_data_connection_iot_hub_update', supports_no_wait=True) + g.custom_command('delete', 'kusto_data_connection_delete', supports_no_wait=True, confirmation=True) + g.custom_command( + 'event-grid data-connection-validation', + 'kusto_data_connection_event_grid_data_connection_validation', + supports_no_wait=True, + ) + g.custom_command( + 'event-hub data-connection-validation', + 'kusto_data_connection_event_hub_data_connection_validation', + supports_no_wait=True, + ) + g.custom_command( + 'iot-hub data-connection-validation', + 'kusto_data_connection_iot_hub_data_connection_validation', + supports_no_wait=True, + ) + g.custom_wait_command('wait', 'kusto_data_connection_show') + with self.command_group('kusto database', kusto_database, client_factory=cf_database) as g: g.custom_command('list', 'kusto_database_list') g.custom_show_command('show', 'kusto_database_show') @@ -68,26 +196,61 @@ def load_command_table(self, _): g.custom_command('remove-principal', 'kusto_database_remove_principal') g.custom_wait_command('wait', 'kusto_database_show') - from azext_kusto.generated._client_factory import cf_database_principal_assignment - kusto_database_principal_assignment = CliCommandType( - operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._database_principal_assignments_operations#Database' - 'PrincipalAssignmentsOperations.{}', - client_factory=cf_database_principal_assignment) - with self.command_group('kusto database-principal-assignment', kusto_database_principal_assignment, - client_factory=cf_database_principal_assignment) as g: + with self.command_group( + 'kusto database-principal-assignment', + kusto_database_principal_assignment, + client_factory=cf_database_principal_assignment, + ) as g: g.custom_command('list', 'kusto_database_principal_assignment_list') g.custom_show_command('show', 'kusto_database_principal_assignment_show') g.custom_command('create', 'kusto_database_principal_assignment_create', supports_no_wait=True) - g.generic_update_command('update', setter_name='begin_create_or_update', - custom_func_name='kusto_database_principal_assignment_update', supports_no_wait=True) - g.custom_command('delete', 'kusto_database_principal_assignment_delete', supports_no_wait=True, - confirmation=True) + g.generic_update_command( + 'update', + supports_no_wait=True, + custom_func_name='kusto_database_principal_assignment_update', + setter_name='begin_create_or_update', + ) + g.custom_command( + 'delete', 'kusto_database_principal_assignment_delete', supports_no_wait=True, confirmation=True + ) g.custom_wait_command('wait', 'kusto_database_principal_assignment_show') - from azext_kusto.generated._client_factory import cf_script - kusto_script = CliCommandType( - operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._scripts_operations#ScriptsOperations.{}', - client_factory=cf_script) + with self.command_group( + 'kusto managed-private-endpoint', kusto_managed_private_endpoint, client_factory=cf_managed_private_endpoint + ) as g: + g.custom_command('list', 'kusto_managed_private_endpoint_list') + g.custom_show_command('show', 'kusto_managed_private_endpoint_show') + g.custom_command('create', 'kusto_managed_private_endpoint_create', supports_no_wait=True) + g.custom_command('update', 'kusto_managed_private_endpoint_update', supports_no_wait=True) + g.custom_command('delete', 'kusto_managed_private_endpoint_delete', supports_no_wait=True, confirmation=True) + g.custom_wait_command('wait', 'kusto_managed_private_endpoint_show') + + with self.command_group('kusto operation-result', kusto_operation_result, client_factory=cf_operation_result) as g: + g.custom_show_command('show', 'kusto_operation_result_show') + + with self.command_group( + 'kusto private-endpoint-connection', + kusto_private_endpoint_connection, + client_factory=cf_private_endpoint_connection, + ) as g: + g.custom_command('list', 'kusto_private_endpoint_connection_list') + g.custom_show_command('show', 'kusto_private_endpoint_connection_show') + g.custom_command('create', 'kusto_private_endpoint_connection_create', supports_no_wait=True) + g.generic_update_command( + 'update', + supports_no_wait=True, + custom_func_name='kusto_private_endpoint_connection_update', + setter_name='begin_create_or_update', + ) + g.custom_command('delete', 'kusto_private_endpoint_connection_delete', supports_no_wait=True, confirmation=True) + g.custom_wait_command('wait', 'kusto_private_endpoint_connection_show') + + with self.command_group( + 'kusto private-link-resource', kusto_private_link_resource, client_factory=cf_private_link_resource + ) as g: + g.custom_command('list', 'kusto_private_link_resource_list') + g.custom_show_command('show', 'kusto_private_link_resource_show') + with self.command_group('kusto script', kusto_script, client_factory=cf_script) as g: g.custom_command('list', 'kusto_script_list') g.custom_show_command('show', 'kusto_script_show') @@ -96,54 +259,5 @@ def load_command_table(self, _): g.custom_command('delete', 'kusto_script_delete', supports_no_wait=True, confirmation=True) g.custom_wait_command('wait', 'kusto_script_show') - from azext_kusto.generated._client_factory import cf_attached_database_configuration - kusto_attached_database_configuration = CliCommandType( - operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._attached_database_configurations_operations#Attach' - 'edDatabaseConfigurationsOperations.{}', - client_factory=cf_attached_database_configuration) - with self.command_group('kusto attached-database-configuration', kusto_attached_database_configuration, - client_factory=cf_attached_database_configuration) as g: - g.custom_command('list', 'kusto_attached_database_configuration_list') - g.custom_show_command('show', 'kusto_attached_database_configuration_show') - g.custom_command('create', 'kusto_attached_database_configuration_create', supports_no_wait=True) - g.generic_update_command('update', setter_name='begin_create_or_update', - custom_func_name='kusto_attached_database_configuration_update', - supports_no_wait=True) - g.custom_command('delete', 'kusto_attached_database_configuration_delete', supports_no_wait=True, - confirmation=True) - g.custom_wait_command('wait', 'kusto_attached_database_configuration_show') - - from azext_kusto.generated._client_factory import cf_data_connection - kusto_data_connection = CliCommandType( - operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._data_connections_operations#DataConnectionsOperati' - 'ons.{}', - client_factory=cf_data_connection) - with self.command_group('kusto data-connection', kusto_data_connection, client_factory=cf_data_connection) as g: - g.custom_command('list', 'kusto_data_connection_list') - g.custom_show_command('show', 'kusto_data_connection_show') - g.custom_command('event-grid create', 'kusto_data_connection_event_grid_create', supports_no_wait=True) - g.custom_command('event-hub create', 'kusto_data_connection_event_hub_create', supports_no_wait=True) - g.custom_command('iot-hub create', 'kusto_data_connection_iot_hub_create', supports_no_wait=True) - g.custom_command('event-grid update', 'kusto_data_connection_event_grid_update', supports_no_wait=True) - g.custom_command('event-hub update', 'kusto_data_connection_event_hub_update', supports_no_wait=True) - g.custom_command('iot-hub update', 'kusto_data_connection_iot_hub_update', supports_no_wait=True) - g.custom_command('delete', 'kusto_data_connection_delete', supports_no_wait=True, confirmation=True) - g.custom_command('event-grid data-connection-validation', 'kusto_data_connection_event_grid_data_connection_val' - 'idation', supports_no_wait=True) - g.custom_command('event-hub data-connection-validation', 'kusto_data_connection_event_hub_data_connection_valid' - 'ation', supports_no_wait=True) - g.custom_command('iot-hub data-connection-validation', 'kusto_data_connection_iot_hub_data_connection_validatio' - 'n', supports_no_wait=True) - g.custom_wait_command('wait', 'kusto_data_connection_show') - - from azext_kusto.generated._client_factory import cf_operation_result - kusto_operation_result = CliCommandType( - operations_tmpl='azext_kusto.vendored_sdks.kusto.operations._operations_results_operations#OperationsResultsOpe' - 'rations.{}', - client_factory=cf_operation_result) - with self.command_group('kusto operation-result', kusto_operation_result, - client_factory=cf_operation_result) as g: - g.custom_show_command('show', 'kusto_operation_result_show') - with self.command_group('kusto', is_experimental=True): pass diff --git a/src/kusto/azext_kusto/generated/custom.py b/src/kusto/azext_kusto/generated/custom.py index 55626bfd1e0..a9b4dd1954b 100644 --- a/src/kusto/azext_kusto/generated/custom.py +++ b/src/kusto/azext_kusto/generated/custom.py @@ -45,37 +45,74 @@ def kusto_cluster_create(client, key_vault_properties=None, enable_purge=None, enable_double_encryption=None, + public_network_access=None, + allowed_ip_range_list=None, engine_type=None, + accepted_audiences=None, + enable_auto_stop=None, + restrict_outbound_network_access=None, + allowed_fqdn_list=None, type_=None, user_assigned_identities=None, no_wait=False): - if enable_disk_encryption is None: - enable_disk_encryption = False - if enable_streaming_ingest is None: - enable_streaming_ingest = False - if enable_purge is None: - enable_purge = False - if enable_double_encryption is None: - enable_double_encryption = False - if engine_type is None: - engine_type = "V3" parameters = {} - parameters['tags'] = tags + if tags is not None: + parameters['tags'] = tags parameters['location'] = location parameters['sku'] = sku - parameters['zones'] = zones - parameters['trusted_external_tenants'] = trusted_external_tenants - parameters['optimized_autoscale'] = optimized_autoscale - parameters['enable_disk_encryption'] = False if enable_disk_encryption is None else enable_disk_encryption - parameters['enable_streaming_ingest'] = False if enable_streaming_ingest is None else enable_streaming_ingest - parameters['virtual_network_configuration'] = virtual_network_configuration - parameters['key_vault_properties'] = key_vault_properties - parameters['enable_purge'] = False if enable_purge is None else enable_purge - parameters['enable_double_encryption'] = False if enable_double_encryption is None else enable_double_encryption - parameters['engine_type'] = "V3" if engine_type is None else engine_type + if zones is not None: + parameters['zones'] = zones + if trusted_external_tenants is not None: + parameters['trusted_external_tenants'] = trusted_external_tenants + if optimized_autoscale is not None: + parameters['optimized_autoscale'] = optimized_autoscale + if enable_disk_encryption is not None: + parameters['enable_disk_encryption'] = enable_disk_encryption + else: + parameters['enable_disk_encryption'] = False + if enable_streaming_ingest is not None: + parameters['enable_streaming_ingest'] = enable_streaming_ingest + else: + parameters['enable_streaming_ingest'] = False + if virtual_network_configuration is not None: + parameters['virtual_network_configuration'] = virtual_network_configuration + if key_vault_properties is not None: + parameters['key_vault_properties'] = key_vault_properties + if enable_purge is not None: + parameters['enable_purge'] = enable_purge + else: + parameters['enable_purge'] = False + if enable_double_encryption is not None: + parameters['enable_double_encryption'] = enable_double_encryption + else: + parameters['enable_double_encryption'] = False + if public_network_access is not None: + parameters['public_network_access'] = public_network_access + else: + parameters['public_network_access'] = "Enabled" + if allowed_ip_range_list is not None: + parameters['allowed_ip_range_list'] = allowed_ip_range_list + if engine_type is not None: + parameters['engine_type'] = engine_type + else: + parameters['engine_type'] = "V3" + if accepted_audiences is not None: + parameters['accepted_audiences'] = accepted_audiences + if enable_auto_stop is not None: + parameters['enable_auto_stop'] = enable_auto_stop + else: + parameters['enable_auto_stop'] = True + if restrict_outbound_network_access is not None: + parameters['restrict_outbound_network_access'] = restrict_outbound_network_access + if allowed_fqdn_list is not None: + parameters['allowed_fqdn_list'] = allowed_fqdn_list parameters['identity'] = {} - parameters['identity']['type'] = type_ - parameters['identity']['user_assigned_identities'] = user_assigned_identities + if type_ is not None: + parameters['identity']['type'] = type_ + if user_assigned_identities is not None: + parameters['identity']['user_assigned_identities'] = user_assigned_identities + if len(parameters['identity']) == 0: + del parameters['identity'] return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name=resource_group_name, @@ -100,36 +137,74 @@ def kusto_cluster_update(client, key_vault_properties=None, enable_purge=None, enable_double_encryption=None, + public_network_access=None, + allowed_ip_range_list=None, engine_type=None, + accepted_audiences=None, + enable_auto_stop=None, + restrict_outbound_network_access=None, + allowed_fqdn_list=None, type_=None, user_assigned_identities=None, no_wait=False): - if enable_disk_encryption is None: - enable_disk_encryption = False - if enable_streaming_ingest is None: - enable_streaming_ingest = False - if enable_purge is None: - enable_purge = False - if enable_double_encryption is None: - enable_double_encryption = False - if engine_type is None: - engine_type = "V3" parameters = {} - parameters['tags'] = tags - parameters['location'] = location - parameters['sku'] = sku - parameters['trusted_external_tenants'] = trusted_external_tenants - parameters['optimized_autoscale'] = optimized_autoscale - parameters['enable_disk_encryption'] = False if enable_disk_encryption is None else enable_disk_encryption - parameters['enable_streaming_ingest'] = False if enable_streaming_ingest is None else enable_streaming_ingest - parameters['virtual_network_configuration'] = virtual_network_configuration - parameters['key_vault_properties'] = key_vault_properties - parameters['enable_purge'] = False if enable_purge is None else enable_purge - parameters['enable_double_encryption'] = False if enable_double_encryption is None else enable_double_encryption - parameters['engine_type'] = "V3" if engine_type is None else engine_type + if tags is not None: + parameters['tags'] = tags + if location is not None: + parameters['location'] = location + if sku is not None: + parameters['sku'] = sku + if trusted_external_tenants is not None: + parameters['trusted_external_tenants'] = trusted_external_tenants + if optimized_autoscale is not None: + parameters['optimized_autoscale'] = optimized_autoscale + if enable_disk_encryption is not None: + parameters['enable_disk_encryption'] = enable_disk_encryption + else: + parameters['enable_disk_encryption'] = False + if enable_streaming_ingest is not None: + parameters['enable_streaming_ingest'] = enable_streaming_ingest + else: + parameters['enable_streaming_ingest'] = False + if virtual_network_configuration is not None: + parameters['virtual_network_configuration'] = virtual_network_configuration + if key_vault_properties is not None: + parameters['key_vault_properties'] = key_vault_properties + if enable_purge is not None: + parameters['enable_purge'] = enable_purge + else: + parameters['enable_purge'] = False + if enable_double_encryption is not None: + parameters['enable_double_encryption'] = enable_double_encryption + else: + parameters['enable_double_encryption'] = False + if public_network_access is not None: + parameters['public_network_access'] = public_network_access + else: + parameters['public_network_access'] = "Enabled" + if allowed_ip_range_list is not None: + parameters['allowed_ip_range_list'] = allowed_ip_range_list + if engine_type is not None: + parameters['engine_type'] = engine_type + else: + parameters['engine_type'] = "V3" + if accepted_audiences is not None: + parameters['accepted_audiences'] = accepted_audiences + if enable_auto_stop is not None: + parameters['enable_auto_stop'] = enable_auto_stop + else: + parameters['enable_auto_stop'] = True + if restrict_outbound_network_access is not None: + parameters['restrict_outbound_network_access'] = restrict_outbound_network_access + if allowed_fqdn_list is not None: + parameters['allowed_fqdn_list'] = allowed_fqdn_list parameters['identity'] = {} - parameters['identity']['type'] = type_ - parameters['identity']['user_assigned_identities'] = user_assigned_identities + if type_ is not None: + parameters['identity']['type'] = type_ + if user_assigned_identities is not None: + parameters['identity']['user_assigned_identities'] = user_assigned_identities + if len(parameters['identity']) == 0: + del parameters['identity'] return sdk_no_wait(no_wait, client.begin_update, resource_group_name=resource_group_name, @@ -154,7 +229,8 @@ def kusto_cluster_add_language_extension(client, value=None, no_wait=False): language_extensions_to_add = {} - language_extensions_to_add['value'] = value + if value is not None: + language_extensions_to_add['value'] = value return sdk_no_wait(no_wait, client.begin_add_language_extensions, resource_group_name=resource_group_name, @@ -202,6 +278,13 @@ def kusto_cluster_list_language_extension(client, cluster_name=cluster_name) +def kusto_cluster_list_outbound_network_dependency_endpoint(client, + resource_group_name, + cluster_name): + return client.list_outbound_network_dependencies_endpoints(resource_group_name=resource_group_name, + cluster_name=cluster_name) + + def kusto_cluster_list_sku(client, resource_group_name=None, cluster_name=None): @@ -217,7 +300,8 @@ def kusto_cluster_remove_language_extension(client, value=None, no_wait=False): language_extensions_to_remove = {} - language_extensions_to_remove['value'] = value + if value is not None: + language_extensions_to_remove['value'] = value return sdk_no_wait(no_wait, client.begin_remove_language_extensions, resource_group_name=resource_group_name, @@ -271,10 +355,14 @@ def kusto_cluster_principal_assignment_create(client, principal_type=None, no_wait=False): parameters = {} - parameters['principal_id'] = principal_id - parameters['role'] = role - parameters['tenant_id'] = tenant_id - parameters['principal_type'] = principal_type + if principal_id is not None: + parameters['principal_id'] = principal_id + if role is not None: + parameters['role'] = role + if tenant_id is not None: + parameters['tenant_id'] = tenant_id + if principal_type is not None: + parameters['principal_type'] = principal_type return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name=resource_group_name, @@ -401,7 +489,8 @@ def kusto_database_add_principal(client, database_name, value=None): database_principals_to_add = {} - database_principals_to_add['value'] = value + if value is not None: + database_principals_to_add['value'] = value return client.add_principals(resource_group_name=resource_group_name, cluster_name=cluster_name, database_name=database_name, @@ -423,13 +512,174 @@ def kusto_database_remove_principal(client, database_name, value=None): database_principals_to_remove = {} - database_principals_to_remove['value'] = value + if value is not None: + database_principals_to_remove['value'] = value return client.remove_principals(resource_group_name=resource_group_name, cluster_name=cluster_name, database_name=database_name, database_principals_to_remove=database_principals_to_remove) +def kusto_attached_database_configuration_list(client, + resource_group_name, + cluster_name): + return client.list_by_cluster(resource_group_name=resource_group_name, + cluster_name=cluster_name) + + +def kusto_attached_database_configuration_show(client, + resource_group_name, + cluster_name, + attached_database_configuration_name): + return client.get(resource_group_name=resource_group_name, + cluster_name=cluster_name, + attached_database_configuration_name=attached_database_configuration_name) + + +def kusto_attached_database_configuration_create(client, + resource_group_name, + cluster_name, + attached_database_configuration_name, + location=None, + database_name=None, + cluster_resource_id=None, + default_principals_modification_kind=None, + table_level_sharing_properties=None, + no_wait=False): + parameters = {} + if location is not None: + parameters['location'] = location + if database_name is not None: + parameters['database_name'] = database_name + if cluster_resource_id is not None: + parameters['cluster_resource_id'] = cluster_resource_id + if default_principals_modification_kind is not None: + parameters['default_principals_modification_kind'] = default_principals_modification_kind + if table_level_sharing_properties is not None: + parameters['table_level_sharing_properties'] = table_level_sharing_properties + return sdk_no_wait(no_wait, + client.begin_create_or_update, + resource_group_name=resource_group_name, + cluster_name=cluster_name, + attached_database_configuration_name=attached_database_configuration_name, + parameters=parameters) + + +def kusto_attached_database_configuration_update(instance, + resource_group_name, + cluster_name, + attached_database_configuration_name, + location=None, + database_name=None, + cluster_resource_id=None, + default_principals_modification_kind=None, + table_level_sharing_properties=None, + no_wait=False): + if location is not None: + instance.location = location + if database_name is not None: + instance.database_name = database_name + if cluster_resource_id is not None: + instance.cluster_resource_id = cluster_resource_id + if default_principals_modification_kind is not None: + instance.default_principals_modification_kind = default_principals_modification_kind + if table_level_sharing_properties is not None: + instance.table_level_sharing_properties = table_level_sharing_properties + return instance + + +def kusto_attached_database_configuration_delete(client, + resource_group_name, + cluster_name, + attached_database_configuration_name, + no_wait=False): + return sdk_no_wait(no_wait, + client.begin_delete, + resource_group_name=resource_group_name, + cluster_name=cluster_name, + attached_database_configuration_name=attached_database_configuration_name) + + +def kusto_managed_private_endpoint_list(client, + resource_group_name, + cluster_name): + return client.list(resource_group_name=resource_group_name, + cluster_name=cluster_name) + + +def kusto_managed_private_endpoint_show(client, + resource_group_name, + cluster_name, + managed_private_endpoint_name): + return client.get(resource_group_name=resource_group_name, + cluster_name=cluster_name, + managed_private_endpoint_name=managed_private_endpoint_name) + + +def kusto_managed_private_endpoint_create(client, + resource_group_name, + cluster_name, + managed_private_endpoint_name, + private_link_resource_id=None, + private_link_resource_region=None, + group_id=None, + request_message=None, + no_wait=False): + parameters = {} + if private_link_resource_id is not None: + parameters['private_link_resource_id'] = private_link_resource_id + if private_link_resource_region is not None: + parameters['private_link_resource_region'] = private_link_resource_region + if group_id is not None: + parameters['group_id'] = group_id + if request_message is not None: + parameters['request_message'] = request_message + return sdk_no_wait(no_wait, + client.begin_create_or_update, + resource_group_name=resource_group_name, + cluster_name=cluster_name, + managed_private_endpoint_name=managed_private_endpoint_name, + parameters=parameters) + + +def kusto_managed_private_endpoint_update(client, + resource_group_name, + cluster_name, + managed_private_endpoint_name, + private_link_resource_id=None, + private_link_resource_region=None, + group_id=None, + request_message=None, + no_wait=False): + parameters = {} + if private_link_resource_id is not None: + parameters['private_link_resource_id'] = private_link_resource_id + if private_link_resource_region is not None: + parameters['private_link_resource_region'] = private_link_resource_region + if group_id is not None: + parameters['group_id'] = group_id + if request_message is not None: + parameters['request_message'] = request_message + return sdk_no_wait(no_wait, + client.begin_update, + resource_group_name=resource_group_name, + cluster_name=cluster_name, + managed_private_endpoint_name=managed_private_endpoint_name, + parameters=parameters) + + +def kusto_managed_private_endpoint_delete(client, + resource_group_name, + cluster_name, + managed_private_endpoint_name, + no_wait=False): + return sdk_no_wait(no_wait, + client.begin_delete, + resource_group_name=resource_group_name, + cluster_name=cluster_name, + managed_private_endpoint_name=managed_private_endpoint_name) + + def kusto_database_principal_assignment_list(client, resource_group_name, cluster_name, @@ -461,10 +711,14 @@ def kusto_database_principal_assignment_create(client, principal_type=None, no_wait=False): parameters = {} - parameters['principal_id'] = principal_id - parameters['role'] = role - parameters['tenant_id'] = tenant_id - parameters['principal_type'] = principal_type + if principal_id is not None: + parameters['principal_id'] = principal_id + if role is not None: + parameters['role'] = role + if tenant_id is not None: + parameters['tenant_id'] = tenant_id + if principal_type is not None: + parameters['principal_type'] = principal_type return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name=resource_group_name, @@ -539,13 +793,17 @@ def kusto_script_create(client, force_update_tag=None, continue_on_errors=None, no_wait=False): - if continue_on_errors is None: - continue_on_errors = False parameters = {} - parameters['script_url'] = script_url - parameters['script_url_sas_token'] = script_url_sas_token - parameters['force_update_tag'] = force_update_tag - parameters['continue_on_errors'] = False if continue_on_errors is None else continue_on_errors + if script_url is not None: + parameters['script_url'] = script_url + if script_url_sas_token is not None: + parameters['script_url_sas_token'] = script_url_sas_token + if force_update_tag is not None: + parameters['force_update_tag'] = force_update_tag + if continue_on_errors is not None: + parameters['continue_on_errors'] = continue_on_errors + else: + parameters['continue_on_errors'] = False return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name=resource_group_name, @@ -565,13 +823,17 @@ def kusto_script_update(client, force_update_tag=None, continue_on_errors=None, no_wait=False): - if continue_on_errors is None: - continue_on_errors = False parameters = {} - parameters['script_url'] = script_url - parameters['script_url_sas_token'] = script_url_sas_token - parameters['force_update_tag'] = force_update_tag - parameters['continue_on_errors'] = False if continue_on_errors is None else continue_on_errors + if script_url is not None: + parameters['script_url'] = script_url + if script_url_sas_token is not None: + parameters['script_url_sas_token'] = script_url_sas_token + if force_update_tag is not None: + parameters['force_update_tag'] = force_update_tag + if continue_on_errors is not None: + parameters['continue_on_errors'] = continue_on_errors + else: + parameters['continue_on_errors'] = False return sdk_no_wait(no_wait, client.begin_update, resource_group_name=resource_group_name, @@ -595,79 +857,76 @@ def kusto_script_delete(client, script_name=script_name) -def kusto_attached_database_configuration_list(client, - resource_group_name, - cluster_name): - return client.list_by_cluster(resource_group_name=resource_group_name, - cluster_name=cluster_name) +def kusto_private_endpoint_connection_list(client, + resource_group_name, + cluster_name): + return client.list(resource_group_name=resource_group_name, + cluster_name=cluster_name) -def kusto_attached_database_configuration_show(client, - resource_group_name, - cluster_name, - attached_database_configuration_name): +def kusto_private_endpoint_connection_show(client, + resource_group_name, + cluster_name, + private_endpoint_connection_name): return client.get(resource_group_name=resource_group_name, cluster_name=cluster_name, - attached_database_configuration_name=attached_database_configuration_name) + private_endpoint_connection_name=private_endpoint_connection_name) -def kusto_attached_database_configuration_create(client, - resource_group_name, - cluster_name, - attached_database_configuration_name, - location=None, - database_name=None, - cluster_resource_id=None, - default_principals_modification_kind=None, - table_level_sharing_properties=None, - no_wait=False): +def kusto_private_endpoint_connection_create(client, + resource_group_name, + cluster_name, + private_endpoint_connection_name, + private_link_service_connection_state=None, + no_wait=False): parameters = {} - parameters['location'] = location - parameters['database_name'] = database_name - parameters['cluster_resource_id'] = cluster_resource_id - parameters['default_principals_modification_kind'] = default_principals_modification_kind - parameters['table_level_sharing_properties'] = table_level_sharing_properties + if private_link_service_connection_state is not None: + parameters['private_link_service_connection_state'] = private_link_service_connection_state return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name=resource_group_name, cluster_name=cluster_name, - attached_database_configuration_name=attached_database_configuration_name, + private_endpoint_connection_name=private_endpoint_connection_name, parameters=parameters) -def kusto_attached_database_configuration_update(instance, - resource_group_name, - cluster_name, - attached_database_configuration_name, - location=None, - database_name=None, - cluster_resource_id=None, - default_principals_modification_kind=None, - table_level_sharing_properties=None, - no_wait=False): - if location is not None: - instance.location = location - if database_name is not None: - instance.database_name = database_name - if cluster_resource_id is not None: - instance.cluster_resource_id = cluster_resource_id - if default_principals_modification_kind is not None: - instance.default_principals_modification_kind = default_principals_modification_kind - if table_level_sharing_properties is not None: - instance.table_level_sharing_properties = table_level_sharing_properties +def kusto_private_endpoint_connection_update(instance, + resource_group_name, + cluster_name, + private_endpoint_connection_name, + private_link_service_connection_state=None, + no_wait=False): + if private_link_service_connection_state is not None: + instance.private_link_service_connection_state = private_link_service_connection_state return instance -def kusto_attached_database_configuration_delete(client, - resource_group_name, - cluster_name, - attached_database_configuration_name, - no_wait=False): +def kusto_private_endpoint_connection_delete(client, + resource_group_name, + cluster_name, + private_endpoint_connection_name, + no_wait=False): return sdk_no_wait(no_wait, client.begin_delete, resource_group_name=resource_group_name, cluster_name=cluster_name, - attached_database_configuration_name=attached_database_configuration_name) + private_endpoint_connection_name=private_endpoint_connection_name) + + +def kusto_private_link_resource_list(client, + resource_group_name, + cluster_name): + return client.list(resource_group_name=resource_group_name, + cluster_name=cluster_name) + + +def kusto_private_link_resource_show(client, + resource_group_name, + cluster_name, + private_link_resource_name): + return client.get(resource_group_name=resource_group_name, + cluster_name=cluster_name, + private_link_resource_name=private_link_resource_name) def kusto_data_connection_list(client, @@ -706,16 +965,25 @@ def kusto_data_connection_event_grid_create(client, blob_storage_event_type=None, no_wait=False): parameters = {} - parameters['location'] = location + if location is not None: + parameters['location'] = location parameters['kind'] = 'EventGrid' - parameters['storage_account_resource_id'] = storage_account_resource_id - parameters['event_hub_resource_id'] = event_hub_resource_id - parameters['consumer_group'] = consumer_group - parameters['table_name'] = table_name - parameters['mapping_rule_name'] = mapping_rule_name - parameters['data_format'] = data_format - parameters['ignore_first_record'] = ignore_first_record - parameters['blob_storage_event_type'] = blob_storage_event_type + if storage_account_resource_id is not None: + parameters['storage_account_resource_id'] = storage_account_resource_id + if event_hub_resource_id is not None: + parameters['event_hub_resource_id'] = event_hub_resource_id + if consumer_group is not None: + parameters['consumer_group'] = consumer_group + if table_name is not None: + parameters['table_name'] = table_name + if mapping_rule_name is not None: + parameters['mapping_rule_name'] = mapping_rule_name + if data_format is not None: + parameters['data_format'] = data_format + if ignore_first_record is not None: + parameters['ignore_first_record'] = ignore_first_record + if blob_storage_event_type is not None: + parameters['blob_storage_event_type'] = blob_storage_event_type return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name=resource_group_name, @@ -740,19 +1008,28 @@ def kusto_data_connection_event_hub_create(client, compression=None, managed_identity_resource_id=None, no_wait=False): - if compression is None: - compression = "None" parameters = {} - parameters['location'] = location + if location is not None: + parameters['location'] = location parameters['kind'] = 'EventHub' - parameters['event_hub_resource_id'] = event_hub_resource_id - parameters['consumer_group'] = consumer_group - parameters['table_name'] = table_name - parameters['mapping_rule_name'] = mapping_rule_name - parameters['data_format'] = data_format - parameters['event_system_properties'] = event_system_properties - parameters['compression'] = "None" if compression is None else compression - parameters['managed_identity_resource_id'] = managed_identity_resource_id + if event_hub_resource_id is not None: + parameters['event_hub_resource_id'] = event_hub_resource_id + if consumer_group is not None: + parameters['consumer_group'] = consumer_group + if table_name is not None: + parameters['table_name'] = table_name + if mapping_rule_name is not None: + parameters['mapping_rule_name'] = mapping_rule_name + if data_format is not None: + parameters['data_format'] = data_format + if event_system_properties is not None: + parameters['event_system_properties'] = event_system_properties + if compression is not None: + parameters['compression'] = compression + else: + parameters['compression'] = "None" + if managed_identity_resource_id is not None: + parameters['managed_identity_resource_id'] = managed_identity_resource_id return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name=resource_group_name, @@ -777,15 +1054,23 @@ def kusto_data_connection_iot_hub_create(client, shared_access_policy_name=None, no_wait=False): parameters = {} - parameters['location'] = location + if location is not None: + parameters['location'] = location parameters['kind'] = 'IotHub' - parameters['iot_hub_resource_id'] = iot_hub_resource_id - parameters['consumer_group'] = consumer_group - parameters['table_name'] = table_name - parameters['mapping_rule_name'] = mapping_rule_name - parameters['data_format'] = data_format - parameters['event_system_properties'] = event_system_properties - parameters['shared_access_policy_name'] = shared_access_policy_name + if iot_hub_resource_id is not None: + parameters['iot_hub_resource_id'] = iot_hub_resource_id + if consumer_group is not None: + parameters['consumer_group'] = consumer_group + if table_name is not None: + parameters['table_name'] = table_name + if mapping_rule_name is not None: + parameters['mapping_rule_name'] = mapping_rule_name + if data_format is not None: + parameters['data_format'] = data_format + if event_system_properties is not None: + parameters['event_system_properties'] = event_system_properties + if shared_access_policy_name is not None: + parameters['shared_access_policy_name'] = shared_access_policy_name return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name=resource_group_name, @@ -811,16 +1096,25 @@ def kusto_data_connection_event_grid_update(client, blob_storage_event_type=None, no_wait=False): parameters = {} - parameters['location'] = location + if location is not None: + parameters['location'] = location parameters['kind'] = 'EventGrid' - parameters['storage_account_resource_id'] = storage_account_resource_id - parameters['event_hub_resource_id'] = event_hub_resource_id - parameters['consumer_group'] = consumer_group - parameters['table_name'] = table_name - parameters['mapping_rule_name'] = mapping_rule_name - parameters['data_format'] = data_format - parameters['ignore_first_record'] = ignore_first_record - parameters['blob_storage_event_type'] = blob_storage_event_type + if storage_account_resource_id is not None: + parameters['storage_account_resource_id'] = storage_account_resource_id + if event_hub_resource_id is not None: + parameters['event_hub_resource_id'] = event_hub_resource_id + if consumer_group is not None: + parameters['consumer_group'] = consumer_group + if table_name is not None: + parameters['table_name'] = table_name + if mapping_rule_name is not None: + parameters['mapping_rule_name'] = mapping_rule_name + if data_format is not None: + parameters['data_format'] = data_format + if ignore_first_record is not None: + parameters['ignore_first_record'] = ignore_first_record + if blob_storage_event_type is not None: + parameters['blob_storage_event_type'] = blob_storage_event_type return sdk_no_wait(no_wait, client.begin_update, resource_group_name=resource_group_name, @@ -845,19 +1139,28 @@ def kusto_data_connection_event_hub_update(client, compression=None, managed_identity_resource_id=None, no_wait=False): - if compression is None: - compression = "None" parameters = {} - parameters['location'] = location + if location is not None: + parameters['location'] = location parameters['kind'] = 'EventHub' - parameters['event_hub_resource_id'] = event_hub_resource_id - parameters['consumer_group'] = consumer_group - parameters['table_name'] = table_name - parameters['mapping_rule_name'] = mapping_rule_name - parameters['data_format'] = data_format - parameters['event_system_properties'] = event_system_properties - parameters['compression'] = "None" if compression is None else compression - parameters['managed_identity_resource_id'] = managed_identity_resource_id + if event_hub_resource_id is not None: + parameters['event_hub_resource_id'] = event_hub_resource_id + if consumer_group is not None: + parameters['consumer_group'] = consumer_group + if table_name is not None: + parameters['table_name'] = table_name + if mapping_rule_name is not None: + parameters['mapping_rule_name'] = mapping_rule_name + if data_format is not None: + parameters['data_format'] = data_format + if event_system_properties is not None: + parameters['event_system_properties'] = event_system_properties + if compression is not None: + parameters['compression'] = compression + else: + parameters['compression'] = "None" + if managed_identity_resource_id is not None: + parameters['managed_identity_resource_id'] = managed_identity_resource_id return sdk_no_wait(no_wait, client.begin_update, resource_group_name=resource_group_name, @@ -882,15 +1185,23 @@ def kusto_data_connection_iot_hub_update(client, shared_access_policy_name=None, no_wait=False): parameters = {} - parameters['location'] = location + if location is not None: + parameters['location'] = location parameters['kind'] = 'IotHub' - parameters['iot_hub_resource_id'] = iot_hub_resource_id - parameters['consumer_group'] = consumer_group - parameters['table_name'] = table_name - parameters['mapping_rule_name'] = mapping_rule_name - parameters['data_format'] = data_format - parameters['event_system_properties'] = event_system_properties - parameters['shared_access_policy_name'] = shared_access_policy_name + if iot_hub_resource_id is not None: + parameters['iot_hub_resource_id'] = iot_hub_resource_id + if consumer_group is not None: + parameters['consumer_group'] = consumer_group + if table_name is not None: + parameters['table_name'] = table_name + if mapping_rule_name is not None: + parameters['mapping_rule_name'] = mapping_rule_name + if data_format is not None: + parameters['data_format'] = data_format + if event_system_properties is not None: + parameters['event_system_properties'] = event_system_properties + if shared_access_policy_name is not None: + parameters['shared_access_policy_name'] = shared_access_policy_name return sdk_no_wait(no_wait, client.begin_update, resource_group_name=resource_group_name, @@ -930,18 +1241,30 @@ def kusto_data_connection_event_grid_data_connection_validation(client, blob_storage_event_type=None, no_wait=False): parameters = {} - parameters['data_connection_name'] = data_connection_name + if data_connection_name is not None: + parameters['data_connection_name'] = data_connection_name parameters['properties'] = {} - parameters['properties']['location'] = location + if location is not None: + parameters['properties']['location'] = location parameters['properties']['kind'] = 'EventGrid' - parameters['properties']['storage_account_resource_id'] = storage_account_resource_id - parameters['properties']['event_hub_resource_id'] = event_hub_resource_id - parameters['properties']['consumer_group'] = consumer_group - parameters['properties']['table_name'] = table_name - parameters['properties']['mapping_rule_name'] = mapping_rule_name - parameters['properties']['data_format'] = data_format - parameters['properties']['ignore_first_record'] = ignore_first_record - parameters['properties']['blob_storage_event_type'] = blob_storage_event_type + if storage_account_resource_id is not None: + parameters['properties']['storage_account_resource_id'] = storage_account_resource_id + if event_hub_resource_id is not None: + parameters['properties']['event_hub_resource_id'] = event_hub_resource_id + if consumer_group is not None: + parameters['properties']['consumer_group'] = consumer_group + if table_name is not None: + parameters['properties']['table_name'] = table_name + if mapping_rule_name is not None: + parameters['properties']['mapping_rule_name'] = mapping_rule_name + if data_format is not None: + parameters['properties']['data_format'] = data_format + if ignore_first_record is not None: + parameters['properties']['ignore_first_record'] = ignore_first_record + if blob_storage_event_type is not None: + parameters['properties']['blob_storage_event_type'] = blob_storage_event_type + if len(parameters['properties']) == 0: + del parameters['properties'] return sdk_no_wait(no_wait, client.begin_data_connection_validation, resource_group_name=resource_group_name, @@ -965,21 +1288,33 @@ def kusto_data_connection_event_hub_data_connection_validation(client, compression=None, managed_identity_resource_id=None, no_wait=False): - if compression is None: - compression = "None" parameters = {} - parameters['data_connection_name'] = data_connection_name + if data_connection_name is not None: + parameters['data_connection_name'] = data_connection_name parameters['properties'] = {} - parameters['properties']['location'] = location + if location is not None: + parameters['properties']['location'] = location parameters['properties']['kind'] = 'EventHub' - parameters['properties']['event_hub_resource_id'] = event_hub_resource_id - parameters['properties']['consumer_group'] = consumer_group - parameters['properties']['table_name'] = table_name - parameters['properties']['mapping_rule_name'] = mapping_rule_name - parameters['properties']['data_format'] = data_format - parameters['properties']['event_system_properties'] = event_system_properties - parameters['properties']['compression'] = "None" if compression is None else compression - parameters['properties']['managed_identity_resource_id'] = managed_identity_resource_id + if event_hub_resource_id is not None: + parameters['properties']['event_hub_resource_id'] = event_hub_resource_id + if consumer_group is not None: + parameters['properties']['consumer_group'] = consumer_group + if table_name is not None: + parameters['properties']['table_name'] = table_name + if mapping_rule_name is not None: + parameters['properties']['mapping_rule_name'] = mapping_rule_name + if data_format is not None: + parameters['properties']['data_format'] = data_format + if event_system_properties is not None: + parameters['properties']['event_system_properties'] = event_system_properties + if compression is not None: + parameters['properties']['compression'] = compression + else: + parameters['properties']['compression'] = "None" + if managed_identity_resource_id is not None: + parameters['properties']['managed_identity_resource_id'] = managed_identity_resource_id + if len(parameters['properties']) == 0: + del parameters['properties'] return sdk_no_wait(no_wait, client.begin_data_connection_validation, resource_group_name=resource_group_name, @@ -1003,17 +1338,28 @@ def kusto_data_connection_iot_hub_data_connection_validation(client, shared_access_policy_name=None, no_wait=False): parameters = {} - parameters['data_connection_name'] = data_connection_name + if data_connection_name is not None: + parameters['data_connection_name'] = data_connection_name parameters['properties'] = {} - parameters['properties']['location'] = location + if location is not None: + parameters['properties']['location'] = location parameters['properties']['kind'] = 'IotHub' - parameters['properties']['iot_hub_resource_id'] = iot_hub_resource_id - parameters['properties']['consumer_group'] = consumer_group - parameters['properties']['table_name'] = table_name - parameters['properties']['mapping_rule_name'] = mapping_rule_name - parameters['properties']['data_format'] = data_format - parameters['properties']['event_system_properties'] = event_system_properties - parameters['properties']['shared_access_policy_name'] = shared_access_policy_name + if iot_hub_resource_id is not None: + parameters['properties']['iot_hub_resource_id'] = iot_hub_resource_id + if consumer_group is not None: + parameters['properties']['consumer_group'] = consumer_group + if table_name is not None: + parameters['properties']['table_name'] = table_name + if mapping_rule_name is not None: + parameters['properties']['mapping_rule_name'] = mapping_rule_name + if data_format is not None: + parameters['properties']['data_format'] = data_format + if event_system_properties is not None: + parameters['properties']['event_system_properties'] = event_system_properties + if shared_access_policy_name is not None: + parameters['properties']['shared_access_policy_name'] = shared_access_policy_name + if len(parameters['properties']) == 0: + del parameters['properties'] return sdk_no_wait(no_wait, client.begin_data_connection_validation, resource_group_name=resource_group_name, diff --git a/src/kusto/azext_kusto/manual/__init__.py b/src/kusto/azext_kusto/manual/__init__.py index c9cfdc73e77..70488e93851 100644 --- a/src/kusto/azext_kusto/manual/__init__.py +++ b/src/kusto/azext_kusto/manual/__init__.py @@ -8,5 +8,109 @@ # Changes may cause incorrect behavior and will be lost if the code is # regenerated. # -------------------------------------------------------------------------- +import inspect +import logging +import os +import sys +import traceback +import datetime as dt +from azure.core.exceptions import AzureError +from azure.cli.testsdk.exceptions import CliTestError, CliExecutionError, JMESPathCheckAssertionError + + +logger = logging.getLogger('azure.cli.testsdk') +logger.addHandler(logging.StreamHandler()) __path__ = __import__('pkgutil').extend_path(__path__, __name__) +exceptions = [] +test_map = dict() +SUCCESSED = "successed" +FAILED = "failed" + + +def try_manual(func): + def import_manual_function(origin_func): + from importlib import import_module + decorated_path = inspect.getfile(origin_func).lower() + module_path = __path__[0].lower() + if not decorated_path.startswith(module_path): + raise Exception("Decorator can only be used in submodules!") + manual_path = os.path.join( + decorated_path[module_path.rfind(os.path.sep) + 1:]) + manual_file_path, manual_file_name = os.path.split(manual_path) + module_name, _ = os.path.splitext(manual_file_name) + manual_module = "..manual." + \ + ".".join(manual_file_path.split(os.path.sep) + [module_name, ]) + return getattr(import_module(manual_module, package=__name__), origin_func.__name__) + + def get_func_to_call(): + func_to_call = func + try: + func_to_call = import_manual_function(func) + logger.info("Found manual override for %s(...)", func.__name__) + except (ImportError, AttributeError): + pass + return func_to_call + + def wrapper(*args, **kwargs): + func_to_call = get_func_to_call() + logger.info("running %s()...", func.__name__) + try: + test_map[func.__name__] = dict() + test_map[func.__name__]["result"] = SUCCESSED + test_map[func.__name__]["error_message"] = "" + test_map[func.__name__]["error_stack"] = "" + test_map[func.__name__]["error_normalized"] = "" + test_map[func.__name__]["start_dt"] = dt.datetime.utcnow() + ret = func_to_call(*args, **kwargs) + except (AssertionError, AzureError, CliTestError, CliExecutionError, SystemExit, + JMESPathCheckAssertionError) as e: + use_exception_cache = os.getenv("TEST_EXCEPTION_CACHE") + if use_exception_cache is None or use_exception_cache.lower() != "true": + raise + test_map[func.__name__]["end_dt"] = dt.datetime.utcnow() + test_map[func.__name__]["result"] = FAILED + test_map[func.__name__]["error_message"] = str(e).replace("\r\n", " ").replace("\n", " ")[:500] + test_map[func.__name__]["error_stack"] = traceback.format_exc().replace( + "\r\n", " ").replace("\n", " ")[:500] + logger.info("--------------------------------------") + logger.info("step exception: %s", e) + logger.error("--------------------------------------") + logger.error("step exception in %s: %s", func.__name__, e) + logger.info(traceback.format_exc()) + exceptions.append((func.__name__, sys.exc_info())) + else: + test_map[func.__name__]["end_dt"] = dt.datetime.utcnow() + return ret + + if inspect.isclass(func): + return get_func_to_call() + return wrapper + + +def calc_coverage(filename): + filename = filename.split(".")[0] + coverage_name = filename + "_coverage.md" + with open(coverage_name, "w") as f: + f.write("|Scenario|Result|ErrorMessage|ErrorStack|ErrorNormalized|StartDt|EndDt|\n") + total = len(test_map) + covered = 0 + for k, v in test_map.items(): + if not k.startswith("step_"): + total -= 1 + continue + if v["result"] == SUCCESSED: + covered += 1 + f.write("|{step_name}|{result}|{error_message}|{error_stack}|{error_normalized}|{start_dt}|" + "{end_dt}|\n".format(step_name=k, **v)) + f.write("Coverage: {}/{}\n".format(covered, total)) + print("Create coverage\n", file=sys.stderr) + + +def raise_if(): + if exceptions: + if len(exceptions) <= 1: + raise exceptions[0][1][1] + message = "{}\nFollowed with exceptions in other steps:\n".format(str(exceptions[0][1][1])) + message += "\n".join(["{}: {}".format(h[0], h[1][1]) for h in exceptions[1:]]) + raise exceptions[0][1][0](message).with_traceback(exceptions[0][1][2]) diff --git a/src/kusto/azext_kusto/manual/latest/__init__.py b/src/kusto/azext_kusto/manual/latest/__init__.py new file mode 100644 index 00000000000..c9cfdc73e77 --- /dev/null +++ b/src/kusto/azext_kusto/manual/latest/__init__.py @@ -0,0 +1,12 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +__path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/src/kusto/azext_kusto/manual/latest/recordings/test_kusto_Scenario.yaml b/src/kusto/azext_kusto/manual/latest/recordings/test_kusto_Scenario.yaml new file mode 100644 index 00000000000..0c443480092 --- /dev/null +++ b/src/kusto/azext_kusto/manual/latest/recordings/test_kusto_Scenario.yaml @@ -0,0 +1,13832 @@ +interactions: +- request: + body: '{"location": "westus2", "sku": {"name": "Standard_D11_v2", "capacity": + 2, "tier": "Standard"}, "identity": {"type": "SystemAssigned"}, "properties": + {"enableDiskEncryption": false, "enableStreamingIngest": true, "keyVaultProperties": + {"keyName": "", "keyVersion": "", "keyVaultUri": ""}, "enablePurge": true, "enableDoubleEncryption": + false, "publicNetworkAccess": "Enabled", "allowedIpRangeList": ["0.0.0.0/0"], + "engineType": "V3", "enableAutoStop": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + Content-Length: + - '457' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"westus2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"properties":{"state":"Creating","enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":{"keyName":"","keyVersion":"","keyVaultUri":""},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Creating"},"identity":{"type":"SystemAssigned"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '756' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:35:55 GMT + etag: + - '""' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:36:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:36:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:37:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:37:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:38:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:38:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:39:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:39:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:40:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:40:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:41:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:41:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:42:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:43:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:43:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:44:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '284' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:44:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '283' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:45:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:45:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:46:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:46:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:47:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:47:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:48:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '284' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:48:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '283' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:49:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '282' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:49:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '281' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:50:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:50:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:51:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:51:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:52:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:52:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '284' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:53:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '283' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Succeeded","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:53:28.2381174Z","percentComplete":1.0,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '447' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:53:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '282' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T09:53:28.1286922Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterclitest7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterclitest7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"e46224d2-b8e6-4517-95ba-c0fd25e1fb94","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + headers: + cache-control: + - no-cache + content-length: + - '1239' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:53:40 GMT + etag: + - '"2021-10-14T09:53:28.1286922Z"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster wait + Connection: + - keep-alive + ParameterSetName: + - --created --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T09:53:28.1286922Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterclitest7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterclitest7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"e46224d2-b8e6-4517-95ba-c0fd25e1fb94","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + headers: + cache-control: + - no-cache + content-length: + - '1239' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:53:42 GMT + etag: + - '"2021-10-14T09:53:28.1286922Z"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"principalId": "ad064aa1-8b51-41ec-9c64-0d3037577d63", + "role": "AllDatabasesAdmin", "principalType": "App"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment create + Connection: + - keep-alive + Content-Length: + - '124' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --principal-assignment-name --principal-type --principal-id + --role --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/testcli1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"AllDatabasesAdmin","principalType":"App","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/a8be3e4a-4574-409d-80bc-55171009adfc?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '479' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:53:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --principal-assignment-name --principal-type --principal-id + --role --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a8be3e4a-4574-409d-80bc-55171009adfc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a8be3e4a-4574-409d-80bc-55171009adfc","name":"a8be3e4a-4574-409d-80bc-55171009adfc","status":"Succeeded","startTime":"2021-10-14T09:53:45.3039442Z","endTime":"2021-10-14T09:53:46.2104903Z","percentComplete":1.0,"properties":{"operationKind":"ServicePrincipalAssignmentsAdd","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '458' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:54:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - b48d039e-7dc5-45cc-9e59-d24e38cb8770 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --principal-assignment-name --principal-type --principal-id + --role --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/testcli1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"AllDatabasesAdmin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '582' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:54:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Standard_D11_v2", "capacity": + 2, "tier": "Standard"}, "identity": {"type": "SystemAssigned"}, "properties": + {"enableDiskEncryption": false, "enableStreamingIngest": true, "enablePurge": + true, "enableDoubleEncryption": false, "publicNetworkAccess": "Enabled", "engineType": + "V3", "enableAutoStop": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + Content-Length: + - '344' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"westus2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"properties":{"state":"Creating","enableDiskEncryption":false,"enableStreamingIngest":true,"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","publicNetworkAccess":"Enabled","enableAutoStop":true,"provisioningState":"Creating"},"identity":{"type":"SystemAssigned"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '650' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:54:25 GMT + etag: + - '""' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:54:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:55:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:55:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:56:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:56:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:57:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:57:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:58:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:58:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:59:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:59:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:00:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:00:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:01:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:02:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:02:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:03:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '284' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:03:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '283' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:04:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '282' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:04:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '281' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:05:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:05:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:06:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:06:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:07:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:07:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:08:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '284' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:08:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '283' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:09:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '282' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:09:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '281' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:10:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:10:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:11:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Succeeded","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T10:11:30.4369982Z","percentComplete":1.0,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '447' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:11:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:11:30.3312108Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterleader7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterleader7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"152df398-3533-4a5c-acfe-47800f4ce5ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + headers: + cache-control: + - no-cache + content-length: + - '1224' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:11:37 GMT + etag: + - '"2021-10-14T10:11:30.3312108Z"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster wait + Connection: + - keep-alive + ParameterSetName: + - --created --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:11:30.3312108Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterleader7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterleader7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"152df398-3533-4a5c-acfe-47800f4ce5ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + headers: + cache-control: + - no-cache + content-length: + - '1224' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:11:40 GMT + etag: + - '"2021-10-14T10:11:30.3312108Z"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "kind": "ReadWrite", "properties": {"softDeletePeriod": + "P1D"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database create + Connection: + - keep-alive + Content-Length: + - '87' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"westus2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/4d64149e-e064-4c9e-b211-56bbf0fefe9b?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '430' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:11:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/4d64149e-e064-4c9e-b211-56bbf0fefe9b?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/4d64149e-e064-4c9e-b211-56bbf0fefe9b","name":"4d64149e-e064-4c9e-b211-56bbf0fefe9b","status":"Succeeded","startTime":"2021-10-14T10:11:43.3397253Z","endTime":"2021-10-14T10:11:46.4649123Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseCreate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '440' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 9ae4baa7-7af7-4669-9ce3-397253ce9d65 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","statistics":{"size":0.0},"isFollowed":false,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '478' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"principalId": "ad064aa1-8b51-41ec-9c64-0d3037577d63", + "role": "Admin", "principalType": "App"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment create + Connection: + - keep-alive + Content-Length: + - '112' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --role --principal-type --principal-id --principal-assignment-name + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/kustoDatabase/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/kustoDatabase/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/kustoDatabase/testcli1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"Admin","principalType":"App","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/ce54819e-3325-4cf9-971b-e8f500172b47?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '515' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --role --principal-type --principal-id --principal-assignment-name + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/ce54819e-3325-4cf9-971b-e8f500172b47?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/ce54819e-3325-4cf9-971b-e8f500172b47","name":"ce54819e-3325-4cf9-971b-e8f500172b47","status":"Succeeded","startTime":"2021-10-14T10:12:16.7710074Z","endTime":"2021-10-14T10:12:20.755777Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseAddPrincipals","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '448' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 077b5f97-62e8-4e14-a65a-1fe6fa6268db + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --role --principal-type --principal-id --principal-assignment-name + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/kustoDatabase/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/kustoDatabase/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/kustoDatabase/testcli1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"Admin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '618' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"value": [{"role": "Admin", "name": "clitest", "type": "App", "appId": + "7bd74dc8-dd5f-4cee-8e64-866138abcf89"}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database add-principal + Connection: + - keep-alive + Content-Length: + - '113' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/addPrincipals?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"Zohar Hen (zoharhen@microsoft.com)","role":"Admin","type":"User","fqn":"aaduser=0f54ad84-ce5e-49d1-90b3-c553e7c96382;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"zoharhen@microsoft.com","appId":"","tenantName":"Microsoft"},{"name":"testcli1","role":"Admin","type":"App","fqn":"aadapp=ad064aa1-8b51-41ec-9c64-0d3037577d63;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"","appId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","tenantName":"Microsoft"},{"name":"clitest","role":"Admin","type":"App","fqn":"aadapp=7bd74dc8-dd5f-4cee-8e64-866138abcf89;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"","appId":"7bd74dc8-dd5f-4cee-8e64-866138abcf89","tenantName":"Microsoft"}]}' + headers: + cache-control: + - no-cache + content-length: + - '684' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"databaseName": "KustoDatabase", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7", + "defaultPrincipalsModificationKind": "Union", "tableLevelSharingProperties": + {"tablesToInclude": ["Table1"], "tablesToExclude": ["Table2"], "externalTablesToInclude": + ["ExternalTable1"], "externalTablesToExclude": ["ExternalTable2"], "materializedViewsToInclude": + ["MaterializedViewTable1"], "materializedViewsToExclude": ["MaterializedViewTable2"]}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration create + Connection: + - keep-alive + Content-Length: + - '646' + Content-Type: + - application/json + ParameterSetName: + - --name --cluster-name --location --cluster-resource-id --database-name --default-principals-modification-kind + --table-level-sharing-properties --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"westus2","properties":{"databaseName":"KustoDatabase","clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/e2f9e947-9cbc-463c-a96e-87fb707925aa?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '1050' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration create + Connection: + - keep-alive + ParameterSetName: + - --name --cluster-name --location --cluster-resource-id --database-name --default-principals-modification-kind + --table-level-sharing-properties --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/e2f9e947-9cbc-463c-a96e-87fb707925aa?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/e2f9e947-9cbc-463c-a96e-87fb707925aa","name":"e2f9e947-9cbc-463c-a96e-87fb707925aa","status":"Succeeded","startTime":"2021-10-14T10:12:51.6248154Z","endTime":"2021-10-14T10:12:53.969469Z","percentComplete":1.0,"properties":{"operationKind":"FollowerDatabaseCreate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '447' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:13:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - c68e6d18-2fa7-427a-8ca6-8b577e78937b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration create + Connection: + - keep-alive + ParameterSetName: + - --name --cluster-name --location --cluster-resource-id --database-name --default-principals-modification-kind + --table-level-sharing-properties --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"West + US 2","properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","databaseName":"KustoDatabase","attachedDatabaseNames":["KustoDatabase"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1095' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:13:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration wait + Connection: + - keep-alive + ParameterSetName: + - --created --name --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"West + US 2","properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","databaseName":"KustoDatabase","attachedDatabaseNames":["KustoDatabase"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1095' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:13:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "kind": "EventHub", "properties": {"eventHubResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1", + "consumerGroup": "$Default", "compression": "None"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub create + Connection: + - keep-alive + Content-Length: + - '282' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --name --database-name --location --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"westus2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","compression":"None","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/19fd49c7-f5bc-405c-8af3-7d38a5a6bdc4?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '685' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:13:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --database-name --location --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/19fd49c7-f5bc-405c-8af3-7d38a5a6bdc4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/19fd49c7-f5bc-405c-8af3-7d38a5a6bdc4","name":"19fd49c7-f5bc-405c-8af3-7d38a5a6bdc4","status":"Succeeded","startTime":"2021-10-14T10:13:27.1914549Z","endTime":"2021-10-14T10:13:53.585812Z","percentComplete":1.0,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:13:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 8ddecfab-b04b-41aa-b678-2f5947781321 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --database-name --location --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '800' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:13:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"scriptUrl": "https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt", + "scriptUrlSasToken": "sp=r&st=2021-10-10T13:27:37Z&se=2024-09-06T21:27:37Z&sv=2020-08-04&sr=b&sig=bQv3g3VpesJ3nv9Fbs%2Bc0V0PQby9AY%2BFLzQBxk5a9us%3D", + "continueOnErrors": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script create + Connection: + - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","scriptUrlSasToken":"","continueOnErrors":true,"provisioningState":"Creating"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/2ba526ef-5416-490e-9088-af97dcf13e9f?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '768' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:14:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/2ba526ef-5416-490e-9088-af97dcf13e9f?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/2ba526ef-5416-490e-9088-af97dcf13e9f","name":"2ba526ef-5416-490e-9088-af97dcf13e9f","status":"Succeeded","startTime":"2021-10-14T10:14:00.9000319Z","endTime":"2021-10-14T10:14:02.1397486Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseScriptCreateOrUpdate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '456' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:14:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - ce553c1f-248c-4a0c-a24d-a417730f61ba + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:14:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script wait + Connection: + - keep-alive + ParameterSetName: + - --created --cluster-name --database-name --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:14:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"privateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest", + "groupId": "blob", "requestMessage": "Please Approve."}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + Content-Length: + - '228' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '656' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:14:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:15:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:15:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:16:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:16:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:17:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Succeeded","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:17:27.7919159Z","percentComplete":1.0,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '464' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:17:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:34.8875256Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '893' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:17:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint wait + Connection: + - keep-alive + ParameterSetName: + - --created --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:34.8875256Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '893' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:17:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"value": [{"languageExtensionName": "PYTHON"}, {"languageExtensionName": + "R"}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + Content-Length: + - '80' + Content-Type: + - application/json + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/addLanguageExtensions?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:17:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:18:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:18:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:19:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:19:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:20:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:20:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:21:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:21:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:22:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:22:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:23:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Succeeded","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:23:31.0786822Z","percentComplete":1.0,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '453' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:23:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:23:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/testrg?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg","name":"testrg","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '217' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:23:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/MyVnet/subnets/MySubnet", + "properties": {"privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}, "manualPrivateLinkServiceConnections": [{"name": "test", "properties": + {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7", + "groupIds": ["cluster"]}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + Content-Length: + - '644' + Content-Type: + - application/json + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4?api-version=2021-03-01 + response: + body: + string: "{\r\n \"name\": \"kustoPrivateEndpoint4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4\",\r\n + \ \"etag\": \"W/\\\"bb59d60a-dbea-490c-9dad-3c67534f198d\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"southcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"bac3d709-3097-4909-b763-380a3c398bd7\",\r\n \"privateLinkServiceConnections\": + [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": + \"test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4/manualPrivateLinkServiceConnections/test\",\r\n + \ \"etag\": \"W/\\\"bb59d60a-dbea-490c-9dad-3c67534f198d\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7\",\r\n + \ \"groupIds\": [\r\n \"cluster\"\r\n ],\r\n \"privateLinkServiceConnectionState\": + {\r\n \"status\": \"Pending\",\r\n \"description\": + \"Awaiting Approval\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n + \ },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n + \ }\r\n ],\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/MyVnet/subnets/MySubnet\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/networkInterfaces/kustoPrivateEndpoint4.nic.36a27415-8490-45cd-90d9-d26d2ec8969d\"\r\n + \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/75309b42-b872-4bb9-a74a-a433aac557b6?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '1977' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:23:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b389b9cc-6bc8-42be-b863-a4c0fc7d77a3 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/75309b42-b872-4bb9-a74a-a433aac557b6?api-version=2021-03-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2952e66e-330d-45fa-a7a8-55ed5b8568e6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/75309b42-b872-4bb9-a74a-a433aac557b6?api-version=2021-03-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2c68fdf3-ca9e-43f6-90c8-00268417cd7a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/75309b42-b872-4bb9-a74a-a433aac557b6?api-version=2021-03-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 76b69619-123d-4843-bd33-00e1776da72a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4?api-version=2021-03-01 + response: + body: + string: "{\r\n \"name\": \"kustoPrivateEndpoint4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4\",\r\n + \ \"etag\": \"W/\\\"dd2b53b0-a556-4ce5-aba8-cf0b9ce6d18a\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"southcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"bac3d709-3097-4909-b763-380a3c398bd7\",\r\n \"privateLinkServiceConnections\": + [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": + \"test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4/manualPrivateLinkServiceConnections/test\",\r\n + \ \"etag\": \"W/\\\"dd2b53b0-a556-4ce5-aba8-cf0b9ce6d18a\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7\",\r\n + \ \"groupIds\": [\r\n \"cluster\"\r\n ],\r\n \"privateLinkServiceConnectionState\": + {\r\n \"status\": \"Pending\",\r\n \"description\": + \"\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n + \ \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n + \ }\r\n ],\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/MyVnet/subnets/MySubnet\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/networkInterfaces/kustoPrivateEndpoint4.nic.36a27415-8490-45cd-90d9-d26d2ec8969d\"\r\n + \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1961' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:36 GMT + etag: + - W/"dd2b53b0-a556-4ce5-aba8-cf0b9ce6d18a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 71c7ab15-4f10-4af1-a812-ec8464a9f27a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '768' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"privateLinkServiceConnectionState": {"status": "Approved", + "description": "Approved by test"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection create + Connection: + - keep-alive + Content-Length: + - '112' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --private-link-service-connection-state --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","name":"kustoclusterclitest7/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","properties":{"properties":{"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:24:41.1095664Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:24:41.1095664Z"},"provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/3f7582fa-732a-42e3-a72f-7fe68c6ce5cf?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '1123' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --private-link-service-connection-state --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/3f7582fa-732a-42e3-a72f-7fe68c6ce5cf?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/3f7582fa-732a-42e3-a72f-7fe68c6ce5cf","name":"3f7582fa-732a-42e3-a72f-7fe68c6ce5cf","status":"Succeeded","startTime":"2021-10-14T10:24:41.9898956Z","endTime":"2021-10-14T10:25:09.8667836Z","percentComplete":1.0,"properties":{"operationKind":"PrivateEndpointConnectionAlterCommand","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '465' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3b0c50e4-3339-432f-960c-e145228975b3 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --private-link-service-connection-state --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test","actionsRequired":null}}}' + headers: + cache-control: + - no-cache + content-length: + - '771' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection wait + Connection: + - keep-alive + ParameterSetName: + - --created --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test","actionsRequired":null}}}' + headers: + cache-control: + - no-cache + content-length: + - '771' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster show + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:23:31.0006223Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterclitest7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterclitest7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[{"languageExtensionName":"PYTHON"},{"languageExtensionName":"R"}]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"e46224d2-b8e6-4517-95ba-c0fd25e1fb94","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + headers: + cache-control: + - no-cache + content-length: + - '1303' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:16 GMT + etag: + - '"2021-10-14T10:23:31.0006223Z"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/testcli1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"AllDatabasesAdmin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '582' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","statistics":{"size":0.0},"isFollowed":true,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '477' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/KustoDatabase/testcli1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"Admin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '618' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration show + Connection: + - keep-alive + ParameterSetName: + - --name --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"West + US 2","properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","databaseName":"KustoDatabase","attachedDatabaseNames":["KustoDatabase"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1095' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '800' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:34.8875256Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '893' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test","actionsRequired":null}}}' + headers: + cache-control: + - no-cache + content-length: + - '771' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/clusters?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-rg/providers/Microsoft.Kusto/Clusters/safrankekustoneu","name":"safrankekustoneu","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:05:55.0302499Z\"","location":"North + Europe","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:57:05 +00:00","uri":"https://safrankekustoneu.northeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustoneu.northeurope.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"66d5a66a-678b-40fa-93e5-7a9f881feb55","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kustorpe2e/providers/Microsoft.Kusto/Clusters/rpe2estoppedNEU","name":"rpe2estoppedNEU","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T08:53:29.3154570Z\"","location":"North + Europe","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{"MachineName":"88D151D325CB","ArmClientRequestId":"RPE2E;2021.07.15.0449-GA-12cb1c943-devCM","Test + Start Time":"7/15/2021 5:43:53 AM"},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-14 08:48:09 +00:00","uri":"https://rpe2estoppedneu.northeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-rpe2estoppedneu.northeurope.dev.kusto.windows.net","trustedExternalTenants":[{"value":"fd98e228-2977-4102-9e9f-f9344e4bc05d"},{"value":"72ca4892-87f6-422f-8e14-239d88d85900"},{"value":"42619785-2ad4-478e-84a6-4c0d7dd37179"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amir-test-rg-synapse/providers/Microsoft.Synapse/workspaces/amirleshman-neu45/kustoPools/amirleshmanneupool1","name":"amirleshman-neu45/amirleshmanneupool1","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-06T08:36:32.4331582Z\"","location":"North + Europe","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://amirleshmanneupool1.amirleshman-neu45.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-amirleshmanneupool1.amirleshman-neu45.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1013200258ProvisionAndManageSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2epam10132002-wksp/kustoPools/rpe2epam10132002pool","name":"rpe2epam10132002-wksp/rpe2epam10132002pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-13T20:24:23.7140798Z\"","location":"North + Europe","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2epam10132002pool.rpe2epam10132002-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2epam10132002pool.rpe2epam10132002-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-sea/providers/Microsoft.Kusto/Clusters/safrankekustosea2","name":"safrankekustosea2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T13:01:02.3526530Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to cluster start failure at 2021-08-29 13:00:24 +00:00","uri":"https://safrankekustosea2.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustosea2.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"},"identity":{"principalId":"0d1fc42f-587a-4b3f-9632-a2f74bc8b3a0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-sea/providers/Microsoft.Kusto/Clusters/safrankekusto4","name":"safrankekusto4","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T13:01:01.3213280Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to cluster start failure at 2021-08-29 13:00:22 +00:00","uri":"https://safrankekusto4.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekusto4.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"},"identity":{"principalId":"79e3e957-a226-4609-a078-5dbe53185546","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest2/providers/Microsoft.Kusto/Clusters/dortest7","name":"dortest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T06:32:07.4824894Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-29 06:24:43 +00:00","uri":"https://dortest7.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortest7.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/omerBlumRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omerausidentity":{"principalId":"b61081bb-3488-4151-99e2-1b242723ad43","clientId":"a655bc3a-eacb-4611-82b9-f90c16f6b74f"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test_weu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagivuserassignedweu":{"principalId":"72b4fbff-6e4a-402b-886e-422a14fa19d6","clientId":"c6fccd74-a018-40c1-ab0f-baaf4c30cd1c"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ohadtaylersea/providers/Microsoft.Kusto/Clusters/ohadtayleraria","name":"ohadtayleraria","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-04T08:18:13.8819381Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Deleted","stateReason":null,"uri":"https://ohadtayleraria.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-ohadtayleraria.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/seatestas","name":"seatestas","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:35:39.7912632Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to installation failure at 2021-06-06 12:18:14 +00:00","uri":"https://seatestas.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-seatestas.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ohadtaylersea/providers/Microsoft.Kusto/Clusters/testbridgeariacluster","name":"testbridgeariacluster","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-21T15:50:54.3951921Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to installation failure at 2021-06-21 15:47:04 +00:00","uri":"https://testbridgeariacluster.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-testbridgeariacluster.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E0810162847Synapse-rg/providers/Microsoft.Synapse/workspaces/cmkrpe2e0810162847-wksp/kustoPools/pcurrenttest2323","name":"cmkrpe2e0810162847-wksp/pcurrenttest2323","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-08-10T17:08:01.6537846Z\"","location":"Southeast + Asia","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://pcurrenttest2323.cmkrpe2e0810162847-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-pcurrenttest2323.cmkrpe2e0810162847-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/omerBlumRG/providers/Microsoft.Kusto/Clusters/omere2e","name":"omere2e","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-04T10:51:05.9226054Z\"","location":"Southeast + Asia","sku":{"name":"Standard_DS13_v2+2TB_PS","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-04 10:43:41 +00:00","uri":"https://omere2e.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-omere2e.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"85ff156e-6b39-4f76-8093-c78a14ad64b1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/omerBlumRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omerseaidentity":{"principalId":"bd959f1d-1539-41b9-9cef-d4a5475d78ba","clientId":"241d4da8-05c8-4125-a83c-f246b590bd69"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke/providers/Microsoft.Kusto/Clusters/safrankesea","name":"safrankesea","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-03T14:42:27.4169247Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://safrankesea.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankesea.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://omerseakv.vault.azure.net","keyName":"key2","keyVersion":"","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"c49299a6-5c07-4c1d-9515-40a50b020337","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Mgmt-safrankekusto2-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/D-safrankekusto2":{"principalId":"6673a2d7-e9ca-488d-be9a-0f92e3fb0965","clientId":"fd714542-ec41-41b1-91c9-0056f9e8d373"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagivtestidentityeus":{"principalId":"63f3fb68-469b-4e81-8008-5d10855602c6","clientId":"6e06eb9c-0dbc-4f80-9cb7-ffabde294ee7"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/omerBlumRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omerausidentity":{"principalId":"b61081bb-3488-4151-99e2-1b242723ad43","clientId":"a655bc3a-eacb-4611-82b9-f90c16f6b74f"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-orentestseav3-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-orentestseav3":{"principalId":"bcf45bf4-efce-4824-b0c8-5e592e606e2f","clientId":"4a358850-f043-420c-aadb-9df1d6a840cd"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-safrankekustoeus2-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-safrankekustoeus2":{"principalId":"404b2e03-2797-4a12-904d-2033efdd5da6","clientId":"2e7c6de0-08f4-47fd-aa1a-52fd80ee3aed"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Mgmt-safrankekusto-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/D-safrankekusto":{"principalId":"bb45da96-82c4-451c-8246-af42912e8299","clientId":"5416925e-56b0-40e5-9af6-1c92c918ed3a"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-dor1-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-dor1":{"principalId":"f2662a96-ea99-4fde-b5c5-30b7ac592143","clientId":"a4a7c3b7-b904-4f2d-a032-864128134123"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test_weu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagivuserassignedweu":{"principalId":"72b4fbff-6e4a-402b-886e-422a14fa19d6","clientId":"c6fccd74-a018-40c1-ab0f-baaf4c30cd1c"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagiv-identity":{"principalId":"3c801d34-75a3-40d6-aa3b-ee5c63ba4f69","clientId":"d5dc2bde-e3fb-41c2-bf15-c4c0417069dd"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/dorResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dortest2":{"principalId":"6473918b-0b97-49b7-98e2-dc06cd8181cc","clientId":"b3eace70-6e0f-44c6-b86c-9ab5dd109787"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-tompurgeportprop3-additional-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-tompurgeportprop3":{"principalId":"84dab6f8-6091-4e2c-839a-e15f0f499394","clientId":"893f1f73-1e29-4d77-af1d-9eeec4af3812"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-safrankeweu2-additional-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-safrankeweu2":{"principalId":"7251d221-e6dc-4c44-a944-8f163e51e36e","clientId":"980fd1d6-159b-439f-8d52-6f401cd6de7a"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/omerBlumRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omerseaidentity":{"principalId":"bd959f1d-1539-41b9-9cef-d4a5475d78ba","clientId":"241d4da8-05c8-4125-a83c-f246b590bd69"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-safrankekustoneu-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-safrankekustoneu":{"principalId":"547c27d6-4a79-4db5-83f2-549ef8b346e6","clientId":"497f6350-3681-42d7-9fa0-92a7dab33ecd"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lugoldbekusto/providers/Microsoft.Kusto/Clusters/lugoldbetestsea","name":"lugoldbetestsea","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-04T11:40:34.8891147Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":4},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://lugoldbetestsea.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-lugoldbetestsea.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":false,"minimum":2,"maximum":4},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["255.255.255.0/25","255.255.255.255"],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/omerBlumRG/providers/Microsoft.Kusto/Clusters/omeripv64","name":"omeripv64","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-06T12:48:29.9376453Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Deleted","stateReason":null,"uri":"https://omeripv64.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-omeripv64.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://omerseakv.vault.azure.net","keyName":"key2","keyVersion":"","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"},"identity":{"principalId":"eb1b6acd-390a-41c9-8411-ffee0c4f1cc1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke/providers/Microsoft.Kusto/Clusters/safrankekustosea","name":"safrankekustosea","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-15T14:41:59.6905451Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to installation failure at 2021-09-15 14:31:37 +00:00","uri":"https://safrankekustosea.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustosea.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/omerBlumRG/providers/Microsoft.Kusto/Clusters/omerbipv61","name":"omerbipv61","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-12T06:52:35.8273994Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Deleted","stateReason":null,"uri":"https://omerbipv61.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-omerbipv61.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kustorpe2e/providers/Microsoft.Kusto/Clusters/astaubentest","name":"astaubentest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:46:16.1209109Z\"","location":"South + Central US","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{"MachineName":"77E95E0E93B6","ArmClientRequestId":"RPE2E;2020.7.25.2028-GA-6afb2ce8ce-devCM","Test + Start Time":"7/25/2020 9:25:11 PM"},"properties":{"state":"Running","stateReason":null,"uri":"https://astaubentest.southcentralus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-astaubentest.southcentralus.dev.kusto.windows.net","trustedExternalTenants":[{"value":"fd98e228-2977-4102-9e9f-f9344e4bc05d"},{"value":"72ca4892-87f6-422f-8e14-239d88d85900"},{"value":"42619785-2ad4-478e-84a6-4c0d7dd37179"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sagivtestscus/providers/Microsoft.Kusto/Clusters/sagivtesscusluster","name":"sagivtesscusluster","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:35:06.3376345Z\"","location":"South + Central US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-02-21 08:34:54 +00:00","uri":"https://sagivtesscusluster.southcentralus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-sagivtesscusluster.southcentralus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"26067630-d207-4f7a-88fc-a7d668444862","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagiv-identity":{"principalId":"3c801d34-75a3-40d6-aa3b-ee5c63ba4f69","clientId":"d5dc2bde-e3fb-41c2-bf15-c4c0417069dd"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.Kusto/Clusters/astaubentest","name":"astaubentest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-19T09:57:55.4114812Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-09-19 09:51:37 +00:00","uri":"https://astaubentest.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-astaubentest.eastus.dev.kusto.windows.net","trustedExternalTenants":[{"value":"33e01921-4d64-4f8c-a055-5bdaffd5e33d"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":true,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"dfbfb51b-46fa-485d-818d-82eea7e35611","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.Kusto/Clusters/astauben","name":"astauben","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-19T09:56:52.4300030Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{"fdghgfh":"gfhgfhjgfj"},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-09-19 09:51:32 +00:00","uri":"https://astauben.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-astauben.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"03dde8e9-08b5-446d-a5f9-51e9f711755f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-eus/providers/Microsoft.Kusto/Clusters/safrankekusto","name":"safrankekusto","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:37:08.8384407Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-03-25 12:53:36 +00:00","uri":"https://safrankekusto.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekusto.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"deac600e-d75b-4ef2-984d-48d1cad489b6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-2-eus":{"principalId":"bcf2d669-a646-414e-8f15-eb20e01552c5","clientId":"8d6a2049-cf58-4945-bd9c-cb41dcf9196e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-sea/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-sea-1":{"principalId":"26993d29-d24a-4ccc-acf6-c55d34816644","clientId":"15d92f22-4d45-4959-8f67-fbd7a7769e1b"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-eus/providers/Microsoft.Kusto/Clusters/safrankekusto2","name":"safrankekusto2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:03:05.9600831Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:56:17 +00:00","uri":"https://safrankekusto2.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekusto2.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"6dc060e3-84cf-40f6-8418-c3a867b47247","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Mgmt-safrankekustoeus-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/D-safrankekustoeus":{"principalId":"b2e7b522-b89b-4bc0-a5b2-61604a164d9d","clientId":"bf362154-e89e-497c-a970-950bc179252f"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ohadRPtest/providers/Microsoft.Kusto/Clusters/ohadclustertest","name":"ohadclustertest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-12T07:20:18.9761151Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to cluster start failure at 2021-09-12 07:18:59 +00:00","uri":"https://ohadclustertest.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-ohadclustertest.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://ohadkv.vault.azure.net","keyName":"ohadkey","keyVersion":"ee5a58ad6d2f443eb75b470fd4ac4d61","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Failed"},"identity":{"principalId":"a09f1dad-d31d-458e-a193-d7661dcf9849","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/noamsynapseKustoDev/providers/Microsoft.Kusto/Clusters/noamsynapsedevtest","name":"noamsynapsedevtest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:40:48.5549384Z\"","location":"East + US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://noamsynapsedevtest.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-noamsynapsedevtest.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/avivyanivdfeus1","name":"avivyanivdfeus1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-04T10:35:02.8883111Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-04 10:28:43 +00:00","uri":"https://avivyanivdfeus1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-avivyanivdfeus1.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"1c8a57ec-6a40-4005-8896-bd54104d47aa","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/avivyanivdfeus2","name":"avivyanivdfeus2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-03T12:43:49.3234183Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + 2021-08-03 12:38:01 +00:00 due to lost access to KeyVault","uri":"https://avivyanivdfeus2.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-avivyanivdfeus2.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://omerkv.vault.azure.net","keyName":"iuyiuyiuy","keyVersion":"7ffbfc2ab2f04caeb3d5b92fdf8788e3","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"6acd2dfc-b073-4fd3-9da6-7c3baebc15df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke/providers/Microsoft.Kusto/Clusters/safranketest1","name":"safranketest1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:04:47.7263587Z\"","location":"East + US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:56:59 +00:00","uri":"https://safranketest1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safranketest1.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/hilatest1","name":"hilatest1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-24T11:03:19.8753761Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-24 10:56:01 +00:00","uri":"https://hilatest1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-hilatest1.eastus.dev.kusto.windows.net","trustedExternalTenants":[{"value":"72f988bf-86f1-41af-91ab-2d7cd011db47"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oronrgra/providers/Microsoft.Kusto/Clusters/amtest2Kusto1","name":"amtest2Kusto1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-01T00:31:41.4238035Z\"","location":"East + US","sku":{"name":"Standard_D14_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-09-01 00:24:22 +00:00","uri":"https://amtest2kusto1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-amtest2kusto1.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":10},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ohadRPtest/providers/Microsoft.Kusto/Clusters/ohadtest","name":"ohadtest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-13T11:56:13.8209637Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://ohadtest.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-ohadtest.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Disabled","allowedIpRangeList":["167.220.204.196"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amir-test-rg/providers/Microsoft.Kusto/Clusters/amiruai","name":"amiruai","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-14T08:51:42.5756850Z\"","location":"East + US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://amiruai.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-amiruai.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/amir-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amirumi":{"principalId":"8a5b5b2a-ebeb-410f-9211-5a9fe4fb8954","clientId":"c0f20530-2307-40f5-a9f7-dac6a4f8f51f"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adachabash-rg1/providers/Microsoft.Kusto/Clusters/adachabashtest1","name":"adachabashtest1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-05T08:39:58.4240770Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://adachabashtest1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-adachabashtest1.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1007151239SynapseStandard-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10071512-wksp/kustoPools/rpe2estd10071512pool","name":"rpe2estd10071512-wksp/rpe2estd10071512pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-08T07:08:38.4027769Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-08 07:02:16 +00:00","uri":"https://rpe2estd10071512pool.rpe2estd10071512-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10071512pool.rpe2estd10071512-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1008144931StandardSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10081449-wksp/kustoPools/rpe2estd10081449pool","name":"rpe2estd10081449-wksp/rpe2estd10081449pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-08T15:13:06.1313919Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2estd10081449pool.rpe2estd10081449-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10081449pool.rpe2estd10081449-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://rpe2estd10081449kv.vault.azure.net","keyName":"rpe2estd10081449key","keyVersion":null,"userIdentity":null},"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1009200338StandardSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10092003-wksp/kustoPools/rpe2estd10092003pool","name":"rpe2estd10092003-wksp/rpe2estd10092003pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-09T20:26:08.7609902Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2estd10092003pool.rpe2estd10092003-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10092003pool.rpe2estd10092003-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://rpe2estd10092003kv.vault.azure.net","keyName":"rpe2estd10092003key","keyVersion":null,"userIdentity":null},"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/orenrgilaysub/providers/Microsoft.Kusto/Clusters/oreneus","name":"oreneus","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-10T07:35:59.7543595Z\"","location":"East + US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://oreneus.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-oreneus.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1010094645StandardSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10100946-wksp/kustoPools/rpe2estd10100946pool","name":"rpe2estd10100946-wksp/rpe2estd10100946pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-10T10:08:59.4153109Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2estd10100946pool.rpe2estd10100946-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10100946pool.rpe2estd10100946-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://rpe2estd10100946kv.vault.azure.net","keyName":"rpe2estd10100946key","keyVersion":null,"userIdentity":null},"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1010103054StandardSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10101030-wksp/kustoPools/rpe2estd10101030pool","name":"rpe2estd10101030-wksp/rpe2estd10101030pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-10T10:52:04.9756566Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2estd10101030pool.rpe2estd10101030-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10101030pool.rpe2estd10101030-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://rpe2estd10101030kv.vault.azure.net","keyName":"rpe2estd10101030key","keyVersion":null,"userIdentity":null},"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/basaba/providers/Microsoft.Kusto/Clusters/basabatest33","name":"basabatest33","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:39:08.7720257Z\"","location":"West + Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://basabatest33.westcentralus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-basabatest33.westcentralus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest2/providers/Microsoft.Kusto/Clusters/dortest","name":"dortest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-07T14:19:20.8244423Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://dortest.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortest.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"ddc5853e-3970-4b5c-8da8-1b265c8586db","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest2/providers/Microsoft.Kusto/Clusters/dortestf2","name":"dortestf2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-07T14:19:20.8244423Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://dortestf2.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortestf2.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-bvteus2/providers/Microsoft.Kusto/Clusters/safrankekustoeus2","name":"safrankekustoeus2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-30T10:29:20.2432555Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-06-30 10:22:27 +00:00","uri":"https://safrankekustoeus2.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustoeus2.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-bvteus2/providers/Microsoft.Kusto/Clusters/safrankekustoeus3","name":"safrankekustoeus3","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:04:03.6311932Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{"aa":"bb","cc":"ff","kk":"ll"},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:56:15 +00:00","uri":"https://safrankekustoeus3.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustoeus3.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"68af6caa-c595-4ba3-8b90-d7af613433d6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-sea/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-sea-1":{"principalId":"26993d29-d24a-4ccc-acf6-c55d34816644","clientId":"15d92f22-4d45-4959-8f67-fbd7a7769e1b"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/elbirnbo-synapse-rg/providers/Microsoft.Synapse/workspaces/elbirnboworkspace/kustoPools/elbirnbokpool","name":"elbirnboworkspace/elbirnbokpool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-06-13T14:38:55.5660364Z\"","location":"East + US 2","sku":{"name":"","size":"Small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://elbirnbokpool.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-elbirnbokpool.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest2/providers/Microsoft.Kusto/Clusters/dortest5","name":"dortest5","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T06:31:10.4653299Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-29 06:24:50 +00:00","uri":"https://dortest5.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortest5.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/hilatest2","name":"hilatest2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-24T11:02:24.7189389Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-24 10:56:06 +00:00","uri":"https://hilatest2.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-hilatest2.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amir-test-synapse-injection/providers/Microsoft.Synapse/workspaces/amirsynapseeus2test135/kustoPools/oron1","name":"amirsynapseeus2test135/oron1","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-12T15:03:43.8183860Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://oron1.amirsynapseeus2test135.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-oron1.amirsynapseeus2test135.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest23/providers/Microsoft.Kusto/Clusters/dortest8","name":"dortest8","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-10T14:33:45.7674005Z\"","location":"East + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-10 14:27:24 +00:00","uri":"https://dortest8.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortest8.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"ac561b36-f5f4-4c01-b997-a7b9f23f7c6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/michaeltest/providers/Microsoft.Kusto/Clusters/michaelshikh1ls16test","name":"michaelshikh1ls16test","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-07T15:19:26.8058166Z\"","location":"East + US 2","sku":{"name":"Standard_L16s_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://michaelshikh1ls16test.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-michaelshikh1ls16test.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1007164419SynapseStandard-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10071644-wksp/kustoPools/rpe2estd10071644pool","name":"rpe2estd10071644-wksp/rpe2estd10071644pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-13T13:19:13.5482034Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Deleted","stateReason":null,"uri":"https://rpe2estd10071644pool.rpe2estd10071644-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10071644pool.rpe2estd10071644-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oronRG/providers/Microsoft.Synapse/workspaces/orondfsynapse/kustoPools/oronpool","name":"orondfsynapse/oronpool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-11T08:41:21.5516382Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://oronpool.orondfsynapse.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-oronpool.orondfsynapse.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oronRG/providers/Microsoft.Synapse/workspaces/orondfsynapse/kustoPools/testportal","name":"orondfsynapse/testportal","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-11T11:21:12.6446507Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testportal.orondfsynapse.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-testportal.orondfsynapse.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oronRG/providers/Microsoft.Synapse/workspaces/orondfsynapse/kustoPools/teststudio","name":"orondfsynapse/teststudio","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-11T11:21:39.8797469Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://teststudio.orondfsynapse.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-teststudio.orondfsynapse.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/parkertestbvt/providers/Microsoft.Synapse/workspaces/pwkspacebasic1011/kustoPools/ppooltestbvt1011","name":"pwkspacebasic1011/ppooltestbvt1011","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-11T11:45:06.4100331Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://ppooltestbvt1011.pwkspacebasic1011.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-ppooltestbvt1011.pwkspacebasic1011.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sagiv_test_weu/providers/Microsoft.Kusto/Clusters/sagivadxweu","name":"sagivadxweu","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:39:34.0591998Z\"","location":"West + Europe","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to installation failure at 2021-02-07 11:01:29 +00:00","uri":"https://sagivadxweu.westeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-sagivadxweu.westeurope.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Failed"},"identity":{"principalId":"a46c1d35-b033-4f9b-b8f3-82520a7138fc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagiv-identity":{"principalId":"3c801d34-75a3-40d6-aa3b-ee5c63ba4f69","clientId":"d5dc2bde-e3fb-41c2-bf15-c4c0417069dd"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-rg/providers/Microsoft.Kusto/Clusters/safrankeweu","name":"safrankeweu","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:03:44.6178737Z\"","location":"West + Europe","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:56:52 +00:00","uri":"https://safrankeweu.westeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankeweu.westeurope.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":true,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://safranke-kv-weu.vault.azure.net","keyName":"safranke-key","keyVersion":"f970af8d7f0948699f9b323d17a0f306","userIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus"},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"9e6af201-fc66-42c5-a1d3-ede70be4d094","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/dorResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dortest2":{"principalId":"6473918b-0b97-49b7-98e2-dc06cd8181cc","clientId":"b3eace70-6e0f-44c6-b86c-9ab5dd109787"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-rg/providers/Microsoft.Kusto/Clusters/safrankeweu2","name":"safrankeweu2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:39:34.0591998Z\"","location":"West + Europe","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-05-22 00:50:19 +00:00","uri":"https://safrankeweu2.westeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankeweu2.westeurope.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://safranke-kv-weu.vault.azure.net","keyName":"safranke-key","keyVersion":"f970af8d7f0948699f9b323d17a0f306","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"d10dc936-a9b7-49c5-82da-e73cb8e8f469","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-sea/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-sea-1":{"principalId":"26993d29-d24a-4ccc-acf6-c55d34816644","clientId":"15d92f22-4d45-4959-8f67-fbd7a7769e1b"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/michaeltest/providers/Microsoft.Kusto/Clusters/michaeltest","name":"michaeltest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T08:09:59.9816708Z\"","location":"Australia + East","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://michaeltest.australiaeast.dev.kusto.windows.net","dataIngestionUri":"https://ingest-michaeltest.australiaeast.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/michaeltest/providers/Microsoft.Kusto/Clusters/michaelTestNew2","name":"michaelTestNew2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-19T12:43:23.7517802Z\"","location":"Australia + East","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://michaeltestnew2.australiaeast.dev.kusto.windows.net","dataIngestionUri":"https://ingest-michaeltestnew2.australiaeast.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/clusters?api-version=2021-08-27&%24skiptoken=DYxBD4IgGED%2fC%2fdPEJmmW%2bvUqTpZ64wIyUpgfOhazv8ep%2fe2t72NOP1NV%2bveSLqNPM%2f9%2fdFz0pEppYAdpbN08qVn7VIhf0vUhfIzxWVAFW1I1jukZlBKjhUDw%2fQIQioBrWgbaKvB1KUoWc0NDdGvdtQR6c2q6NGbVFwWTJ6qT0YOJxksrFny9MgZL4EdgDdk3%2f8%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '80839' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 25266ed9-ea1b-4ebc-b1b4-79e16a6a3d0d + - ff5c23e8-8a14-418b-a936-92bcbdbde93f + - 4c837161-6657-4b75-a0dc-e9edd354a0d4 + - 48f019fa-3381-432d-ade9-5d7f12fe4bfd + - fe0d26cb-f414-4748-9155-dafe82cebcc3 + - 9db804c6-c2a7-4c34-b2fd-abc18f6b578b + - 68c9870a-ea43-4c9c-8dc6-55d00abea456 + - b2ce7e17-e50a-4227-9d16-f1be7391b6ea + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list + Connection: + - keep-alive + ParameterSetName: + - --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:23:31.0006223Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterclitest7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterclitest7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[{"languageExtensionName":"PYTHON"},{"languageExtensionName":"R"}]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"e46224d2-b8e6-4517-95ba-c0fd25e1fb94","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:12:53.8912642Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterleader7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterleader7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"152df398-3533-4a5c-acfe-47800f4ce5ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2540' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/testcli1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"AllDatabasesAdmin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '594' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '758' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-sku + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/skus?api-version=2021-08-27 + response: + body: + string: '{"value":[{"resourceType":"clusters","name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]}]}' + headers: + cache-control: + - no-cache + content-length: + - '168895' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-sku + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/skus?api-version=2021-08-27 + response: + body: + string: '{"value":[{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D11_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":8,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D12_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":16,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D13_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D14_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D32d_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L4s","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":[]}]},"capacity":{"minimum":2,"maximum":16,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L8s","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L16s","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L8s_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L16s_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E64i_v3","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E80ids_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E2a_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E4a_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E8a_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E16a_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6369' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-language-extension + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/listLanguageExtensions?api-version=2021-08-27 + response: + body: + string: '{"value":[{"languageExtensionName":"PYTHON"},{"languageExtensionName":"R"}]}' + headers: + cache-control: + - no-cache + content-length: + - '76' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","statistics":{"size":0.0},"isFollowed":true,"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '489' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-follower-database + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/listFollowerDatabases?api-version=2021-08-27 + response: + body: + string: '{"value":[{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","attachedDatabaseConfigurationName":"myAttachedDatabaseConfiguration","databaseName":"KustoDatabase"}]}' + headers: + cache-control: + - no-cache + content-length: + - '334' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/principalAssignments?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/PrincipalAssignments/5e11cf36-45c4-42d2-a5ba-29fb9447ad32","name":"kustoclusterclitest7/KustoDatabase/5e11cf36-45c4-42d2-a5ba-29fb9447ad32","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"zoharhen@microsoft.com","role":"Admin","principalType":"User","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"Zohar + Hen (zoharhen@microsoft.com)","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/KustoDatabase/testcli1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"Admin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/PrincipalAssignments/c899e159-9abb-4c4d-8fbb-62291c160a10","name":"kustoclusterclitest7/KustoDatabase/c899e159-9abb-4c4d-8fbb-62291c160a10","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"7bd74dc8-dd5f-4cee-8e64-866138abcf89","role":"Admin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"clitest","provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1992' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database list-principal + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/listPrincipals?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"Zohar Hen (zoharhen@microsoft.com)","role":"Admin","type":"User","fqn":"aaduser=0f54ad84-ce5e-49d1-90b3-c553e7c96382;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"zoharhen@microsoft.com","appId":"","tenantName":"Microsoft"},{"name":"testcli1","role":"Admin","type":"App","fqn":"aadapp=ad064aa1-8b51-41ec-9c64-0d3037577d63;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"","appId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","tenantName":"Microsoft"},{"name":"clitest","role":"Admin","type":"App","fqn":"aadapp=7bd74dc8-dd5f-4cee-8e64-866138abcf89;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"","appId":"7bd74dc8-dd5f-4cee-8e64-866138abcf89","tenantName":"Microsoft"}]}' + headers: + cache-control: + - no-cache + content-length: + - '684' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"West + US 2","properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","databaseName":"KustoDatabase","attachedDatabaseNames":["KustoDatabase"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1107' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '812' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:34.8875256Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '905' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/diagnoseVirtualNetwork?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:25:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:26:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:26:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:27:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:27:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Succeeded","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:28:26.6817979Z","percentComplete":1.0,"properties":{"Findings":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '362' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '{"Findings":[]}' + headers: + cache-control: + - no-cache + content-length: + - '15' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-outbound-network-dependency-endpoint + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/outboundNetworkDependenciesEndpoints?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/OutboundNetworkDependenciesEndpoints/AzureActiveDirectory","name":"kustoclusterclitest7/AzureActiveDirectory","type":"Microsoft.Kusto/Clusters/OutboundNetworkDependenciesEndpoints","location":"West + US 2","properties":{"category":"Azure Active Directory","endpoints":[{"domainName":"login.microsoftonline.com","endpointDetails":[{"port":443}]},{"domainName":"graph.windows.net","endpointDetails":[{"port":443}]},{"domainName":"graph.microsoft.com","endpointDetails":[{"port":443}]},{"domainName":"graph.microsoft-ppe.com","endpointDetails":[{"port":443}]}],"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/OutboundNetworkDependenciesEndpoints/AzureMonitor","name":"kustoclusterclitest7/AzureMonitor","type":"Microsoft.Kusto/Clusters/OutboundNetworkDependenciesEndpoints","location":"West + US 2","properties":{"category":"Azure Monitor","endpoints":[{"domainName":"prod.warmpath.msftcloudes.com","endpointDetails":[{"port":443}]},{"domainName":"gcs.prod.monitoring.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"production.diagnostics.monitoring.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"shoebox2.metrics.nsatc.net:443","endpointDetails":[{"port":443}]}],"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/OutboundNetworkDependenciesEndpoints/CertificateAuthority","name":"kustoclusterclitest7/CertificateAuthority","type":"Microsoft.Kusto/Clusters/OutboundNetworkDependenciesEndpoints","location":"West + US 2","properties":{"category":"Certificate Authority","endpoints":[{"domainName":"ocsp.msocsp.com","endpointDetails":[{"port":80}]},{"domainName":"ocsp.digicert.com","endpointDetails":[{"port":80}]},{"domainName":"crl3.digicert.com","endpointDetails":[{"port":80}]},{"domainName":"crl.microsoft.com","endpointDetails":[{"port":80}]},{"domainName":"www.microsoft.com","endpointDetails":[{"port":80}]}],"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/OutboundNetworkDependenciesEndpoints/AzureStorage","name":"kustoclusterclitest7/AzureStorage","type":"Microsoft.Kusto/Clusters/OutboundNetworkDependenciesEndpoints","location":"West + US 2","properties":{"category":"Azure Storage","endpoints":[{"domainName":"ykankustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"ykankustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"ykankustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"zgdekustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"zgdekustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"zgdekustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"98pkkustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"98pkkustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"98pkkustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qpxekustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qpxekustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qpxekustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"yn7ustoclusterclitest700.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"yn7ustoclusterclitest700.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"yn7ustoclusterclitest700.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"v5zustoclusterclitest701.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"v5zustoclusterclitest701.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"v5zustoclusterclitest701.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"guaustoclusterclitest702.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"guaustoclusterclitest702.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"guaustoclusterclitest702.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"kw4ustoclusterclitest703.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"kw4ustoclusterclitest703.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"kw4ustoclusterclitest703.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"fsgdkustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"fsgdkustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"fsgdkustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qz0kkustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qz0kkustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qz0kkustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"8s8ustoclusterclitest700.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"8s8ustoclusterclitest700.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"8s8ustoclusterclitest700.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"be0ustoclusterclitest701.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"be0ustoclusterclitest701.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"be0ustoclusterclitest701.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"004ustoclusterclitest7eh.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"004ustoclusterclitest7eh.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"004ustoclusterclitest7eh.table.core.windows.net","endpointDetails":[{"port":443}]}],"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6771' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test","actionsRequired":null}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '783' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "kind": "EventHub", "properties": {"eventHubResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1", + "consumerGroup": "$Default", "compression": "None"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub update + Connection: + - keep-alive + Content-Length: + - '282' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --name --database-name --location --resource-group --consumer-group + --event-hub-resource-id + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/ef50b6d4-cc37-4601-8f9a-0f9ceef2952f?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '799' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:29:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/ef50b6d4-cc37-4601-8f9a-0f9ceef2952f?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --database-name --location --resource-group --consumer-group + --event-hub-resource-id + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/ef50b6d4-cc37-4601-8f9a-0f9ceef2952f?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/ef50b6d4-cc37-4601-8f9a-0f9ceef2952f","name":"ef50b6d4-cc37-4601-8f9a-0f9ceef2952f","status":"Succeeded","startTime":"2021-10-14T10:29:03.1923884Z","endTime":"2021-10-14T10:29:06.4582994Z","percentComplete":1.0,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '349' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:29:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 6d2a796b-b415-4f8a-81e6-f23f3a970638 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --database-name --location --resource-group --consumer-group + --event-hub-resource-id + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":null,"mappingRuleName":null,"dataFormat":null,"eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:29:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"privateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest", + "groupId": "blob", "requestMessage": "Please Approve."}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint update + Connection: + - keep-alive + Content-Length: + - '228' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/897cc5bd-b660-4503-8b2e-d35494edeaea?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '656' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:29:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/897cc5bd-b660-4503-8b2e-d35494edeaea?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/897cc5bd-b660-4503-8b2e-d35494edeaea?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/897cc5bd-b660-4503-8b2e-d35494edeaea","name":"897cc5bd-b660-4503-8b2e-d35494edeaea","status":"Running","startTime":"2021-10-14T10:29:35.6458264Z","endTime":"2021-10-14T10:29:35.6614486Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:30:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d84df406-a966-433e-ac62-68961de9360d + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/897cc5bd-b660-4503-8b2e-d35494edeaea?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/897cc5bd-b660-4503-8b2e-d35494edeaea","name":"897cc5bd-b660-4503-8b2e-d35494edeaea","status":"Succeeded","startTime":"2021-10-14T10:29:35.6458264Z","endTime":"2021-10-14T10:30:13.3701273Z","percentComplete":1.0,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '464' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:30:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d84df406-a966-433e-ac62-68961de9360d + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:29:35.510515Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '892' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:30:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub data-connection-validation + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --name --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-14T09:35:29Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:30:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"dataConnectionName": "DataConnection3", "properties": {"location": "westus", + "kind": "EventHub", "properties": {"eventHubResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1", + "consumerGroup": "$Default", "compression": "None"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub data-connection-validation + Connection: + - keep-alive + Content-Length: + - '338' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --name --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnectionValidation?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:30:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub data-connection-validation + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --name --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145","name":"16d347e5-5d2d-4720-8cf1-bbfe4a1dd145","status":"Succeeded","startTime":"2021-10-14T10:30:39.3262993Z","endTime":"2021-10-14T10:30:41.7170378Z","percentComplete":1.0,"properties":{"Value":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '359' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 9a86e080-788e-4d66-aa6b-213de2cbfc1c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub data-connection-validation + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --name --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '{"Value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"scriptUrl": "https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt", + "scriptUrlSasToken": "sp=r&st=2021-10-10T13:27:37Z&se=2024-09-06T21:27:37Z&sv=2020-08-04&sr=b&sig=bQv3g3VpesJ3nv9Fbs%2Bc0V0PQby9AY%2BFLzQBxk5a9us%3D", + "continueOnErrors": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script update + Connection: + - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","scriptUrlSasToken":"","continueOnErrors":true,"provisioningState":"Accepted"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:31:12.5386557Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:31:12.5386557Z"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '768' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc","name":"2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc","status":"Succeeded","startTime":"2021-10-14T10:31:14.0976411Z","endTime":"2021-10-14T10:31:15.3321805Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseScriptCreateOrUpdate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '456' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d6681da3-8b72-454d-9bde-b0857fe7f1ae + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:31:12.5386557Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"kind": "ReadWrite", "properties": {"hotCachePeriod": "P1D"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database update + Connection: + - keep-alive + Content-Length: + - '62' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"hotCachePeriod":"P1D","provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/0fa1dfa2-b993-4407-a27f-e2f2372b0057?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '430' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/0fa1dfa2-b993-4407-a27f-e2f2372b0057?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/0fa1dfa2-b993-4407-a27f-e2f2372b0057?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/0fa1dfa2-b993-4407-a27f-e2f2372b0057","name":"0fa1dfa2-b993-4407-a27f-e2f2372b0057","status":"Succeeded","startTime":"2021-10-14T10:31:46.4625256Z","endTime":"2021-10-14T10:31:51.259639Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseCreate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '441' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:32:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d595c535-8a6d-47a5-9c1b-da70a0df5f35 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","hotCachePeriod":"P1D","statistics":{"size":0.0},"isFollowed":true,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '500' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:32:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/stop?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:32:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:32:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:33:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:33:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:34:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:34:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:35:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:35:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:36:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:36:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:37:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:37:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:38:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Succeeded","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:38:43.3837457Z","percentComplete":1.0,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '442' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:38:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:38:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/start?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:38:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:39:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:39:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:40:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:40:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:41:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:41:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:42:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:42:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:43:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:43:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:44:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:44:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:45:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:46:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:46:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:47:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:47:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:48:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '284' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:48:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '283' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:49:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '282' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:49:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '281' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:50:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Succeeded","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:50:31.5181677Z","percentComplete":1.0,"properties":{"operationKind":"ClusterResume","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '440' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:50:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:50:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"enableDiskEncryption": false, "enableStreamingIngest": true, "enablePurge": + true, "enableDoubleEncryption": false, "publicNetworkAccess": "Enabled", "engineType": + "V3", "enableAutoStop": true, "restrictOutboundNetworkAccess": "Disabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster update + Connection: + - keep-alive + Content-Length: + - '318' + Content-Type: + - application/json + ParameterSetName: + - --name --type --location --enable-auto-stop --enable-purge --enable-streaming-ingest + --engine-type --restrict-outbound-network-access --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:50:31.4244605Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterleader7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterleader7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"type":"SystemAssigned","userAssignedIdentities":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '1149' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:50:45 GMT + etag: + - '"2021-10-14T10:50:31.4244605Z"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 200 + message: OK +- request: + body: '{"value": [{"languageExtensionName": "PYTHON"}, {"languageExtensionName": + "R"}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + Content-Length: + - '80' + Content-Type: + - application/json + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/removeLanguageExtensions?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:50:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:51:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:51:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:52:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:52:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:53:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Succeeded","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:53:36.8773182Z","percentComplete":1.0,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '453' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:53:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:53:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:53:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/810dbe26-86a2-44fb-a586-cd349af7a18a","name":"810dbe26-86a2-44fb-a586-cd349af7a18a","status":"Running","startTime":"2021-10-14T10:53:52.3474843Z","endTime":"2021-10-14T10:53:52.3474863Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '453' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:54:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d3310793-c22f-4847-95d3-cd2db0ac031f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/810dbe26-86a2-44fb-a586-cd349af7a18a","name":"810dbe26-86a2-44fb-a586-cd349af7a18a","status":"Running","startTime":"2021-10-14T10:53:52.3474843Z","endTime":"2021-10-14T10:53:52.3474863Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '453' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:54:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d3310793-c22f-4847-95d3-cd2db0ac031f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/810dbe26-86a2-44fb-a586-cd349af7a18a","name":"810dbe26-86a2-44fb-a586-cd349af7a18a","status":"Succeeded","startTime":"2021-10-14T10:53:52.3474843Z","endTime":"2021-10-14T10:55:08.6762812Z","percentComplete":1.0,"properties":{"operationKind":"ManagedPrivateEndpointDelete","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '456' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:55:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d3310793-c22f-4847-95d3-cd2db0ac031f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/a3d324d5-e7be-4a26-b8f7-de836b5b508c?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:55:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a3d324d5-e7be-4a26-b8f7-de836b5b508c?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a3d324d5-e7be-4a26-b8f7-de836b5b508c?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a3d324d5-e7be-4a26-b8f7-de836b5b508c","name":"a3d324d5-e7be-4a26-b8f7-de836b5b508c","status":"Succeeded","startTime":"2021-10-14T10:55:25.6377171Z","endTime":"2021-10-14T10:55:52.5877064Z","percentComplete":1.0,"properties":{"operationKind":"PrivateEndpointConnectionDeleteCommand","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '466' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:55:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 92093eee-6764-4bc3-8e90-c2338d8a8541 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/540851f0-79ed-404c-97af-2614c4753673?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:55:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/540851f0-79ed-404c-97af-2614c4753673?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 542daeda-3e8b-4444-838d-eeeae9b0fce7 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/540851f0-79ed-404c-97af-2614c4753673?api-version=2021-03-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:56:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1bf3aad3-7246-4668-944e-ea0305e6f990 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/540851f0-79ed-404c-97af-2614c4753673?api-version=2021-03-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:56:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 44cc4727-3405-492c-b94e-1c6a31ec6015 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --database-name --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/0ff4d97a-c449-40c6-921f-f8271f7dace2?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:56:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/0ff4d97a-c449-40c6-921f-f8271f7dace2?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --database-name --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/0ff4d97a-c449-40c6-921f-f8271f7dace2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/0ff4d97a-c449-40c6-921f-f8271f7dace2","name":"0ff4d97a-c449-40c6-921f-f8271f7dace2","status":"Succeeded","startTime":"2021-10-14T10:56:23.0364487Z","endTime":"2021-10-14T10:56:23.0988908Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseScriptDelete","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '448' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:56:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 069822ad-7402-4c48-9f66-cd7506d5b336 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script wait + Connection: + - keep-alive + ParameterSetName: + - --deleted --cluster-name --database-name --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource with identifier + ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2'' + is not found."}}' + headers: + cache-control: + - no-cache + content-length: + - '338' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:56:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --database-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/5b64d2ea-b964-41f0-a11b-44c5c23cb9db?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:56:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/5b64d2ea-b964-41f0-a11b-44c5c23cb9db?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --database-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/5b64d2ea-b964-41f0-a11b-44c5c23cb9db?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/5b64d2ea-b964-41f0-a11b-44c5c23cb9db","name":"5b64d2ea-b964-41f0-a11b-44c5c23cb9db","status":"Succeeded","startTime":"2021-10-14T10:57:00.0114727Z","endTime":"2021-10-14T10:57:01.0897368Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseDropPrincipals","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:57:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 2d8706c8-2b95-4711-94df-e3d0388aa12c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/aebb1823-9e6c-4647-998c-fdc031e93d08?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:57:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/aebb1823-9e6c-4647-998c-fdc031e93d08?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/aebb1823-9e6c-4647-998c-fdc031e93d08?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/aebb1823-9e6c-4647-998c-fdc031e93d08","name":"aebb1823-9e6c-4647-998c-fdc031e93d08","status":"Succeeded","startTime":"2021-10-14T10:57:32.6171571Z","endTime":"2021-10-14T10:57:34.8829796Z","percentComplete":1.0,"properties":{"operationKind":"ServicePrincipalAssignmentsDrop","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '459' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:58:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 700b43e5-6ee7-4048-bc10-a32ca22f7edd + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"value": [{"role": "Admin", "name": "clitest", "type": "App", "appId": + "7bd74dc8-dd5f-4cee-8e64-866138abcf89"}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database remove-principal + Connection: + - keep-alive + Content-Length: + - '113' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/removePrincipals?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"Zohar Hen (zoharhen@microsoft.com)","role":"Admin","type":"User","fqn":"aaduser=0f54ad84-ce5e-49d1-90b3-c553e7c96382;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"zoharhen@microsoft.com","appId":"","tenantName":"Microsoft"}]}' + headers: + cache-control: + - no-cache + content-length: + - '245' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:58:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7", + "attachedDatabaseConfigurationName": "myAttachedDatabaseConfiguration"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster detach-follower-database + Connection: + - keep-alive + Content-Length: + - '294' + Content-Type: + - application/json + ParameterSetName: + - --name --attached-database-configuration-name --cluster-resource-id --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/detachFollowerDatabases?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:58:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster detach-follower-database + Connection: + - keep-alive + ParameterSetName: + - --name --attached-database-configuration-name --cluster-resource-id --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c","name":"57dd4f08-a16c-46dd-ac6d-47281d77fd8c","status":"Succeeded","startTime":"2021-10-14T10:58:06.8553172Z","endTime":"2021-10-14T10:58:08.8953836Z","percentComplete":1.0,"properties":{"operationKind":"FollowerDatabaseDetach","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:58:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 99934dcd-4a21-49cb-83a4-2aa46d920131 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster detach-follower-database + Connection: + - keep-alive + ParameterSetName: + - --name --attached-database-configuration-name --cluster-resource-id --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:58:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --name --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Thu, 14 Oct 2021 10:58:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/90c7d231-d85c-443c-ac36-cc7b88fad149?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:58:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/90c7d231-d85c-443c-ac36-cc7b88fad149?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/90c7d231-d85c-443c-ac36-cc7b88fad149?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/90c7d231-d85c-443c-ac36-cc7b88fad149","name":"90c7d231-d85c-443c-ac36-cc7b88fad149","status":"Succeeded","startTime":"2021-10-14T10:58:41.9286324Z","endTime":"2021-10-14T10:58:43.9297567Z","percentComplete":1.0,"properties":{"operationKind":"DmServiceDataObtainerDrop","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '453' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:59:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 0fd243be-73b6-4b1c-bf73-9d6c82d09661 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/58999bc2-b886-4a84-b9d2-f0f450805058?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:59:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/58999bc2-b886-4a84-b9d2-f0f450805058?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/58999bc2-b886-4a84-b9d2-f0f450805058?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/58999bc2-b886-4a84-b9d2-f0f450805058","name":"58999bc2-b886-4a84-b9d2-f0f450805058","status":"Succeeded","startTime":"2021-10-14T10:59:14.9186473Z","endTime":"2021-10-14T10:59:19.9658263Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseDelete","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '442' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:59:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 464be840-266b-4ba1-8bb9-058e470b8ab1 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:59:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:00:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:00:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:01:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:01:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:02:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:02:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:03:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:03:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:04:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:04:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:05:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:05:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Succeeded","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T11:06:07.7319584Z","percentComplete":1.0,"properties":{"operationKind":"ClusterDelete","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '441' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:06:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +version: 1 diff --git a/src/kusto/azext_kusto/manual/latest/test_kusto_scenario_coverage.md b/src/kusto/azext_kusto/manual/latest/test_kusto_scenario_coverage.md new file mode 100644 index 00000000000..cb712843009 --- /dev/null +++ b/src/kusto/azext_kusto/manual/latest/test_kusto_scenario_coverage.md @@ -0,0 +1,2 @@ +|Scenario|Result|ErrorMessage|ErrorStack|ErrorNormalized|StartDt|EndDt| +Coverage: 0/0 diff --git a/src/kusto/azext_kusto/manual/tests/__init__.py b/src/kusto/azext_kusto/manual/tests/__init__.py index fe1bd438b46..1eb70e6d3a3 100644 --- a/src/kusto/azext_kusto/manual/tests/__init__.py +++ b/src/kusto/azext_kusto/manual/tests/__init__.py @@ -9,17 +9,30 @@ # regenerated. # -------------------------------------------------------------------------- import inspect +import logging import os +import sys +import traceback +import datetime as dt +from azure.core.exceptions import AzureError +from azure.cli.testsdk.exceptions import CliTestError, CliExecutionError, JMESPathCheckAssertionError + +logger = logging.getLogger('azure.cli.testsdk') +logger.addHandler(logging.StreamHandler()) __path__ = __import__('pkgutil').extend_path(__path__, __name__) +exceptions = [] +test_map = dict() +SUCCESSED = "successed" +FAILED = "failed" def try_manual(func): def import_manual_function(origin_func): from importlib import import_module - decorated_path = inspect.getfile(origin_func) - module_path = __path__[0] + decorated_path = inspect.getfile(origin_func).lower() + module_path = __path__[0].lower() if not decorated_path.startswith(module_path): raise Exception("Decorator can only be used in submodules!") manual_path = os.path.join( @@ -34,16 +47,70 @@ def get_func_to_call(): func_to_call = func try: func_to_call = import_manual_function(func) + logger.info("Found manual override for %s(...)", func.__name__) except (ImportError, AttributeError): pass return func_to_call def wrapper(*args, **kwargs): func_to_call = get_func_to_call() - print("running {}()...".format(func.__name__)) - return func_to_call(*args, **kwargs) + logger.info("running %s()...", func.__name__) + try: + test_map[func.__name__] = dict() + test_map[func.__name__]["result"] = SUCCESSED + test_map[func.__name__]["error_message"] = "" + test_map[func.__name__]["error_stack"] = "" + test_map[func.__name__]["error_normalized"] = "" + test_map[func.__name__]["start_dt"] = dt.datetime.utcnow() + ret = func_to_call(*args, **kwargs) + except (AssertionError, AzureError, CliTestError, CliExecutionError, SystemExit, + JMESPathCheckAssertionError) as e: + use_exception_cache = os.getenv("TEST_EXCEPTION_CACHE") + if use_exception_cache is None or use_exception_cache.lower() != "true": + raise + test_map[func.__name__]["end_dt"] = dt.datetime.utcnow() + test_map[func.__name__]["result"] = FAILED + test_map[func.__name__]["error_message"] = str(e).replace("\r\n", " ").replace("\n", " ")[:500] + test_map[func.__name__]["error_stack"] = traceback.format_exc().replace( + "\r\n", " ").replace("\n", " ")[:500] + logger.info("--------------------------------------") + logger.info("step exception: %s", e) + logger.error("--------------------------------------") + logger.error("step exception in %s: %s", func.__name__, e) + logger.info(traceback.format_exc()) + exceptions.append((func.__name__, sys.exc_info())) + else: + test_map[func.__name__]["end_dt"] = dt.datetime.utcnow() + return ret if inspect.isclass(func): return get_func_to_call() - else: - return wrapper + return wrapper + + +def calc_coverage(filename): + filename = filename.split(".")[0] + coverage_name = filename + "_coverage.md" + with open(coverage_name, "w") as f: + f.write("|Scenario|Result|ErrorMessage|ErrorStack|ErrorNormalized|StartDt|EndDt|\n") + total = len(test_map) + covered = 0 + for k, v in test_map.items(): + if not k.startswith("step_"): + total -= 1 + continue + if v["result"] == SUCCESSED: + covered += 1 + f.write("|{step_name}|{result}|{error_message}|{error_stack}|{error_normalized}|{start_dt}|" + "{end_dt}|\n".format(step_name=k, **v)) + f.write("Coverage: {}/{}\n".format(covered, total)) + print("Create coverage\n", file=sys.stderr) + + +def raise_if(): + if exceptions: + if len(exceptions) <= 1: + raise exceptions[0][1][1] + message = "{}\nFollowed with exceptions in other steps:\n".format(str(exceptions[0][1][1])) + message += "\n".join(["{}: {}".format(h[0], h[1][1]) for h in exceptions[1:]]) + raise exceptions[0][1][0](message).with_traceback(exceptions[0][1][2]) diff --git a/src/kusto/azext_kusto/manual/tests/latest/example_steps.py b/src/kusto/azext_kusto/manual/tests/latest/example_steps.py new file mode 100644 index 00000000000..a0bb03659f3 --- /dev/null +++ b/src/kusto/azext_kusto/manual/tests/latest/example_steps.py @@ -0,0 +1,849 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + + +from .. import try_manual + + +# EXAMPLE: /AttachedDatabaseConfigurations/put/AttachedDatabaseConfigurationsCreateOrUpdate +@try_manual +def step_attached_database_configuration_create(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto attached-database-configuration create ' + '--name "{myAttachedDatabaseConfiguration}" ' + '--cluster-name "{myCluster1}" ' + '--location "westus2" ' + '--cluster-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.Kusto/Clu' + 'sters/{myCluster}" ' + '--database-name "KustoDatabase" ' + '--default-principals-modification-kind "Union" ' + '--table-level-sharing-properties external-tables-to-exclude="ExternalTable2" ' + 'external-tables-to-include="ExternalTable1" materialized-views-to-exclude="MaterializedViewTable2" ' + 'materialized-views-to-include="MaterializedViewTable1" tables-to-exclude="Table2" ' + 'tables-to-include="Table1" ' + '--resource-group "{rg}" ', + checks=[]) + test.cmd('az kusto attached-database-configuration wait --created ' + '--name "{myAttachedDatabaseConfiguration}" ' + '--cluster-name "{myCluster1}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /AttachedDatabaseConfigurations/get/AttachedDatabaseConfigurationsGet +@try_manual +def step_attached_database_configuration_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto attached-database-configuration show ' + '--name "{myAttachedDatabaseConfiguration}" ' + '--cluster-name "{myCluster1}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /AttachedDatabaseConfigurations/get/KustoAttachedDatabaseConfigurationsListByCluster +@try_manual +def step_attached_database_configuration_list(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto attached-database-configuration list ' + '--cluster-name "{myCluster1}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/put/KustoClustersCreateOrUpdate +@try_manual +def step_cluster_create(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster create ' + '--cluster-name "{myCluster}" ' + '--type="SystemAssigned" ' + '--location "westus2" ' + '--allowed-ip-range-list "0.0.0.0/0" ' + '--enable-auto-stop true ' + '--enable-purge true ' + '--enable-streaming-ingest true ' + '--key-vault-properties key-name="" key-vault-uri="" key-version="" ' + '--sku name="Standard_D11_v2" capacity=2 tier="Standard" ' + '--public-network-access "Enabled" ' + '--resource-group "{rg}" ', + checks=[]) + test.cmd('az kusto cluster wait --created ' + '--cluster-name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=[]) + +# EXAMPLE: /Clusters/put/KustoClustersCreateOrUpdate +@try_manual +def step_leader_cluster_create(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster create ' + '--cluster-name "{myCluster1}" ' + '--type="SystemAssigned" ' + '--location "westus2" ' + '--enable-purge true ' + '--enable-streaming-ingest true ' + '--sku name="Standard_D11_v2" capacity=2 tier="Standard" ' + '--resource-group "{rg}" ', + checks=[]) + test.cmd('az kusto cluster wait --created ' + '--cluster-name "{myCluster1}" ' + '--resource-group "{rg}" ', + checks=[]) + + +# EXAMPLE: /Clusters/get/Get Kusto cluster outbound network dependencies +@try_manual +def step_cluster_list_outbound(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster list-outbound-network-dependency-endpoint ' + '--name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/get/KustoClustersGet +@try_manual +def step_cluster_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster show ' + '--name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/get/KustoClustersList +@try_manual +def step_cluster_list(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster list ' + '-g "" ', + checks=checks) + + +# EXAMPLE: /Clusters/get/KustoClustersListByResourceGroup +@try_manual +def step_cluster_list_by_resource_group(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster list ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/get/KustoClustersListResourceSkus +@try_manual +def step_cluster_list_sku_by_resource_group(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster list-sku ' + '--name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/get/KustoClustersListSkus +@try_manual +def step_cluster_list_sku(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster list-sku ' + '-g "" ', + checks=checks) + + +# EXAMPLE: /Clusters/patch/KustoClustersUpdate +@try_manual +def step_cluster_update(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster update ' + '--name "{myCluster1}" ' + '--type "SystemAssigned" ' + '--location "westus2" ' + '--enable-auto-stop true ' + '--enable-purge true ' + '--enable-streaming-ingest true ' + '--engine-type "V3" ' + '--restrict-outbound-network-access "Disabled" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/post/KustoClusterAddLanguageExtensions +@try_manual +def step_cluster_add_language_extension(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster add-language-extension ' + '--name "{myCluster}" ' + '--value language-extension-name="PYTHON" ' + '--value language-extension-name="R" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/post/KustoClusterDetachFollowerDatabases +@try_manual +def step_cluster_detach_follower_database(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster detach-follower-database ' + '--name "{myCluster}" ' + '--attached-database-configuration-name "{myAttachedDatabaseConfiguration}" ' + '--cluster-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.Kusto/clu' + 'sters/{myCluster1}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/post/KustoClusterDiagnoseVirtualNetwork +@try_manual +def step_cluster_diagnose_virtual_network(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster diagnose-virtual-network ' + '--name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/post/KustoClusterListFollowerDatabases +@try_manual +def step_cluster_list_follower_database(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster list-follower-database ' + '--name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/post/KustoClusterListLanguageExtensions +@try_manual +def step_cluster_list_language_extension(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster list-language-extension ' + '--name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/post/KustoClusterRemoveLanguageExtensions +@try_manual +def step_cluster_remove_language_extension(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster remove-language-extension ' + '--name "{myCluster}" ' + '--value language-extension-name="PYTHON" ' + '--value language-extension-name="R" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/post/KustoClustersStart +@try_manual +def step_cluster_start(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster start ' + '--name "{myCluster1}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/post/KustoClustersStop +@try_manual +def step_cluster_stop(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster stop ' + '--name "{myCluster1}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ClusterPrincipalAssignments/put/KustoClusterPrincipalAssignmentsCreateOrUpdate +@try_manual +def step_cluster_principal_assignment_create(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster-principal-assignment create ' + '--cluster-name "{myCluster}" ' + '--principal-assignment-name "testcli1" ' + '--principal-type "App" ' + '--principal-id "ad064aa1-8b51-41ec-9c64-0d3037577d63" ' + '--role "AllDatabasesAdmin" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ClusterPrincipalAssignments/get/KustoClusterPrincipalAssignmentsGet +@try_manual +def step_cluster_principal_assignment_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster-principal-assignment show ' + '--cluster-name "{myCluster}" ' + '--principal-assignment-name "testcli1" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ClusterPrincipalAssignments/get/KustoPrincipalAssignmentsList +@try_manual +def step_cluster_principal_assignment_list(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster-principal-assignment list ' + '--cluster-name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /DatabasePrincipalAssignments/put/KustoDatabasePrincipalAssignmentsCreateOrUpdate +@try_manual +def step_database_principal_assignment_create(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto database-principal-assignment create ' + '--cluster-name "{myCluster}" ' + '--database-name "kustoDatabase" ' + '--role "Admin" ' + '--principal-type "App" ' + '--principal-id "ad064aa1-8b51-41ec-9c64-0d3037577d63" ' + '--principal-assignment-name "testcli1" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /DatabasePrincipalAssignments/get/KustoDatabasePrincipalAssignmentsGet +@try_manual +def step_database_principal_assignment_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto database-principal-assignment show ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--principal-assignment-name "testcli1" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /DatabasePrincipalAssignments/get/KustoPrincipalAssignmentsList +@try_manual +def step_database_principal_assignment_list(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto database-principal-assignment list ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /DatabasePrincipalAssignments/delete/KustoDatabasePrincipalAssignmentsDelete +@try_manual +def step_database_principal_assignment_delete(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto database-principal-assignment delete -y ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--principal-assignment-name "testcli1" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Databases/put/Kusto ReadWrite database create or update +@try_manual +def step_database_create(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto database create ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--read-write-database location="westus2" soft-delete-period="P1D" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Databases/get/KustoDatabasesGet +@try_manual +def step_database_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto database show ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Databases/get/KustoDatabasesListByCluster +@try_manual +def step_database_list(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto database list ' + '--cluster-name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Databases/patch/KustoDatabasesUpdate +@try_manual +def step_database_update(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto database update ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--read-write-database hot-cache-period="P1D" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Databases/post/KustoDatabaseAddPrincipals +@try_manual +def step_database_add_principal(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto database add-principal ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--value name="clitest" type="App" app-id="7bd74dc8-dd5f-4cee-8e64-866138abcf89" role="Admin" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Databases/post/KustoDatabaseListPrincipals +@try_manual +def step_database_list_principal(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto database list-principal ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Databases/post/KustoDatabaseRemovePrincipals +@try_manual +def step_database_remove_principal(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto database remove-principal ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--value name="clitest" type="App" app-id="7bd74dc8-dd5f-4cee-8e64-866138abcf89" role="Admin" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Databases/delete/KustoDatabasesDelete +@try_manual +def step_database_delete(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto database delete -y ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /DataConnections/put/KustoDataConnectionsCreateOrUpdate +@try_manual +def step_data_connection_event_hub_create(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto data-connection event-hub create ' + '--cluster-name "{myCluster}" ' + '--name "{myDataConnection}" ' + '--database-name "KustoDatabase" ' + '--location "westus2" ' + '--consumer-group "$Default" ' + '--event-hub-resource-id "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.EventHu' + 'b/namespaces/testcli/eventhubs/eventhubTest1" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /DataConnections/get/KustoDatabasesListByCluster +@try_manual +def step_data_connection_list(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto data-connection list ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /DataConnections/get/KustoDataConnectionsGet +@try_manual +def step_data_connection_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto data-connection show ' + '--cluster-name "{myCluster}" ' + '--name "{myDataConnection}" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /DataConnections/patch/KustoDataConnectionsUpdate +@try_manual +def step_data_connection_event_hub_update(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto data-connection event-hub update ' + '--cluster-name "{myCluster}" ' + '--name "{myDataConnection}" ' + '--database-name "KustoDatabase" ' + '--location "westus2" ' + '--resource-group "{rg}" ' + '--consumer-group "$Default" ' + '--event-hub-resource-id "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.EventHu' + 'b/namespaces/testcli/eventhubs/eventhubTest1" ', + checks=checks) + + +# EXAMPLE: /DataConnections/post/KustoDataConnectionValidation +@try_manual +def step_data_connection_validation(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto data-connection event-hub data-connection-validation ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--name "{myDataConnection}" ' + '--consumer-group "$Default" ' + '--event-hub-resource-id "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.EventHu' + 'b/namespaces/testcli/eventhubs/eventhubTest1" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /DataConnections/delete/KustoDataConnectionsDelete +@try_manual +def step_data_connection_delete(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto data-connection delete -y ' + '--cluster-name "{myCluster}" ' + '--name "{myDataConnection}" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ManagedPrivateEndpoints/put/KustoManagedPrivateEndpointsCreateOrUpdate +@try_manual +def step_managed_private_endpoint_create(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto managed-private-endpoint create ' + '--cluster-name "{myCluster}" ' + '--name "{myManagedPrivateEndpoint}" ' + '--group-id "blob" ' + '--private-link-resource-id "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.Stor' + 'age/storageAccounts/clisatest" ' + '--request-message "Please Approve." ' + '--resource-group "{rg}" ', + checks=[]) + test.cmd('az kusto managed-private-endpoint wait --created ' + '--cluster-name "{myCluster}" ' + '--name "{myManagedPrivateEndpoint}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ManagedPrivateEndpoints/get/KustoManagedPrivateEndpointsGet +@try_manual +def step_managed_private_endpoint_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto managed-private-endpoint show ' + '--cluster-name "{myCluster}" ' + '--name "{myManagedPrivateEndpoint}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ManagedPrivateEndpoints/get/KustoManagedPrivateEndpointsList +@try_manual +def step_managed_private_endpoint_list(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto managed-private-endpoint list ' + '--cluster-name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ManagedPrivateEndpoints/patch/KustoManagedPrivateEndpointsUpdate +@try_manual +def step_managed_private_endpoint_update(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto managed-private-endpoint update ' + '--cluster-name "{myCluster}" ' + '--name "{myManagedPrivateEndpoint}" ' + '--group-id "blob" ' + '--private-link-resource-id "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.Stor' + 'age/storageAccounts/clisatest" ' + '--request-message "Please Approve." ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ManagedPrivateEndpoints/delete/ManagedPrivateEndpointsDelete +@try_manual +def step_managed_private_endpoint_delete(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto managed-private-endpoint delete -y ' + '--cluster-name "{myCluster}" ' + '--name "{myManagedPrivateEndpoint}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Clusters/delete/KustoClustersDelete +@try_manual +def step_cluster_delete(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster delete -y ' + '--name "{myCluster1}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /AttachedDatabaseConfigurations/delete/AttachedDatabaseConfigurationsDelete +@try_manual +def step_attached_database_configuration_delete(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto attached-database-configuration delete -y ' + '--name "{myAttachedDatabaseConfiguration}" ' + '--cluster-name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ClusterPrincipalAssignments/delete/KustoClusterPrincipalAssignmentsDelete +@try_manual +def step_cluster_principal_assignment_delete(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster-principal-assignment delete -y ' + '--cluster-name "{myCluster}" ' + '--principal-assignment-name "testcli1" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /OperationsResults/get/KustoOperationResultsGet +@try_manual +def step_operation_result_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto operation-result show ' + '--operation-id "30972f1b-b61d-4fd8-bd34-3dcfa24670f3" ' + '--location "westus2" ', + checks=checks) + + +# EXAMPLE: /PrivateEndpointConnections/put/Approve or reject a private endpoint connection with a given name. +@try_manual +def step_private_endpoint_connection_create(test, checks=None): + test.cmd('az network private-endpoint create ' + '-n "{myPrivateEndpoint}" ' + '-g "testrg" ' + '--group-id "cluster" ' + '--manual-request true ' + '--subnet "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/MyVnet/subnets/MySubnet" ' + '--private-connection-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.Kusto/Clusters/{myCluster}" ' + '--connection-name "test"', + checks=checks) + step_private_endpoint_connection_list(test) + test.cmd('az kusto private-endpoint-connection create ' + '--cluster-name "{myCluster}" ' + '--private-link-service-connection-state description="Approved by test" status="Approved" ' + '--name "{myPrivateEndpointConnection}" ' + '--resource-group "{rg}"', + checks=[]) + test.cmd('az kusto private-endpoint-connection wait --created ' + '--cluster-name "{myCluster}" ' + '--name "{myPrivateEndpointConnection}" ' + '--resource-group "{rg}"', + checks=checks) + +# EXAMPLE: /PrivateEndpointConnections/get/Gets private endpoint connection. +@try_manual +def step_private_endpoint_connection_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto private-endpoint-connection show ' + '--cluster-name "{myCluster}" ' + '--name "{myPrivateEndpointConnection}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /PrivateEndpointConnections/get/KustoPrivateEndpointConnectionsList +@try_manual +def step_private_endpoint_connection_list(test, checks=None): + if checks is None: + checks = [] + myPrivateEndpointConnectionRes = test.cmd('az kusto private-endpoint-connection list ' + '--cluster-name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks).get_output_in_json() + print(myPrivateEndpointConnectionRes[0]["name"]) + test.kwargs.update({ + 'myPrivateEndpointConnection': myPrivateEndpointConnectionRes[0]["name"] + }) + + +# EXAMPLE: /PrivateEndpointConnections/delete/Deletes a private endpoint connection with a given name. +@try_manual +def step_private_endpoint_connection_delete(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto private-endpoint-connection delete -y ' + '--cluster-name "{myCluster}" ' + '--name "{myPrivateEndpointConnection}" ' + '--resource-group "{rg}" ', + checks=checks) + test.cmd('az network private-endpoint delete ' + '-n "{myPrivateEndpoint}" ' + '-g "testrg" ', + checks=checks) + +# EXAMPLE: /PrivateLinkResources/get/Gets private endpoint connection. +@try_manual +def step_private_link_resource_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto private-link-resource show ' + '--cluster-name "{myCluster}" ' + '--name "cluster" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /PrivateLinkResources/get/Gets private endpoint connections. +@try_manual +def step_private_link_resource_list(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto private-link-resource list ' + '--cluster-name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Scripts/put/KustoScriptsCreateOrUpdate +@try_manual +def step_script_create(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto script create ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--continue-on-errors true ' + '--script-url "https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt" ' + '--script-url-sas-token "sp=r&st=2021-10-10T13:27:37Z&se=2024-09-06T21:27:37Z&sv=2020-08-04&sr=b&sig=bQv3g3VpesJ3nv9Fbs%2Bc0V0PQby9AY%2BFLzQBxk5a9us%3D" ' + '--resource-group "{rg}" ' + '--name "{myScript}" ', + checks=[]) + test.cmd('az kusto script wait --created ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ' + '--name "{myScript}" ', + checks=checks) + + +# EXAMPLE: /Scripts/get/KustoScriptsGet +@try_manual +def step_script_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto script show ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ' + '--name "{myScript}" ', + checks=checks) + + +# EXAMPLE: /Scripts/get/KustoScriptsList +@try_manual +def step_script_list(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto script list ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /Scripts/patch/KustoScriptsUpdate +@try_manual +def step_script_update(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto script update ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--continue-on-errors true ' + '--script-url "https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt" ' + '--script-url-sas-token "sp=r&st=2021-10-10T13:27:37Z&se=2024-09-06T21:27:37Z&sv=2020-08-04&sr=b&sig=bQv3g3VpesJ3nv9Fbs%2Bc0V0PQby9AY%2BFLzQBxk5a9us%3D" ' + '--resource-group "{rg}" ' + '--name "{myScript}" ', + checks=checks) + + +# EXAMPLE: /Scripts/delete/KustoScriptsDelete +@try_manual +def step_script_delete(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto script delete -y ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ' + '--name "{myScript}" ', + checks=[]) + test.cmd('az kusto script wait --deleted ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ' + '--name "{myScript}" ', + checks=checks) diff --git a/src/kusto/azext_kusto/manual/tests/latest/recordings/test_kusto.yaml b/src/kusto/azext_kusto/manual/tests/latest/recordings/test_kusto.yaml deleted file mode 100644 index 2d08918c263..00000000000 --- a/src/kusto/azext_kusto/manual/tests/latest/recordings/test_kusto.yaml +++ /dev/null @@ -1,6221 +0,0 @@ -interactions: -- request: - body: '{"location": "westus", "sku": {"name": "Standard_L8s", "capacity": 2, "tier": - "Standard"}, "properties": {"enableStreamingIngest": true, "keyVaultProperties": - {"keyName": "", "keyVersion": "", "keyVaultUri": ""}, "enablePurge": true}, - "identity": {"type": "SystemAssigned"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - Content-Length: - - '274' - Content-Type: - - application/json - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1","name":"clitestcluster1","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"westus","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"properties":{"enableStreamingIngest":true,"keyVaultProperties":{"keyName":"","keyVersion":"","keyVaultUri":""},"enablePurge":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/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - cache-control: - - no-cache - content-length: - - '575' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:09:53 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:10:24 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=0b3e7bab7bc253429b01a84fcfe52f9eaf7487da416b1f2a0af2bf3349b35509;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:10:53 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:11:24 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '297' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:11:55 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=0b3e7bab7bc253429b01a84fcfe52f9eaf7487da416b1f2a0af2bf3349b35509;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '296' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:12:26 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '295' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:12:55 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=bf171968557f7483abc0913a42c0207b9017c552b91766911eca876583df224c;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '294' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:13:26 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '293' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:13:57 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '292' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:14:28 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '291' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:14:57 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=be0e0d186a8dd7beec8fdedbe9912fb4fc8ea63ab4795c4847feb9495ca10dd5;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '290' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:15:28 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:15:59 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:16:29 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=3e9a49b330654e4ac57f196a7fb95bb367210c5ce4e9c674a332fb882012a73e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:16:59 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:17:43 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:18:15 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=0b3e7bab7bc253429b01a84fcfe52f9eaf7487da416b1f2a0af2bf3349b35509;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:18:44 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=be0e0d186a8dd7beec8fdedbe9912fb4fc8ea63ab4795c4847feb9495ca10dd5;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:19:15 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '297' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Running","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:09:55.946449Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '468' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:19:45 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '296' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/fa5a2bf3-1536-435b-b991-36f5a3771a50?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/fa5a2bf3-1536-435b-b991-36f5a3771a50","name":"fa5a2bf3-1536-435b-b991-36f5a3771a50","status":"Succeeded","startTime":"2020-04-26T14:09:52.5245332Z","endTime":"2020-04-26T14:19:46.9146722Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"933e6cf1-6b39-47de-90d0-c3fb2e2873a0","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '473' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:20:16 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=0b3e7bab7bc253429b01a84fcfe52f9eaf7487da416b1f2a0af2bf3349b35509;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '295' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --identity-type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1","name":"clitestcluster1","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West - US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster1.westus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster1.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"provisioningState":"Succeeded"},"identity":{"principalId":"ed505612-ad56-4399-975f-e98ec3493dcf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' - headers: - cache-control: - - no-cache - content-length: - - '951' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:20:17 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=3e9a49b330654e4ac57f196a7fb95bb367210c5ce4e9c674a332fb882012a73e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster wait - Connection: - - keep-alive - ParameterSetName: - - --created --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1","name":"clitestcluster1","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West - US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster1.westus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster1.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"provisioningState":"Succeeded"},"identity":{"principalId":"ed505612-ad56-4399-975f-e98ec3493dcf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' - headers: - cache-control: - - no-cache - content-length: - - '951' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:20:18 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster show - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1","name":"clitestcluster1","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West - US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster1.westus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster1.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"provisioningState":"Succeeded"},"identity":{"principalId":"ed505612-ad56-4399-975f-e98ec3493dcf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' - headers: - cache-control: - - no-cache - content-length: - - '951' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:20:20 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/clusters?api-version=2020-02-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/noamgotest/providers/Microsoft.Kusto/Clusters/noamgotest1","name":"noamgotest1","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West - Europe","sku":{"name":"Standard_D14_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - at 3/22/2020 11:23:02 AM","uri":"https://noamgotest1.westeurope.kusto.windows.net","dataIngestionUri":"https://ingest-noamgotest1.westeurope.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/royi","name":"royi","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"East - US 2","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://royi.eastus2.kusto.windows.net","dataIngestionUri":"https://ingest-royi.eastus2.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/royikusto/providers/Microsoft.Kusto/Clusters/royitest","name":"royitest","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"East - US 2","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://royitest.eastus2.kusto.windows.net","dataIngestionUri":"https://ingest-royitest.eastus2.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://royitestkv.vault.azure.net","keyName":"TestKey","keyVersion":"0efe068347d641f4bfd20c692f05ca62"},"languageExtensions":{"value":[]},"enablePurge":null,"provisioningState":"Succeeded"},"identity":{"principalId":"a9a04853-74ee-4bde-b14c-25f100bb0d50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.Kusto/Clusters/astaubencli","name":"astaubencli","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West - US","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://astaubencli.westus.kusto.windows.net","dataIngestionUri":"https://ingest-astaubencli.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"provisioningState":"Succeeded"},"identity":{"principalId":"fddf12de-e076-4898-853b-c45b21242035","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.Kusto/Clusters/astaubentestcli","name":"astaubentestcli","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West - US","sku":{"name":"Standard_D12_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://astaubentestcli.westus.kusto.windows.net","dataIngestionUri":"https://ingest-astaubentestcli.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"provisioningState":"Failed"},"identity":{"principalId":"6b62bb67-0f54-4211-acf7-3f882cca2437","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestgcjzdmbmffg63ofutofl5dbnfwb2exetloz6e3f2eqiyzlof2p7zqtbabgm7gf3qnr55/providers/Microsoft.Kusto/Clusters/clitestcluster","name":"clitestcluster","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West - US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster.westus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"provisioningState":"Succeeded"},"identity":{"principalId":"9f650181-5483-4436-b925-ab60f7735b5c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1","name":"clitestcluster1","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West - US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster1.westus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster1.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"provisioningState":"Succeeded"},"identity":{"principalId":"ed505612-ad56-4399-975f-e98ec3493dcf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Kusto/Clusters/testnewkustocluster2","name":"testnewkustocluster2","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testnewkustocluster2.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-testnewkustocluster2.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Kusto/Clusters/testnewkustocluster","name":"testnewkustocluster","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testnewkustocluster.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-testnewkustocluster.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[{"languageExtensionName":"PYTHON"}]},"enablePurge":null,"provisioningState":"Succeeded"},"identity":{"principalId":"e599ae33-a117-4952-bb30-5fab29f6334f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gildev/providers/Microsoft.Kusto/Clusters/gilcluster","name":"gilcluster","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"East - US","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://gilcluster.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-gilcluster.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/orenrgilaysub/providers/Microsoft.Kusto/Clusters/oren2104","name":"oren2104","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://oren2104.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-oren2104.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/noamDRI/providers/Microsoft.Kusto/Clusters/noamskuissue","name":"noamskuissue","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"Australia - East","sku":{"name":"Standard_D14_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - at 3/22/2020 11:20:03 AM","uri":"https://noamskuissue.australiaeast.kusto.windows.net","dataIngestionUri":"https://ingest-noamskuissue.australiaeast.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"provisioningState":"Succeeded"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '10149' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:20:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - 9bc1b2c4-aeba-4819-b8fd-62f94f521268 - - f0de48c3-de1d-4686-9863-eeb52647ec02 - - ccf129ca-a033-456d-8f36-dfe9e29c3e3b - - 76cd14a5-72af-4ad9-83e5-8c42b7e47a92 - - c676ce11-1dfc-4083-8399-caed64142e08 - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster list - Connection: - - keep-alive - ParameterSetName: - - --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters?api-version=2020-02-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1","name":"clitestcluster1","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West - US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster1.westus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster1.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"provisioningState":"Succeeded"},"identity":{"principalId":"ed505612-ad56-4399-975f-e98ec3493dcf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '963' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:20:24 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=be0e0d186a8dd7beec8fdedbe9912fb4fc8ea63ab4795c4847feb9495ca10dd5;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/stop?api-version=2020-02-15 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - cache-control: - - no-cache - content-length: - - '0' - date: - - Sun, 26 Apr 2020 14:20:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15&operationResultResponseType=Location - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:20:56 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:21:26 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:21:57 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=bf171968557f7483abc0913a42c0207b9017c552b91766911eca876583df224c;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '297' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:22:27 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=3e9a49b330654e4ac57f196a7fb95bb367210c5ce4e9c674a332fb882012a73e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '296' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:22:57 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '295' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:23:28 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '294' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:23:58 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=be0e0d186a8dd7beec8fdedbe9912fb4fc8ea63ab4795c4847feb9495ca10dd5;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '293' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:24:29 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=68eda2333691511c17b2574619a79876611dd86be1c55aa848d58cf2408b7c02;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '292' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:25:00 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '291' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:25:30 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '290' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:26:00 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:26:31 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=bf171968557f7483abc0913a42c0207b9017c552b91766911eca876583df224c;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:27:01 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=68eda2333691511c17b2574619a79876611dd86be1c55aa848d58cf2408b7c02;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:27:32 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=0b3e7bab7bc253429b01a84fcfe52f9eaf7487da416b1f2a0af2bf3349b35509;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:28:02 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '285' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:28:33 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=3e9a49b330654e4ac57f196a7fb95bb367210c5ce4e9c674a332fb882012a73e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '284' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:29:03 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=be0e0d186a8dd7beec8fdedbe9912fb4fc8ea63ab4795c4847feb9495ca10dd5;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '283' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:29:33 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '282' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:30:04 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:30:35 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:31:05 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:31:35 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Running","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:20:26.9153567Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '463' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:32:06 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=68eda2333691511c17b2574619a79876611dd86be1c55aa848d58cf2408b7c02;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '285' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/9b2a246f-120f-43b8-9daf-a3acbb735502","name":"9b2a246f-120f-43b8-9daf-a3acbb735502","status":"Succeeded","startTime":"2020-04-26T14:20:26.2434761Z","endTime":"2020-04-26T14:32:09.042843Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"61770c44-d8d7-4ad9-932c-4b87f9d38389","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '466' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:32:37 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '284' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster stop - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/9b2a246f-120f-43b8-9daf-a3acbb735502?api-version=2020-02-15&operationResultResponseType=Location - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Sun, 26 Apr 2020 14:32:37 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=be0e0d186a8dd7beec8fdedbe9912fb4fc8ea63ab4795c4847feb9495ca10dd5;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '283' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/start?api-version=2020-02-15 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - cache-control: - - no-cache - content-length: - - '0' - date: - - Sun, 26 Apr 2020 14:32:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15&operationResultResponseType=Location - pragma: - - no-cache - set-cookie: - - ARRAffinity=0b3e7bab7bc253429b01a84fcfe52f9eaf7487da416b1f2a0af2bf3349b35509;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:33:10 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=bf171968557f7483abc0913a42c0207b9017c552b91766911eca876583df224c;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:33:40 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:34:11 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '297' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:34:42 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=68eda2333691511c17b2574619a79876611dd86be1c55aa848d58cf2408b7c02;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '296' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:35:12 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '295' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:35:45 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '294' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:36:16 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '293' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:36:46 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=bf171968557f7483abc0913a42c0207b9017c552b91766911eca876583df224c;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '292' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:37:17 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '291' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:37:48 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=0b3e7bab7bc253429b01a84fcfe52f9eaf7487da416b1f2a0af2bf3349b35509;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '290' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:38:17 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=be0e0d186a8dd7beec8fdedbe9912fb4fc8ea63ab4795c4847feb9495ca10dd5;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:38:48 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=bf171968557f7483abc0913a42c0207b9017c552b91766911eca876583df224c;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:39:19 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=3e9a49b330654e4ac57f196a7fb95bb367210c5ce4e9c674a332fb882012a73e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:39:50 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=68eda2333691511c17b2574619a79876611dd86be1c55aa848d58cf2408b7c02;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Running","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:32:41.7309008Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:40:20 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216","name":"ce96f0e6-aa0d-4157-bfd8-20845d9bc216","status":"Succeeded","startTime":"2020-04-26T14:32:40.7152748Z","endTime":"2020-04-26T14:40:46.5162919Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterResume","RootActivityId":"fef514d5-3fd1-4577-860d-a4506c687d0c","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '466' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:40:51 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster start - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/ce96f0e6-aa0d-4157-bfd8-20845d9bc216?api-version=2020-02-15&operationResultResponseType=Location - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Sun, 26 Apr 2020 14:40:51 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster list-sku - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/skus?api-version=2020-02-15 - response: - body: - string: '{"value":[{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_D14_v2","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_D13_v2","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_L8s","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_L16s","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_D11_v2","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":8,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_D12_v2","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":16,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_L4s","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":16,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_L8s_v2","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_L16s_v2","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E2a_v4","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E4a_v4","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E8a_v4","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E16a_v4","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locationInfo":[{"location":"West - US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '4726' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:40:53 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=68eda2333691511c17b2574619a79876611dd86be1c55aa848d58cf2408b7c02;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster list-sku - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/skus?api-version=2020-02-15 - response: - body: - string: '{"value":[{"resourceType":"clusters","name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' - headers: - cache-control: - - no-cache - content-length: - - '60499' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:40:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "ReadWrite", "properties": {"softDeletePeriod": - "P1D"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database create - Connection: - - keep-alive - Content-Length: - - '86' - Content-Type: - - application/json - ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/databases/KustoDatabase8?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/Databases/KustoDatabase8","name":"clitestcluster1/KustoDatabase8","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/ce74dd85-6a29-4afc-9a45-730dc4063881?api-version=2020-02-15 - cache-control: - - no-cache - content-length: - - '435' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:40:56 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=bf171968557f7483abc0913a42c0207b9017c552b91766911eca876583df224c;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/ce74dd85-6a29-4afc-9a45-730dc4063881?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/ce74dd85-6a29-4afc-9a45-730dc4063881","name":"ce74dd85-6a29-4afc-9a45-730dc4063881","status":"Succeeded","startTime":"2020-04-26T14:40:57.2819996Z","endTime":"2020-04-26T14:40:59.0007528Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"175e0306-73bc-4dae-ac11-6ad2ab3c7174","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '466' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:41:26 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=68eda2333691511c17b2574619a79876611dd86be1c55aa848d58cf2408b7c02;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/databases/KustoDatabase8?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/Databases/KustoDatabase8","name":"clitestcluster1/KustoDatabase8","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"West - US","kind":"ReadWrite","tags":{},"properties":{"isFollowed":false,"softDeletePeriodInDays":1,"softDeletePeriod":"P1D","hotCachePeriodInDays":0,"hotCachePeriod":null,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:41:27 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database list - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/databases?api-version=2020-02-15 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/Databases/KustoDatabase8","name":"clitestcluster1/KustoDatabase8","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"West - US","kind":"ReadWrite","properties":{"isFollowed":false,"softDeletePeriodInDays":1,"softDeletePeriod":"P1D","hotCachePeriodInDays":0,"hotCachePeriod":null,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '568' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:41:29 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=68eda2333691511c17b2574619a79876611dd86be1c55aa848d58cf2408b7c02;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database show - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --database-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/databases/KustoDatabase8?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/Databases/KustoDatabase8","name":"clitestcluster1/KustoDatabase8","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"West - US","kind":"ReadWrite","tags":{},"properties":{"isFollowed":false,"softDeletePeriodInDays":1,"softDeletePeriod":"P1D","hotCachePeriodInDays":0,"hotCachePeriod":null,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:41:31 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "ReadWrite", "properties": {"softDeletePeriod": "P1D"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database update - Connection: - - keep-alive - Content-Length: - - '64' - Content-Type: - - application/json - ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/databases/KustoDatabase8?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/Databases/KustoDatabase8","name":"clitestcluster1/KustoDatabase8","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"West - US","kind":"ReadWrite","tags":{},"properties":{"softDeletePeriod":"P1D","provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationResults/cb091126-c134-49eb-af0b-579fe6a6d285?api-version=2020-02-15 - cache-control: - - no-cache - content-length: - - '446' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:41:33 GMT - etag: - - '""' - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cb091126-c134-49eb-af0b-579fe6a6d285?api-version=2020-02-15&operationResultResponseType=Location - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cb091126-c134-49eb-af0b-579fe6a6d285?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cb091126-c134-49eb-af0b-579fe6a6d285","name":"cb091126-c134-49eb-af0b-579fe6a6d285","status":"Succeeded","startTime":"2020-04-26T14:41:34.2460324Z","endTime":"2020-04-26T14:41:36.6376793Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"58958202-8da1-4028-8440-aaad800038bf","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '467' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:42:04 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database update - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/databases/KustoDatabase8?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/Databases/KustoDatabase8","name":"clitestcluster1/KustoDatabase8","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"West - US","kind":"ReadWrite","tags":{},"properties":{"isFollowed":false,"softDeletePeriodInDays":1,"softDeletePeriod":"P1D","hotCachePeriodInDays":0,"hotCachePeriod":null,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:42:04 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=68eda2333691511c17b2574619a79876611dd86be1c55aa848d58cf2408b7c02;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"principalId": "d9a1f322-1293-4595-91e3-f54f8bb34725", - "role": "Admin", "tenantId": "33e01921-4d64-4f8c-a055-5bdaffd5e33d", "principalType": - "App"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database-principal-assignment create - Connection: - - keep-alive - Content-Length: - - '164' - Content-Type: - - application/json - ParameterSetName: - - --cluster-name --database-name --principal-id --principal-type --role --tenant-id - --principal-assignment-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/databases/Kustodatabase8/principalAssignments/kustoprincipal1?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/Databases/Kustodatabase8/PrincipalAssignments/kustoprincipal1","name":"clitestcluster1/Kustodatabase8/kustoprincipal1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","etag":"\"\"","properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"Admin","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","principalType":"App","provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationResults/4f27fac6-979e-460e-a903-6e82f39e1de5?api-version=2020-02-15 - cache-control: - - no-cache - content-length: - - '585' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:42:07 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database-principal-assignment create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --database-name --principal-id --principal-type --role --tenant-id - --principal-assignment-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4f27fac6-979e-460e-a903-6e82f39e1de5?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/4f27fac6-979e-460e-a903-6e82f39e1de5","name":"4f27fac6-979e-460e-a903-6e82f39e1de5","status":"Succeeded","startTime":"2020-04-26T14:42:07.8283352Z","endTime":"2020-04-26T14:42:07.9845836Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseAddPrincipals","RootActivityId":"0dd674f5-e23a-4f02-a3e5-3d0b43406789","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '474' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:42:37 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database-principal-assignment create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --database-name --principal-id --principal-type --role --tenant-id - --principal-assignment-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/databases/Kustodatabase8/principalAssignments/kustoprincipal1?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/Databases/Kustodatabase8/PrincipalAssignments/kustoprincipal1","name":"clitestcluster1/Kustodatabase8/kustoprincipal1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","etag":"\"\"","tags":{},"properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"Admin","principalType":"App","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","tenantName":"MS - Azure Cloud","principalName":"KustoResourceProvider","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '666' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:42:37 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=bf171968557f7483abc0913a42c0207b9017c552b91766911eca876583df224c;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database-principal-assignment wait - Connection: - - keep-alive - ParameterSetName: - - --created --cluster-name --database-name --principal-assignment-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/databases/Kustodatabase8/principalAssignments/kustoprincipal1?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/Databases/Kustodatabase8/PrincipalAssignments/kustoprincipal1","name":"clitestcluster1/Kustodatabase8/kustoprincipal1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","etag":"\"\"","tags":{},"properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"Admin","principalType":"App","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","tenantName":"MS - Azure Cloud","principalName":"KustoResourceProvider","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '666' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:42:40 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database list-principal - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --cluster-name --database-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/databases/Kustodatabase8/listPrincipals?api-version=2020-02-15 - response: - body: - string: '{"value":[{"name":"KustoResourceProvider","role":"Admin","type":"App","fqn":"aadapp=d9a1f322-1293-4595-91e3-f54f8bb34725;33e01921-4d64-4f8c-a055-5bdaffd5e33d","email":"","appId":"d9a1f322-1293-4595-91e3-f54f8bb34725","tenantName":"MS - Azure Cloud"},{"name":"Assaf Taubenfeld","role":"Admin","type":"User","fqn":"aaduser=53d8fc23-618e-49fa-ae3f-ae65cc60aa37;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"astauben@microsoft.com","appId":"","tenantName":"Microsoft"}]}' - headers: - cache-control: - - no-cache - content-length: - - '465' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:42:42 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database-principal-assignment show - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --database-name --principal-assignment-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/databases/Kustodatabase8/principalAssignments/kustoprincipal1?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/Databases/Kustodatabase8/PrincipalAssignments/kustoprincipal1","name":"clitestcluster1/Kustodatabase8/kustoprincipal1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","etag":"\"\"","tags":{},"properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"Admin","principalType":"App","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","tenantName":"MS - Azure Cloud","principalName":"KustoResourceProvider","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '666' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:42:44 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database-principal-assignment delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --cluster-name --database-name --principal-assignment-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/databases/Kustodatabase8/principalAssignments/kustoprincipal1?api-version=2020-02-15 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationResults/4c7c7ec0-cf10-4c22-852a-b0b9f7c37736?api-version=2020-02-15 - cache-control: - - no-cache - content-length: - - '0' - date: - - Sun, 26 Apr 2020 14:42:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4c7c7ec0-cf10-4c22-852a-b0b9f7c37736?api-version=2020-02-15&operationResultResponseType=Location - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database-principal-assignment delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --database-name --principal-assignment-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/4c7c7ec0-cf10-4c22-852a-b0b9f7c37736?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/4c7c7ec0-cf10-4c22-852a-b0b9f7c37736","name":"4c7c7ec0-cf10-4c22-852a-b0b9f7c37736","status":"Succeeded","startTime":"2020-04-26T14:42:46.7078712Z","endTime":"2020-04-26T14:42:46.8484653Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseDropPrincipals","RootActivityId":"0ce88987-e4a2-4ccb-8c0f-36be5debd3bc","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '475' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:43:16 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"principalId": "d9a1f322-1293-4595-91e3-f54f8bb34725", - "role": "AllDatabasesViewer", "tenantId": "33e01921-4d64-4f8c-a055-5bdaffd5e33d", - "principalType": "App"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster-principal-assignment create - Connection: - - keep-alive - Content-Length: - - '177' - Content-Type: - - application/json - ParameterSetName: - - --cluster-name --principal-id --principal-type --role --tenant-id --principal-assignment-name - --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/principalAssignments/kustoprincipal1?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/PrincipalAssignments/kustoprincipal1","name":"clitestcluster1/kustoprincipal1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","etag":"\"\"","properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"AllDatabasesViewer","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","principalType":"App","provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationResults/75ccf262-4034-433a-be79-fbe18d12cd7e?api-version=2020-02-15 - cache-control: - - no-cache - content-length: - - '548' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:43:19 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=bf171968557f7483abc0913a42c0207b9017c552b91766911eca876583df224c;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster-principal-assignment create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --principal-id --principal-type --role --tenant-id --principal-assignment-name - --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/75ccf262-4034-433a-be79-fbe18d12cd7e?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/75ccf262-4034-433a-be79-fbe18d12cd7e","name":"75ccf262-4034-433a-be79-fbe18d12cd7e","status":"Succeeded","startTime":"2020-04-26T14:43:19.9996134Z","endTime":"2020-04-26T14:43:22.4373187Z","percentComplete":1.0,"properties":{"OperationKind":"ServicePrincipalAssignmentsAdd","RootActivityId":"7b48090d-0bda-477a-ba77-88eb91089971","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '483' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:43:49 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster-principal-assignment create - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --principal-id --principal-type --role --tenant-id --principal-assignment-name - --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/principalAssignments/kustoprincipal1?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/PrincipalAssignments/kustoprincipal1","name":"clitestcluster1/kustoprincipal1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","etag":"\"\"","tags":{},"properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"AllDatabasesViewer","principalType":"App","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","tenantName":"MS - Azure Cloud","principalName":"KustoResourceProvider","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '629' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:43:50 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=68eda2333691511c17b2574619a79876611dd86be1c55aa848d58cf2408b7c02;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster-principal-assignment wait - Connection: - - keep-alive - ParameterSetName: - - --created --principal-assignment-name --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/principalAssignments/kustoprincipal1?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/PrincipalAssignments/kustoprincipal1","name":"clitestcluster1/kustoprincipal1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","etag":"\"\"","tags":{},"properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"AllDatabasesViewer","principalType":"App","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","tenantName":"MS - Azure Cloud","principalName":"KustoResourceProvider","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '629' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:43:52 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=0b3e7bab7bc253429b01a84fcfe52f9eaf7487da416b1f2a0af2bf3349b35509;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster-principal-assignment show - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --principal-assignment-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/principalAssignments/kustoprincipal1?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster1/PrincipalAssignments/kustoprincipal1","name":"clitestcluster1/kustoprincipal1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","etag":"\"\"","tags":{},"properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"AllDatabasesViewer","principalType":"App","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","tenantName":"MS - Azure Cloud","principalName":"KustoResourceProvider","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '629' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:43:54 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --cluster-name --database-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1/databases/KustoDatabase8?api-version=2020-02-15 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationResults/58a2ad21-df5f-470a-8150-76f38a0b6327?api-version=2020-02-15 - cache-control: - - no-cache - content-length: - - '0' - date: - - Sun, 26 Apr 2020 14:43:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/58a2ad21-df5f-470a-8150-76f38a0b6327?api-version=2020-02-15&operationResultResponseType=Location - pragma: - - no-cache - set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto database delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --database-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/58a2ad21-df5f-470a-8150-76f38a0b6327?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/58a2ad21-df5f-470a-8150-76f38a0b6327","name":"58a2ad21-df5f-470a-8150-76f38a0b6327","status":"Succeeded","startTime":"2020-04-26T14:43:56.875914Z","endTime":"2020-04-26T14:44:02.1435944Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseDelete","RootActivityId":"7f220583-471c-41a2-849c-4599127f954b","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '466' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:44:27 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=be0e0d186a8dd7beec8fdedbe9912fb4fc8ea63ab4795c4847feb9495ca10dd5;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster1?api-version=2020-02-15 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - cache-control: - - no-cache - content-length: - - '0' - date: - - Sun, 26 Apr 2020 14:44:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15&operationResultResponseType=Location - pragma: - - no-cache - set-cookie: - - ARRAffinity=3e9a49b330654e4ac57f196a7fb95bb367210c5ce4e9c674a332fb882012a73e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:44:59 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:45:30 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:46:02 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '297' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:46:32 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '296' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:47:02 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '295' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:47:34 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '294' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:48:03 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '293' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:48:34 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=5e5ff28fa92b1291bfb4f40aa52246624376877d08d84d2a201c9bf6f1ffae6d;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '292' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:49:05 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '291' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:49:36 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '290' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:50:05 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=d29ec50e2353fd96ac8ed72619c1a2fb36a21ed6c3f22a5075cd2c606bb89829;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:50:37 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:51:07 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=be0e0d186a8dd7beec8fdedbe9912fb4fc8ea63ab4795c4847feb9495ca10dd5;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:51:37 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=bf171968557f7483abc0913a42c0207b9017c552b91766911eca876583df224c;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:52:09 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '285' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:52:38 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '284' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:53:09 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '283' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:53:40 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=3e9a49b330654e4ac57f196a7fb95bb367210c5ce4e9c674a332fb882012a73e;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '282' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:54:11 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=68eda2333691511c17b2574619a79876611dd86be1c55aa848d58cf2408b7c02;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '281' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:54:41 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=be0e0d186a8dd7beec8fdedbe9912fb4fc8ea63ab4795c4847feb9495ca10dd5;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '280' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:55:12 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=0b3e7bab7bc253429b01a84fcfe52f9eaf7487da416b1f2a0af2bf3349b35509;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:55:42 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Running","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:44:31.2169563Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Running"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:56:12 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group - User-Agent: - - AZURECLI/2.4.0 azsdk-python-mgmt-kusto/0.1.0 Python/3.8.2 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2?api-version=2020-02-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","name":"cbf5ecae-0d07-4240-87eb-0e1c6e7320a2","status":"Succeeded","startTime":"2020-04-26T14:44:30.4669341Z","endTime":"2020-04-26T14:56:24.5873744Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"b2ef3fc0-8651-4131-8d91-90eca8d6a9b3","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '466' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 26 Apr 2020 14:56:44 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=348d1e7264ad0063baa3036f92cd47d46e91963aabd2dc4d51adfdac15009271;Path=/;HttpOnly;Domain=rp-kustorpwus-website.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -version: 1 diff --git a/src/kusto/azext_kusto/manual/tests/latest/recordings/test_kusto_Scenario.yaml b/src/kusto/azext_kusto/manual/tests/latest/recordings/test_kusto_Scenario.yaml new file mode 100644 index 00000000000..0c443480092 --- /dev/null +++ b/src/kusto/azext_kusto/manual/tests/latest/recordings/test_kusto_Scenario.yaml @@ -0,0 +1,13832 @@ +interactions: +- request: + body: '{"location": "westus2", "sku": {"name": "Standard_D11_v2", "capacity": + 2, "tier": "Standard"}, "identity": {"type": "SystemAssigned"}, "properties": + {"enableDiskEncryption": false, "enableStreamingIngest": true, "keyVaultProperties": + {"keyName": "", "keyVersion": "", "keyVaultUri": ""}, "enablePurge": true, "enableDoubleEncryption": + false, "publicNetworkAccess": "Enabled", "allowedIpRangeList": ["0.0.0.0/0"], + "engineType": "V3", "enableAutoStop": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + Content-Length: + - '457' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"westus2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"properties":{"state":"Creating","enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":{"keyName":"","keyVersion":"","keyVaultUri":""},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Creating"},"identity":{"type":"SystemAssigned"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '756' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:35:55 GMT + etag: + - '""' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:36:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:36:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:37:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:37:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:38:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:38:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:39:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:39:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:40:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:40:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:41:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:41:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:42:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:43:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:43:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:44:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '284' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:44:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '283' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:45:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:45:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:46:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:46:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:47:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:47:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:48:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '284' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:48:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '283' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:49:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '282' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:49:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '281' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:50:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:50:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:51:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:51:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:52:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:52:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '284' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:53:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '283' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Succeeded","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:53:28.2381174Z","percentComplete":1.0,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '447' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:53:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '282' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T09:53:28.1286922Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterclitest7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterclitest7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"e46224d2-b8e6-4517-95ba-c0fd25e1fb94","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + headers: + cache-control: + - no-cache + content-length: + - '1239' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:53:40 GMT + etag: + - '"2021-10-14T09:53:28.1286922Z"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster wait + Connection: + - keep-alive + ParameterSetName: + - --created --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T09:53:28.1286922Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterclitest7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterclitest7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"e46224d2-b8e6-4517-95ba-c0fd25e1fb94","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + headers: + cache-control: + - no-cache + content-length: + - '1239' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:53:42 GMT + etag: + - '"2021-10-14T09:53:28.1286922Z"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"principalId": "ad064aa1-8b51-41ec-9c64-0d3037577d63", + "role": "AllDatabasesAdmin", "principalType": "App"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment create + Connection: + - keep-alive + Content-Length: + - '124' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --principal-assignment-name --principal-type --principal-id + --role --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/testcli1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"AllDatabasesAdmin","principalType":"App","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/a8be3e4a-4574-409d-80bc-55171009adfc?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '479' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:53:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --principal-assignment-name --principal-type --principal-id + --role --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a8be3e4a-4574-409d-80bc-55171009adfc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a8be3e4a-4574-409d-80bc-55171009adfc","name":"a8be3e4a-4574-409d-80bc-55171009adfc","status":"Succeeded","startTime":"2021-10-14T09:53:45.3039442Z","endTime":"2021-10-14T09:53:46.2104903Z","percentComplete":1.0,"properties":{"operationKind":"ServicePrincipalAssignmentsAdd","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '458' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:54:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - b48d039e-7dc5-45cc-9e59-d24e38cb8770 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --principal-assignment-name --principal-type --principal-id + --role --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/testcli1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"AllDatabasesAdmin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '582' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:54:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Standard_D11_v2", "capacity": + 2, "tier": "Standard"}, "identity": {"type": "SystemAssigned"}, "properties": + {"enableDiskEncryption": false, "enableStreamingIngest": true, "enablePurge": + true, "enableDoubleEncryption": false, "publicNetworkAccess": "Enabled", "engineType": + "V3", "enableAutoStop": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + Content-Length: + - '344' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"westus2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"properties":{"state":"Creating","enableDiskEncryption":false,"enableStreamingIngest":true,"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","publicNetworkAccess":"Enabled","enableAutoStop":true,"provisioningState":"Creating"},"identity":{"type":"SystemAssigned"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '650' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:54:25 GMT + etag: + - '""' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:54:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:55:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:55:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:56:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:56:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:57:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:57:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:58:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:58:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:59:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:59:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:00:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:00:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:01:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:02:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:02:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:03:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '284' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:03:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '283' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:04:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '282' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:04:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '281' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:05:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:05:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:06:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:06:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:07:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:07:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:08:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '284' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:08:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '283' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:09:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '282' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:09:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '281' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:10:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:10:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:11:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Succeeded","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T10:11:30.4369982Z","percentComplete":1.0,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '447' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:11:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:11:30.3312108Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterleader7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterleader7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"152df398-3533-4a5c-acfe-47800f4ce5ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + headers: + cache-control: + - no-cache + content-length: + - '1224' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:11:37 GMT + etag: + - '"2021-10-14T10:11:30.3312108Z"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster wait + Connection: + - keep-alive + ParameterSetName: + - --created --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:11:30.3312108Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterleader7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterleader7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"152df398-3533-4a5c-acfe-47800f4ce5ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + headers: + cache-control: + - no-cache + content-length: + - '1224' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:11:40 GMT + etag: + - '"2021-10-14T10:11:30.3312108Z"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "kind": "ReadWrite", "properties": {"softDeletePeriod": + "P1D"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database create + Connection: + - keep-alive + Content-Length: + - '87' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"westus2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/4d64149e-e064-4c9e-b211-56bbf0fefe9b?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '430' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:11:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/4d64149e-e064-4c9e-b211-56bbf0fefe9b?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/4d64149e-e064-4c9e-b211-56bbf0fefe9b","name":"4d64149e-e064-4c9e-b211-56bbf0fefe9b","status":"Succeeded","startTime":"2021-10-14T10:11:43.3397253Z","endTime":"2021-10-14T10:11:46.4649123Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseCreate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '440' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 9ae4baa7-7af7-4669-9ce3-397253ce9d65 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","statistics":{"size":0.0},"isFollowed":false,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '478' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"principalId": "ad064aa1-8b51-41ec-9c64-0d3037577d63", + "role": "Admin", "principalType": "App"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment create + Connection: + - keep-alive + Content-Length: + - '112' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --role --principal-type --principal-id --principal-assignment-name + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/kustoDatabase/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/kustoDatabase/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/kustoDatabase/testcli1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"Admin","principalType":"App","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/ce54819e-3325-4cf9-971b-e8f500172b47?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '515' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --role --principal-type --principal-id --principal-assignment-name + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/ce54819e-3325-4cf9-971b-e8f500172b47?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/ce54819e-3325-4cf9-971b-e8f500172b47","name":"ce54819e-3325-4cf9-971b-e8f500172b47","status":"Succeeded","startTime":"2021-10-14T10:12:16.7710074Z","endTime":"2021-10-14T10:12:20.755777Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseAddPrincipals","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '448' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 077b5f97-62e8-4e14-a65a-1fe6fa6268db + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --role --principal-type --principal-id --principal-assignment-name + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/kustoDatabase/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/kustoDatabase/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/kustoDatabase/testcli1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"Admin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '618' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"value": [{"role": "Admin", "name": "clitest", "type": "App", "appId": + "7bd74dc8-dd5f-4cee-8e64-866138abcf89"}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database add-principal + Connection: + - keep-alive + Content-Length: + - '113' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/addPrincipals?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"Zohar Hen (zoharhen@microsoft.com)","role":"Admin","type":"User","fqn":"aaduser=0f54ad84-ce5e-49d1-90b3-c553e7c96382;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"zoharhen@microsoft.com","appId":"","tenantName":"Microsoft"},{"name":"testcli1","role":"Admin","type":"App","fqn":"aadapp=ad064aa1-8b51-41ec-9c64-0d3037577d63;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"","appId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","tenantName":"Microsoft"},{"name":"clitest","role":"Admin","type":"App","fqn":"aadapp=7bd74dc8-dd5f-4cee-8e64-866138abcf89;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"","appId":"7bd74dc8-dd5f-4cee-8e64-866138abcf89","tenantName":"Microsoft"}]}' + headers: + cache-control: + - no-cache + content-length: + - '684' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"databaseName": "KustoDatabase", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7", + "defaultPrincipalsModificationKind": "Union", "tableLevelSharingProperties": + {"tablesToInclude": ["Table1"], "tablesToExclude": ["Table2"], "externalTablesToInclude": + ["ExternalTable1"], "externalTablesToExclude": ["ExternalTable2"], "materializedViewsToInclude": + ["MaterializedViewTable1"], "materializedViewsToExclude": ["MaterializedViewTable2"]}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration create + Connection: + - keep-alive + Content-Length: + - '646' + Content-Type: + - application/json + ParameterSetName: + - --name --cluster-name --location --cluster-resource-id --database-name --default-principals-modification-kind + --table-level-sharing-properties --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"westus2","properties":{"databaseName":"KustoDatabase","clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/e2f9e947-9cbc-463c-a96e-87fb707925aa?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '1050' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration create + Connection: + - keep-alive + ParameterSetName: + - --name --cluster-name --location --cluster-resource-id --database-name --default-principals-modification-kind + --table-level-sharing-properties --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/e2f9e947-9cbc-463c-a96e-87fb707925aa?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/e2f9e947-9cbc-463c-a96e-87fb707925aa","name":"e2f9e947-9cbc-463c-a96e-87fb707925aa","status":"Succeeded","startTime":"2021-10-14T10:12:51.6248154Z","endTime":"2021-10-14T10:12:53.969469Z","percentComplete":1.0,"properties":{"operationKind":"FollowerDatabaseCreate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '447' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:13:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - c68e6d18-2fa7-427a-8ca6-8b577e78937b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration create + Connection: + - keep-alive + ParameterSetName: + - --name --cluster-name --location --cluster-resource-id --database-name --default-principals-modification-kind + --table-level-sharing-properties --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"West + US 2","properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","databaseName":"KustoDatabase","attachedDatabaseNames":["KustoDatabase"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1095' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:13:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration wait + Connection: + - keep-alive + ParameterSetName: + - --created --name --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"West + US 2","properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","databaseName":"KustoDatabase","attachedDatabaseNames":["KustoDatabase"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1095' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:13:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "kind": "EventHub", "properties": {"eventHubResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1", + "consumerGroup": "$Default", "compression": "None"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub create + Connection: + - keep-alive + Content-Length: + - '282' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --name --database-name --location --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"westus2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","compression":"None","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/19fd49c7-f5bc-405c-8af3-7d38a5a6bdc4?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '685' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:13:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --database-name --location --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/19fd49c7-f5bc-405c-8af3-7d38a5a6bdc4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/19fd49c7-f5bc-405c-8af3-7d38a5a6bdc4","name":"19fd49c7-f5bc-405c-8af3-7d38a5a6bdc4","status":"Succeeded","startTime":"2021-10-14T10:13:27.1914549Z","endTime":"2021-10-14T10:13:53.585812Z","percentComplete":1.0,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:13:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 8ddecfab-b04b-41aa-b678-2f5947781321 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --database-name --location --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '800' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:13:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"scriptUrl": "https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt", + "scriptUrlSasToken": "sp=r&st=2021-10-10T13:27:37Z&se=2024-09-06T21:27:37Z&sv=2020-08-04&sr=b&sig=bQv3g3VpesJ3nv9Fbs%2Bc0V0PQby9AY%2BFLzQBxk5a9us%3D", + "continueOnErrors": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script create + Connection: + - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","scriptUrlSasToken":"","continueOnErrors":true,"provisioningState":"Creating"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/2ba526ef-5416-490e-9088-af97dcf13e9f?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '768' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:14:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/2ba526ef-5416-490e-9088-af97dcf13e9f?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/2ba526ef-5416-490e-9088-af97dcf13e9f","name":"2ba526ef-5416-490e-9088-af97dcf13e9f","status":"Succeeded","startTime":"2021-10-14T10:14:00.9000319Z","endTime":"2021-10-14T10:14:02.1397486Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseScriptCreateOrUpdate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '456' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:14:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - ce553c1f-248c-4a0c-a24d-a417730f61ba + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:14:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script wait + Connection: + - keep-alive + ParameterSetName: + - --created --cluster-name --database-name --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:14:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"privateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest", + "groupId": "blob", "requestMessage": "Please Approve."}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + Content-Length: + - '228' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '656' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:14:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:15:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:15:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:16:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:16:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:17:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Succeeded","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:17:27.7919159Z","percentComplete":1.0,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '464' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:17:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:34.8875256Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '893' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:17:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint wait + Connection: + - keep-alive + ParameterSetName: + - --created --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:34.8875256Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '893' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:17:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"value": [{"languageExtensionName": "PYTHON"}, {"languageExtensionName": + "R"}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + Content-Length: + - '80' + Content-Type: + - application/json + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/addLanguageExtensions?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:17:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:18:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:18:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:19:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:19:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:20:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:20:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:21:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:21:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:22:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:22:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:23:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Succeeded","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:23:31.0786822Z","percentComplete":1.0,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '453' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:23:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:23:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/testrg?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg","name":"testrg","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '217' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:23:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/MyVnet/subnets/MySubnet", + "properties": {"privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}, "manualPrivateLinkServiceConnections": [{"name": "test", "properties": + {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7", + "groupIds": ["cluster"]}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + Content-Length: + - '644' + Content-Type: + - application/json + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4?api-version=2021-03-01 + response: + body: + string: "{\r\n \"name\": \"kustoPrivateEndpoint4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4\",\r\n + \ \"etag\": \"W/\\\"bb59d60a-dbea-490c-9dad-3c67534f198d\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"southcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"bac3d709-3097-4909-b763-380a3c398bd7\",\r\n \"privateLinkServiceConnections\": + [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": + \"test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4/manualPrivateLinkServiceConnections/test\",\r\n + \ \"etag\": \"W/\\\"bb59d60a-dbea-490c-9dad-3c67534f198d\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7\",\r\n + \ \"groupIds\": [\r\n \"cluster\"\r\n ],\r\n \"privateLinkServiceConnectionState\": + {\r\n \"status\": \"Pending\",\r\n \"description\": + \"Awaiting Approval\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n + \ },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n + \ }\r\n ],\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/MyVnet/subnets/MySubnet\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/networkInterfaces/kustoPrivateEndpoint4.nic.36a27415-8490-45cd-90d9-d26d2ec8969d\"\r\n + \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/75309b42-b872-4bb9-a74a-a433aac557b6?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '1977' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:23:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b389b9cc-6bc8-42be-b863-a4c0fc7d77a3 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/75309b42-b872-4bb9-a74a-a433aac557b6?api-version=2021-03-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2952e66e-330d-45fa-a7a8-55ed5b8568e6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/75309b42-b872-4bb9-a74a-a433aac557b6?api-version=2021-03-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2c68fdf3-ca9e-43f6-90c8-00268417cd7a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/75309b42-b872-4bb9-a74a-a433aac557b6?api-version=2021-03-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 76b69619-123d-4843-bd33-00e1776da72a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4?api-version=2021-03-01 + response: + body: + string: "{\r\n \"name\": \"kustoPrivateEndpoint4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4\",\r\n + \ \"etag\": \"W/\\\"dd2b53b0-a556-4ce5-aba8-cf0b9ce6d18a\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"southcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"bac3d709-3097-4909-b763-380a3c398bd7\",\r\n \"privateLinkServiceConnections\": + [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": + \"test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4/manualPrivateLinkServiceConnections/test\",\r\n + \ \"etag\": \"W/\\\"dd2b53b0-a556-4ce5-aba8-cf0b9ce6d18a\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7\",\r\n + \ \"groupIds\": [\r\n \"cluster\"\r\n ],\r\n \"privateLinkServiceConnectionState\": + {\r\n \"status\": \"Pending\",\r\n \"description\": + \"\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n + \ \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n + \ }\r\n ],\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/MyVnet/subnets/MySubnet\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/networkInterfaces/kustoPrivateEndpoint4.nic.36a27415-8490-45cd-90d9-d26d2ec8969d\"\r\n + \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1961' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:36 GMT + etag: + - W/"dd2b53b0-a556-4ce5-aba8-cf0b9ce6d18a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 71c7ab15-4f10-4af1-a812-ec8464a9f27a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '768' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"privateLinkServiceConnectionState": {"status": "Approved", + "description": "Approved by test"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection create + Connection: + - keep-alive + Content-Length: + - '112' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --private-link-service-connection-state --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","name":"kustoclusterclitest7/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","properties":{"properties":{"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:24:41.1095664Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:24:41.1095664Z"},"provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/3f7582fa-732a-42e3-a72f-7fe68c6ce5cf?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '1123' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --private-link-service-connection-state --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/3f7582fa-732a-42e3-a72f-7fe68c6ce5cf?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/3f7582fa-732a-42e3-a72f-7fe68c6ce5cf","name":"3f7582fa-732a-42e3-a72f-7fe68c6ce5cf","status":"Succeeded","startTime":"2021-10-14T10:24:41.9898956Z","endTime":"2021-10-14T10:25:09.8667836Z","percentComplete":1.0,"properties":{"operationKind":"PrivateEndpointConnectionAlterCommand","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '465' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3b0c50e4-3339-432f-960c-e145228975b3 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --private-link-service-connection-state --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test","actionsRequired":null}}}' + headers: + cache-control: + - no-cache + content-length: + - '771' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection wait + Connection: + - keep-alive + ParameterSetName: + - --created --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test","actionsRequired":null}}}' + headers: + cache-control: + - no-cache + content-length: + - '771' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster show + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:23:31.0006223Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterclitest7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterclitest7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[{"languageExtensionName":"PYTHON"},{"languageExtensionName":"R"}]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"e46224d2-b8e6-4517-95ba-c0fd25e1fb94","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + headers: + cache-control: + - no-cache + content-length: + - '1303' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:16 GMT + etag: + - '"2021-10-14T10:23:31.0006223Z"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/testcli1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"AllDatabasesAdmin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '582' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","statistics":{"size":0.0},"isFollowed":true,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '477' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/KustoDatabase/testcli1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"Admin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '618' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration show + Connection: + - keep-alive + ParameterSetName: + - --name --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"West + US 2","properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","databaseName":"KustoDatabase","attachedDatabaseNames":["KustoDatabase"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1095' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '800' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:34.8875256Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '893' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test","actionsRequired":null}}}' + headers: + cache-control: + - no-cache + content-length: + - '771' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/clusters?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-rg/providers/Microsoft.Kusto/Clusters/safrankekustoneu","name":"safrankekustoneu","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:05:55.0302499Z\"","location":"North + Europe","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:57:05 +00:00","uri":"https://safrankekustoneu.northeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustoneu.northeurope.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"66d5a66a-678b-40fa-93e5-7a9f881feb55","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kustorpe2e/providers/Microsoft.Kusto/Clusters/rpe2estoppedNEU","name":"rpe2estoppedNEU","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T08:53:29.3154570Z\"","location":"North + Europe","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{"MachineName":"88D151D325CB","ArmClientRequestId":"RPE2E;2021.07.15.0449-GA-12cb1c943-devCM","Test + Start Time":"7/15/2021 5:43:53 AM"},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-14 08:48:09 +00:00","uri":"https://rpe2estoppedneu.northeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-rpe2estoppedneu.northeurope.dev.kusto.windows.net","trustedExternalTenants":[{"value":"fd98e228-2977-4102-9e9f-f9344e4bc05d"},{"value":"72ca4892-87f6-422f-8e14-239d88d85900"},{"value":"42619785-2ad4-478e-84a6-4c0d7dd37179"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amir-test-rg-synapse/providers/Microsoft.Synapse/workspaces/amirleshman-neu45/kustoPools/amirleshmanneupool1","name":"amirleshman-neu45/amirleshmanneupool1","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-06T08:36:32.4331582Z\"","location":"North + Europe","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://amirleshmanneupool1.amirleshman-neu45.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-amirleshmanneupool1.amirleshman-neu45.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1013200258ProvisionAndManageSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2epam10132002-wksp/kustoPools/rpe2epam10132002pool","name":"rpe2epam10132002-wksp/rpe2epam10132002pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-13T20:24:23.7140798Z\"","location":"North + Europe","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2epam10132002pool.rpe2epam10132002-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2epam10132002pool.rpe2epam10132002-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-sea/providers/Microsoft.Kusto/Clusters/safrankekustosea2","name":"safrankekustosea2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T13:01:02.3526530Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to cluster start failure at 2021-08-29 13:00:24 +00:00","uri":"https://safrankekustosea2.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustosea2.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"},"identity":{"principalId":"0d1fc42f-587a-4b3f-9632-a2f74bc8b3a0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-sea/providers/Microsoft.Kusto/Clusters/safrankekusto4","name":"safrankekusto4","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T13:01:01.3213280Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to cluster start failure at 2021-08-29 13:00:22 +00:00","uri":"https://safrankekusto4.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekusto4.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"},"identity":{"principalId":"79e3e957-a226-4609-a078-5dbe53185546","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest2/providers/Microsoft.Kusto/Clusters/dortest7","name":"dortest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T06:32:07.4824894Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-29 06:24:43 +00:00","uri":"https://dortest7.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortest7.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/omerBlumRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omerausidentity":{"principalId":"b61081bb-3488-4151-99e2-1b242723ad43","clientId":"a655bc3a-eacb-4611-82b9-f90c16f6b74f"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test_weu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagivuserassignedweu":{"principalId":"72b4fbff-6e4a-402b-886e-422a14fa19d6","clientId":"c6fccd74-a018-40c1-ab0f-baaf4c30cd1c"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ohadtaylersea/providers/Microsoft.Kusto/Clusters/ohadtayleraria","name":"ohadtayleraria","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-04T08:18:13.8819381Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Deleted","stateReason":null,"uri":"https://ohadtayleraria.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-ohadtayleraria.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/seatestas","name":"seatestas","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:35:39.7912632Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to installation failure at 2021-06-06 12:18:14 +00:00","uri":"https://seatestas.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-seatestas.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ohadtaylersea/providers/Microsoft.Kusto/Clusters/testbridgeariacluster","name":"testbridgeariacluster","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-21T15:50:54.3951921Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to installation failure at 2021-06-21 15:47:04 +00:00","uri":"https://testbridgeariacluster.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-testbridgeariacluster.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E0810162847Synapse-rg/providers/Microsoft.Synapse/workspaces/cmkrpe2e0810162847-wksp/kustoPools/pcurrenttest2323","name":"cmkrpe2e0810162847-wksp/pcurrenttest2323","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-08-10T17:08:01.6537846Z\"","location":"Southeast + Asia","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://pcurrenttest2323.cmkrpe2e0810162847-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-pcurrenttest2323.cmkrpe2e0810162847-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/omerBlumRG/providers/Microsoft.Kusto/Clusters/omere2e","name":"omere2e","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-04T10:51:05.9226054Z\"","location":"Southeast + Asia","sku":{"name":"Standard_DS13_v2+2TB_PS","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-04 10:43:41 +00:00","uri":"https://omere2e.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-omere2e.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"85ff156e-6b39-4f76-8093-c78a14ad64b1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/omerBlumRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omerseaidentity":{"principalId":"bd959f1d-1539-41b9-9cef-d4a5475d78ba","clientId":"241d4da8-05c8-4125-a83c-f246b590bd69"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke/providers/Microsoft.Kusto/Clusters/safrankesea","name":"safrankesea","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-03T14:42:27.4169247Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://safrankesea.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankesea.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://omerseakv.vault.azure.net","keyName":"key2","keyVersion":"","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"c49299a6-5c07-4c1d-9515-40a50b020337","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Mgmt-safrankekusto2-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/D-safrankekusto2":{"principalId":"6673a2d7-e9ca-488d-be9a-0f92e3fb0965","clientId":"fd714542-ec41-41b1-91c9-0056f9e8d373"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagivtestidentityeus":{"principalId":"63f3fb68-469b-4e81-8008-5d10855602c6","clientId":"6e06eb9c-0dbc-4f80-9cb7-ffabde294ee7"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/omerBlumRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omerausidentity":{"principalId":"b61081bb-3488-4151-99e2-1b242723ad43","clientId":"a655bc3a-eacb-4611-82b9-f90c16f6b74f"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-orentestseav3-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-orentestseav3":{"principalId":"bcf45bf4-efce-4824-b0c8-5e592e606e2f","clientId":"4a358850-f043-420c-aadb-9df1d6a840cd"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-safrankekustoeus2-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-safrankekustoeus2":{"principalId":"404b2e03-2797-4a12-904d-2033efdd5da6","clientId":"2e7c6de0-08f4-47fd-aa1a-52fd80ee3aed"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Mgmt-safrankekusto-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/D-safrankekusto":{"principalId":"bb45da96-82c4-451c-8246-af42912e8299","clientId":"5416925e-56b0-40e5-9af6-1c92c918ed3a"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-dor1-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-dor1":{"principalId":"f2662a96-ea99-4fde-b5c5-30b7ac592143","clientId":"a4a7c3b7-b904-4f2d-a032-864128134123"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test_weu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagivuserassignedweu":{"principalId":"72b4fbff-6e4a-402b-886e-422a14fa19d6","clientId":"c6fccd74-a018-40c1-ab0f-baaf4c30cd1c"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagiv-identity":{"principalId":"3c801d34-75a3-40d6-aa3b-ee5c63ba4f69","clientId":"d5dc2bde-e3fb-41c2-bf15-c4c0417069dd"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/dorResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dortest2":{"principalId":"6473918b-0b97-49b7-98e2-dc06cd8181cc","clientId":"b3eace70-6e0f-44c6-b86c-9ab5dd109787"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-tompurgeportprop3-additional-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-tompurgeportprop3":{"principalId":"84dab6f8-6091-4e2c-839a-e15f0f499394","clientId":"893f1f73-1e29-4d77-af1d-9eeec4af3812"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-safrankeweu2-additional-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-safrankeweu2":{"principalId":"7251d221-e6dc-4c44-a944-8f163e51e36e","clientId":"980fd1d6-159b-439f-8d52-6f401cd6de7a"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/omerBlumRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omerseaidentity":{"principalId":"bd959f1d-1539-41b9-9cef-d4a5475d78ba","clientId":"241d4da8-05c8-4125-a83c-f246b590bd69"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-safrankekustoneu-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-safrankekustoneu":{"principalId":"547c27d6-4a79-4db5-83f2-549ef8b346e6","clientId":"497f6350-3681-42d7-9fa0-92a7dab33ecd"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lugoldbekusto/providers/Microsoft.Kusto/Clusters/lugoldbetestsea","name":"lugoldbetestsea","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-04T11:40:34.8891147Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":4},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://lugoldbetestsea.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-lugoldbetestsea.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":false,"minimum":2,"maximum":4},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["255.255.255.0/25","255.255.255.255"],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/omerBlumRG/providers/Microsoft.Kusto/Clusters/omeripv64","name":"omeripv64","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-06T12:48:29.9376453Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Deleted","stateReason":null,"uri":"https://omeripv64.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-omeripv64.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://omerseakv.vault.azure.net","keyName":"key2","keyVersion":"","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"},"identity":{"principalId":"eb1b6acd-390a-41c9-8411-ffee0c4f1cc1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke/providers/Microsoft.Kusto/Clusters/safrankekustosea","name":"safrankekustosea","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-15T14:41:59.6905451Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to installation failure at 2021-09-15 14:31:37 +00:00","uri":"https://safrankekustosea.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustosea.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/omerBlumRG/providers/Microsoft.Kusto/Clusters/omerbipv61","name":"omerbipv61","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-12T06:52:35.8273994Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Deleted","stateReason":null,"uri":"https://omerbipv61.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-omerbipv61.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kustorpe2e/providers/Microsoft.Kusto/Clusters/astaubentest","name":"astaubentest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:46:16.1209109Z\"","location":"South + Central US","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{"MachineName":"77E95E0E93B6","ArmClientRequestId":"RPE2E;2020.7.25.2028-GA-6afb2ce8ce-devCM","Test + Start Time":"7/25/2020 9:25:11 PM"},"properties":{"state":"Running","stateReason":null,"uri":"https://astaubentest.southcentralus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-astaubentest.southcentralus.dev.kusto.windows.net","trustedExternalTenants":[{"value":"fd98e228-2977-4102-9e9f-f9344e4bc05d"},{"value":"72ca4892-87f6-422f-8e14-239d88d85900"},{"value":"42619785-2ad4-478e-84a6-4c0d7dd37179"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sagivtestscus/providers/Microsoft.Kusto/Clusters/sagivtesscusluster","name":"sagivtesscusluster","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:35:06.3376345Z\"","location":"South + Central US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-02-21 08:34:54 +00:00","uri":"https://sagivtesscusluster.southcentralus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-sagivtesscusluster.southcentralus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"26067630-d207-4f7a-88fc-a7d668444862","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagiv-identity":{"principalId":"3c801d34-75a3-40d6-aa3b-ee5c63ba4f69","clientId":"d5dc2bde-e3fb-41c2-bf15-c4c0417069dd"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.Kusto/Clusters/astaubentest","name":"astaubentest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-19T09:57:55.4114812Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-09-19 09:51:37 +00:00","uri":"https://astaubentest.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-astaubentest.eastus.dev.kusto.windows.net","trustedExternalTenants":[{"value":"33e01921-4d64-4f8c-a055-5bdaffd5e33d"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":true,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"dfbfb51b-46fa-485d-818d-82eea7e35611","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.Kusto/Clusters/astauben","name":"astauben","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-19T09:56:52.4300030Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{"fdghgfh":"gfhgfhjgfj"},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-09-19 09:51:32 +00:00","uri":"https://astauben.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-astauben.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"03dde8e9-08b5-446d-a5f9-51e9f711755f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-eus/providers/Microsoft.Kusto/Clusters/safrankekusto","name":"safrankekusto","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:37:08.8384407Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-03-25 12:53:36 +00:00","uri":"https://safrankekusto.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekusto.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"deac600e-d75b-4ef2-984d-48d1cad489b6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-2-eus":{"principalId":"bcf2d669-a646-414e-8f15-eb20e01552c5","clientId":"8d6a2049-cf58-4945-bd9c-cb41dcf9196e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-sea/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-sea-1":{"principalId":"26993d29-d24a-4ccc-acf6-c55d34816644","clientId":"15d92f22-4d45-4959-8f67-fbd7a7769e1b"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-eus/providers/Microsoft.Kusto/Clusters/safrankekusto2","name":"safrankekusto2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:03:05.9600831Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:56:17 +00:00","uri":"https://safrankekusto2.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekusto2.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"6dc060e3-84cf-40f6-8418-c3a867b47247","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Mgmt-safrankekustoeus-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/D-safrankekustoeus":{"principalId":"b2e7b522-b89b-4bc0-a5b2-61604a164d9d","clientId":"bf362154-e89e-497c-a970-950bc179252f"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ohadRPtest/providers/Microsoft.Kusto/Clusters/ohadclustertest","name":"ohadclustertest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-12T07:20:18.9761151Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to cluster start failure at 2021-09-12 07:18:59 +00:00","uri":"https://ohadclustertest.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-ohadclustertest.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://ohadkv.vault.azure.net","keyName":"ohadkey","keyVersion":"ee5a58ad6d2f443eb75b470fd4ac4d61","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Failed"},"identity":{"principalId":"a09f1dad-d31d-458e-a193-d7661dcf9849","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/noamsynapseKustoDev/providers/Microsoft.Kusto/Clusters/noamsynapsedevtest","name":"noamsynapsedevtest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:40:48.5549384Z\"","location":"East + US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://noamsynapsedevtest.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-noamsynapsedevtest.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/avivyanivdfeus1","name":"avivyanivdfeus1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-04T10:35:02.8883111Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-04 10:28:43 +00:00","uri":"https://avivyanivdfeus1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-avivyanivdfeus1.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"1c8a57ec-6a40-4005-8896-bd54104d47aa","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/avivyanivdfeus2","name":"avivyanivdfeus2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-03T12:43:49.3234183Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + 2021-08-03 12:38:01 +00:00 due to lost access to KeyVault","uri":"https://avivyanivdfeus2.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-avivyanivdfeus2.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://omerkv.vault.azure.net","keyName":"iuyiuyiuy","keyVersion":"7ffbfc2ab2f04caeb3d5b92fdf8788e3","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"6acd2dfc-b073-4fd3-9da6-7c3baebc15df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke/providers/Microsoft.Kusto/Clusters/safranketest1","name":"safranketest1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:04:47.7263587Z\"","location":"East + US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:56:59 +00:00","uri":"https://safranketest1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safranketest1.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/hilatest1","name":"hilatest1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-24T11:03:19.8753761Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-24 10:56:01 +00:00","uri":"https://hilatest1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-hilatest1.eastus.dev.kusto.windows.net","trustedExternalTenants":[{"value":"72f988bf-86f1-41af-91ab-2d7cd011db47"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oronrgra/providers/Microsoft.Kusto/Clusters/amtest2Kusto1","name":"amtest2Kusto1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-01T00:31:41.4238035Z\"","location":"East + US","sku":{"name":"Standard_D14_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-09-01 00:24:22 +00:00","uri":"https://amtest2kusto1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-amtest2kusto1.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":10},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ohadRPtest/providers/Microsoft.Kusto/Clusters/ohadtest","name":"ohadtest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-13T11:56:13.8209637Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://ohadtest.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-ohadtest.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Disabled","allowedIpRangeList":["167.220.204.196"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amir-test-rg/providers/Microsoft.Kusto/Clusters/amiruai","name":"amiruai","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-14T08:51:42.5756850Z\"","location":"East + US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://amiruai.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-amiruai.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/amir-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amirumi":{"principalId":"8a5b5b2a-ebeb-410f-9211-5a9fe4fb8954","clientId":"c0f20530-2307-40f5-a9f7-dac6a4f8f51f"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adachabash-rg1/providers/Microsoft.Kusto/Clusters/adachabashtest1","name":"adachabashtest1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-05T08:39:58.4240770Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://adachabashtest1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-adachabashtest1.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1007151239SynapseStandard-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10071512-wksp/kustoPools/rpe2estd10071512pool","name":"rpe2estd10071512-wksp/rpe2estd10071512pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-08T07:08:38.4027769Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-08 07:02:16 +00:00","uri":"https://rpe2estd10071512pool.rpe2estd10071512-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10071512pool.rpe2estd10071512-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1008144931StandardSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10081449-wksp/kustoPools/rpe2estd10081449pool","name":"rpe2estd10081449-wksp/rpe2estd10081449pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-08T15:13:06.1313919Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2estd10081449pool.rpe2estd10081449-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10081449pool.rpe2estd10081449-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://rpe2estd10081449kv.vault.azure.net","keyName":"rpe2estd10081449key","keyVersion":null,"userIdentity":null},"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1009200338StandardSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10092003-wksp/kustoPools/rpe2estd10092003pool","name":"rpe2estd10092003-wksp/rpe2estd10092003pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-09T20:26:08.7609902Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2estd10092003pool.rpe2estd10092003-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10092003pool.rpe2estd10092003-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://rpe2estd10092003kv.vault.azure.net","keyName":"rpe2estd10092003key","keyVersion":null,"userIdentity":null},"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/orenrgilaysub/providers/Microsoft.Kusto/Clusters/oreneus","name":"oreneus","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-10T07:35:59.7543595Z\"","location":"East + US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://oreneus.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-oreneus.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1010094645StandardSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10100946-wksp/kustoPools/rpe2estd10100946pool","name":"rpe2estd10100946-wksp/rpe2estd10100946pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-10T10:08:59.4153109Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2estd10100946pool.rpe2estd10100946-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10100946pool.rpe2estd10100946-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://rpe2estd10100946kv.vault.azure.net","keyName":"rpe2estd10100946key","keyVersion":null,"userIdentity":null},"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1010103054StandardSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10101030-wksp/kustoPools/rpe2estd10101030pool","name":"rpe2estd10101030-wksp/rpe2estd10101030pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-10T10:52:04.9756566Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2estd10101030pool.rpe2estd10101030-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10101030pool.rpe2estd10101030-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://rpe2estd10101030kv.vault.azure.net","keyName":"rpe2estd10101030key","keyVersion":null,"userIdentity":null},"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/basaba/providers/Microsoft.Kusto/Clusters/basabatest33","name":"basabatest33","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:39:08.7720257Z\"","location":"West + Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://basabatest33.westcentralus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-basabatest33.westcentralus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest2/providers/Microsoft.Kusto/Clusters/dortest","name":"dortest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-07T14:19:20.8244423Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://dortest.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortest.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"ddc5853e-3970-4b5c-8da8-1b265c8586db","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest2/providers/Microsoft.Kusto/Clusters/dortestf2","name":"dortestf2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-07T14:19:20.8244423Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://dortestf2.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortestf2.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-bvteus2/providers/Microsoft.Kusto/Clusters/safrankekustoeus2","name":"safrankekustoeus2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-30T10:29:20.2432555Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-06-30 10:22:27 +00:00","uri":"https://safrankekustoeus2.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustoeus2.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-bvteus2/providers/Microsoft.Kusto/Clusters/safrankekustoeus3","name":"safrankekustoeus3","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:04:03.6311932Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{"aa":"bb","cc":"ff","kk":"ll"},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:56:15 +00:00","uri":"https://safrankekustoeus3.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustoeus3.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"68af6caa-c595-4ba3-8b90-d7af613433d6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-sea/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-sea-1":{"principalId":"26993d29-d24a-4ccc-acf6-c55d34816644","clientId":"15d92f22-4d45-4959-8f67-fbd7a7769e1b"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/elbirnbo-synapse-rg/providers/Microsoft.Synapse/workspaces/elbirnboworkspace/kustoPools/elbirnbokpool","name":"elbirnboworkspace/elbirnbokpool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-06-13T14:38:55.5660364Z\"","location":"East + US 2","sku":{"name":"","size":"Small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://elbirnbokpool.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-elbirnbokpool.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest2/providers/Microsoft.Kusto/Clusters/dortest5","name":"dortest5","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T06:31:10.4653299Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-29 06:24:50 +00:00","uri":"https://dortest5.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortest5.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/hilatest2","name":"hilatest2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-24T11:02:24.7189389Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-24 10:56:06 +00:00","uri":"https://hilatest2.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-hilatest2.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amir-test-synapse-injection/providers/Microsoft.Synapse/workspaces/amirsynapseeus2test135/kustoPools/oron1","name":"amirsynapseeus2test135/oron1","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-12T15:03:43.8183860Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://oron1.amirsynapseeus2test135.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-oron1.amirsynapseeus2test135.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest23/providers/Microsoft.Kusto/Clusters/dortest8","name":"dortest8","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-10T14:33:45.7674005Z\"","location":"East + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-10 14:27:24 +00:00","uri":"https://dortest8.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortest8.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"ac561b36-f5f4-4c01-b997-a7b9f23f7c6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/michaeltest/providers/Microsoft.Kusto/Clusters/michaelshikh1ls16test","name":"michaelshikh1ls16test","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-07T15:19:26.8058166Z\"","location":"East + US 2","sku":{"name":"Standard_L16s_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://michaelshikh1ls16test.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-michaelshikh1ls16test.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1007164419SynapseStandard-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10071644-wksp/kustoPools/rpe2estd10071644pool","name":"rpe2estd10071644-wksp/rpe2estd10071644pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-13T13:19:13.5482034Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Deleted","stateReason":null,"uri":"https://rpe2estd10071644pool.rpe2estd10071644-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10071644pool.rpe2estd10071644-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oronRG/providers/Microsoft.Synapse/workspaces/orondfsynapse/kustoPools/oronpool","name":"orondfsynapse/oronpool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-11T08:41:21.5516382Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://oronpool.orondfsynapse.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-oronpool.orondfsynapse.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oronRG/providers/Microsoft.Synapse/workspaces/orondfsynapse/kustoPools/testportal","name":"orondfsynapse/testportal","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-11T11:21:12.6446507Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testportal.orondfsynapse.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-testportal.orondfsynapse.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oronRG/providers/Microsoft.Synapse/workspaces/orondfsynapse/kustoPools/teststudio","name":"orondfsynapse/teststudio","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-11T11:21:39.8797469Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://teststudio.orondfsynapse.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-teststudio.orondfsynapse.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/parkertestbvt/providers/Microsoft.Synapse/workspaces/pwkspacebasic1011/kustoPools/ppooltestbvt1011","name":"pwkspacebasic1011/ppooltestbvt1011","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-11T11:45:06.4100331Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://ppooltestbvt1011.pwkspacebasic1011.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-ppooltestbvt1011.pwkspacebasic1011.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sagiv_test_weu/providers/Microsoft.Kusto/Clusters/sagivadxweu","name":"sagivadxweu","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:39:34.0591998Z\"","location":"West + Europe","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to installation failure at 2021-02-07 11:01:29 +00:00","uri":"https://sagivadxweu.westeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-sagivadxweu.westeurope.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Failed"},"identity":{"principalId":"a46c1d35-b033-4f9b-b8f3-82520a7138fc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagiv-identity":{"principalId":"3c801d34-75a3-40d6-aa3b-ee5c63ba4f69","clientId":"d5dc2bde-e3fb-41c2-bf15-c4c0417069dd"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-rg/providers/Microsoft.Kusto/Clusters/safrankeweu","name":"safrankeweu","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:03:44.6178737Z\"","location":"West + Europe","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:56:52 +00:00","uri":"https://safrankeweu.westeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankeweu.westeurope.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":true,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://safranke-kv-weu.vault.azure.net","keyName":"safranke-key","keyVersion":"f970af8d7f0948699f9b323d17a0f306","userIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus"},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"9e6af201-fc66-42c5-a1d3-ede70be4d094","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/dorResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dortest2":{"principalId":"6473918b-0b97-49b7-98e2-dc06cd8181cc","clientId":"b3eace70-6e0f-44c6-b86c-9ab5dd109787"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-rg/providers/Microsoft.Kusto/Clusters/safrankeweu2","name":"safrankeweu2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:39:34.0591998Z\"","location":"West + Europe","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-05-22 00:50:19 +00:00","uri":"https://safrankeweu2.westeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankeweu2.westeurope.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://safranke-kv-weu.vault.azure.net","keyName":"safranke-key","keyVersion":"f970af8d7f0948699f9b323d17a0f306","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"d10dc936-a9b7-49c5-82da-e73cb8e8f469","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-sea/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-sea-1":{"principalId":"26993d29-d24a-4ccc-acf6-c55d34816644","clientId":"15d92f22-4d45-4959-8f67-fbd7a7769e1b"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/michaeltest/providers/Microsoft.Kusto/Clusters/michaeltest","name":"michaeltest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T08:09:59.9816708Z\"","location":"Australia + East","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://michaeltest.australiaeast.dev.kusto.windows.net","dataIngestionUri":"https://ingest-michaeltest.australiaeast.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/michaeltest/providers/Microsoft.Kusto/Clusters/michaelTestNew2","name":"michaelTestNew2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-19T12:43:23.7517802Z\"","location":"Australia + East","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://michaeltestnew2.australiaeast.dev.kusto.windows.net","dataIngestionUri":"https://ingest-michaeltestnew2.australiaeast.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/clusters?api-version=2021-08-27&%24skiptoken=DYxBD4IgGED%2fC%2fdPEJmmW%2bvUqTpZ64wIyUpgfOhazv8ep%2fe2t72NOP1NV%2bveSLqNPM%2f9%2fdFz0pEppYAdpbN08qVn7VIhf0vUhfIzxWVAFW1I1jukZlBKjhUDw%2fQIQioBrWgbaKvB1KUoWc0NDdGvdtQR6c2q6NGbVFwWTJ6qT0YOJxksrFny9MgZL4EdgDdk3%2f8%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '80839' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 25266ed9-ea1b-4ebc-b1b4-79e16a6a3d0d + - ff5c23e8-8a14-418b-a936-92bcbdbde93f + - 4c837161-6657-4b75-a0dc-e9edd354a0d4 + - 48f019fa-3381-432d-ade9-5d7f12fe4bfd + - fe0d26cb-f414-4748-9155-dafe82cebcc3 + - 9db804c6-c2a7-4c34-b2fd-abc18f6b578b + - 68c9870a-ea43-4c9c-8dc6-55d00abea456 + - b2ce7e17-e50a-4227-9d16-f1be7391b6ea + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list + Connection: + - keep-alive + ParameterSetName: + - --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:23:31.0006223Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterclitest7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterclitest7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[{"languageExtensionName":"PYTHON"},{"languageExtensionName":"R"}]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"e46224d2-b8e6-4517-95ba-c0fd25e1fb94","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:12:53.8912642Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterleader7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterleader7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"152df398-3533-4a5c-acfe-47800f4ce5ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2540' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/testcli1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"AllDatabasesAdmin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '594' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '758' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-sku + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/skus?api-version=2021-08-27 + response: + body: + string: '{"value":[{"resourceType":"clusters","name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]}]}' + headers: + cache-control: + - no-cache + content-length: + - '168895' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-sku + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/skus?api-version=2021-08-27 + response: + body: + string: '{"value":[{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D11_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":8,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D12_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":16,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D13_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D14_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D32d_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L4s","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":[]}]},"capacity":{"minimum":2,"maximum":16,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L8s","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L16s","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L8s_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L16s_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E64i_v3","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E80ids_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E2a_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E4a_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E8a_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E16a_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6369' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-language-extension + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/listLanguageExtensions?api-version=2021-08-27 + response: + body: + string: '{"value":[{"languageExtensionName":"PYTHON"},{"languageExtensionName":"R"}]}' + headers: + cache-control: + - no-cache + content-length: + - '76' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","statistics":{"size":0.0},"isFollowed":true,"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '489' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-follower-database + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/listFollowerDatabases?api-version=2021-08-27 + response: + body: + string: '{"value":[{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","attachedDatabaseConfigurationName":"myAttachedDatabaseConfiguration","databaseName":"KustoDatabase"}]}' + headers: + cache-control: + - no-cache + content-length: + - '334' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/principalAssignments?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/PrincipalAssignments/5e11cf36-45c4-42d2-a5ba-29fb9447ad32","name":"kustoclusterclitest7/KustoDatabase/5e11cf36-45c4-42d2-a5ba-29fb9447ad32","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"zoharhen@microsoft.com","role":"Admin","principalType":"User","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"Zohar + Hen (zoharhen@microsoft.com)","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/KustoDatabase/testcli1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"Admin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/PrincipalAssignments/c899e159-9abb-4c4d-8fbb-62291c160a10","name":"kustoclusterclitest7/KustoDatabase/c899e159-9abb-4c4d-8fbb-62291c160a10","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"7bd74dc8-dd5f-4cee-8e64-866138abcf89","role":"Admin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"clitest","provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1992' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database list-principal + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/listPrincipals?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"Zohar Hen (zoharhen@microsoft.com)","role":"Admin","type":"User","fqn":"aaduser=0f54ad84-ce5e-49d1-90b3-c553e7c96382;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"zoharhen@microsoft.com","appId":"","tenantName":"Microsoft"},{"name":"testcli1","role":"Admin","type":"App","fqn":"aadapp=ad064aa1-8b51-41ec-9c64-0d3037577d63;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"","appId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","tenantName":"Microsoft"},{"name":"clitest","role":"Admin","type":"App","fqn":"aadapp=7bd74dc8-dd5f-4cee-8e64-866138abcf89;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"","appId":"7bd74dc8-dd5f-4cee-8e64-866138abcf89","tenantName":"Microsoft"}]}' + headers: + cache-control: + - no-cache + content-length: + - '684' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"West + US 2","properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","databaseName":"KustoDatabase","attachedDatabaseNames":["KustoDatabase"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1107' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '812' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:34.8875256Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '905' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/diagnoseVirtualNetwork?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:25:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:26:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:26:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:27:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:27:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Succeeded","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:28:26.6817979Z","percentComplete":1.0,"properties":{"Findings":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '362' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '{"Findings":[]}' + headers: + cache-control: + - no-cache + content-length: + - '15' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-outbound-network-dependency-endpoint + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/outboundNetworkDependenciesEndpoints?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/OutboundNetworkDependenciesEndpoints/AzureActiveDirectory","name":"kustoclusterclitest7/AzureActiveDirectory","type":"Microsoft.Kusto/Clusters/OutboundNetworkDependenciesEndpoints","location":"West + US 2","properties":{"category":"Azure Active Directory","endpoints":[{"domainName":"login.microsoftonline.com","endpointDetails":[{"port":443}]},{"domainName":"graph.windows.net","endpointDetails":[{"port":443}]},{"domainName":"graph.microsoft.com","endpointDetails":[{"port":443}]},{"domainName":"graph.microsoft-ppe.com","endpointDetails":[{"port":443}]}],"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/OutboundNetworkDependenciesEndpoints/AzureMonitor","name":"kustoclusterclitest7/AzureMonitor","type":"Microsoft.Kusto/Clusters/OutboundNetworkDependenciesEndpoints","location":"West + US 2","properties":{"category":"Azure Monitor","endpoints":[{"domainName":"prod.warmpath.msftcloudes.com","endpointDetails":[{"port":443}]},{"domainName":"gcs.prod.monitoring.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"production.diagnostics.monitoring.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"shoebox2.metrics.nsatc.net:443","endpointDetails":[{"port":443}]}],"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/OutboundNetworkDependenciesEndpoints/CertificateAuthority","name":"kustoclusterclitest7/CertificateAuthority","type":"Microsoft.Kusto/Clusters/OutboundNetworkDependenciesEndpoints","location":"West + US 2","properties":{"category":"Certificate Authority","endpoints":[{"domainName":"ocsp.msocsp.com","endpointDetails":[{"port":80}]},{"domainName":"ocsp.digicert.com","endpointDetails":[{"port":80}]},{"domainName":"crl3.digicert.com","endpointDetails":[{"port":80}]},{"domainName":"crl.microsoft.com","endpointDetails":[{"port":80}]},{"domainName":"www.microsoft.com","endpointDetails":[{"port":80}]}],"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/OutboundNetworkDependenciesEndpoints/AzureStorage","name":"kustoclusterclitest7/AzureStorage","type":"Microsoft.Kusto/Clusters/OutboundNetworkDependenciesEndpoints","location":"West + US 2","properties":{"category":"Azure Storage","endpoints":[{"domainName":"ykankustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"ykankustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"ykankustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"zgdekustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"zgdekustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"zgdekustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"98pkkustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"98pkkustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"98pkkustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qpxekustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qpxekustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qpxekustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"yn7ustoclusterclitest700.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"yn7ustoclusterclitest700.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"yn7ustoclusterclitest700.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"v5zustoclusterclitest701.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"v5zustoclusterclitest701.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"v5zustoclusterclitest701.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"guaustoclusterclitest702.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"guaustoclusterclitest702.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"guaustoclusterclitest702.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"kw4ustoclusterclitest703.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"kw4ustoclusterclitest703.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"kw4ustoclusterclitest703.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"fsgdkustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"fsgdkustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"fsgdkustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qz0kkustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qz0kkustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qz0kkustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"8s8ustoclusterclitest700.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"8s8ustoclusterclitest700.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"8s8ustoclusterclitest700.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"be0ustoclusterclitest701.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"be0ustoclusterclitest701.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"be0ustoclusterclitest701.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"004ustoclusterclitest7eh.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"004ustoclusterclitest7eh.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"004ustoclusterclitest7eh.table.core.windows.net","endpointDetails":[{"port":443}]}],"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6771' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test","actionsRequired":null}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '783' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "kind": "EventHub", "properties": {"eventHubResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1", + "consumerGroup": "$Default", "compression": "None"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub update + Connection: + - keep-alive + Content-Length: + - '282' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --name --database-name --location --resource-group --consumer-group + --event-hub-resource-id + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/ef50b6d4-cc37-4601-8f9a-0f9ceef2952f?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '799' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:29:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/ef50b6d4-cc37-4601-8f9a-0f9ceef2952f?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --database-name --location --resource-group --consumer-group + --event-hub-resource-id + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/ef50b6d4-cc37-4601-8f9a-0f9ceef2952f?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/ef50b6d4-cc37-4601-8f9a-0f9ceef2952f","name":"ef50b6d4-cc37-4601-8f9a-0f9ceef2952f","status":"Succeeded","startTime":"2021-10-14T10:29:03.1923884Z","endTime":"2021-10-14T10:29:06.4582994Z","percentComplete":1.0,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '349' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:29:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 6d2a796b-b415-4f8a-81e6-f23f3a970638 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --database-name --location --resource-group --consumer-group + --event-hub-resource-id + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":null,"mappingRuleName":null,"dataFormat":null,"eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:29:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"privateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest", + "groupId": "blob", "requestMessage": "Please Approve."}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint update + Connection: + - keep-alive + Content-Length: + - '228' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/897cc5bd-b660-4503-8b2e-d35494edeaea?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '656' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:29:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/897cc5bd-b660-4503-8b2e-d35494edeaea?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/897cc5bd-b660-4503-8b2e-d35494edeaea?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/897cc5bd-b660-4503-8b2e-d35494edeaea","name":"897cc5bd-b660-4503-8b2e-d35494edeaea","status":"Running","startTime":"2021-10-14T10:29:35.6458264Z","endTime":"2021-10-14T10:29:35.6614486Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:30:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d84df406-a966-433e-ac62-68961de9360d + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/897cc5bd-b660-4503-8b2e-d35494edeaea?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/897cc5bd-b660-4503-8b2e-d35494edeaea","name":"897cc5bd-b660-4503-8b2e-d35494edeaea","status":"Succeeded","startTime":"2021-10-14T10:29:35.6458264Z","endTime":"2021-10-14T10:30:13.3701273Z","percentComplete":1.0,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '464' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:30:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d84df406-a966-433e-ac62-68961de9360d + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:29:35.510515Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '892' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:30:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub data-connection-validation + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --name --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-14T09:35:29Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:30:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"dataConnectionName": "DataConnection3", "properties": {"location": "westus", + "kind": "EventHub", "properties": {"eventHubResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1", + "consumerGroup": "$Default", "compression": "None"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub data-connection-validation + Connection: + - keep-alive + Content-Length: + - '338' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --name --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnectionValidation?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:30:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub data-connection-validation + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --name --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145","name":"16d347e5-5d2d-4720-8cf1-bbfe4a1dd145","status":"Succeeded","startTime":"2021-10-14T10:30:39.3262993Z","endTime":"2021-10-14T10:30:41.7170378Z","percentComplete":1.0,"properties":{"Value":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '359' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 9a86e080-788e-4d66-aa6b-213de2cbfc1c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub data-connection-validation + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --name --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '{"Value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"scriptUrl": "https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt", + "scriptUrlSasToken": "sp=r&st=2021-10-10T13:27:37Z&se=2024-09-06T21:27:37Z&sv=2020-08-04&sr=b&sig=bQv3g3VpesJ3nv9Fbs%2Bc0V0PQby9AY%2BFLzQBxk5a9us%3D", + "continueOnErrors": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script update + Connection: + - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","scriptUrlSasToken":"","continueOnErrors":true,"provisioningState":"Accepted"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:31:12.5386557Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:31:12.5386557Z"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '768' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc","name":"2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc","status":"Succeeded","startTime":"2021-10-14T10:31:14.0976411Z","endTime":"2021-10-14T10:31:15.3321805Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseScriptCreateOrUpdate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '456' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d6681da3-8b72-454d-9bde-b0857fe7f1ae + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:31:12.5386557Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"kind": "ReadWrite", "properties": {"hotCachePeriod": "P1D"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database update + Connection: + - keep-alive + Content-Length: + - '62' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"hotCachePeriod":"P1D","provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/0fa1dfa2-b993-4407-a27f-e2f2372b0057?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '430' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/0fa1dfa2-b993-4407-a27f-e2f2372b0057?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/0fa1dfa2-b993-4407-a27f-e2f2372b0057?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/0fa1dfa2-b993-4407-a27f-e2f2372b0057","name":"0fa1dfa2-b993-4407-a27f-e2f2372b0057","status":"Succeeded","startTime":"2021-10-14T10:31:46.4625256Z","endTime":"2021-10-14T10:31:51.259639Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseCreate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '441' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:32:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d595c535-8a6d-47a5-9c1b-da70a0df5f35 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","hotCachePeriod":"P1D","statistics":{"size":0.0},"isFollowed":true,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '500' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:32:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/stop?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:32:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:32:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:33:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:33:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:34:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:34:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:35:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:35:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:36:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:36:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:37:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:37:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:38:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Succeeded","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:38:43.3837457Z","percentComplete":1.0,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '442' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:38:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:38:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/start?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:38:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:39:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:39:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:40:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:40:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:41:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:41:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:42:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:42:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:43:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:43:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:44:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:44:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:45:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:46:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:46:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:47:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:47:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:48:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '284' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:48:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '283' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:49:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '282' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:49:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '281' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:50:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Succeeded","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:50:31.5181677Z","percentComplete":1.0,"properties":{"operationKind":"ClusterResume","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '440' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:50:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:50:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"enableDiskEncryption": false, "enableStreamingIngest": true, "enablePurge": + true, "enableDoubleEncryption": false, "publicNetworkAccess": "Enabled", "engineType": + "V3", "enableAutoStop": true, "restrictOutboundNetworkAccess": "Disabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster update + Connection: + - keep-alive + Content-Length: + - '318' + Content-Type: + - application/json + ParameterSetName: + - --name --type --location --enable-auto-stop --enable-purge --enable-streaming-ingest + --engine-type --restrict-outbound-network-access --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:50:31.4244605Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterleader7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterleader7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"type":"SystemAssigned","userAssignedIdentities":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '1149' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:50:45 GMT + etag: + - '"2021-10-14T10:50:31.4244605Z"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 200 + message: OK +- request: + body: '{"value": [{"languageExtensionName": "PYTHON"}, {"languageExtensionName": + "R"}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + Content-Length: + - '80' + Content-Type: + - application/json + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/removeLanguageExtensions?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:50:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:51:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:51:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:52:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:52:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:53:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Succeeded","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:53:36.8773182Z","percentComplete":1.0,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '453' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:53:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster remove-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:53:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:53:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/810dbe26-86a2-44fb-a586-cd349af7a18a","name":"810dbe26-86a2-44fb-a586-cd349af7a18a","status":"Running","startTime":"2021-10-14T10:53:52.3474843Z","endTime":"2021-10-14T10:53:52.3474863Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '453' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:54:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d3310793-c22f-4847-95d3-cd2db0ac031f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/810dbe26-86a2-44fb-a586-cd349af7a18a","name":"810dbe26-86a2-44fb-a586-cd349af7a18a","status":"Running","startTime":"2021-10-14T10:53:52.3474843Z","endTime":"2021-10-14T10:53:52.3474863Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '453' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:54:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d3310793-c22f-4847-95d3-cd2db0ac031f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/810dbe26-86a2-44fb-a586-cd349af7a18a","name":"810dbe26-86a2-44fb-a586-cd349af7a18a","status":"Succeeded","startTime":"2021-10-14T10:53:52.3474843Z","endTime":"2021-10-14T10:55:08.6762812Z","percentComplete":1.0,"properties":{"operationKind":"ManagedPrivateEndpointDelete","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '456' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:55:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d3310793-c22f-4847-95d3-cd2db0ac031f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/a3d324d5-e7be-4a26-b8f7-de836b5b508c?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:55:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a3d324d5-e7be-4a26-b8f7-de836b5b508c?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a3d324d5-e7be-4a26-b8f7-de836b5b508c?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a3d324d5-e7be-4a26-b8f7-de836b5b508c","name":"a3d324d5-e7be-4a26-b8f7-de836b5b508c","status":"Succeeded","startTime":"2021-10-14T10:55:25.6377171Z","endTime":"2021-10-14T10:55:52.5877064Z","percentComplete":1.0,"properties":{"operationKind":"PrivateEndpointConnectionDeleteCommand","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '466' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:55:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 92093eee-6764-4bc3-8e90-c2338d8a8541 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4?api-version=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/540851f0-79ed-404c-97af-2614c4753673?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:55:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/540851f0-79ed-404c-97af-2614c4753673?api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 542daeda-3e8b-4444-838d-eeeae9b0fce7 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/540851f0-79ed-404c-97af-2614c4753673?api-version=2021-03-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:56:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1bf3aad3-7246-4668-944e-ea0305e6f990 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/540851f0-79ed-404c-97af-2614c4753673?api-version=2021-03-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:56:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 44cc4727-3405-492c-b94e-1c6a31ec6015 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --database-name --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/0ff4d97a-c449-40c6-921f-f8271f7dace2?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:56:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/0ff4d97a-c449-40c6-921f-f8271f7dace2?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --database-name --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/0ff4d97a-c449-40c6-921f-f8271f7dace2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/0ff4d97a-c449-40c6-921f-f8271f7dace2","name":"0ff4d97a-c449-40c6-921f-f8271f7dace2","status":"Succeeded","startTime":"2021-10-14T10:56:23.0364487Z","endTime":"2021-10-14T10:56:23.0988908Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseScriptDelete","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '448' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:56:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 069822ad-7402-4c48-9f66-cd7506d5b336 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script wait + Connection: + - keep-alive + ParameterSetName: + - --deleted --cluster-name --database-name --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The resource with identifier + ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2'' + is not found."}}' + headers: + cache-control: + - no-cache + content-length: + - '338' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:56:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --database-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/5b64d2ea-b964-41f0-a11b-44c5c23cb9db?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:56:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/5b64d2ea-b964-41f0-a11b-44c5c23cb9db?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --database-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/5b64d2ea-b964-41f0-a11b-44c5c23cb9db?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/5b64d2ea-b964-41f0-a11b-44c5c23cb9db","name":"5b64d2ea-b964-41f0-a11b-44c5c23cb9db","status":"Succeeded","startTime":"2021-10-14T10:57:00.0114727Z","endTime":"2021-10-14T10:57:01.0897368Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseDropPrincipals","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:57:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 2d8706c8-2b95-4711-94df-e3d0388aa12c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/aebb1823-9e6c-4647-998c-fdc031e93d08?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:57:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/aebb1823-9e6c-4647-998c-fdc031e93d08?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/aebb1823-9e6c-4647-998c-fdc031e93d08?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/aebb1823-9e6c-4647-998c-fdc031e93d08","name":"aebb1823-9e6c-4647-998c-fdc031e93d08","status":"Succeeded","startTime":"2021-10-14T10:57:32.6171571Z","endTime":"2021-10-14T10:57:34.8829796Z","percentComplete":1.0,"properties":{"operationKind":"ServicePrincipalAssignmentsDrop","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '459' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:58:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 700b43e5-6ee7-4048-bc10-a32ca22f7edd + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"value": [{"role": "Admin", "name": "clitest", "type": "App", "appId": + "7bd74dc8-dd5f-4cee-8e64-866138abcf89"}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database remove-principal + Connection: + - keep-alive + Content-Length: + - '113' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/removePrincipals?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"Zohar Hen (zoharhen@microsoft.com)","role":"Admin","type":"User","fqn":"aaduser=0f54ad84-ce5e-49d1-90b3-c553e7c96382;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"zoharhen@microsoft.com","appId":"","tenantName":"Microsoft"}]}' + headers: + cache-control: + - no-cache + content-length: + - '245' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:58:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7", + "attachedDatabaseConfigurationName": "myAttachedDatabaseConfiguration"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster detach-follower-database + Connection: + - keep-alive + Content-Length: + - '294' + Content-Type: + - application/json + ParameterSetName: + - --name --attached-database-configuration-name --cluster-resource-id --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/detachFollowerDatabases?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:58:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster detach-follower-database + Connection: + - keep-alive + ParameterSetName: + - --name --attached-database-configuration-name --cluster-resource-id --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c","name":"57dd4f08-a16c-46dd-ac6d-47281d77fd8c","status":"Succeeded","startTime":"2021-10-14T10:58:06.8553172Z","endTime":"2021-10-14T10:58:08.8953836Z","percentComplete":1.0,"properties":{"operationKind":"FollowerDatabaseDetach","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:58:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 99934dcd-4a21-49cb-83a4-2aa46d920131 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster detach-follower-database + Connection: + - keep-alive + ParameterSetName: + - --name --attached-database-configuration-name --cluster-resource-id --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:58:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --name --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Thu, 14 Oct 2021 10:58:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/90c7d231-d85c-443c-ac36-cc7b88fad149?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:58:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/90c7d231-d85c-443c-ac36-cc7b88fad149?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/90c7d231-d85c-443c-ac36-cc7b88fad149?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/90c7d231-d85c-443c-ac36-cc7b88fad149","name":"90c7d231-d85c-443c-ac36-cc7b88fad149","status":"Succeeded","startTime":"2021-10-14T10:58:41.9286324Z","endTime":"2021-10-14T10:58:43.9297567Z","percentComplete":1.0,"properties":{"operationKind":"DmServiceDataObtainerDrop","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '453' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:59:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 0fd243be-73b6-4b1c-bf73-9d6c82d09661 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/58999bc2-b886-4a84-b9d2-f0f450805058?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:59:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/58999bc2-b886-4a84-b9d2-f0f450805058?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/58999bc2-b886-4a84-b9d2-f0f450805058?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/58999bc2-b886-4a84-b9d2-f0f450805058","name":"58999bc2-b886-4a84-b9d2-f0f450805058","status":"Succeeded","startTime":"2021-10-14T10:59:14.9186473Z","endTime":"2021-10-14T10:59:19.9658263Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseDelete","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '442' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:59:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 464be840-266b-4ba1-8bb9-058e470b8ab1 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:59:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:00:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:00:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:01:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:01:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:02:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:02:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:03:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:03:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:04:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:04:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:05:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:05:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster delete + Connection: + - keep-alive + ParameterSetName: + - -y --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Succeeded","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T11:06:07.7319584Z","percentComplete":1.0,"properties":{"operationKind":"ClusterDelete","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '441' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 11:06:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +version: 1 diff --git a/src/kusto/azext_kusto/manual/tests/latest/test_kusto_scenario.py b/src/kusto/azext_kusto/manual/tests/latest/test_kusto_scenario.py index 3f54a9cdf51..0c4ce02ce06 100644 --- a/src/kusto/azext_kusto/manual/tests/latest/test_kusto_scenario.py +++ b/src/kusto/azext_kusto/manual/tests/latest/test_kusto_scenario.py @@ -9,511 +9,252 @@ # -------------------------------------------------------------------------- import os -import unittest - -from azure_devtools.scenario_tests import AllowLargeResponse from azure.cli.testsdk import ScenarioTest -from .. import try_manual from azure.cli.testsdk import ResourceGroupPreparer - +from azure.cli.testsdk import StorageAccountPreparer +from azure_devtools.scenario_tests import AllowLargeResponse +from .. import ( + try_manual, + raise_if, + calc_coverage +) + +from .example_steps import step_attached_database_configuration_create +from .example_steps import step_attached_database_configuration_delete +from .example_steps import step_attached_database_configuration_list +from .example_steps import step_attached_database_configuration_show +from .example_steps import step_cluster_add_language_extension +from .example_steps import step_cluster_create +from .example_steps import step_cluster_delete +from .example_steps import step_cluster_detach_follower_database +from .example_steps import step_cluster_diagnose_virtual_network +from .example_steps import step_cluster_list +from .example_steps import step_cluster_list_by_resource_group +from .example_steps import step_cluster_list_follower_database +from .example_steps import step_cluster_list_language_extension +from .example_steps import step_cluster_list_outbound +from .example_steps import step_cluster_list_sku +from .example_steps import step_cluster_list_sku_by_resource_group +from .example_steps import step_cluster_principal_assignment_create +from .example_steps import step_cluster_principal_assignment_delete +from .example_steps import step_cluster_principal_assignment_list +from .example_steps import step_cluster_principal_assignment_show +from .example_steps import step_cluster_remove_language_extension +from .example_steps import step_cluster_show +from .example_steps import step_cluster_start +from .example_steps import step_cluster_stop +from .example_steps import step_cluster_update +from .example_steps import step_data_connection_delete +from .example_steps import step_data_connection_event_hub_create +from .example_steps import step_data_connection_event_hub_update +from .example_steps import step_data_connection_list +from .example_steps import step_data_connection_show +from .example_steps import step_data_connection_validation +from .example_steps import step_database_add_principal +from .example_steps import step_database_create +from .example_steps import step_database_delete +from .example_steps import step_database_list +from .example_steps import step_database_list_principal +from .example_steps import step_database_principal_assignment_create +from .example_steps import step_database_principal_assignment_delete +from .example_steps import step_database_principal_assignment_list +from .example_steps import step_database_principal_assignment_show +from .example_steps import step_database_remove_principal +from .example_steps import step_database_show +from .example_steps import step_database_update +from .example_steps import step_leader_cluster_create +from .example_steps import step_managed_private_endpoint_create +from .example_steps import step_managed_private_endpoint_delete +from .example_steps import step_managed_private_endpoint_list +from .example_steps import step_managed_private_endpoint_show +from .example_steps import step_managed_private_endpoint_update +from .example_steps import step_operation_result_show +from .example_steps import step_private_endpoint_connection_create +from .example_steps import step_private_endpoint_connection_delete +from .example_steps import step_private_endpoint_connection_list +from .example_steps import step_private_endpoint_connection_show +from .example_steps import step_private_link_resource_list +from .example_steps import step_private_link_resource_show +from .example_steps import step_script_create +from .example_steps import step_script_delete +from .example_steps import step_script_list +from .example_steps import step_script_show +from .example_steps import step_script_update TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) -# EXAMPLE: kustoclusterscreateorupdate +# Env setup_scenario @try_manual -def step_kusto_clusters_create_or_update2(test, rg): - - test.cmd('az kusto cluster create ' - '--cluster-name "{Clusters_2}" ' - '--type "SystemAssigned" ' - '--location "southcentralus" ' - '--enable-purge true ' - '--enable-streaming-ingest true ' - '--key-vault-properties key-name="" key-vault-uri="" key-version="" ' - '--sku name="Standard_D11_v2" capacity=2 tier="Standard" ' - '--resource-group "{rg}"', - checks=[]) - test.cmd('az kusto cluster wait --created ' - '--cluster-name "{Clusters_2}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustoclusterscreateorupdate -@try_manual -def step_kusto_clusters_create_or_update(test, rg): - test.cmd('az kusto cluster create ' - '--cluster-name "{Clusters_3}" ' - '--type "SystemAssigned" ' - '--location "southcentralus" ' - '--enable-purge true ' - '--enable-streaming-ingest true ' - '--key-vault-properties key-name="" key-vault-uri="" key-version="" ' - '--sku name="Standard_D11_v2" capacity=2 tier="Standard" ' - '--resource-group "{rg}"', - checks=[]) - test.cmd('az kusto cluster wait --created ' - '--cluster-name "{Clusters_3}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustoclusterschecknameavailability -@try_manual -def step_kusto_clusters_check_name_availability(test, rg): - # EXAMPLE NOT FOUND! +def setup_scenario(test): pass -# EXAMPLE: kustoclustersget -@try_manual -def step_kusto_clusters_get(test, rg): - test.cmd('az kusto cluster show ' - '--cluster-name "{Clusters_3}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustoclusterslist -@try_manual -def step_kusto_clusters_list(test, rg): - test.cmd('az kusto cluster list', - checks=[]) - - -# EXAMPLE: kustoclusterslistbyresourcegroup -@try_manual -def step_kusto_clusters_list_by_resource_group(test, rg): - test.cmd('az kusto cluster list ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustoclustersstop -@try_manual -def step_kusto_clusters_stop(test, rg): - test.cmd('az kusto cluster stop ' - '--cluster-name "{Clusters_3}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustoclustersstart -@try_manual -def step_kusto_clusters_start(test, rg): - test.cmd('az kusto cluster start ' - '--cluster-name "{Clusters_3}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustoclusterslistresourceskus -@try_manual -def step_kusto_clusters_list_resource_skus(test, rg): - test.cmd('az kusto cluster list-sku ' - '--cluster-name "{Clusters_3}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustoclusterslistskus -@try_manual -def step_kusto_clusters_list_skus(test, rg): - - test.cmd('az kusto cluster list-sku', - checks=[]) - - -# EXAMPLE: kustodatabasescreateorupdate +# Env cleanup_scenario @try_manual -def step_kusto_databases_create_or_update(test, rg): - test.cmd('az kusto database create ' - '--cluster-name "{Clusters_3}" ' - '--database-name "KustoDatabase8" ' - '--read-write-database location="southcentralus" soft-delete-period="P1D" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustodatabasechecknameavailability -@try_manual -def step_kusto_database_check_name_availability(test, rg): - # EXAMPLE NOT FOUND! +def cleanup_scenario(test): pass -# EXAMPLE: kustodatabaseslistbycluster -@try_manual -def step_kusto_databases_list_by_cluster(test, rg): - test.cmd('az kusto database list ' - '--cluster-name "{Clusters_3}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustodatabasesget -@try_manual -def step_kusto_databases_get(test, rg): - test.cmd('az kusto database show ' - '--database-name "KustoDatabase8" ' - '--cluster-name "{Clusters_3}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustodatabasesupdate -@try_manual -def step_kusto_databases_update(test, rg): - test.cmd('az kusto database update ' - '--cluster-name "{Clusters_3}" ' - '--database-name "KustoDatabase8" ' - '--read-write-database soft-delete-period="P1D" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustodatabaseprincipalassignmentscreateorupdate -@try_manual -def step_kusto_database_principal_assignments_create_or_update(test, rg): - test.cmd('az kusto database-principal-assignment create ' - '--cluster-name "{Clusters_3}" ' - '--database-name "Kustodatabase8" ' - '--principal-id "d9a1f322-1293-4595-91e3-f54f8bb34725" ' - '--principal-type "App" ' - '--role "Admin" ' - '--tenant-id "33e01921-4d64-4f8c-a055-5bdaffd5e33d" ' - '--principal-assignment-name "kustoprincipal1" ' - '--resource-group "{rg}"', - checks=[]) - test.cmd('az kusto database-principal-assignment wait --created ' - '--cluster-name "{Clusters_3}" ' - '--database-name "Kustodatabase8" ' - '--principal-assignment-name "kustoprincipal1" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustodatabaselistprincipals -@try_manual -def step_kusto_database_list_principals(test, rg): - test.cmd('az kusto database list-principal ' - '--cluster-name "{Clusters_3}" ' - '--database-name "Kustodatabase8" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustodatabaseprincipalassignmentsget -@try_manual -def step_kusto_database_principal_assignments_get(test, rg): - test.cmd('az kusto database-principal-assignment show ' - '--cluster-name "{Clusters_3}" ' - '--database-name "Kustodatabase8" ' - '--principal-assignment-name "kustoprincipal1" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustodatabaseprincipalassignmentsdelete -@try_manual -def step_kusto_database_principal_assignments_delete(test, rg): - test.cmd('az kusto database-principal-assignment delete -y ' - '--cluster-name "{Clusters_3}" ' - '--database-name "Kustodatabase8" ' - '--principal-assignment-name "kustoprincipal1" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustoclusterprincipalassignmentscreateorupdate -@try_manual -def step_kusto_cluster_principal_assignments_create_or_update(test, rg): - test.cmd('az kusto cluster-principal-assignment create ' - '--cluster-name "{Clusters_3}" ' - '--principal-id "d9a1f322-1293-4595-91e3-f54f8bb34725" ' - '--principal-type "App" ' - '--role "AllDatabasesViewer" ' - '--tenant-id "33e01921-4d64-4f8c-a055-5bdaffd5e33d" ' - '--principal-assignment-name "kustoprincipal1" ' - '--resource-group "{rg}"', - checks=[]) - test.cmd('az kusto cluster-principal-assignment wait --created ' - '--principal-assignment-name "kustoprincipal1" ' - '--cluster-name "{Clusters_3}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustoclusterprincipalassignmentsget -@try_manual -def step_kusto_cluster_principal_assignments_get(test, rg): - test.cmd('az kusto cluster-principal-assignment show ' - '--cluster-name "{Clusters_3}" ' - '--principal-assignment-name "kustoprincipal1" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: attacheddatabaseconfigurationscreateorupdate -@try_manual -def step_attached_database_configuration_create(test, rg): - test.cmd('az kusto attached-database-configuration create ' - '--attached-database-configuration-name "{attachedDatabaseConfigurations_1}" ' - '--cluster-name "{Clusters_2}" ' - '--location "southcentralus" ' - '--cluster-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.Kusto/Clu' - 'sters/{Clusters_3}" ' - '--database-name "Kustodatabase8" ' - '--default-principals-modification-kind "Union" ' - '--table-level-sharing-properties external-tables-to-exclude="ExternalTable2" ' - '--resource-group "{rg}"', - checks=[]) - test.cmd('az kusto attached-database-configuration wait --created ' - '--cluster-name "{Clusters_2}" ' - '--attached-database-configuration-name "{attachedDatabaseConfigurations_1}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: attacheddatabaseconfigurationsget -@try_manual -def step_attached_database_configurations_get(test, rg): - test.cmd('az kusto attached-database-configuration show ' - '--attached-database-configuration-name "{attachedDatabaseConfigurations_1}" ' - '--cluster-name "{Clusters_2}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustoattacheddatabaseconfigurationslistbycluster -@try_manual -def step_kusto_attached_database_configurations_list_by_cluster(test, rg): - test.cmd('az kusto attached-database-configuration list ' - '--cluster-name "{Clusters_3}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustoclusterlistfollowerdatabases -@try_manual -def step_kusto_cluster_list_follower_databases(test, rg): - test.cmd('az kusto cluster list-follower-database ' - '--cluster-name "{Clusters_3}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustoclusterdetachfollowerdatabases -@try_manual -def step_kusto_cluster_detach_follower_databases(test, rg): - test.cmd('az kusto cluster detach-follower-database ' - '--cluster-name "{Clusters_3}" ' - '--attached-database-configuration-name "{attachedDatabaseConfigurations_1}" ' - '--cluster-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.Kusto/clu' - 'sters/{Clusters_2}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustooperationslist -@try_manual -def step_kusto_operations_list(test, rg): - # EXAMPLE NOT FOUND! - pass - - -# EXAMPLE: kustodatabasesdelete -@try_manual -def step_kusto_databases_delete(test, rg): - test.cmd('az kusto database delete -y ' - '--cluster-name "{Clusters_3}" ' - '--database-name "KustoDatabase8" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: kustoclustersdelete -@try_manual -def step_kusto_clusters_delete(test, rg): - test.cmd('az kusto cluster delete -y ' - '--cluster-name "{Clusters_3}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: KustoDataConnectionValidation -@try_manual -def step_kusto_data_connection_validation(test, rg): - test.cmd('az kusto data-connection event-hub data-connection-validation ' - '--cluster-name "{Clusters_3}" ' - '--database-name "KustoDatabase8" ' - '--data-connection-name "{DataConnections8}" ' - '--consumer-group "$Default" ' - '--event-hub-resource-id "{eventhub_resource_id}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: KustoDataConnectionsCreateOrUpdate -@try_manual -def step_kusto_data_connections_create_or_update(test, rg): - test.cmd('az kusto data-connection event-hub create ' - '--cluster-name "{Clusters_3}" ' - '--data-connection-name "{DataConnections8}" ' - '--database-name "KustoDatabase8" ' - '--location "southcentralus" ' - '--consumer-group "$Default" ' - '--event-hub-resource-id "{eventhub_resource_id}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: KustoDataConnectionsGet -@try_manual -def step_kusto_data_connections_get(test, rg): - test.cmd('az kusto data-connection show ' - '--cluster-name "{Clusters_3}" ' - '--data-connection-name "{DataConnections8}" ' - '--database-name "KustoDatabase8" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: KustoDataConnectionsUpdate -@try_manual -def step_kusto_data_connections_update(test, rg): - test.cmd('az kusto data-connection event-hub update ' - '--cluster-name "{Clusters_3}" ' - '--data-connection-name "{DataConnections8}" ' - '--database-name "KustoDatabase8" ' - '--location "southcentralus" ' - '--consumer-group "$Default" ' - '--event-hub-resource-id "{eventhub_resource_id}" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: KustoDataConnectionsDelete -@try_manual -def step_kusto_data_connections_delete(test, rg): - test.cmd('az kusto data-connection delete -y ' - '--cluster-name "{Clusters_3}" ' - '--data-connection-name "{DataConnections8}" ' - '--database-name "KustoDatabase8" ' - '--resource-group "{rg}"', - checks=[]) - - -# EXAMPLE: /Scripts/put/KustoScriptsCreateOrUpdate -@try_manual -def step_script_create(test, rg): - test.cmd('az kusto script create ' - '--cluster-name "blablab123" ' - '--database-name "test00" ' - '--continue-on-errors true ' - '--script-url "https://testclients.blob.core.windows.net/testclientscontainer/script.txt" ' - '--script-url-sas-token "{sas}" ' - '--resource-group "testgroupyefkpv" ' - '--name "testscript"', - checks=[]) - - -# EXAMPLE: /Scripts/get/KustoScriptsGet -@try_manual -def step_script_show(test, rg, checks=None): - test.cmd('az kusto script show ' - '--cluster-name "blablab123" ' - '--database-name "test00" ' - '--resource-group "testgroupyefkpv" ' - '--name "testscript"', - checks=[]) - - -# EXAMPLE: /Scripts/get/KustoScriptsList -@try_manual -def step_script_list(test, rg, checks=None): - test.cmd('az kusto script list ' - '--cluster-name "blablab123" ' - '--database-name "test00" ' - '--resource-group "testgroupyefkpv"', - checks=[]) - - -def kusto_manual_setup(test): - - # Get sas-token for 'script' resource tests. - # Please update the '--expiry' with the relevant date - sas = test.cmd( - 'storage blob generate-sas -n script --account-name testclients -c testclientscontainer --permissions r --expiry 2021-05-18 --start 2021-05-08 --auth-mode login --as-user').output.strip() - - # Set parameters for tests. - test.kwargs.update({ - 'Clusters_2': 'clitestcluster0f327', - 'Clusters_3': 'clitestcluster327', - 'attachedDatabaseConfigurations_1': 'attachedDatabaseConfigurations2', - 'DataConnections8': 'DataConnections8', - 'eventhub_name': 'kustoclitesteh', - 'eventhub_namespace': 'ADX-EG-astauben', - 'eventhub_resource_id': '/subscriptions/fbccad30-f0ed-4ac4-9497-93bf6141062f/resourceGroups/astauben-tests/providers/Microsoft.EventHub/namespaces/ADX-EG-astauben/eventhubs/kustoclitesteh', - 'sas': sas - }) - - -@try_manual -def call_scenario(test, rg): - - # Set manual data for tests. - kusto_manual_setup(test) - step_script_create(test, rg) - step_kusto_clusters_create_or_update(test, rg) - step_kusto_databases_create_or_update(test, rg) - step_kusto_clusters_create_or_update2(test, rg) - step_attached_database_configuration_create(test, rg) - step_attached_database_configurations_get(test, rg) - step_kusto_clusters_check_name_availability(test, rg) - step_kusto_clusters_get(test, rg) - step_kusto_clusters_list(test, rg) - step_kusto_clusters_list_by_resource_group(test, rg) - step_kusto_clusters_list_resource_skus(test, rg) - step_kusto_clusters_list_skus(test, rg) - step_kusto_databases_create_or_update(test, rg) - step_kusto_database_check_name_availability(test, rg) - step_kusto_databases_list_by_cluster(test, rg) - step_kusto_databases_get(test, rg) - step_kusto_databases_update(test, rg) - step_kusto_database_principal_assignments_create_or_update(test, rg) - step_kusto_database_list_principals(test, rg) - step_kusto_database_principal_assignments_get(test, rg) - step_kusto_database_principal_assignments_delete(test, rg) - step_kusto_cluster_principal_assignments_create_or_update(test, rg) - step_kusto_cluster_principal_assignments_get(test, rg) - step_kusto_attached_database_configurations_list_by_cluster(test, rg) - step_kusto_cluster_list_follower_databases(test, rg) - step_kusto_cluster_detach_follower_databases(test, rg) - step_kusto_data_connection_validation(test, rg) - step_kusto_data_connections_create_or_update(test, rg) - step_kusto_data_connections_get(test, rg) - step_kusto_data_connections_update(test, rg) - step_kusto_data_connections_delete(test, rg) - step_kusto_operations_list(test, rg) - step_script_create(test, rg) - step_script_show(test, rg) - step_script_list(test, rg) - step_kusto_databases_delete(test, rg) - step_kusto_clusters_delete(test, rg) - +# Testcase: Scenario +@try_manual +def call_scenario(test): + setup_scenario(test) + # Create + step_cluster_create(test, checks=[ + test.check("name", "{myCluster}", case_sensitive=False), + test.check("identity.type", "SystemAssigned", case_sensitive=False), + test.check("location", "westus2", case_sensitive=False), + test.check("enableAutoStop", True), + test.check("enableDoubleEncryption", False), + test.check("enablePurge", True), + test.check("enableStreamingIngest", True), + test.check("publicNetworkAccess", "Enabled", case_sensitive=False), + test.check("sku.name", "Standard_D11_v2", case_sensitive=False), + test.check("sku.capacity", 2), + test.check("sku.tier", "Standard", case_sensitive=False), + ]) + step_cluster_principal_assignment_create(test, checks=[]) + step_leader_cluster_create(test, checks=[]) + step_database_create(test, checks=[]) + step_database_principal_assignment_create(test, checks=[]) + step_database_add_principal(test, checks=[]) + step_attached_database_configuration_create(test, checks=[]) + step_data_connection_event_hub_create(test, checks=[]) + step_script_create(test, checks=[]) + step_managed_private_endpoint_create(test, checks=[]) + step_cluster_add_language_extension(test, checks=[]) + step_private_endpoint_connection_create(test, checks=[]) + # Show / List + step_cluster_show(test, checks=[ + test.check("name", "{myCluster}", case_sensitive=False), + test.check("identity.type", "SystemAssigned", case_sensitive=False), + test.check("location", "West US 2", case_sensitive=False), + test.check("enableAutoStop", True), + test.check("enableStreamingIngest", True), + test.check("publicNetworkAccess", "Enabled", case_sensitive=False), + test.check("sku.name", "Standard_D11_v2", case_sensitive=False), + test.check("sku.capacity", 2), + test.check("sku.tier", "Standard", case_sensitive=False), + ]) + step_cluster_principal_assignment_show(test, checks=[]) + step_database_show(test, checks=[]) + step_script_show(test, checks=[]) + step_database_principal_assignment_show(test, checks=[]) + step_attached_database_configuration_show(test, checks=[ + test.check("location", "West US 2", case_sensitive=False), + test.check("defaultPrincipalsModificationKind", "Union", case_sensitive=False), + test.check("tableLevelSharingProperties.externalTablesToExclude[0]", "ExternalTable2", case_sensitive=False), + test.check("tableLevelSharingProperties.externalTablesToInclude[0]", "ExternalTable1", case_sensitive=False), + test.check("tableLevelSharingProperties.materializedViewsToExclude[0]", "MaterializedViewTable2", case_sensitive=False), + test.check("tableLevelSharingProperties.materializedViewsToInclude[0]", "MaterializedViewTable1", case_sensitive=False), + test.check("tableLevelSharingProperties.tablesToExclude[0]", "Table2", case_sensitive=False), + test.check("tableLevelSharingProperties.tablesToInclude[0]", "Table1", case_sensitive=False), + ]) + step_data_connection_show(test, checks=[ + test.check("location", "West US 2", case_sensitive=False), + test.check("eventHubResourceId", "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1", case_sensitive=False) + ]) + step_managed_private_endpoint_show(test, checks=[]) + step_private_endpoint_connection_show(test, checks=[]) + #step_private_link_resource_show(test, checks=[]) + step_cluster_list(test, checks=[]) + step_cluster_list_by_resource_group(test, checks=[ + test.check('length(@)', 2), + ]) + step_cluster_principal_assignment_list(test, checks=[]) + step_script_list(test, checks=[ + test.check('length(@)', 1), + ]) + step_cluster_list_sku(test, checks=[]) + step_cluster_list_sku_by_resource_group(test, checks=[]) + step_cluster_list_language_extension(test, checks=[ + test.check('length(@)', 2), + ]) + step_database_list(test, checks=[ + test.check('length(@)', 1), + ]) + step_cluster_list_follower_database(test, checks=[ + test.check('length(@)', 1), + ]) + step_database_principal_assignment_list(test, checks=[]) + step_database_list_principal(test, checks=[ + test.check('length(@)', 3), + ]) + step_attached_database_configuration_list(test, checks=[ + test.check('length(@)', 1), + ]) + step_data_connection_list(test, checks=[ + test.check('length(@)', 1), + ]) + step_managed_private_endpoint_list(test, checks=[]) + step_cluster_diagnose_virtual_network(test, checks=[]) + step_cluster_list_outbound(test, checks=[]) + step_private_endpoint_connection_list(test, checks=[]) + #step_private_link_resource_list(test, checks=[ + # test.check('length(@)', 1), + #]) + ####################step_operation_result_show(test, checks=[]) + # Update + validation + step_data_connection_event_hub_update(test, checks=[]) + step_managed_private_endpoint_update(test, checks=[]) + step_data_connection_validation(test, checks=[]) + step_script_update(test, checks=[]) + step_database_update(test, checks=[]) + step_cluster_stop(test, checks=[]) + step_cluster_start(test, checks=[]) + step_cluster_update(test, checks=[ + test.check("name", "{myCluster1}", case_sensitive=False), + test.check("identity.type", "SystemAssigned", case_sensitive=False), + test.check("location", "West US 2", case_sensitive=False), + test.check("enableAutoStop", True), + test.check("enablePurge", True), + test.check("enableStreamingIngest", True), + test.check("engineType", "V3", case_sensitive=False), + test.check("restrictOutboundNetworkAccess", "Disabled", case_sensitive=False), + ]) + # Remove + step_cluster_remove_language_extension(test, checks=[]) + step_managed_private_endpoint_delete(test, checks=[]) + step_private_endpoint_connection_delete(test, checks=[]) + step_script_delete(test, checks=[]) + step_database_principal_assignment_delete(test, checks=[]) + step_cluster_principal_assignment_delete(test, checks=[]) + step_database_remove_principal(test, checks=[]) + step_cluster_detach_follower_database(test, checks=[]) + step_attached_database_configuration_delete(test, checks=[]) + step_data_connection_delete(test, checks=[]) + step_database_delete(test, checks=[]) + step_cluster_delete(test, checks=[]) + # Cleanup + cleanup_scenario(test) + + +# Test class for Scenario +@try_manual +class KustoScenarioTest(ScenarioTest): + + def __init__(self, *args, **kwargs): + super(KustoScenarioTest, self).__init__(*args, **kwargs) + self.kwargs.update({ + 'subscription_id': self.get_subscription_id() + }) -@try_manual -class KustoManagementClientScenarioTest(ScenarioTest): + self.kwargs.update({ + 'myCluster': 'kustoclusterclitest7', + 'myScript': 'kustoScript2', + 'myCluster1': 'KustoClusterLeader7', + 'myDataConnection': 'DataConnection3', + 'myAttachedDatabaseConfiguration': 'myAttachedDatabaseConfiguration', + 'myManagedPrivateEndpoint': 'kustoManagedPrivateEndpoint4', + 'myPrivateEndpoint': 'kustoPrivateEndpoint4', + 'myPrivateLinkResource': 'privateLinkResource' + }) @AllowLargeResponse(size_kb=5000) @ResourceGroupPreparer(name_prefix='clitestkusto_kustorptest'[:7], key='rg', parameter_name='rg') - def test_kusto(self, rg): - - self.kwargs.update({ - 'subscription_id': self.get_subscription_id() - }) - - # TODO: Fix it ASAP - # call_scenario(self, rg) + @StorageAccountPreparer(name_prefix='clitestkusto_storageAccountTest'[:7], key='sa', resource_group_parameter_name='rg') + def test_kusto_Scenario(self, rg): + call_scenario(self) + calc_coverage(__file__) + raise_if() diff --git a/src/kusto/azext_kusto/manual/tests/latest/test_kusto_scenario_coverage.md b/src/kusto/azext_kusto/manual/tests/latest/test_kusto_scenario_coverage.md new file mode 100644 index 00000000000..01696becfc6 --- /dev/null +++ b/src/kusto/azext_kusto/manual/tests/latest/test_kusto_scenario_coverage.md @@ -0,0 +1,60 @@ +|Scenario|Result|ErrorMessage|ErrorStack|ErrorNormalized|StartDt|EndDt| +|step_cluster_create|successed||||2021-10-14 09:36:03.414659|2021-10-14 09:53:58.949988| +|step_cluster_principal_assignment_create|successed||||2021-10-14 09:53:58.950987|2021-10-14 09:54:32.618163| +|step_leader_cluster_create|successed||||2021-10-14 09:54:32.619162|2021-10-14 10:11:56.505562| +|step_database_create|successed||||2021-10-14 10:11:56.506561|2021-10-14 10:12:30.649216| +|step_database_principal_assignment_create|successed||||2021-10-14 10:12:30.651208|2021-10-14 10:13:04.082268| +|step_database_add_principal|successed||||2021-10-14 10:13:04.083267|2021-10-14 10:13:06.056476| +|step_attached_database_configuration_create|successed||||2021-10-14 10:13:06.057478|2021-10-14 10:13:40.518784| +|step_data_connection_event_hub_create|successed||||2021-10-14 10:13:40.518784|2021-10-14 10:14:14.509408| +|step_script_create|successed||||2021-10-14 10:14:14.511409|2021-10-14 10:14:49.615945| +|step_managed_private_endpoint_create|successed||||2021-10-14 10:14:49.616944|2021-10-14 10:17:55.234119| +|step_cluster_add_language_extension|successed||||2021-10-14 10:17:55.237125|2021-10-14 10:24:02.146495| +|step_private_endpoint_connection_create|successed||||2021-10-14 10:24:02.148503|2021-10-14 10:25:31.225707| +|step_private_endpoint_connection_list|successed||||2021-10-14 10:29:15.491116|2021-10-14 10:29:16.871118| +|step_cluster_show|successed||||2021-10-14 10:25:31.225707|2021-10-14 10:25:33.215897| +|step_cluster_principal_assignment_show|successed||||2021-10-14 10:25:33.216896|2021-10-14 10:25:38.236319| +|step_database_show|successed||||2021-10-14 10:25:38.236319|2021-10-14 10:25:40.142255| +|step_script_show|successed||||2021-10-14 10:25:40.143254|2021-10-14 10:25:42.120324| +|step_database_principal_assignment_show|successed||||2021-10-14 10:25:42.120324|2021-10-14 10:25:44.253244| +|step_attached_database_configuration_show|successed||||2021-10-14 10:25:44.254211|2021-10-14 10:25:46.104119| +|step_data_connection_show|successed||||2021-10-14 10:25:46.104119|2021-10-14 10:25:47.621701| +|step_managed_private_endpoint_show|successed||||2021-10-14 10:25:47.622701|2021-10-14 10:25:49.445207| +|step_private_endpoint_connection_show|successed||||2021-10-14 10:25:49.446204|2021-10-14 10:25:50.610224| +|step_cluster_list|successed||||2021-10-14 10:25:50.611227|2021-10-14 10:25:52.725380| +|step_cluster_list_by_resource_group|successed||||2021-10-14 10:25:52.725380|2021-10-14 10:25:54.521302| +|step_cluster_principal_assignment_list|successed||||2021-10-14 10:25:54.522301|2021-10-14 10:25:56.299881| +|step_script_list|successed||||2021-10-14 10:25:56.300882|2021-10-14 10:25:57.518883| +|step_cluster_list_sku|successed||||2021-10-14 10:25:57.518883|2021-10-14 10:25:58.501568| +|step_cluster_list_sku_by_resource_group|successed||||2021-10-14 10:25:58.502515|2021-10-14 10:25:59.834700| +|step_cluster_list_language_extension|successed||||2021-10-14 10:25:59.834700|2021-10-14 10:26:01.292248| +|step_database_list|successed||||2021-10-14 10:26:01.293251|2021-10-14 10:26:03.372997| +|step_cluster_list_follower_database|successed||||2021-10-14 10:26:03.372997|2021-10-14 10:26:05.261224| +|step_database_principal_assignment_list|successed||||2021-10-14 10:26:05.261224|2021-10-14 10:26:06.088263| +|step_database_list_principal|successed||||2021-10-14 10:26:06.089225|2021-10-14 10:26:07.520068| +|step_attached_database_configuration_list|successed||||2021-10-14 10:26:07.520068|2021-10-14 10:26:08.237323| +|step_data_connection_list|successed||||2021-10-14 10:26:08.238328|2021-10-14 10:26:08.988125| +|step_managed_private_endpoint_list|successed||||2021-10-14 10:26:08.988125|2021-10-14 10:26:09.652335| +|step_cluster_diagnose_virtual_network|successed||||2021-10-14 10:26:09.652335|2021-10-14 10:29:13.595032| +|step_cluster_list_outbound|successed||||2021-10-14 10:29:13.595032|2021-10-14 10:29:15.490118| +|step_data_connection_event_hub_update|successed||||2021-10-14 10:29:16.872099|2021-10-14 10:29:50.944237| +|step_managed_private_endpoint_update|successed||||2021-10-14 10:29:50.945237|2021-10-14 10:30:53.373815| +|step_data_connection_validation|successed||||2021-10-14 10:30:53.379807|2021-10-14 10:31:26.607581| +|step_script_update|successed||||2021-10-14 10:31:26.608582|2021-10-14 10:32:01.418382| +|step_database_update|successed||||2021-10-14 10:32:01.419383|2021-10-14 10:32:33.772388| +|step_cluster_stop|successed||||2021-10-14 10:32:33.773388|2021-10-14 10:39:10.779284| +|step_cluster_start|successed||||2021-10-14 10:39:10.780287|2021-10-14 10:50:52.813438| +|step_cluster_update|successed||||2021-10-14 10:50:52.815434|2021-10-14 10:51:01.980794| +|step_cluster_remove_language_extension|successed||||2021-10-14 10:51:01.980794|2021-10-14 10:54:06.824889| +|step_managed_private_endpoint_delete|successed||||2021-10-14 10:54:06.825889|2021-10-14 10:55:39.936075| +|step_private_endpoint_connection_delete|successed||||2021-10-14 10:55:39.937076|2021-10-14 10:56:37.358009| +|step_script_delete|successed||||2021-10-14 10:56:37.358009|2021-10-14 10:57:11.883394| +|step_database_principal_assignment_delete|successed||||2021-10-14 10:57:11.884397|2021-10-14 10:57:46.852265| +|step_cluster_principal_assignment_delete|successed||||2021-10-14 10:57:46.855267|2021-10-14 10:58:19.349122| +|step_database_remove_principal|successed||||2021-10-14 10:58:19.350120|2021-10-14 10:58:21.368477| +|step_cluster_detach_follower_database|successed||||2021-10-14 10:58:21.369477|2021-10-14 10:58:54.198211| +|step_attached_database_configuration_delete|successed||||2021-10-14 10:58:54.201209|2021-10-14 10:58:55.601640| +|step_data_connection_delete|successed||||2021-10-14 10:58:55.602640|2021-10-14 10:59:28.693348| +|step_database_delete|successed||||2021-10-14 10:59:28.694348|2021-10-14 11:00:01.699212| +|step_cluster_delete|successed||||2021-10-14 11:00:01.700212|2021-10-14 11:06:39.467772| +Coverage: 58/58 diff --git a/src/kusto/azext_kusto/tests/latest/example_steps.py b/src/kusto/azext_kusto/tests/latest/example_steps.py index 4306d76e81d..a0bb03659f3 100644 --- a/src/kusto/azext_kusto/tests/latest/example_steps.py +++ b/src/kusto/azext_kusto/tests/latest/example_steps.py @@ -14,648 +14,836 @@ # EXAMPLE: /AttachedDatabaseConfigurations/put/AttachedDatabaseConfigurationsCreateOrUpdate @try_manual -def step_attached_database_configuration_create(test, rg, checks=None): +def step_attached_database_configuration_create(test, checks=None): if checks is None: checks = [] test.cmd('az kusto attached-database-configuration create ' - '--name "{myAttachedDatabaseConfiguration2}" ' - '--cluster-name "{myCluster}" ' - '--location "westus" ' + '--name "{myAttachedDatabaseConfiguration}" ' + '--cluster-name "{myCluster1}" ' + '--location "westus2" ' '--cluster-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.Kusto/Clu' - 'sters/{myCluster3}" ' - '--database-name "kustodatabase" ' + 'sters/{myCluster}" ' + '--database-name "KustoDatabase" ' '--default-principals-modification-kind "Union" ' '--table-level-sharing-properties external-tables-to-exclude="ExternalTable2" ' 'external-tables-to-include="ExternalTable1" materialized-views-to-exclude="MaterializedViewTable2" ' 'materialized-views-to-include="MaterializedViewTable1" tables-to-exclude="Table2" ' 'tables-to-include="Table1" ' - '--resource-group "{rg}"', + '--resource-group "{rg}" ', checks=[]) test.cmd('az kusto attached-database-configuration wait --created ' - '--name "{myAttachedDatabaseConfiguration2}" ' - '--resource-group "{rg}"', + '--name "{myAttachedDatabaseConfiguration}" ' + '--cluster-name "{myCluster1}" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /AttachedDatabaseConfigurations/get/AttachedDatabaseConfigurationsGet @try_manual -def step_attached_database_configuration_show(test, rg, checks=None): +def step_attached_database_configuration_show(test, checks=None): if checks is None: checks = [] test.cmd('az kusto attached-database-configuration show ' - '--name "{myAttachedDatabaseConfiguration2}" ' - '--cluster-name "{myCluster}" ' - '--resource-group "{rg}"', + '--name "{myAttachedDatabaseConfiguration}" ' + '--cluster-name "{myCluster1}" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /AttachedDatabaseConfigurations/get/KustoAttachedDatabaseConfigurationsListByCluster @try_manual -def step_attached_database_configuration_list(test, rg, checks=None): +def step_attached_database_configuration_list(test, checks=None): if checks is None: checks = [] test.cmd('az kusto attached-database-configuration list ' - '--cluster-name "{myCluster}" ' - '--resource-group "{rg}"', + '--cluster-name "{myCluster1}" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Clusters/put/KustoClustersCreateOrUpdate @try_manual -def step_cluster_create(test, rg, checks=None): +def step_cluster_create(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster create ' - '--cluster-name "{Clusters_3}" ' - '--identity-type "SystemAssigned" ' - '--location "southcentralus" ' + '--cluster-name "{myCluster}" ' + '--type="SystemAssigned" ' + '--location "westus2" ' + '--allowed-ip-range-list "0.0.0.0/0" ' + '--enable-auto-stop true ' '--enable-purge true ' '--enable-streaming-ingest true ' '--key-vault-properties key-name="" key-vault-uri="" key-version="" ' '--sku name="Standard_D11_v2" capacity=2 tier="Standard" ' - '--resource-group "{rg}"', + '--public-network-access "Enabled" ' + '--resource-group "{rg}" ', checks=[]) test.cmd('az kusto cluster wait --created ' - '--cluster-name "{Clusters_3}" ' - '--resource-group "{rg}"', + '--cluster-name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=[]) + +# EXAMPLE: /Clusters/put/KustoClustersCreateOrUpdate +@try_manual +def step_leader_cluster_create(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster create ' + '--cluster-name "{myCluster1}" ' + '--type="SystemAssigned" ' + '--location "westus2" ' + '--enable-purge true ' + '--enable-streaming-ingest true ' + '--sku name="Standard_D11_v2" capacity=2 tier="Standard" ' + '--resource-group "{rg}" ', + checks=[]) + test.cmd('az kusto cluster wait --created ' + '--cluster-name "{myCluster1}" ' + '--resource-group "{rg}" ', checks=[]) +# EXAMPLE: /Clusters/get/Get Kusto cluster outbound network dependencies +@try_manual +def step_cluster_list_outbound(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto cluster list-outbound-network-dependency-endpoint ' + '--name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks) + + # EXAMPLE: /Clusters/get/KustoClustersGet @try_manual -def step_cluster_show(test, rg, checks=None): +def step_cluster_show(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster show ' '--name "{myCluster}" ' - '--resource-group "{rg}"', + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Clusters/get/KustoClustersList @try_manual -def step_cluster_list(test, rg, checks=None): +def step_cluster_list(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster list ' - '-g ""', + '-g "" ', checks=checks) # EXAMPLE: /Clusters/get/KustoClustersListByResourceGroup @try_manual -def step_cluster_list2(test, rg, checks=None): +def step_cluster_list_by_resource_group(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster list ' - '--resource-group "{rg}"', + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Clusters/get/KustoClustersListResourceSkus @try_manual -def step_cluster_list_sku(test, rg, checks=None): +def step_cluster_list_sku_by_resource_group(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster list-sku ' '--name "{myCluster}" ' - '--resource-group "{rg}"', + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Clusters/get/KustoClustersListSkus @try_manual -def step_cluster_list_sku2(test, rg, checks=None): +def step_cluster_list_sku(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster list-sku ' - '-g ""', + '-g "" ', checks=checks) # EXAMPLE: /Clusters/patch/KustoClustersUpdate @try_manual -def step_cluster_update(test, rg, checks=None): +def step_cluster_update(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster update ' - '--name "{myCluster}" ' + '--name "{myCluster1}" ' '--type "SystemAssigned" ' - '--location "westus" ' + '--location "westus2" ' + '--enable-auto-stop true ' '--enable-purge true ' '--enable-streaming-ingest true ' - '--engine-type "V2" ' - '--key-vault-properties key-name="keyName" key-vault-uri="https://dummy.keyvault.com" ' - 'key-version="keyVersion" ' - '--resource-group "{rg}"', + '--engine-type "V3" ' + '--restrict-outbound-network-access "Disabled" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Clusters/post/KustoClusterAddLanguageExtensions @try_manual -def step_cluster_add_language_extension(test, rg, checks=None): +def step_cluster_add_language_extension(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster add-language-extension ' '--name "{myCluster}" ' '--value language-extension-name="PYTHON" ' '--value language-extension-name="R" ' - '--resource-group "{rg}"', + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Clusters/post/KustoClusterDetachFollowerDatabases @try_manual -def step_cluster_detach_follower_database(test, rg, checks=None): +def step_cluster_detach_follower_database(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster detach-follower-database ' '--name "{myCluster}" ' '--attached-database-configuration-name "{myAttachedDatabaseConfiguration}" ' '--cluster-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.Kusto/clu' - 'sters/{myCluster2}" ' - '--resource-group "{rg}"', + 'sters/{myCluster1}" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Clusters/post/KustoClusterDiagnoseVirtualNetwork @try_manual -def step_cluster_diagnose_virtual_network(test, rg, checks=None): +def step_cluster_diagnose_virtual_network(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster diagnose-virtual-network ' '--name "{myCluster}" ' - '--resource-group "{rg}"', + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Clusters/post/KustoClusterListFollowerDatabases @try_manual -def step_cluster_list_follower_database(test, rg, checks=None): +def step_cluster_list_follower_database(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster list-follower-database ' '--name "{myCluster}" ' - '--resource-group "{rg}"', + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Clusters/post/KustoClusterListLanguageExtensions @try_manual -def step_cluster_list_language_extension(test, rg, checks=None): +def step_cluster_list_language_extension(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster list-language-extension ' '--name "{myCluster}" ' - '--resource-group "{rg}"', + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Clusters/post/KustoClusterRemoveLanguageExtensions @try_manual -def step_cluster_remove_language_extension(test, rg, checks=None): +def step_cluster_remove_language_extension(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster remove-language-extension ' '--name "{myCluster}" ' '--value language-extension-name="PYTHON" ' '--value language-extension-name="R" ' - '--resource-group "{rg}"', + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Clusters/post/KustoClustersStart @try_manual -def step_cluster_start(test, rg, checks=None): +def step_cluster_start(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster start ' - '--name "{myCluster}" ' - '--resource-group "{rg}"', + '--name "{myCluster1}" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Clusters/post/KustoClustersStop @try_manual -def step_cluster_stop(test, rg, checks=None): +def step_cluster_stop(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster stop ' - '--name "{myCluster}" ' - '--resource-group "{rg}"', + '--name "{myCluster1}" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /ClusterPrincipalAssignments/put/KustoClusterPrincipalAssignmentsCreateOrUpdate @try_manual -def step_cluster_principal_assignment_create(test, rg, checks=None): +def step_cluster_principal_assignment_create(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster-principal-assignment create ' '--cluster-name "{myCluster}" ' - '--principal-id "87654321-1234-1234-1234-123456789123" ' + '--principal-assignment-name "testcli1" ' '--principal-type "App" ' + '--principal-id "ad064aa1-8b51-41ec-9c64-0d3037577d63" ' '--role "AllDatabasesAdmin" ' - '--tenant-id "12345678-1234-1234-1234-123456789123" ' - '--principal-assignment-name "kustoprincipal1" ' - '--resource-group "{rg}"', + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /ClusterPrincipalAssignments/get/KustoClusterPrincipalAssignmentsGet @try_manual -def step_cluster_principal_assignment_show(test, rg, checks=None): +def step_cluster_principal_assignment_show(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster-principal-assignment show ' '--cluster-name "{myCluster}" ' - '--principal-assignment-name "kustoprincipal1" ' - '--resource-group "{rg}"', + '--principal-assignment-name "testcli1" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /ClusterPrincipalAssignments/get/KustoPrincipalAssignmentsList @try_manual -def step_cluster_principal_assignment_list(test, rg, checks=None): +def step_cluster_principal_assignment_list(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster-principal-assignment list ' '--cluster-name "{myCluster}" ' - '--resource-group "{rg}"', + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /DatabasePrincipalAssignments/put/KustoDatabasePrincipalAssignmentsCreateOrUpdate @try_manual -def step_database_principal_assignment_create(test, rg, checks=None): +def step_database_principal_assignment_create(test, checks=None): if checks is None: - checks = [] + checks = [] test.cmd('az kusto database-principal-assignment create ' '--cluster-name "{myCluster}" ' - '--database-name "Kustodatabase8" ' - '--principal-id "87654321-1234-1234-1234-123456789123" ' - '--principal-type "App" ' + '--database-name "kustoDatabase" ' '--role "Admin" ' - '--tenant-id "12345678-1234-1234-1234-123456789123" ' - '--principal-assignment-name "kustoprincipal1" ' - '--resource-group "{rg}"', + '--principal-type "App" ' + '--principal-id "ad064aa1-8b51-41ec-9c64-0d3037577d63" ' + '--principal-assignment-name "testcli1" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /DatabasePrincipalAssignments/get/KustoDatabasePrincipalAssignmentsGet @try_manual -def step_database_principal_assignment_show(test, rg, checks=None): +def step_database_principal_assignment_show(test, checks=None): if checks is None: checks = [] test.cmd('az kusto database-principal-assignment show ' '--cluster-name "{myCluster}" ' - '--database-name "Kustodatabase8" ' - '--principal-assignment-name "kustoprincipal1" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--principal-assignment-name "testcli1" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /DatabasePrincipalAssignments/get/KustoPrincipalAssignmentsList @try_manual -def step_database_principal_assignment_list(test, rg, checks=None): +def step_database_principal_assignment_list(test, checks=None): if checks is None: checks = [] test.cmd('az kusto database-principal-assignment list ' '--cluster-name "{myCluster}" ' - '--database-name "Kustodatabase8" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /DatabasePrincipalAssignments/delete/KustoDatabasePrincipalAssignmentsDelete @try_manual -def step_database_principal_assignment_delete(test, rg, checks=None): +def step_database_principal_assignment_delete(test, checks=None): if checks is None: checks = [] test.cmd('az kusto database-principal-assignment delete -y ' '--cluster-name "{myCluster}" ' - '--database-name "Kustodatabase8" ' - '--principal-assignment-name "kustoprincipal1" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--principal-assignment-name "testcli1" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Databases/put/Kusto ReadWrite database create or update @try_manual -def step_database_create(test, rg, checks=None): +def step_database_create(test, checks=None): if checks is None: checks = [] test.cmd('az kusto database create ' '--cluster-name "{myCluster}" ' - '--database-name "KustoDatabase8" ' - '--parameters "{{\\"location\\":\\"westus\\",\\"properties\\":{{\\"softDeletePeriod\\":\\"P1D\\"}}}}" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--read-write-database location="westus2" soft-delete-period="P1D" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Databases/get/KustoDatabasesGet @try_manual -def step_database_show(test, rg, checks=None): +def step_database_show(test, checks=None): if checks is None: checks = [] test.cmd('az kusto database show ' '--cluster-name "{myCluster}" ' - '--database-name "KustoDatabase8" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Databases/get/KustoDatabasesListByCluster @try_manual -def step_database_list(test, rg, checks=None): +def step_database_list(test, checks=None): if checks is None: checks = [] test.cmd('az kusto database list ' '--cluster-name "{myCluster}" ' - '--resource-group "{rg}"', + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Databases/patch/KustoDatabasesUpdate @try_manual -def step_database_update(test, rg, checks=None): +def step_database_update(test, checks=None): if checks is None: checks = [] test.cmd('az kusto database update ' '--cluster-name "{myCluster}" ' - '--database-name "KustoDatabase8" ' - '--parameters "{{\\"properties\\":{{\\"hotCachePeriod\\":\\"P1D\\"}}}}" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--read-write-database hot-cache-period="P1D" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Databases/post/KustoDatabaseAddPrincipals @try_manual -def step_database_add_principal(test, rg, checks=None): +def step_database_add_principal(test, checks=None): if checks is None: checks = [] test.cmd('az kusto database add-principal ' '--cluster-name "{myCluster}" ' - '--database-name "KustoDatabase8" ' - '--value name="Some User" type="User" app-id="" email="user@microsoft.com" fqn="aaduser role="Admin" ' - '--value name="Kusto" type="Group" app-id="" email="kusto@microsoft.com" fqn="aadgroup role="Viewer" ' - '--value name="SomeApp" type="App" app-id="some_guid_app_id" email="" fqn="aadapp role="Admin" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--value name="clitest" type="App" app-id="7bd74dc8-dd5f-4cee-8e64-866138abcf89" role="Admin" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Databases/post/KustoDatabaseListPrincipals @try_manual -def step_database_list_principal(test, rg, checks=None): +def step_database_list_principal(test, checks=None): if checks is None: checks = [] test.cmd('az kusto database list-principal ' '--cluster-name "{myCluster}" ' - '--database-name "KustoDatabase8" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Databases/post/KustoDatabaseRemovePrincipals @try_manual -def step_database_remove_principal(test, rg, checks=None): +def step_database_remove_principal(test, checks=None): if checks is None: checks = [] test.cmd('az kusto database remove-principal ' '--cluster-name "{myCluster}" ' - '--database-name "KustoDatabase8" ' - '--value name="Some User" type="User" app-id="" email="user@microsoft.com" fqn="aaduser role="Admin" ' - '--value name="Kusto" type="Group" app-id="" email="kusto@microsoft.com" fqn="aadgroup role="Viewer" ' - '--value name="SomeApp" type="App" app-id="some_guid_app_id" email="" fqn="aadapp role="Admin" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--value name="clitest" type="App" app-id="7bd74dc8-dd5f-4cee-8e64-866138abcf89" role="Admin" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Databases/delete/KustoDatabasesDelete @try_manual -def step_database_delete(test, rg, checks=None): +def step_database_delete(test, checks=None): if checks is None: checks = [] test.cmd('az kusto database delete -y ' '--cluster-name "{myCluster}" ' - '--database-name "KustoDatabase8" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /DataConnections/put/KustoDataConnectionsCreateOrUpdate @try_manual -def step_data_connection_event_hub_create(test, rg, checks=None): +def step_data_connection_event_hub_create(test, checks=None): if checks is None: checks = [] test.cmd('az kusto data-connection event-hub create ' '--cluster-name "{myCluster}" ' '--name "{myDataConnection}" ' - '--database-name "KustoDatabase8" ' - '--location "westus" ' - '--consumer-group "testConsumerGroup1" ' - '--event-hub-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.EventHu' - 'b/namespaces/eventhubTestns1/eventhubs/eventhubTest1" ' - '--managed-identity-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.' - 'ManagedIdentity/userAssignedIdentities/managedidentityTest1" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--location "westus2" ' + '--consumer-group "$Default" ' + '--event-hub-resource-id "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.EventHu' + 'b/namespaces/testcli/eventhubs/eventhubTest1" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /DataConnections/get/KustoDatabasesListByCluster @try_manual -def step_data_connection_list(test, rg, checks=None): +def step_data_connection_list(test, checks=None): if checks is None: checks = [] test.cmd('az kusto data-connection list ' '--cluster-name "{myCluster}" ' - '--database-name "KustoDatabase8" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /DataConnections/get/KustoDataConnectionsGet @try_manual -def step_data_connection_show(test, rg, checks=None): +def step_data_connection_show(test, checks=None): if checks is None: checks = [] test.cmd('az kusto data-connection show ' '--cluster-name "{myCluster}" ' '--name "{myDataConnection}" ' - '--database-name "KustoDatabase8" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /DataConnections/patch/KustoDataConnectionsUpdate @try_manual -def step_data_connection_event_hub_update(test, rg, checks=None): +def step_data_connection_event_hub_update(test, checks=None): if checks is None: checks = [] test.cmd('az kusto data-connection event-hub update ' '--cluster-name "{myCluster}" ' '--name "{myDataConnection}" ' - '--database-name "KustoDatabase8" ' - '--location "westus" ' - '--consumer-group "testConsumerGroup1" ' - '--event-hub-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.EventHu' - 'b/namespaces/eventhubTestns1/eventhubs/eventhubTest1" ' - '--managed-identity-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.' - 'ManagedIdentity/userAssignedIdentities/managedidentityTest1" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--location "westus2" ' + '--resource-group "{rg}" ' + '--consumer-group "$Default" ' + '--event-hub-resource-id "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.EventHu' + 'b/namespaces/testcli/eventhubs/eventhubTest1" ', checks=checks) # EXAMPLE: /DataConnections/post/KustoDataConnectionValidation @try_manual -def step_data_connection_event(test, rg, checks=None): +def step_data_connection_validation(test, checks=None): if checks is None: checks = [] test.cmd('az kusto data-connection event-hub data-connection-validation ' '--cluster-name "{myCluster}" ' - '--database-name "KustoDatabase8" ' + '--database-name "KustoDatabase" ' '--name "{myDataConnection}" ' - '--consumer-group "testConsumerGroup1" ' - '--event-hub-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.EventHu' - 'b/namespaces/eventhubTestns1/eventhubs/eventhubTest1" ' - '--managed-identity-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.' - 'ManagedIdentity/userAssignedIdentities/managedidentityTest1" ' - '--resource-group "{rg}"', + '--consumer-group "$Default" ' + '--event-hub-resource-id "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.EventHu' + 'b/namespaces/testcli/eventhubs/eventhubTest1" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /DataConnections/delete/KustoDataConnectionsDelete @try_manual -def step_data_connection_delete(test, rg, checks=None): +def step_data_connection_delete(test, checks=None): if checks is None: checks = [] test.cmd('az kusto data-connection delete -y ' '--cluster-name "{myCluster}" ' - '--name "{myDataConnection2}" ' - '--database-name "KustoDatabase8" ' - '--resource-group "{rg}"', + '--name "{myDataConnection}" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ManagedPrivateEndpoints/put/KustoManagedPrivateEndpointsCreateOrUpdate +@try_manual +def step_managed_private_endpoint_create(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto managed-private-endpoint create ' + '--cluster-name "{myCluster}" ' + '--name "{myManagedPrivateEndpoint}" ' + '--group-id "blob" ' + '--private-link-resource-id "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.Stor' + 'age/storageAccounts/clisatest" ' + '--request-message "Please Approve." ' + '--resource-group "{rg}" ', + checks=[]) + test.cmd('az kusto managed-private-endpoint wait --created ' + '--cluster-name "{myCluster}" ' + '--name "{myManagedPrivateEndpoint}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ManagedPrivateEndpoints/get/KustoManagedPrivateEndpointsGet +@try_manual +def step_managed_private_endpoint_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto managed-private-endpoint show ' + '--cluster-name "{myCluster}" ' + '--name "{myManagedPrivateEndpoint}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ManagedPrivateEndpoints/get/KustoManagedPrivateEndpointsList +@try_manual +def step_managed_private_endpoint_list(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto managed-private-endpoint list ' + '--cluster-name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ManagedPrivateEndpoints/patch/KustoManagedPrivateEndpointsUpdate +@try_manual +def step_managed_private_endpoint_update(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto managed-private-endpoint update ' + '--cluster-name "{myCluster}" ' + '--name "{myManagedPrivateEndpoint}" ' + '--group-id "blob" ' + '--private-link-resource-id "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.Stor' + 'age/storageAccounts/clisatest" ' + '--request-message "Please Approve." ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /ManagedPrivateEndpoints/delete/ManagedPrivateEndpointsDelete +@try_manual +def step_managed_private_endpoint_delete(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto managed-private-endpoint delete -y ' + '--cluster-name "{myCluster}" ' + '--name "{myManagedPrivateEndpoint}" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Clusters/delete/KustoClustersDelete @try_manual -def step_cluster_delete(test, rg, checks=None): +def step_cluster_delete(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster delete -y ' - '--name "{myCluster}" ' - '--resource-group "{rg}"', + '--name "{myCluster1}" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /AttachedDatabaseConfigurations/delete/AttachedDatabaseConfigurationsDelete @try_manual -def step_attached_database_configuration_delete(test, rg, checks=None): +def step_attached_database_configuration_delete(test, checks=None): if checks is None: checks = [] test.cmd('az kusto attached-database-configuration delete -y ' - '--name "{myAttachedDatabaseConfiguration2}" ' + '--name "{myAttachedDatabaseConfiguration}" ' '--cluster-name "{myCluster}" ' - '--resource-group "{rg}"', + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /ClusterPrincipalAssignments/delete/KustoClusterPrincipalAssignmentsDelete @try_manual -def step_cluster_principal_assignment_delete(test, rg, checks=None): +def step_cluster_principal_assignment_delete(test, checks=None): if checks is None: checks = [] test.cmd('az kusto cluster-principal-assignment delete -y ' '--cluster-name "{myCluster}" ' - '--principal-assignment-name "kustoprincipal1" ' - '--resource-group "{rg}"', + '--principal-assignment-name "testcli1" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /OperationsResults/get/KustoOperationResultsGet @try_manual -def step_operation_result_show(test, rg, checks=None): +def step_operation_result_show(test, checks=None): if checks is None: checks = [] test.cmd('az kusto operation-result show ' '--operation-id "30972f1b-b61d-4fd8-bd34-3dcfa24670f3" ' - '--location "westus"', + '--location "westus2" ', + checks=checks) + + +# EXAMPLE: /PrivateEndpointConnections/put/Approve or reject a private endpoint connection with a given name. +@try_manual +def step_private_endpoint_connection_create(test, checks=None): + test.cmd('az network private-endpoint create ' + '-n "{myPrivateEndpoint}" ' + '-g "testrg" ' + '--group-id "cluster" ' + '--manual-request true ' + '--subnet "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/MyVnet/subnets/MySubnet" ' + '--private-connection-resource-id "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.Kusto/Clusters/{myCluster}" ' + '--connection-name "test"', + checks=checks) + step_private_endpoint_connection_list(test) + test.cmd('az kusto private-endpoint-connection create ' + '--cluster-name "{myCluster}" ' + '--private-link-service-connection-state description="Approved by test" status="Approved" ' + '--name "{myPrivateEndpointConnection}" ' + '--resource-group "{rg}"', + checks=[]) + test.cmd('az kusto private-endpoint-connection wait --created ' + '--cluster-name "{myCluster}" ' + '--name "{myPrivateEndpointConnection}" ' + '--resource-group "{rg}"', + checks=checks) + +# EXAMPLE: /PrivateEndpointConnections/get/Gets private endpoint connection. +@try_manual +def step_private_endpoint_connection_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto private-endpoint-connection show ' + '--cluster-name "{myCluster}" ' + '--name "{myPrivateEndpointConnection}" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /PrivateEndpointConnections/get/KustoPrivateEndpointConnectionsList +@try_manual +def step_private_endpoint_connection_list(test, checks=None): + if checks is None: + checks = [] + myPrivateEndpointConnectionRes = test.cmd('az kusto private-endpoint-connection list ' + '--cluster-name "{myCluster}" ' + '--resource-group "{rg}" ', + checks=checks).get_output_in_json() + print(myPrivateEndpointConnectionRes[0]["name"]) + test.kwargs.update({ + 'myPrivateEndpointConnection': myPrivateEndpointConnectionRes[0]["name"] + }) + + +# EXAMPLE: /PrivateEndpointConnections/delete/Deletes a private endpoint connection with a given name. +@try_manual +def step_private_endpoint_connection_delete(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto private-endpoint-connection delete -y ' + '--cluster-name "{myCluster}" ' + '--name "{myPrivateEndpointConnection}" ' + '--resource-group "{rg}" ', + checks=checks) + test.cmd('az network private-endpoint delete ' + '-n "{myPrivateEndpoint}" ' + '-g "testrg" ', + checks=checks) + +# EXAMPLE: /PrivateLinkResources/get/Gets private endpoint connection. +@try_manual +def step_private_link_resource_show(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto private-link-resource show ' + '--cluster-name "{myCluster}" ' + '--name "cluster" ' + '--resource-group "{rg}" ', + checks=checks) + + +# EXAMPLE: /PrivateLinkResources/get/Gets private endpoint connections. +@try_manual +def step_private_link_resource_list(test, checks=None): + if checks is None: + checks = [] + test.cmd('az kusto private-link-resource list ' + '--cluster-name "{myCluster}" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Scripts/put/KustoScriptsCreateOrUpdate @try_manual -def step_script_create(test, rg, checks=None): +def step_script_create(test, checks=None): if checks is None: checks = [] test.cmd('az kusto script create ' '--cluster-name "{myCluster}" ' - '--database-name "KustoDatabase8" ' + '--database-name "KustoDatabase" ' '--continue-on-errors true ' - '--force-update-tag "2bcf3c21-ffd1-4444-b9dd-e52e00ee53fe" ' - '--script-url "https://mysa.blob.core.windows.net/container/script.txt" ' - '--script-url-sas-token "?sv=2019-02-02&st=2019-04-29T22%3A18%3A26Z&se=2019-04-30T02%3A23%3A26Z&sr=b&sp=rw' - '&sip=168.1.5.60-168.1.5.70&spr=https&sig=********************************" ' + '--script-url "https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt" ' + '--script-url-sas-token "sp=r&st=2021-10-10T13:27:37Z&se=2024-09-06T21:27:37Z&sv=2020-08-04&sr=b&sig=bQv3g3VpesJ3nv9Fbs%2Bc0V0PQby9AY%2BFLzQBxk5a9us%3D" ' '--resource-group "{rg}" ' - '--name "{myScript}"', + '--name "{myScript}" ', checks=[]) test.cmd('az kusto script wait --created ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' '--resource-group "{rg}" ' - '--name "{myScript}"', + '--name "{myScript}" ', checks=checks) # EXAMPLE: /Scripts/get/KustoScriptsGet @try_manual -def step_script_show(test, rg, checks=None): +def step_script_show(test, checks=None): if checks is None: checks = [] test.cmd('az kusto script show ' '--cluster-name "{myCluster}" ' - '--database-name "Kustodatabase8" ' + '--database-name "KustoDatabase" ' '--resource-group "{rg}" ' - '--name "{myScript}"', + '--name "{myScript}" ', checks=checks) # EXAMPLE: /Scripts/get/KustoScriptsList @try_manual -def step_script_list(test, rg, checks=None): +def step_script_list(test, checks=None): if checks is None: checks = [] test.cmd('az kusto script list ' '--cluster-name "{myCluster}" ' - '--database-name "Kustodatabase8" ' - '--resource-group "{rg}"', + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ', checks=checks) # EXAMPLE: /Scripts/patch/KustoScriptsUpdate @try_manual -def step_script_update(test, rg, checks=None): +def step_script_update(test, checks=None): if checks is None: checks = [] test.cmd('az kusto script update ' '--cluster-name "{myCluster}" ' - '--database-name "KustoDatabase8" ' + '--database-name "KustoDatabase" ' '--continue-on-errors true ' - '--force-update-tag "2bcf3c21-ffd1-4444-b9dd-e52e00ee53fe" ' - '--script-url "https://mysa.blob.core.windows.net/container/script.txt" ' - '--script-url-sas-token "?sv=2019-02-02&st=2019-04-29T22%3A18%3A26Z&se=2019-04-30T02%3A23%3A26Z&sr=b&sp=rw' - '&sip=168.1.5.60-168.1.5.70&spr=https&sig=********************************" ' + '--script-url "https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt" ' + '--script-url-sas-token "sp=r&st=2021-10-10T13:27:37Z&se=2024-09-06T21:27:37Z&sv=2020-08-04&sr=b&sig=bQv3g3VpesJ3nv9Fbs%2Bc0V0PQby9AY%2BFLzQBxk5a9us%3D" ' '--resource-group "{rg}" ' - '--name "{myScript}"', + '--name "{myScript}" ', checks=checks) # EXAMPLE: /Scripts/delete/KustoScriptsDelete @try_manual -def step_script_delete(test, rg, checks=None): +def step_script_delete(test, checks=None): if checks is None: checks = [] test.cmd('az kusto script delete -y ' '--cluster-name "{myCluster}" ' - '--database-name "KustoDatabase8" ' + '--database-name "KustoDatabase" ' + '--resource-group "{rg}" ' + '--name "{myScript}" ', + checks=[]) + test.cmd('az kusto script wait --deleted ' + '--cluster-name "{myCluster}" ' + '--database-name "KustoDatabase" ' '--resource-group "{rg}" ' - '--name "{myScript}"', + '--name "{myScript}" ', checks=checks) diff --git a/src/kusto/azext_kusto/tests/latest/recordings/test_kusto_Scenario.yaml b/src/kusto/azext_kusto/tests/latest/recordings/test_kusto_Scenario.yaml index 6ca93eb9845..0c443480092 100644 --- a/src/kusto/azext_kusto/tests/latest/recordings/test_kusto_Scenario.yaml +++ b/src/kusto/azext_kusto/tests/latest/recordings/test_kusto_Scenario.yaml @@ -1,77 +1,46 @@ interactions: - request: - body: ' - - 2021-05-08T00:00:00Z2021-05-11T00:00:00Z' - headers: - Connection: - - keep-alive - Content-Length: - - '130' - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.9.4; Windows 10) AZURECLI/2.22.1 - x-ms-date: - - Sat, 08 May 2021 16:59:47 GMT - x-ms-version: - - '2018-11-09' - method: POST - uri: https://testclients.blob.core.windows.net/?restype=service&comp=userdelegationkey - response: - body: - string: "\uFEFF53d8fc23-618e-49fa-ae3f-ae65cc60aa3772f988bf-86f1-41af-91ab-2d7cd011db472021-05-08T00:00:00Z2021-05-11T00:00:00Zb2018-11-09A0lEiYyJmfltmPhDGoq3JXAnxcHN8cH7l7oHTQ3FBd4=" - headers: - content-type: - - application/xml - date: - - Sat, 08 May 2021 16:59:48 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - transfer-encoding: - - chunked - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"scriptUrl": "https://testclients.blob.core.windows.net/testclientscontainer/script.txt", - "scriptUrlSasToken": "", - "continueOnErrors": true}}' + body: '{"location": "westus2", "sku": {"name": "Standard_D11_v2", "capacity": + 2, "tier": "Standard"}, "identity": {"type": "SystemAssigned"}, "properties": + {"enableDiskEncryption": false, "enableStreamingIngest": true, "keyVaultProperties": + {"keyName": "", "keyVersion": "", "keyVaultUri": ""}, "enablePurge": true, "enableDoubleEncryption": + false, "publicNetworkAccess": "Enabled", "allowedIpRangeList": ["0.0.0.0/0"], + "engineType": "V3", "enableAutoStop": true}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto script create + - kusto cluster create Connection: - keep-alive Content-Length: - - '426' + - '457' Content-Type: - application/json ParameterSetName: - - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token - --resource-group --name + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/clusters/blablab123/databases/test00/scripts/testscript?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/Clusters/blablab123/Databases/test00/Scripts/testscript","name":"blablab123/test00/testscript","type":"Microsoft.Kusto/Clusters/Databases/Scripts","etag":"\"\"","properties":{"scriptUrl":"https://testclients.blob.core.windows.net/testclientscontainer/script.txt","scriptUrlSasToken":"","continueOnErrors":true,"provisioningState":"Accepted"},"systemData":{"createdBy":"astauben@microsoft.com","createdAt":"2021-05-08T16:59:52.2560376Z","modifiedBy":"astauben@microsoft.com","modifiedAt":"2021-05-08T16:59:52.2560376Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"westus2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"properties":{"state":"Creating","enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":{"keyName":"","keyVersion":"","keyVaultUri":""},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Creating"},"identity":{"type":"SystemAssigned"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/East - US/operationResults/370f6d99-9dc5-4d7e-9d48-7a0f43e1bdcb?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 cache-control: - no-cache content-length: - - '635' + - '756' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 16:59:52 GMT + - Thu, 14 Oct 2021 09:35:55 GMT etag: - '""' expires: @@ -82,17 +51,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -101,29 +66,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto script create + - kusto cluster create Connection: - keep-alive ParameterSetName: - - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token - --resource-group --name + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/East%20US/operationResults/370f6d99-9dc5-4d7e-9d48-7a0f43e1bdcb?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/East - US/operationresults/370f6d99-9dc5-4d7e-9d48-7a0f43e1bdcb","name":"370f6d99-9dc5-4d7e-9d48-7a0f43e1bdcb","status":"Succeeded","startTime":"2021-05-08T16:59:53.685978Z","endTime":"2021-05-08T16:59:56.6237319Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseScriptCreateOrUpdate","RootActivityId":"292713d3-a596-47cb-a0cc-4e1d68167faa","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '509' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:00:24 GMT + - Thu, 14 Oct 2021 09:36:26 GMT expires: - '-1' pragma: @@ -138,6 +103,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - '299' status: @@ -151,30 +118,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto script create + - kusto cluster create Connection: - keep-alive ParameterSetName: - - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token - --resource-group --name + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/clusters/blablab123/databases/test00/scripts/testscript?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/Clusters/blablab123/Databases/test00/Scripts/testscript","name":"blablab123/test00/testscript","type":"Microsoft.Kusto/Clusters/Databases/Scripts","etag":"\"\"","tags":{},"properties":{"scriptUrl":"https://testclients.blob.core.windows.net/testclientscontainer/script.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"astauben@microsoft.com","createdAt":"2021-05-08T16:59:52.2560376Z","modifiedBy":"astauben@microsoft.com","modifiedAt":"2021-05-08T16:59:52.2560376Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '623' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:00:24 GMT - etag: - - '""' + - Thu, 14 Oct 2021 09:36:55 GMT expires: - '-1' pragma: @@ -189,53 +155,44 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '298' status: code: 200 message: OK - request: - body: '{"location": "southcentralus", "sku": {"name": "Standard_D11_v2", "capacity": - 2, "tier": "Standard"}, "identity": {"type": "SystemAssigned"}, "properties": - {"enableDiskEncryption": false, "enableStreamingIngest": true, "keyVaultProperties": - {"keyName": "", "keyVersion": "", "keyVaultUri": ""}, "enablePurge": true, "enableDoubleEncryption": - false, "engineType": "V3"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - kusto cluster create Connection: - keep-alive - Content-Length: - - '369' - Content-Type: - - application/json ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327","name":"clitestcluster327","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"southcentralus","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"properties":{"state":"Creating","enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":{"keyName":"","keyVersion":"","keyVaultUri":""},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Creating"},"identity":{"type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 cache-control: - no-cache content-length: - - '668' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:00:44 GMT - etag: - - '""' + - Thu, 14 Oct 2021 09:37:25 GMT expires: - '-1' pragma: @@ -244,13 +201,19 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '297' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -263,24 +226,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:00:43.2345859Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:01:14 GMT + - Thu, 14 Oct 2021 09:37:56 GMT expires: - '-1' pragma: @@ -295,8 +259,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + - '296' status: code: 200 message: OK @@ -312,24 +278,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:00:43.2345859Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:01:45 GMT + - Thu, 14 Oct 2021 09:38:27 GMT expires: - '-1' pragma: @@ -344,8 +311,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '297' + - '295' status: code: 200 message: OK @@ -361,24 +330,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:00:43.2345859Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:02:15 GMT + - Thu, 14 Oct 2021 09:38:56 GMT expires: - '-1' pragma: @@ -393,8 +363,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '296' + - '294' status: code: 200 message: OK @@ -410,24 +382,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:00:43.2345859Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:02:46 GMT + - Thu, 14 Oct 2021 09:39:27 GMT expires: - '-1' pragma: @@ -442,8 +415,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '295' + - '293' status: code: 200 message: OK @@ -459,24 +434,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:00:43.2345859Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:35:54.8947551Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:03:16 GMT + - Thu, 14 Oct 2021 09:39:58 GMT expires: - '-1' pragma: @@ -491,8 +467,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '294' + - '292' status: code: 200 message: OK @@ -508,24 +486,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:00:43.2345859Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:03:46 GMT + - Thu, 14 Oct 2021 09:40:27 GMT expires: - '-1' pragma: @@ -540,8 +519,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '293' + - '291' status: code: 200 message: OK @@ -557,24 +538,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:00:43.2345859Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:04:17 GMT + - Thu, 14 Oct 2021 09:40:57 GMT expires: - '-1' pragma: @@ -589,8 +571,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '292' + - '290' status: code: 200 message: OK @@ -606,24 +590,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:00:43.2345859Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:04:48 GMT + - Thu, 14 Oct 2021 09:41:29 GMT expires: - '-1' pragma: @@ -638,8 +623,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '291' + - '289' status: code: 200 message: OK @@ -655,24 +642,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:05:18 GMT + - Thu, 14 Oct 2021 09:41:59 GMT expires: - '-1' pragma: @@ -687,8 +675,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '290' + - '288' status: code: 200 message: OK @@ -704,24 +694,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:05:48 GMT + - Thu, 14 Oct 2021 09:42:29 GMT expires: - '-1' pragma: @@ -736,8 +727,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' + - '287' status: code: 200 message: OK @@ -753,24 +746,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:06:19 GMT + - Thu, 14 Oct 2021 09:43:00 GMT expires: - '-1' pragma: @@ -785,8 +779,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' + - '286' status: code: 200 message: OK @@ -802,24 +798,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:06:49 GMT + - Thu, 14 Oct 2021 09:43:30 GMT expires: - '-1' pragma: @@ -834,8 +831,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' + - '285' status: code: 200 message: OK @@ -851,24 +850,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:07:21 GMT + - Thu, 14 Oct 2021 09:44:01 GMT expires: - '-1' pragma: @@ -883,8 +883,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' + - '284' status: code: 200 message: OK @@ -900,24 +902,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:07:51 GMT + - Thu, 14 Oct 2021 09:44:30 GMT expires: - '-1' pragma: @@ -932,8 +935,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '285' + - '283' status: code: 200 message: OK @@ -949,24 +954,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:08:22 GMT + - Thu, 14 Oct 2021 09:45:00 GMT expires: - '-1' pragma: @@ -981,8 +987,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '284' + - '290' status: code: 200 message: OK @@ -998,24 +1006,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:08:52 GMT + - Thu, 14 Oct 2021 09:45:31 GMT expires: - '-1' pragma: @@ -1030,8 +1039,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '283' + - '289' status: code: 200 message: OK @@ -1047,24 +1058,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:09:22 GMT + - Thu, 14 Oct 2021 09:46:01 GMT expires: - '-1' pragma: @@ -1079,8 +1091,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '282' + - '288' status: code: 200 message: OK @@ -1096,24 +1110,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:09:53 GMT + - Thu, 14 Oct 2021 09:46:32 GMT expires: - '-1' pragma: @@ -1128,8 +1143,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '281' + - '287' status: code: 200 message: OK @@ -1145,24 +1162,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:10:23 GMT + - Thu, 14 Oct 2021 09:47:03 GMT expires: - '-1' pragma: @@ -1177,8 +1195,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' + - '286' status: code: 200 message: OK @@ -1194,24 +1214,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:10:53 GMT + - Thu, 14 Oct 2021 09:47:32 GMT expires: - '-1' pragma: @@ -1226,8 +1247,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' + - '285' status: code: 200 message: OK @@ -1243,24 +1266,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:11:24 GMT + - Thu, 14 Oct 2021 09:48:03 GMT expires: - '-1' pragma: @@ -1275,8 +1299,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' + - '284' status: code: 200 message: OK @@ -1292,24 +1318,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:11:56 GMT + - Thu, 14 Oct 2021 09:48:33 GMT expires: - '-1' pragma: @@ -1324,8 +1351,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' + - '283' status: code: 200 message: OK @@ -1341,24 +1370,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:12:27 GMT + - Thu, 14 Oct 2021 09:49:04 GMT expires: - '-1' pragma: @@ -1373,8 +1403,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '285' + - '282' status: code: 200 message: OK @@ -1390,24 +1422,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:12:57 GMT + - Thu, 14 Oct 2021 09:49:34 GMT expires: - '-1' pragma: @@ -1422,8 +1455,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '284' + - '281' status: code: 200 message: OK @@ -1439,24 +1474,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:13:28 GMT + - Thu, 14 Oct 2021 09:50:04 GMT expires: - '-1' pragma: @@ -1471,8 +1507,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '283' + - '289' status: code: 200 message: OK @@ -1488,24 +1526,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:14:00 GMT + - Thu, 14 Oct 2021 09:50:35 GMT expires: - '-1' pragma: @@ -1520,8 +1559,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '282' + - '288' status: code: 200 message: OK @@ -1537,24 +1578,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:14:30 GMT + - Thu, 14 Oct 2021 09:51:08 GMT expires: - '-1' pragma: @@ -1569,8 +1611,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '281' + - '287' status: code: 200 message: OK @@ -1586,24 +1630,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:14:59 GMT + - Thu, 14 Oct 2021 09:51:38 GMT expires: - '-1' pragma: @@ -1618,8 +1663,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '290' + - '286' status: code: 200 message: OK @@ -1635,24 +1682,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Running","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:04:58.1144509Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:15:31 GMT + - Thu, 14 Oct 2021 09:52:09 GMT expires: - '-1' pragma: @@ -1667,8 +1715,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' + - '285' status: code: 200 message: OK @@ -1684,24 +1734,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e100e9d4-ab99-49d3-8e20-d9bbc915324c?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e100e9d4-ab99-49d3-8e20-d9bbc915324c","name":"e100e9d4-ab99-49d3-8e20-d9bbc915324c","status":"Succeeded","startTime":"2021-05-08T17:00:43.2345859Z","endTime":"2021-05-08T17:15:47.16619Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"248b145a-7d93-4b88-b9f8-0fae5b2cee32","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '508' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:16:00 GMT + - Thu, 14 Oct 2021 09:52:39 GMT expires: - '-1' pragma: @@ -1716,8 +1767,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' + - '284' status: code: 200 message: OK @@ -1733,27 +1786,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327","name":"clitestcluster327","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-08T17:15:46.9061353Z\"","location":"South - Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster327.southcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster327.southcentralus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"},"identity":{"principalId":"92968397-b102-4129-87d6-f0a5275c0647","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Running","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:40:05.7158424Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '1064' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:16:01 GMT - etag: - - '"2021-05-08T17:15:46.9061353Z"' + - Thu, 14 Oct 2021 09:53:09 GMT expires: - '-1' pragma: @@ -1768,8 +1819,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '283' status: code: 200 message: OK @@ -1777,34 +1830,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster wait + - kusto cluster create Connection: - keep-alive ParameterSetName: - - --created --cluster-name --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f66240e8-66f2-4408-b242-e6b95a8c1ecc?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327","name":"clitestcluster327","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-08T17:15:46.9061353Z\"","location":"South - Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster327.southcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster327.southcentralus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"},"identity":{"principalId":"92968397-b102-4129-87d6-f0a5275c0647","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f66240e8-66f2-4408-b242-e6b95a8c1ecc","name":"f66240e8-66f2-4408-b242-e6b95a8c1ecc","status":"Succeeded","startTime":"2021-10-14T09:35:54.8947551Z","endTime":"2021-10-14T09:53:28.2381174Z","percentComplete":1.0,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '1064' + - '447' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:16:02 GMT - etag: - - '"2021-05-08T17:15:46.9061353Z"' + - Thu, 14 Oct 2021 09:53:39 GMT expires: - '-1' pragma: @@ -1819,49 +1871,47 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 29f8789d-a25c-43c2-802c-e3f9d474f52f x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + - '282' status: code: 200 message: OK - request: - body: '{"location": "southcentralus", "kind": "ReadWrite", "properties": {"softDeletePeriod": - "P1D"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto database create + - kusto cluster create Connection: - keep-alive - Content-Length: - - '94' - Content-Type: - - application/json ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group + - --cluster-name --type --location --allowed-ip-range-list --enable-auto-stop + --enable-purge --enable-streaming-ingest --key-vault-properties --sku --public-network-access + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/KustoDatabase8","name":"clitestcluster327/KustoDatabase8","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"southcentralus","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T09:53:28.1286922Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterclitest7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterclitest7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"e46224d2-b8e6-4517-95ba-c0fd25e1fb94","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e16e156a-65f5-4ea6-8f5f-4bd31ef7372f?api-version=2021-01-01 cache-control: - no-cache content-length: - - '447' + - '1239' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:16:08 GMT + - Thu, 14 Oct 2021 09:53:40 GMT etag: - - '""' + - '"2021-10-14T09:53:28.1286922Z"' expires: - '-1' pragma: @@ -1870,42 +1920,49 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '299' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto database create + - kusto cluster wait Connection: - keep-alive ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group + - --created --cluster-name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e16e156a-65f5-4ea6-8f5f-4bd31ef7372f?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e16e156a-65f5-4ea6-8f5f-4bd31ef7372f","name":"e16e156a-65f5-4ea6-8f5f-4bd31ef7372f","status":"Succeeded","startTime":"2021-05-08T17:16:08.3140714Z","endTime":"2021-05-08T17:16:11.0402615Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"4717d09a-5875-4bbe-915e-a32cd6d5a928","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T09:53:28.1286922Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterclitest7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterclitest7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"e46224d2-b8e6-4517-95ba-c0fd25e1fb94","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' headers: cache-control: - no-cache content-length: - - '503' + - '1239' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:16:38 GMT + - Thu, 14 Oct 2021 09:53:42 GMT + etag: + - '"2021-10-14T09:53:28.1286922Z"' expires: - '-1' pragma: @@ -1926,37 +1983,140 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"principalId": "ad064aa1-8b51-41ec-9c64-0d3037577d63", + "role": "AllDatabasesAdmin", "principalType": "App"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto database create + - kusto cluster-principal-assignment create Connection: - keep-alive + Content-Length: + - '124' + Content-Type: + - application/json ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group + - --cluster-name --principal-assignment-name --principal-type --principal-id + --role --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments/testcli1?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/KustoDatabase8","name":"clitestcluster327/KustoDatabase8","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"South - Central 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/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/testcli1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"AllDatabasesAdmin","principalType":"App","provisioningState":"Creating"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/a8be3e4a-4574-409d-80bc-55171009adfc?api-version=2021-08-27 cache-control: - no-cache content-length: - - '557' + - '479' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:16:39 GMT - etag: - - '""' + - Thu, 14 Oct 2021 09:53:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --principal-assignment-name --principal-type --principal-id + --role --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a8be3e4a-4574-409d-80bc-55171009adfc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a8be3e4a-4574-409d-80bc-55171009adfc","name":"a8be3e4a-4574-409d-80bc-55171009adfc","status":"Succeeded","startTime":"2021-10-14T09:53:45.3039442Z","endTime":"2021-10-14T09:53:46.2104903Z","percentComplete":1.0,"properties":{"operationKind":"ServicePrincipalAssignmentsAdd","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '458' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:54:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - b48d039e-7dc5-45cc-9e59-d24e38cb8770 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --principal-assignment-name --principal-type --principal-id + --role --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/testcli1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"AllDatabasesAdmin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '582' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 09:54:15 GMT expires: - '-1' pragma: @@ -1977,11 +2137,11 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralus", "sku": {"name": "Standard_D11_v2", "capacity": + body: '{"location": "westus2", "sku": {"name": "Standard_D11_v2", "capacity": 2, "tier": "Standard"}, "identity": {"type": "SystemAssigned"}, "properties": - {"enableDiskEncryption": false, "enableStreamingIngest": true, "keyVaultProperties": - {"keyName": "", "keyVersion": "", "keyVaultUri": ""}, "enablePurge": true, "enableDoubleEncryption": - false, "engineType": "V3"}}' + {"enableDiskEncryption": false, "enableStreamingIngest": true, "enablePurge": + true, "enableDoubleEncryption": false, "publicNetworkAccess": "Enabled", "engineType": + "V3", "enableAutoStop": true}}' headers: Accept: - application/json @@ -1992,30 +2152,30 @@ interactions: Connection: - keep-alive Content-Length: - - '369' + - '344' Content-Type: - application/json ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster0f327?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster0f327","name":"clitestcluster0f327","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"southcentralus","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"properties":{"state":"Creating","enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":{"keyName":"","keyVersion":"","keyVaultUri":""},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Creating"},"identity":{"type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"westus2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"properties":{"state":"Creating","enableDiskEncryption":false,"enableStreamingIngest":true,"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","publicNetworkAccess":"Enabled","enableAutoStop":true,"provisioningState":"Creating"},"identity":{"type":"SystemAssigned"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 cache-control: - no-cache content-length: - - '672' + - '650' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:16:55 GMT + - Thu, 14 Oct 2021 09:54:25 GMT etag: - '""' expires: @@ -2029,7 +2189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '198' status: code: 201 message: Created @@ -2046,23 +2206,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:16:53.8714744Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:17:25 GMT + - Thu, 14 Oct 2021 09:54:55 GMT expires: - '-1' pragma: @@ -2077,6 +2237,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - '299' status: @@ -2095,23 +2257,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:16:53.8714744Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:17:55 GMT + - Thu, 14 Oct 2021 09:55:25 GMT expires: - '-1' pragma: @@ -2126,6 +2288,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - '298' status: @@ -2144,23 +2308,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:16:53.8714744Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:18:26 GMT + - Thu, 14 Oct 2021 09:55:56 GMT expires: - '-1' pragma: @@ -2175,6 +2339,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - '297' status: @@ -2193,23 +2359,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:16:53.8714744Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:18:57 GMT + - Thu, 14 Oct 2021 09:56:26 GMT expires: - '-1' pragma: @@ -2224,6 +2390,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - '296' status: @@ -2242,23 +2410,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:16:53.8714744Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:19:27 GMT + - Thu, 14 Oct 2021 09:56:56 GMT expires: - '-1' pragma: @@ -2273,6 +2441,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - '295' status: @@ -2291,23 +2461,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:16:53.8714744Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:19:58 GMT + - Thu, 14 Oct 2021 09:57:26 GMT expires: - '-1' pragma: @@ -2322,6 +2492,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - '294' status: @@ -2340,23 +2512,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:16:53.8714744Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:20:27 GMT + - Thu, 14 Oct 2021 09:57:57 GMT expires: - '-1' pragma: @@ -2371,6 +2543,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - '293' status: @@ -2389,23 +2563,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:16:53.8714744Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:54:24.5452821Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:20:58 GMT + - Thu, 14 Oct 2021 09:58:27 GMT expires: - '-1' pragma: @@ -2420,6 +2594,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - '292' status: @@ -2438,23 +2614,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:21:29 GMT + - Thu, 14 Oct 2021 09:58:58 GMT expires: - '-1' pragma: @@ -2469,6 +2645,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - '291' status: @@ -2487,23 +2665,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:21:58 GMT + - Thu, 14 Oct 2021 09:59:28 GMT expires: - '-1' pragma: @@ -2518,6 +2696,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - '290' status: @@ -2536,23 +2716,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:22:31 GMT + - Thu, 14 Oct 2021 09:59:59 GMT expires: - '-1' pragma: @@ -2567,6 +2747,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - '289' status: @@ -2585,23 +2767,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:23:00 GMT + - Thu, 14 Oct 2021 10:00:28 GMT expires: - '-1' pragma: @@ -2616,8 +2798,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' + - '289' status: code: 200 message: OK @@ -2634,23 +2818,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:23:31 GMT + - Thu, 14 Oct 2021 10:00:59 GMT expires: - '-1' pragma: @@ -2665,8 +2849,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' + - '288' status: code: 200 message: OK @@ -2683,23 +2869,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:24:02 GMT + - Thu, 14 Oct 2021 10:01:29 GMT expires: - '-1' pragma: @@ -2714,8 +2900,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' + - '287' status: code: 200 message: OK @@ -2732,23 +2920,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:24:32 GMT + - Thu, 14 Oct 2021 10:02:00 GMT expires: - '-1' pragma: @@ -2763,8 +2951,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '285' + - '286' status: code: 200 message: OK @@ -2781,23 +2971,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:25:02 GMT + - Thu, 14 Oct 2021 10:02:30 GMT expires: - '-1' pragma: @@ -2812,8 +3002,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '290' + - '285' status: code: 200 message: OK @@ -2830,23 +3022,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:25:33 GMT + - Thu, 14 Oct 2021 10:03:00 GMT expires: - '-1' pragma: @@ -2861,8 +3053,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' + - '284' status: code: 200 message: OK @@ -2879,23 +3073,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:26:03 GMT + - Thu, 14 Oct 2021 10:03:31 GMT expires: - '-1' pragma: @@ -2910,8 +3104,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' + - '283' status: code: 200 message: OK @@ -2928,23 +3124,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:26:34 GMT + - Thu, 14 Oct 2021 10:04:01 GMT expires: - '-1' pragma: @@ -2959,8 +3155,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' + - '282' status: code: 200 message: OK @@ -2977,23 +3175,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:27:04 GMT + - Thu, 14 Oct 2021 10:04:31 GMT expires: - '-1' pragma: @@ -3008,8 +3206,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' + - '281' status: code: 200 message: OK @@ -3026,23 +3226,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:27:35 GMT + - Thu, 14 Oct 2021 10:05:02 GMT expires: - '-1' pragma: @@ -3057,8 +3257,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '285' + - '290' status: code: 200 message: OK @@ -3075,23 +3277,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:28:06 GMT + - Thu, 14 Oct 2021 10:05:32 GMT expires: - '-1' pragma: @@ -3106,8 +3308,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '284' + - '289' status: code: 200 message: OK @@ -3124,23 +3328,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:28:37 GMT + - Thu, 14 Oct 2021 10:06:03 GMT expires: - '-1' pragma: @@ -3155,8 +3359,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '283' + - '288' status: code: 200 message: OK @@ -3173,23 +3379,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:29:07 GMT + - Thu, 14 Oct 2021 10:06:33 GMT expires: - '-1' pragma: @@ -3204,8 +3410,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '282' + - '287' status: code: 200 message: OK @@ -3222,23 +3430,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:29:37 GMT + - Thu, 14 Oct 2021 10:07:04 GMT expires: - '-1' pragma: @@ -3253,8 +3461,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '281' + - '286' status: code: 200 message: OK @@ -3271,23 +3481,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:30:08 GMT + - Thu, 14 Oct 2021 10:07:34 GMT expires: - '-1' pragma: @@ -3302,8 +3512,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' + - '285' status: code: 200 message: OK @@ -3320,23 +3532,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Running","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:21:19.4390802Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '507' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:30:38 GMT + - Thu, 14 Oct 2021 10:08:04 GMT expires: - '-1' pragma: @@ -3351,8 +3563,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' + - '284' status: code: 200 message: OK @@ -3369,23 +3583,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/88faa61b-e836-4031-b6ee-ed241758f803?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/88faa61b-e836-4031-b6ee-ed241758f803","name":"88faa61b-e836-4031-b6ee-ed241758f803","status":"Succeeded","startTime":"2021-05-08T17:16:53.8714744Z","endTime":"2021-05-08T17:31:05.3654452Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"e075dd50-3abf-4548-9b45-b9af1ad1def1","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '510' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:31:09 GMT + - Thu, 14 Oct 2021 10:08:35 GMT expires: - '-1' pragma: @@ -3400,8 +3614,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' + - '283' status: code: 200 message: OK @@ -3418,26 +3634,23 @@ interactions: - keep-alive ParameterSetName: - --cluster-name --type --location --enable-purge --enable-streaming-ingest - --key-vault-properties --sku --resource-group + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster0f327?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster0f327","name":"clitestcluster0f327","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-08T17:31:05.0954173Z\"","location":"South - Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster0f327.southcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster0f327.southcentralus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"},"identity":{"principalId":"d8d20013-830c-4d71-9f6a-ca4ceb4890ee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '1072' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:31:10 GMT - etag: - - '"2021-05-08T17:31:05.0954173Z"' + - Thu, 14 Oct 2021 10:09:05 GMT expires: - '-1' pragma: @@ -3452,8 +3665,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '282' status: code: 200 message: OK @@ -3461,34 +3676,32 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster wait + - kusto cluster create Connection: - keep-alive ParameterSetName: - - --created --cluster-name --resource-group + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster0f327?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster0f327","name":"clitestcluster0f327","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-08T17:31:05.0954173Z\"","location":"South - Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster0f327.southcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster0f327.southcentralus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"},"identity":{"principalId":"d8d20013-830c-4d71-9f6a-ca4ceb4890ee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '1072' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:31:13 GMT - etag: - - '"2021-05-08T17:31:05.0954173Z"' + - Thu, 14 Oct 2021 10:09:35 GMT expires: - '-1' pragma: @@ -3503,53 +3716,43 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '296' + - '281' status: code: 200 message: OK - request: - body: '{"location": "southcentralus", "properties": {"databaseName": "Kustodatabase8", - "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327", - "defaultPrincipalsModificationKind": "Union", "tableLevelSharingProperties": - {"externalTablesToExclude": ["ExternalTable2"]}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto attached-database-configuration create + - kusto cluster create Connection: - keep-alive - Content-Length: - - '426' - Content-Type: - - application/json ParameterSetName: - - --attached-database-configuration-name --cluster-name --location --cluster-resource-id - --database-name --default-principals-modification-kind --table-level-sharing-properties - --resource-group + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster0f327/attachedDatabaseConfigurations/attachedDatabaseConfigurations2?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster0f327/AttachedDatabaseConfigurations/attachedDatabaseConfigurations2","name":"clitestcluster0f327/attachedDatabaseConfigurations2","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","etag":"\"\"","location":"southcentralus","properties":{"databaseName":"Kustodatabase8","clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327","defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"externalTablesToExclude":["ExternalTable2"]},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e15695b3-87e2-4731-bb0b-dc9a6207fc37?api-version=2021-01-01 cache-control: - no-cache content-length: - - '854' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:31:16 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:10:06 GMT expires: - '-1' pragma: @@ -3558,13 +3761,19 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '289' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -3573,29 +3782,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto attached-database-configuration create + - kusto cluster create Connection: - keep-alive ParameterSetName: - - --attached-database-configuration-name --cluster-name --location --cluster-resource-id - --database-name --default-principals-modification-kind --table-level-sharing-properties - --resource-group + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/e15695b3-87e2-4731-bb0b-dc9a6207fc37?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/e15695b3-87e2-4731-bb0b-dc9a6207fc37","name":"e15695b3-87e2-4731-bb0b-dc9a6207fc37","status":"Succeeded","startTime":"2021-05-08T17:31:15.8000817Z","endTime":"2021-05-08T17:31:18.4155264Z","percentComplete":1.0,"properties":{"OperationKind":"FollowerDatabaseCreate","RootActivityId":"b392285a-f2ef-4b2b-93c3-81296165806a","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '511' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:31:47 GMT + - Thu, 14 Oct 2021 10:10:36 GMT expires: - '-1' pragma: @@ -3610,8 +3818,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '288' status: code: 200 message: OK @@ -3623,32 +3833,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto attached-database-configuration create + - kusto cluster create Connection: - keep-alive ParameterSetName: - - --attached-database-configuration-name --cluster-name --location --cluster-resource-id - --database-name --default-principals-modification-kind --table-level-sharing-properties - --resource-group + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster0f327/attachedDatabaseConfigurations/attachedDatabaseConfigurations2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster0f327/AttachedDatabaseConfigurations/attachedDatabaseConfigurations2","name":"clitestcluster0f327/attachedDatabaseConfigurations2","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","etag":"\"\"","location":"South - Central US","tags":{},"properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327","databaseName":"Kustodatabase8","attachedDatabaseNames":["Kustodatabase8"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":[],"tablesToExclude":[],"externalTablesToInclude":[],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":[],"materializedViewsToExclude":[]},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Running","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T09:58:35.2564496Z","percentComplete":0.5,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '1045' + - '444' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:31:47 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:11:06 GMT expires: - '-1' pragma: @@ -3663,8 +3869,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '287' status: code: 200 message: OK @@ -3672,34 +3880,32 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto attached-database-configuration wait + - kusto cluster create Connection: - keep-alive ParameterSetName: - - --created --cluster-name --attached-database-configuration-name --resource-group + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster0f327/attachedDatabaseConfigurations/attachedDatabaseConfigurations2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/f24663dc-5965-498d-9307-206689f8ced9?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster0f327/AttachedDatabaseConfigurations/attachedDatabaseConfigurations2","name":"clitestcluster0f327/attachedDatabaseConfigurations2","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","etag":"\"\"","location":"South - Central US","tags":{},"properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327","databaseName":"Kustodatabase8","attachedDatabaseNames":["Kustodatabase8"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":[],"tablesToExclude":[],"externalTablesToInclude":[],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":[],"materializedViewsToExclude":[]},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/f24663dc-5965-498d-9307-206689f8ced9","name":"f24663dc-5965-498d-9307-206689f8ced9","status":"Succeeded","startTime":"2021-10-14T09:54:24.5452821Z","endTime":"2021-10-14T10:11:30.4369982Z","percentComplete":1.0,"properties":{"operationKind":"ClusterCreateExternal","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '1045' + - '447' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:31:48 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:11:37 GMT expires: - '-1' pragma: @@ -3714,8 +3920,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 7acafa91-211b-46cb-8e48-23196459a199 x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '286' status: code: 200 message: OK @@ -3723,34 +3931,35 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto attached-database-configuration show + - kusto cluster create Connection: - keep-alive ParameterSetName: - - --attached-database-configuration-name --cluster-name --resource-group + - --cluster-name --type --location --enable-purge --enable-streaming-ingest + --sku --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster0f327/attachedDatabaseConfigurations/attachedDatabaseConfigurations2?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster0f327/AttachedDatabaseConfigurations/attachedDatabaseConfigurations2","name":"clitestcluster0f327/attachedDatabaseConfigurations2","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","etag":"\"\"","location":"South - Central US","tags":{},"properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327","databaseName":"Kustodatabase8","attachedDatabaseNames":["Kustodatabase8"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":[],"tablesToExclude":[],"externalTablesToInclude":[],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":[],"materializedViewsToExclude":[]},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:11:30.3312108Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterleader7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterleader7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"152df398-3533-4a5c-acfe-47800f4ce5ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' headers: cache-control: - no-cache content-length: - - '1045' + - '1224' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:31:53 GMT + - Thu, 14 Oct 2021 10:11:37 GMT etag: - - '""' + - '"2021-10-14T10:11:30.3312108Z"' expires: - '-1' pragma: @@ -3778,30 +3987,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster show + - kusto cluster wait Connection: - keep-alive ParameterSetName: - - --cluster-name --resource-group + - --created --cluster-name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327","name":"clitestcluster327","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-08T17:31:18.1705688Z\"","location":"South - Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster327.southcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster327.southcentralus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"},"identity":{"principalId":"92968397-b102-4129-87d6-f0a5275c0647","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:11:30.3312108Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterleader7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterleader7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"152df398-3533-4a5c-acfe-47800f4ce5ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' headers: cache-control: - no-cache content-length: - - '1064' + - '1224' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:31:57 GMT + - Thu, 14 Oct 2021 10:11:40 GMT etag: - - '"2021-05-08T17:31:18.1705688Z"' + - '"2021-10-14T10:11:30.3312108Z"' expires: - '-1' pragma: @@ -3822,139 +4031,85 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "kind": "ReadWrite", "properties": {"softDeletePeriod": + "P1D"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster list + - kusto database create Connection: - keep-alive + Content-Length: + - '87' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/clusters?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-clients-rg/providers/Microsoft.Kusto/Clusters/eventgridclienttest","name":"eventgridclienttest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-04T10:17:26.1899230Z\"","location":"Australia - Central","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://eventgridclienttest.australiacentral.kusto.windows.net","dataIngestionUri":"https://ingest-eventgridclienttest.australiacentral.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://clientstestkv.vault.azure.net/","keyName":"clientstestkey","keyVersion":"6fd57d53ad6b4b53bacb062c98c761a0","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"},"identity":{"principalId":"a4f74545-0569-49ab-a902-f712fcf2f9e0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/demo11-cus/providers/Microsoft.Kusto/Clusters/demo11cus","name":"demo11cus","type":"Microsoft.Kusto/Clusters","etag":"\"2021-04-22T06:58:57.4851445Z\"","location":"Central - US","sku":{"name":"Standard_D14_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - at 2020-11-18 19:53:31 +00:00","uri":"https://demo11cus.centralus.kusto.windows.net","dataIngestionUri":"https://ingest-demo11cus.centralus.kusto.windows.net","trustedExternalTenants":[{"value":"72f988bf-86f1-41af-91ab-2d7cd011db47"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":false,"minimum":2,"maximum":1000},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[{"languageExtensionName":"PYTHON"},{"languageExtensionName":"R"}]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/liat/providers/Microsoft.Kusto/Clusters/testingearlyadopters","name":"testingearlyadopters","type":"Microsoft.Kusto/Clusters","etag":"\"2021-04-21T12:16:15.9709401Z\"","location":"East - US","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - at 5/10/2020 6:54:28 AM","uri":"https://testingearlyadopters.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-testingearlyadopters.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":false,"minimum":1,"maximum":1},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prvtest/providers/Microsoft.Kusto/Clusters/praveentest","name":"praveentest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-04-29T06:14:26.9410885Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - at 2020-11-18 19:54:14 +00:00","uri":"https://praveentest.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-praveentest.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lugoldbekusto/providers/Microsoft.Kusto/Clusters/lugoldbeclustereus","name":"lugoldbeclustereus","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-03T05:36:51.6766584Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - at 2020-12-13 04:57:33 +00:00","uri":"https://lugoldbeclustereus.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-lugoldbeclustereus.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://lugoldbekv.vault.azure.net","keyName":"lugoldbeclusterencrypt","keyVersion":"e93ff660d97f4d92a10529625422c0cb","userIdentity":null},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"},"identity":{"principalId":"a9b100bb-8a76-4423-a470-6587fad0cea5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lugoldbekusto/providers/Microsoft.Kusto/Clusters/lugoldbeeusportal","name":"lugoldbeeusportal","type":"Microsoft.Kusto/Clusters","etag":"\"2021-04-29T06:02:46.5433353Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - at 2020-11-29 05:42:57 +00:00","uri":"https://lugoldbeeusportal.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-lugoldbeeusportal.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://lugoldbekv.vault.azure.net","keyName":"lugoldbeeusportal","keyVersion":"41a484035b704b56bd1d2678d720a057","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"},"identity":{"principalId":"12d7528c-44e4-4b86-9edd-b005d72f41d0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lugoldbekusto/providers/Microsoft.Kusto/Clusters/lugoldbetesteus","name":"lugoldbetesteus","type":"Microsoft.Kusto/Clusters","etag":"\"2021-04-29T06:02:47.5745425Z\"","location":"East - US","sku":{"name":"Standard_DS13_v2+1TB_PS","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - at 2020-11-29 05:42:48 +00:00","uri":"https://lugoldbetesteus.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-lugoldbetesteus.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"},"identity":{"principalId":"abbf0884-ec67-4cde-8173-7f48a7fa2389","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/e2eexa2resourcegroup/providers/Microsoft.Kusto/Clusters/psurideletemeatwill","name":"psurideletemeatwill","type":"Microsoft.Kusto/Clusters","etag":"\"2021-04-21T12:07:32.0104823Z\"","location":"East - US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - at 2021-04-08 20:09:48 +00:00","uri":"https://psurideletemeatwill.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-psurideletemeatwill.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adx-docs-rg/providers/Microsoft.Kusto/Clusters/docstest","name":"docstest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-04T11:03:38.2700770Z\"","location":"East - US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://docstest.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-docstest.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupvsyf4k/providers/Microsoft.Kusto/Clusters/testclustervsyf4k","name":"testclustervsyf4k","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-02T11:44:04.6812179Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testclustervsyf4k.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-testclustervsyf4k.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupvsyf4k/providers/Microsoft.Kusto/Clusters/testfcluster7l5sjy","name":"testfcluster7l5sjy","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-02T11:44:04.6656180Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testfcluster7l5sjy.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-testfcluster7l5sjy.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroup1aq3de/providers/Microsoft.Kusto/Clusters/testcluster1aq3de","name":"testcluster1aq3de","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-02T13:02:37.2479846Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testcluster1aq3de.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-testcluster1aq3de.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroup1aq3de/providers/Microsoft.Kusto/Clusters/testfclusterr6miws","name":"testfclusterr6miws","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-02T13:02:37.2479846Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testfclusterr6miws.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-testfclusterr6miws.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupsuc8ox/providers/Microsoft.Kusto/Clusters/testclustersuc8ox","name":"testclustersuc8ox","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-03T16:52:59.6077936Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testclustersuc8ox.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-testclustersuc8ox.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupsuc8ox/providers/Microsoft.Kusto/Clusters/testfclusterf4nkyd","name":"testfclusterf4nkyd","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-03T16:52:59.6077936Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testfclusterf4nkyd.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-testfclusterf4nkyd.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupgsvo68/providers/Microsoft.Kusto/Clusters/testclustergsvo68","name":"testclustergsvo68","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-04T08:12:57.8974977Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testclustergsvo68.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-testclustergsvo68.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupgsvo68/providers/Microsoft.Kusto/Clusters/testfclustercjq8y4","name":"testfclustercjq8y4","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-04T08:12:57.8974977Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testfclustercjq8y4.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-testfclustercjq8y4.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/Clusters/blablab123","name":"blablab123","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-06T10:44:02.4468937Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://blablab123.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-blablab123.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/Clusters/testfclusterjn2yu0","name":"testfclusterjn2yu0","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-06T10:44:02.4468937Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testfclusterjn2yu0.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-testfclusterjn2yu0.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/Clusters/testcluster5w03s4","name":"testcluster5w03s4","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-06T10:21:27.0199997Z\"","location":"East - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testcluster5w03s4.eastus.kusto.windows.net","dataIngestionUri":"https://ingest-testcluster5w03s4.eastus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/liat/providers/Microsoft.Kusto/Clusters/testingbeforeuideploy","name":"testingbeforeuideploy","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-06T13:02:29.4814182Z\"","location":"North - Central US","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - by '''' at 7/10/2019 11:24:31 AM","uri":"https://testingbeforeuideploy.northcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-testingbeforeuideploy.northcentralus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":false,"minimum":1,"maximum":1},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/radennisgeneral/providers/Microsoft.Kusto/clusters/radennisscus","name":"radennisscus","type":"Microsoft.Kusto/clusters","etag":"\"2021-04-22T06:50:48.4037895Z\"","location":"South - Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - at 2020-11-18 19:53:58 +00:00","uri":"https://radennisscus.southcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-radennisscus.southcentralus.kusto.windows.net","trustedExternalTenants":[{"value":"72f988bf-86f1-41af-91ab-2d7cd011db47"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":false,"minimum":2,"maximum":8},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADFDocs/providers/Microsoft.Kusto/Clusters/tryupdate123","name":"tryupdate123","type":"Microsoft.Kusto/Clusters","etag":"\"2021-04-22T06:52:28.7364546Z\"","location":"South - Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{"mos1":"mos1"},"properties":{"state":"Stopped","stateReason":"Suspended - at 2020-11-18 19:54:06 +00:00","uri":"https://tryupdate123.southcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-tryupdate123.southcentralus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":false,"minimum":2,"maximum":8},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbhtxyfyfvxcliffpeaynmtqyi3essc54ob4m2a2gg4ayabvhvjgnj3mznrvg2jun4bvh/providers/Microsoft.Kusto/Clusters/clitestcluster0l","name":"clitestcluster0l","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-06T13:56:54.5944394Z\"","location":"South - Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster0l.southcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster0l.southcentralus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"},"identity":{"principalId":"62e2e886-f1d4-4146-b9f2-260b37fa02ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestktj33re6oodj3n2kfgmadffcytqlydoqx75wusxyikj2ykv77mr2ir5zgk7ghlc7stel/providers/Microsoft.Kusto/Clusters/clitestcluster977","name":"clitestcluster977","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-08T16:48:13.6747153Z\"","location":"South - Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster977.southcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster977.southcentralus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"},"identity":{"principalId":"0bfd323d-1967-497a-a53d-ac6822151ce6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327","name":"clitestcluster327","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-08T17:31:18.1705688Z\"","location":"South - Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster327.southcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster327.southcentralus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"},"identity":{"principalId":"92968397-b102-4129-87d6-f0a5275c0647","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster0f327","name":"clitestcluster0f327","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-08T17:31:18.1705688Z\"","location":"South - Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster0f327.southcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster0f327.southcentralus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"},"identity":{"principalId":"d8d20013-830c-4d71-9f6a-ca4ceb4890ee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avnera/providers/Microsoft.Kusto/Clusters/avnerkusto","name":"avnerkusto","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-06T18:35:29.4066148Z\"","location":"West - Europe","sku":{"name":"Standard_L16s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://avnerkusto.westeurope.kusto.windows.net","dataIngestionUri":"https://ingest-avnerkusto.westeurope.kusto.windows.net","trustedExternalTenants":[{"value":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"value":"*"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":100},"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kustoinsightsrg/providers/Microsoft.Kusto/Clusters/kustoinsightstest","name":"kustoinsightstest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-04-22T07:09:06.9460651Z\"","location":"West - Europe","sku":{"name":"Standard_D14_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - at 5/12/2020 12:03:58 AM","uri":"https://kustoinsightstest.westeurope.kusto.windows.net","dataIngestionUri":"https://ingest-kustoinsightstest.westeurope.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"},"zones":["1","2","3"]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lugoldbekusto/providers/Microsoft.Kusto/Clusters/lugoldbeTestCreateProd","name":"lugoldbeTestCreateProd","type":"Microsoft.Kusto/Clusters","etag":"\"2021-04-22T07:10:29.4692767Z\"","location":"West - Europe","sku":{"name":"Standard_D13_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - at 2021-01-10 06:35:31 +00:00","uri":"https://lugoldbetestcreateprod.westeurope.kusto.windows.net","dataIngestionUri":"https://ingest-lugoldbetestcreateprod.westeurope.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ruthchemla/providers/Microsoft.Kusto/Clusters/clusterwithoutdb","name":"clusterwithoutdb","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-06T21:23:56.2808751Z\"","location":"West - Europe","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clusterwithoutdb.westeurope.kusto.windows.net","dataIngestionUri":"https://ingest-clusterwithoutdb.westeurope.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/movedresourcegroup/providers/Microsoft.Kusto/clusters/tzgitlin","name":"tzgitlin","type":"Microsoft.Kusto/clusters","etag":"\"2021-05-06T15:02:24.1054115Z\"","location":"West - US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://tzgitlin.westus.kusto.windows.net","dataIngestionUri":"https://ingest-tzgitlin.westus.kusto.windows.net","trustedExternalTenants":[{"value":"72f988bf-86f1-41af-91ab-2d7cd011db47"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":false,"minimum":1,"maximum":1},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"},"identity":{"principalId":"9282bbc5-4d96-472c-93dd-0af0aec38db1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kustoreddemo/providers/Microsoft.Kusto/Clusters/kustoreddemo","name":"kustoreddemo","type":"Microsoft.Kusto/Clusters","etag":"\"2021-04-22T07:22:54.7237691Z\"","location":"West - US","sku":{"name":"Standard_D14_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - at 2020-11-18 19:53:43 +00:00","uri":"https://kustoreddemo.westus.kusto.windows.net","dataIngestionUri":"https://ingest-kustoreddemo.westus.kusto.windows.net","trustedExternalTenants":[{"value":"72f988bf-86f1-41af-91ab-2d7cd011db47"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":false,"minimum":2,"maximum":300},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/checkpointbdppoc-kusto/providers/Microsoft.Kusto/Clusters/checkpointbdppoc","name":"checkpointbdppoc","type":"Microsoft.Kusto/Clusters","etag":"\"2021-04-22T07:07:04.8563632Z\"","location":"West - US","sku":{"name":"Standard_D14_v2","tier":"Standard","capacity":17},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended - by '''' at 10/6/2019 7:06:43 PM","uri":"https://checkpointbdppoc.westus.kusto.windows.net","dataIngestionUri":"https://ingest-checkpointbdppoc.westus.kusto.windows.net","trustedExternalTenants":[{"value":"612a5289-89a8-45c2-a40d-f36fadb6d37c"},{"value":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"value":"*"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testpsuri/providers/Microsoft.Kusto/Clusters/testpsuri123","name":"testpsuri123","type":"Microsoft.Kusto/Clusters","etag":"\"2021-04-22T07:42:12.9238773Z\"","location":"West - US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{"Created - By":"GitHub quickstart template"},"properties":{"state":"Stopped","stateReason":"Suspended - at 2020-12-18 22:42:57 +00:00","uri":"https://testpsuri123.westus.kusto.windows.net","dataIngestionUri":"https://ingest-testpsuri123.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MARAHEJA-DEMO/providers/Microsoft.Kusto/Clusters/kustodemo","name":"kustodemo","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-02T09:22:54.7676894Z\"","location":"West - US 2","sku":{"name":"Standard_E4a_v4","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustodemo.westus2.kusto.windows.net","dataIngestionUri":"https://ingest-kustodemo.westus2.kusto.windows.net","trustedExternalTenants":[{"value":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"value":"*"},{"value":"f8cdef31-a31e-4b4a-93e4-5f571e91255a"},{"value":"9cd80435-793b-4f48-844b-6b3f37d1c1f3"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":false,"minimum":2,"maximum":300},"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[{"languageExtensionName":"PYTHON"}]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"},"identity":{"principalId":"6d795ab0-8e68-4c63-8823-0f9af9ff2440","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"westus2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","provisioningState":"Creating"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/4d64149e-e064-4c9e-b211-56bbf0fefe9b?api-version=2021-08-27 cache-control: - no-cache content-length: - - '34121' + - '430' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:31:59 GMT + - Thu, 14 Oct 2021 10:11:42 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-original-request-ids: - - 390787b6-87cc-48d0-9b97-8b279718b7a5 - - f9d5a5b1-a619-4bab-8300-c156bb72bd45 - - 7e1f6784-b6ef-4e0f-b86f-e0271b3974fb - - 76cdd3a7-d726-4651-b73b-0a585584de43 - - ae59b8a9-9606-408e-918c-8b9a99d69c22 - - 75b76498-319d-44af-9fd0-d5ebc0db5db3 - - f64ee7a3-2951-4a15-8045-63bbfd6377ef - - 4a34dbe4-acff-4c7d-9937-b4154f3b59d6 x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + - '199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster list + - kusto database create Connection: - keep-alive ParameterSetName: - - --resource-group + - --cluster-name --database-name --read-write-database --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/4d64149e-e064-4c9e-b211-56bbf0fefe9b?api-version=2021-08-27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327","name":"clitestcluster327","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-08T17:31:18.1705688Z\"","location":"South - Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster327.southcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster327.southcentralus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"},"identity":{"principalId":"92968397-b102-4129-87d6-f0a5275c0647","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster0f327","name":"clitestcluster0f327","type":"Microsoft.Kusto/Clusters","etag":"\"2021-05-08T17:31:18.1705688Z\"","location":"South - Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://clitestcluster0f327.southcentralus.kusto.windows.net","dataIngestionUri":"https://ingest-clitestcluster0f327.southcentralus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","provisioningState":"Succeeded"},"identity":{"principalId":"d8d20013-830c-4d71-9f6a-ca4ceb4890ee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/4d64149e-e064-4c9e-b211-56bbf0fefe9b","name":"4d64149e-e064-4c9e-b211-56bbf0fefe9b","status":"Succeeded","startTime":"2021-10-14T10:11:43.3397253Z","endTime":"2021-10-14T10:11:46.4649123Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseCreate","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '2149' + - '440' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:32:00 GMT + - Thu, 14 Oct 2021 10:12:13 GMT expires: - '-1' pragma: @@ -3969,8 +4124,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 9ae4baa7-7af7-4669-9ce3-397253ce9d65 x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + - '299' status: code: 200 message: OK @@ -3978,55 +4135,32 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster list-sku + - kusto database create Connection: - keep-alive ParameterSetName: - - --cluster-name --resource-group + - --cluster-name --database-name --read-write-database --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/skus?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 response: body: - string: '{"value":[{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_D11_v2","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":8,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_D12_v2","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":16,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_D13_v2","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_D14_v2","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_L4s","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":[]}]},"capacity":{"minimum":2,"maximum":16,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_L8s","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_L16s","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_L8s_v2","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_L16s_v2","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E64i_v3","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E80ids_v4","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E2a_v4","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E4a_v4","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E8a_v4","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E16a_v4","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/clusters","sku":{"name":"Standard_D32d_v4","tier":"Standard","locationInfo":[{"location":"South - Central US","zones":["ussouth-AZ01","ussouth-AZ02","ussouth-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","statistics":{"size":0.0},"isFollowed":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '6493' + - '478' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:32:01 GMT + - Thu, 14 Oct 2021 10:12:13 GMT expires: - '-1' pragma: @@ -4041,144 +4175,95 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' status: code: 200 message: OK - request: - body: null + body: '{"properties": {"principalId": "ad064aa1-8b51-41ec-9c64-0d3037577d63", + "role": "Admin", "principalType": "App"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster list-sku + - kusto database-principal-assignment create Connection: - keep-alive + Content-Length: + - '112' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --role --principal-type --principal-id --principal-assignment-name + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/skus?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/kustoDatabase/principalAssignments/testcli1?api-version=2021-08-27 response: body: - string: '{"value":[{"resourceType":"clusters","name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["1","3","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["1","3","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["1","3","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["1","3","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["1","3","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["1","3","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["1","3","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["1","3","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["1","3","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No - SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/kustoDatabase/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/kustoDatabase/testcli1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"Admin","principalType":"App","provisioningState":"Creating"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/ce54819e-3325-4cf9-971b-e8f500172b47?api-version=2021-08-27 cache-control: - no-cache content-length: - - '104983' + - '515' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:32:02 GMT + - Thu, 14 Oct 2021 10:12:16 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: '{"location": "southcentralus", "kind": "ReadWrite", "properties": {"softDeletePeriod": - "P1D"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto database create + - kusto database-principal-assignment create Connection: - keep-alive - Content-Length: - - '94' - Content-Type: - - application/json ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group + - --cluster-name --database-name --role --principal-type --principal-id --principal-assignment-name + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/ce54819e-3325-4cf9-971b-e8f500172b47?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/KustoDatabase8","name":"clitestcluster327/KustoDatabase8","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"South - Central US","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","provisioningState":"Accepted"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/ce54819e-3325-4cf9-971b-e8f500172b47","name":"ce54819e-3325-4cf9-971b-e8f500172b47","status":"Succeeded","startTime":"2021-10-14T10:12:16.7710074Z","endTime":"2021-10-14T10:12:20.755777Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseAddPrincipals","provisioningState":"Succeeded","operationState":"Completed"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationResults/f14fc5dc-14ba-4f3b-bffc-f493639cc4ed?api-version=2021-01-01 cache-control: - no-cache content-length: - - '449' + - '448' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:32:05 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:12:46 GMT expires: - '-1' pragma: @@ -4193,8 +4278,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 077b5f97-62e8-4e14-a65a-1fe6fa6268db x-ms-ratelimit-remaining-subscription-resource-requests: - - '198' + - '299' status: code: 200 message: OK @@ -4206,28 +4293,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto database create + - kusto database-principal-assignment create Connection: - keep-alive ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group + - --cluster-name --database-name --role --principal-type --principal-id --principal-assignment-name + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/f14fc5dc-14ba-4f3b-bffc-f493639cc4ed?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/kustoDatabase/principalAssignments/testcli1?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/f14fc5dc-14ba-4f3b-bffc-f493639cc4ed","name":"f14fc5dc-14ba-4f3b-bffc-f493639cc4ed","status":"Succeeded","startTime":"2021-05-08T17:32:05.691909Z","endTime":"2021-05-08T17:32:07.4655535Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"90343ea9-4fdc-464f-924c-8df1273e306c","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/kustoDatabase/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/kustoDatabase/testcli1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"Admin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '504' + - '618' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:32:36 GMT + - Thu, 14 Oct 2021 10:12:46 GMT expires: - '-1' pragma: @@ -4247,6 +4334,115 @@ interactions: status: code: 200 message: OK +- request: + body: '{"value": [{"role": "Admin", "name": "clitest", "type": "App", "appId": + "7bd74dc8-dd5f-4cee-8e64-866138abcf89"}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database add-principal + Connection: + - keep-alive + Content-Length: + - '113' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/addPrincipals?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"Zohar Hen (zoharhen@microsoft.com)","role":"Admin","type":"User","fqn":"aaduser=0f54ad84-ce5e-49d1-90b3-c553e7c96382;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"zoharhen@microsoft.com","appId":"","tenantName":"Microsoft"},{"name":"testcli1","role":"Admin","type":"App","fqn":"aadapp=ad064aa1-8b51-41ec-9c64-0d3037577d63;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"","appId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","tenantName":"Microsoft"},{"name":"clitest","role":"Admin","type":"App","fqn":"aadapp=7bd74dc8-dd5f-4cee-8e64-866138abcf89;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"","appId":"7bd74dc8-dd5f-4cee-8e64-866138abcf89","tenantName":"Microsoft"}]}' + headers: + cache-control: + - no-cache + content-length: + - '684' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"databaseName": "KustoDatabase", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7", + "defaultPrincipalsModificationKind": "Union", "tableLevelSharingProperties": + {"tablesToInclude": ["Table1"], "tablesToExclude": ["Table2"], "externalTablesToInclude": + ["ExternalTable1"], "externalTablesToExclude": ["ExternalTable2"], "materializedViewsToInclude": + ["MaterializedViewTable1"], "materializedViewsToExclude": ["MaterializedViewTable2"]}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration create + Connection: + - keep-alive + Content-Length: + - '646' + Content-Type: + - application/json + ParameterSetName: + - --name --cluster-name --location --cluster-resource-id --database-name --default-principals-modification-kind + --table-level-sharing-properties --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"westus2","properties":{"databaseName":"KustoDatabase","clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/e2f9e947-9cbc-463c-a96e-87fb707925aa?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '1050' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:12:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 201 + message: Created - request: body: null headers: @@ -4255,30 +4451,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto database create + - kusto attached-database-configuration create Connection: - keep-alive ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group + - --name --cluster-name --location --cluster-resource-id --database-name --default-principals-modification-kind + --table-level-sharing-properties --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/e2f9e947-9cbc-463c-a96e-87fb707925aa?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/KustoDatabase8","name":"clitestcluster327/KustoDatabase8","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"South - Central US","kind":"ReadWrite","tags":{},"properties":{"isFollowed":true,"softDeletePeriodInDays":1,"softDeletePeriod":"P1D","hotCachePeriodInDays":0,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/e2f9e947-9cbc-463c-a96e-87fb707925aa","name":"e2f9e947-9cbc-463c-a96e-87fb707925aa","status":"Succeeded","startTime":"2021-10-14T10:12:51.6248154Z","endTime":"2021-10-14T10:12:53.969469Z","percentComplete":1.0,"properties":{"operationKind":"FollowerDatabaseCreate","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '556' + - '447' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:32:36 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:13:21 GMT expires: - '-1' pragma: @@ -4293,6 +4487,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - c68e6d18-2fa7-427a-8ca6-8b577e78937b x-ms-ratelimit-remaining-subscription-resource-requests: - '299' status: @@ -4302,32 +4498,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto database list + - kusto attached-database-configuration create Connection: - keep-alive ParameterSetName: - - --cluster-name --resource-group + - --name --cluster-name --location --cluster-resource-id --database-name --default-principals-modification-kind + --table-level-sharing-properties --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/KustoDatabase8","name":"clitestcluster327/KustoDatabase8","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"South - Central US","kind":"ReadWrite","properties":{"isFollowed":true,"softDeletePeriodInDays":1,"softDeletePeriod":"P1D","hotCachePeriodInDays":0,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"West + US 2","properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","databaseName":"KustoDatabase","attachedDatabaseNames":["KustoDatabase"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '558' + - '1095' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:32:37 GMT + - Thu, 14 Oct 2021 10:13:22 GMT expires: - '-1' pragma: @@ -4343,7 +4540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + - '299' status: code: 200 message: OK @@ -4355,30 +4552,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto database show + - kusto attached-database-configuration wait Connection: - keep-alive ParameterSetName: - - --database-name --cluster-name --resource-group + - --created --name --cluster-name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/KustoDatabase8","name":"clitestcluster327/KustoDatabase8","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"South - Central US","kind":"ReadWrite","tags":{},"properties":{"isFollowed":true,"softDeletePeriodInDays":1,"softDeletePeriod":"P1D","hotCachePeriodInDays":0,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"West + US 2","properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","databaseName":"KustoDatabase","attachedDatabaseNames":["KustoDatabase"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '556' + - '1095' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:32:38 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:13:24 GMT expires: - '-1' pragma: @@ -4394,53 +4589,50 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '297' + - '299' status: code: 200 message: OK - request: - body: '{"kind": "ReadWrite", "properties": {"softDeletePeriod": "P1D"}}' + body: '{"location": "westus2", "kind": "EventHub", "properties": {"eventHubResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1", + "consumerGroup": "$Default", "compression": "None"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto database update + - kusto data-connection event-hub create Connection: - keep-alive Content-Length: - - '64' + - '282' Content-Type: - application/json ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group + - --cluster-name --name --database-name --location --consumer-group --event-hub-resource-id + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/KustoDatabase8","name":"clitestcluster327/KustoDatabase8","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"South - Central US","kind":"ReadWrite","tags":{},"properties":{"softDeletePeriod":"P1D","provisioningState":"Accepted"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"westus2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","compression":"None","provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationResults/2a755fac-5c79-421a-ad1b-d1c2a962a474?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/19fd49c7-f5bc-405c-8af3-7d38a5a6bdc4?api-version=2021-08-27 cache-control: - no-cache content-length: - - '459' + - '685' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:32:43 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:13:26 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/2a755fac-5c79-421a-ad1b-d1c2a962a474?api-version=2021-01-01&operationResultResponseType=Location pragma: - no-cache server: @@ -4452,8 +4644,8 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '199' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -4462,28 +4654,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto database update + - kusto data-connection event-hub create Connection: - keep-alive ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group + - --cluster-name --name --database-name --location --consumer-group --event-hub-resource-id + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/2a755fac-5c79-421a-ad1b-d1c2a962a474?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationResults/19fd49c7-f5bc-405c-8af3-7d38a5a6bdc4?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/2a755fac-5c79-421a-ad1b-d1c2a962a474","name":"2a755fac-5c79-421a-ad1b-d1c2a962a474","status":"Succeeded","startTime":"2021-05-08T17:32:43.6680267Z","endTime":"2021-05-08T17:32:45.6744273Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"72d7a6fa-2e2a-4669-b018-fae2a35aae7c","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus2/operationresults/19fd49c7-f5bc-405c-8af3-7d38a5a6bdc4","name":"19fd49c7-f5bc-405c-8af3-7d38a5a6bdc4","status":"Succeeded","startTime":"2021-10-14T10:13:27.1914549Z","endTime":"2021-10-14T10:13:53.585812Z","percentComplete":1.0,"properties":{}}' headers: cache-control: - no-cache content-length: - - '505' + - '346' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:33:13 GMT + - Thu, 14 Oct 2021 10:13:57 GMT expires: - '-1' pragma: @@ -4498,6 +4690,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 8ddecfab-b04b-41aa-b678-2f5947781321 x-ms-ratelimit-remaining-subscription-resource-requests: - '299' status: @@ -4511,30 +4705,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto database update + - kusto data-connection event-hub create Connection: - keep-alive ParameterSetName: - - --cluster-name --database-name --read-write-database --resource-group + - --cluster-name --name --database-name --location --consumer-group --event-hub-resource-id + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/KustoDatabase8","name":"clitestcluster327/KustoDatabase8","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"South - Central US","kind":"ReadWrite","tags":{},"properties":{"isFollowed":true,"softDeletePeriodInDays":1,"softDeletePeriod":"P1D","hotCachePeriodInDays":0,"statistics":{"size":0.0},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '556' + - '800' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:33:13 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:13:58 GMT expires: - '-1' pragma: @@ -4555,46 +4748,44 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"principalId": "d9a1f322-1293-4595-91e3-f54f8bb34725", - "role": "Admin", "tenantId": "33e01921-4d64-4f8c-a055-5bdaffd5e33d", "principalType": - "App"}}' + body: '{"properties": {"scriptUrl": "https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt", + "scriptUrlSasToken": "sp=r&st=2021-10-10T13:27:37Z&se=2024-09-06T21:27:37Z&sv=2020-08-04&sr=b&sig=bQv3g3VpesJ3nv9Fbs%2Bc0V0PQby9AY%2BFLzQBxk5a9us%3D", + "continueOnErrors": true}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto database-principal-assignment create + - kusto script create Connection: - keep-alive Content-Length: - - '164' + - '273' Content-Type: - application/json ParameterSetName: - - --cluster-name --database-name --principal-id --principal-type --role --tenant-id - --principal-assignment-name --resource-group + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/Kustodatabase8/principalAssignments/kustoprincipal1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/Kustodatabase8/PrincipalAssignments/kustoprincipal1","name":"clitestcluster327/Kustodatabase8/kustoprincipal1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","etag":"\"\"","properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"Admin","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","principalType":"App","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","scriptUrlSasToken":"","continueOnErrors":true,"provisioningState":"Creating"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationResults/b2bc4e26-131e-4d59-9296-7bc1c1e40e00?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/2ba526ef-5416-490e-9088-af97dcf13e9f?api-version=2021-08-27 cache-control: - no-cache content-length: - - '589' + - '768' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:33:16 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:14:00 GMT expires: - '-1' pragma: @@ -4618,29 +4809,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto database-principal-assignment create + - kusto script create Connection: - keep-alive ParameterSetName: - - --cluster-name --database-name --principal-id --principal-type --role --tenant-id - --principal-assignment-name --resource-group + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/b2bc4e26-131e-4d59-9296-7bc1c1e40e00?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/2ba526ef-5416-490e-9088-af97dcf13e9f?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/b2bc4e26-131e-4d59-9296-7bc1c1e40e00","name":"b2bc4e26-131e-4d59-9296-7bc1c1e40e00","status":"Succeeded","startTime":"2021-05-08T17:33:16.783322Z","endTime":"2021-05-08T17:33:16.9542408Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseAddPrincipals","RootActivityId":"04c7fdcd-8eb0-4b57-92fc-56dc0406f245","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/2ba526ef-5416-490e-9088-af97dcf13e9f","name":"2ba526ef-5416-490e-9088-af97dcf13e9f","status":"Succeeded","startTime":"2021-10-14T10:14:00.9000319Z","endTime":"2021-10-14T10:14:02.1397486Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseScriptCreateOrUpdate","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '511' + - '456' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:33:47 GMT + - Thu, 14 Oct 2021 10:14:30 GMT expires: - '-1' pragma: @@ -4655,8 +4846,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - ce553c1f-248c-4a0c-a24d-a417730f61ba x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + - '299' status: code: 200 message: OK @@ -4668,31 +4861,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto database-principal-assignment create + - kusto script create Connection: - keep-alive ParameterSetName: - - --cluster-name --database-name --principal-id --principal-type --role --tenant-id - --principal-assignment-name --resource-group + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/Kustodatabase8/principalAssignments/kustoprincipal1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/Kustodatabase8/PrincipalAssignments/kustoprincipal1","name":"clitestcluster327/Kustodatabase8/kustoprincipal1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","etag":"\"\"","tags":{},"properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"Admin","principalType":"App","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","tenantName":"MS - Azure Cloud","principalName":"KustoResourceProvider","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}' headers: cache-control: - no-cache content-length: - - '670' + - '746' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:33:48 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:14:31 GMT expires: - '-1' pragma: @@ -4720,30 +4910,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto database-principal-assignment wait + - kusto script wait Connection: - keep-alive ParameterSetName: - - --created --cluster-name --database-name --principal-assignment-name --resource-group + - --created --cluster-name --database-name --resource-group --name User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/Kustodatabase8/principalAssignments/kustoprincipal1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/Kustodatabase8/PrincipalAssignments/kustoprincipal1","name":"clitestcluster327/Kustodatabase8/kustoprincipal1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","etag":"\"\"","tags":{},"properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"Admin","principalType":"App","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","tenantName":"MS - Azure Cloud","principalName":"KustoResourceProvider","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}' headers: cache-control: - no-cache content-length: - - '670' + - '746' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:33:49 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:14:32 GMT expires: - '-1' pragma: @@ -4764,37 +4951,90 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"privateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest", + "groupId": "blob", "requestMessage": "Please Approve."}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto database list-principal + - kusto managed-private-endpoint create Connection: - keep-alive Content-Length: - - '0' + - '228' + Content-Type: + - application/json ParameterSetName: - - --cluster-name --database-name --resource-group + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/Kustodatabase8/listPrincipals?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 response: body: - string: '{"value":[{"name":"Assaf Taubenfeld","role":"Admin","type":"User","fqn":"aaduser=53d8fc23-618e-49fa-ae3f-ae65cc60aa37;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"astauben@microsoft.com","appId":"","tenantName":"Microsoft"},{"name":"KustoResourceProvider","role":"Admin","type":"App","fqn":"aadapp=d9a1f322-1293-4595-91e3-f54f8bb34725;33e01921-4d64-4f8c-a055-5bdaffd5e33d","email":"","appId":"d9a1f322-1293-4595-91e3-f54f8bb34725","tenantName":"MS - Azure Cloud"}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Creating"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 cache-control: - no-cache content-length: - - '465' + - '656' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:14:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:33:53 GMT + - Thu, 14 Oct 2021 10:15:05 GMT expires: - '-1' pragma: @@ -4809,43 +5049,6416 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:15:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:16:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:16:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Running","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:14:35.8312671Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:17:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/c16614f1-bb49-42fe-95f0-192fd8d1b187?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/c16614f1-bb49-42fe-95f0-192fd8d1b187","name":"c16614f1-bb49-42fe-95f0-192fd8d1b187","status":"Succeeded","startTime":"2021-10-14T10:14:35.6907818Z","endTime":"2021-10-14T10:17:27.7919159Z","percentComplete":1.0,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '464' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:17:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 97feb414-ae92-46f0-9c20-8055f8dda3cb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:34.8875256Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '893' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:17:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint wait + Connection: + - keep-alive + ParameterSetName: + - --created --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:34.8875256Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '893' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:17:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"value": [{"languageExtensionName": "PYTHON"}, {"languageExtensionName": + "R"}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + Content-Length: + - '80' + Content-Type: + - application/json + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/addLanguageExtensions?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:17:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:18:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:18:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:19:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:19:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:20:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:20:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:21:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:21:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:22:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:22:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Running","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:17:44.9493715Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '450' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:23:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a970edcd-71dc-45ea-a787-5cfe59eeaa13","name":"a970edcd-71dc-45ea-a787-5cfe59eeaa13","status":"Succeeded","startTime":"2021-10-14T10:17:40.8083186Z","endTime":"2021-10-14T10:23:31.0786822Z","percentComplete":1.0,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '453' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:23:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 05dbcb96-0b38-4bde-a6a2-4fe7c5de4719 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster add-language-extension + Connection: + - keep-alive + ParameterSetName: + - --name --value --value --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a970edcd-71dc-45ea-a787-5cfe59eeaa13?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:23:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/testrg?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg","name":"testrg","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '217' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:23:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/MyVnet/subnets/MySubnet", + "properties": {"privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}, "manualPrivateLinkServiceConnections": [{"name": "test", "properties": + {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7", + "groupIds": ["cluster"]}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + Content-Length: + - '644' + Content-Type: + - application/json + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4?api-version=2021-03-01 + response: + body: + string: "{\r\n \"name\": \"kustoPrivateEndpoint4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4\",\r\n + \ \"etag\": \"W/\\\"bb59d60a-dbea-490c-9dad-3c67534f198d\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"southcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"bac3d709-3097-4909-b763-380a3c398bd7\",\r\n \"privateLinkServiceConnections\": + [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": + \"test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4/manualPrivateLinkServiceConnections/test\",\r\n + \ \"etag\": \"W/\\\"bb59d60a-dbea-490c-9dad-3c67534f198d\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7\",\r\n + \ \"groupIds\": [\r\n \"cluster\"\r\n ],\r\n \"privateLinkServiceConnectionState\": + {\r\n \"status\": \"Pending\",\r\n \"description\": + \"Awaiting Approval\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n + \ },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n + \ }\r\n ],\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/MyVnet/subnets/MySubnet\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/networkInterfaces/kustoPrivateEndpoint4.nic.36a27415-8490-45cd-90d9-d26d2ec8969d\"\r\n + \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/75309b42-b872-4bb9-a74a-a433aac557b6?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '1977' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:23:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b389b9cc-6bc8-42be-b863-a4c0fc7d77a3 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/75309b42-b872-4bb9-a74a-a433aac557b6?api-version=2021-03-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2952e66e-330d-45fa-a7a8-55ed5b8568e6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/75309b42-b872-4bb9-a74a-a433aac557b6?api-version=2021-03-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2c68fdf3-ca9e-43f6-90c8-00268417cd7a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/75309b42-b872-4bb9-a74a-a433aac557b6?api-version=2021-03-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 76b69619-123d-4843-bd33-00e1776da72a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --group-id --manual-request --subnet --private-connection-resource-id + --connection-name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4?api-version=2021-03-01 + response: + body: + string: "{\r\n \"name\": \"kustoPrivateEndpoint4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4\",\r\n + \ \"etag\": \"W/\\\"dd2b53b0-a556-4ce5-aba8-cf0b9ce6d18a\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"southcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"bac3d709-3097-4909-b763-380a3c398bd7\",\r\n \"privateLinkServiceConnections\": + [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": + \"test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4/manualPrivateLinkServiceConnections/test\",\r\n + \ \"etag\": \"W/\\\"dd2b53b0-a556-4ce5-aba8-cf0b9ce6d18a\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7\",\r\n + \ \"groupIds\": [\r\n \"cluster\"\r\n ],\r\n \"privateLinkServiceConnectionState\": + {\r\n \"status\": \"Pending\",\r\n \"description\": + \"\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n + \ \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n + \ }\r\n ],\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/MyVnet/subnets/MySubnet\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/networkInterfaces/kustoPrivateEndpoint4.nic.36a27415-8490-45cd-90d9-d26d2ec8969d\"\r\n + \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1961' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:36 GMT + etag: + - W/"dd2b53b0-a556-4ce5-aba8-cf0b9ce6d18a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 71c7ab15-4f10-4af1-a812-ec8464a9f27a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '768' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"privateLinkServiceConnectionState": {"status": "Approved", + "description": "Approved by test"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection create + Connection: + - keep-alive + Content-Length: + - '112' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --private-link-service-connection-state --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","name":"kustoclusterclitest7/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","properties":{"properties":{"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:24:41.1095664Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:24:41.1095664Z"},"provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/3f7582fa-732a-42e3-a72f-7fe68c6ce5cf?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '1123' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:24:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --private-link-service-connection-state --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/3f7582fa-732a-42e3-a72f-7fe68c6ce5cf?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/3f7582fa-732a-42e3-a72f-7fe68c6ce5cf","name":"3f7582fa-732a-42e3-a72f-7fe68c6ce5cf","status":"Succeeded","startTime":"2021-10-14T10:24:41.9898956Z","endTime":"2021-10-14T10:25:09.8667836Z","percentComplete":1.0,"properties":{"operationKind":"PrivateEndpointConnectionAlterCommand","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '465' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 3b0c50e4-3339-432f-960c-e145228975b3 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --private-link-service-connection-state --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test","actionsRequired":null}}}' + headers: + cache-control: + - no-cache + content-length: + - '771' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection wait + Connection: + - keep-alive + ParameterSetName: + - --created --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test","actionsRequired":null}}}' + headers: + cache-control: + - no-cache + content-length: + - '771' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster show + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:23:31.0006223Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterclitest7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterclitest7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[{"languageExtensionName":"PYTHON"},{"languageExtensionName":"R"}]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"e46224d2-b8e6-4517-95ba-c0fd25e1fb94","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + headers: + cache-control: + - no-cache + content-length: + - '1303' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:16 GMT + etag: + - '"2021-10-14T10:23:31.0006223Z"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/testcli1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"AllDatabasesAdmin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '582' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","statistics":{"size":0.0},"isFollowed":true,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '477' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --principal-assignment-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/principalAssignments/testcli1?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/KustoDatabase/testcli1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"Admin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '618' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration show + Connection: + - keep-alive + ParameterSetName: + - --name --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"West + US 2","properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","databaseName":"KustoDatabase","attachedDatabaseNames":["KustoDatabase"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1095' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '800' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:34.8875256Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '893' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 + response: + body: + string: '{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test","actionsRequired":null}}}' + headers: + cache-control: + - no-cache + content-length: + - '771' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/clusters?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-rg/providers/Microsoft.Kusto/Clusters/safrankekustoneu","name":"safrankekustoneu","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:05:55.0302499Z\"","location":"North + Europe","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:57:05 +00:00","uri":"https://safrankekustoneu.northeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustoneu.northeurope.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"66d5a66a-678b-40fa-93e5-7a9f881feb55","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kustorpe2e/providers/Microsoft.Kusto/Clusters/rpe2estoppedNEU","name":"rpe2estoppedNEU","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T08:53:29.3154570Z\"","location":"North + Europe","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{"MachineName":"88D151D325CB","ArmClientRequestId":"RPE2E;2021.07.15.0449-GA-12cb1c943-devCM","Test + Start Time":"7/15/2021 5:43:53 AM"},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-14 08:48:09 +00:00","uri":"https://rpe2estoppedneu.northeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-rpe2estoppedneu.northeurope.dev.kusto.windows.net","trustedExternalTenants":[{"value":"fd98e228-2977-4102-9e9f-f9344e4bc05d"},{"value":"72ca4892-87f6-422f-8e14-239d88d85900"},{"value":"42619785-2ad4-478e-84a6-4c0d7dd37179"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amir-test-rg-synapse/providers/Microsoft.Synapse/workspaces/amirleshman-neu45/kustoPools/amirleshmanneupool1","name":"amirleshman-neu45/amirleshmanneupool1","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-06T08:36:32.4331582Z\"","location":"North + Europe","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://amirleshmanneupool1.amirleshman-neu45.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-amirleshmanneupool1.amirleshman-neu45.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1013200258ProvisionAndManageSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2epam10132002-wksp/kustoPools/rpe2epam10132002pool","name":"rpe2epam10132002-wksp/rpe2epam10132002pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-13T20:24:23.7140798Z\"","location":"North + Europe","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2epam10132002pool.rpe2epam10132002-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2epam10132002pool.rpe2epam10132002-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-sea/providers/Microsoft.Kusto/Clusters/safrankekustosea2","name":"safrankekustosea2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T13:01:02.3526530Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to cluster start failure at 2021-08-29 13:00:24 +00:00","uri":"https://safrankekustosea2.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustosea2.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"},"identity":{"principalId":"0d1fc42f-587a-4b3f-9632-a2f74bc8b3a0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-sea/providers/Microsoft.Kusto/Clusters/safrankekusto4","name":"safrankekusto4","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T13:01:01.3213280Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to cluster start failure at 2021-08-29 13:00:22 +00:00","uri":"https://safrankekusto4.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekusto4.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"},"identity":{"principalId":"79e3e957-a226-4609-a078-5dbe53185546","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest2/providers/Microsoft.Kusto/Clusters/dortest7","name":"dortest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T06:32:07.4824894Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-29 06:24:43 +00:00","uri":"https://dortest7.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortest7.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/omerBlumRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omerausidentity":{"principalId":"b61081bb-3488-4151-99e2-1b242723ad43","clientId":"a655bc3a-eacb-4611-82b9-f90c16f6b74f"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test_weu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagivuserassignedweu":{"principalId":"72b4fbff-6e4a-402b-886e-422a14fa19d6","clientId":"c6fccd74-a018-40c1-ab0f-baaf4c30cd1c"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ohadtaylersea/providers/Microsoft.Kusto/Clusters/ohadtayleraria","name":"ohadtayleraria","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-04T08:18:13.8819381Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Deleted","stateReason":null,"uri":"https://ohadtayleraria.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-ohadtayleraria.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/seatestas","name":"seatestas","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:35:39.7912632Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to installation failure at 2021-06-06 12:18:14 +00:00","uri":"https://seatestas.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-seatestas.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ohadtaylersea/providers/Microsoft.Kusto/Clusters/testbridgeariacluster","name":"testbridgeariacluster","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-21T15:50:54.3951921Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to installation failure at 2021-06-21 15:47:04 +00:00","uri":"https://testbridgeariacluster.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-testbridgeariacluster.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E0810162847Synapse-rg/providers/Microsoft.Synapse/workspaces/cmkrpe2e0810162847-wksp/kustoPools/pcurrenttest2323","name":"cmkrpe2e0810162847-wksp/pcurrenttest2323","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-08-10T17:08:01.6537846Z\"","location":"Southeast + Asia","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://pcurrenttest2323.cmkrpe2e0810162847-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-pcurrenttest2323.cmkrpe2e0810162847-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/omerBlumRG/providers/Microsoft.Kusto/Clusters/omere2e","name":"omere2e","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-04T10:51:05.9226054Z\"","location":"Southeast + Asia","sku":{"name":"Standard_DS13_v2+2TB_PS","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-04 10:43:41 +00:00","uri":"https://omere2e.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-omere2e.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"85ff156e-6b39-4f76-8093-c78a14ad64b1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/omerBlumRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omerseaidentity":{"principalId":"bd959f1d-1539-41b9-9cef-d4a5475d78ba","clientId":"241d4da8-05c8-4125-a83c-f246b590bd69"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke/providers/Microsoft.Kusto/Clusters/safrankesea","name":"safrankesea","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-03T14:42:27.4169247Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://safrankesea.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankesea.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://omerseakv.vault.azure.net","keyName":"key2","keyVersion":"","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"c49299a6-5c07-4c1d-9515-40a50b020337","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Mgmt-safrankekusto2-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/D-safrankekusto2":{"principalId":"6673a2d7-e9ca-488d-be9a-0f92e3fb0965","clientId":"fd714542-ec41-41b1-91c9-0056f9e8d373"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagivtestidentityeus":{"principalId":"63f3fb68-469b-4e81-8008-5d10855602c6","clientId":"6e06eb9c-0dbc-4f80-9cb7-ffabde294ee7"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/omerBlumRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omerausidentity":{"principalId":"b61081bb-3488-4151-99e2-1b242723ad43","clientId":"a655bc3a-eacb-4611-82b9-f90c16f6b74f"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-orentestseav3-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-orentestseav3":{"principalId":"bcf45bf4-efce-4824-b0c8-5e592e606e2f","clientId":"4a358850-f043-420c-aadb-9df1d6a840cd"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-safrankekustoeus2-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-safrankekustoeus2":{"principalId":"404b2e03-2797-4a12-904d-2033efdd5da6","clientId":"2e7c6de0-08f4-47fd-aa1a-52fd80ee3aed"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Mgmt-safrankekusto-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/D-safrankekusto":{"principalId":"bb45da96-82c4-451c-8246-af42912e8299","clientId":"5416925e-56b0-40e5-9af6-1c92c918ed3a"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-dor1-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-dor1":{"principalId":"f2662a96-ea99-4fde-b5c5-30b7ac592143","clientId":"a4a7c3b7-b904-4f2d-a032-864128134123"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test_weu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagivuserassignedweu":{"principalId":"72b4fbff-6e4a-402b-886e-422a14fa19d6","clientId":"c6fccd74-a018-40c1-ab0f-baaf4c30cd1c"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagiv-identity":{"principalId":"3c801d34-75a3-40d6-aa3b-ee5c63ba4f69","clientId":"d5dc2bde-e3fb-41c2-bf15-c4c0417069dd"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/dorResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dortest2":{"principalId":"6473918b-0b97-49b7-98e2-dc06cd8181cc","clientId":"b3eace70-6e0f-44c6-b86c-9ab5dd109787"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-tompurgeportprop3-additional-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-tompurgeportprop3":{"principalId":"84dab6f8-6091-4e2c-839a-e15f0f499394","clientId":"893f1f73-1e29-4d77-af1d-9eeec4af3812"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-safrankeweu2-additional-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-safrankeweu2":{"principalId":"7251d221-e6dc-4c44-a944-8f163e51e36e","clientId":"980fd1d6-159b-439f-8d52-6f401cd6de7a"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/omerBlumRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omerseaidentity":{"principalId":"bd959f1d-1539-41b9-9cef-d4a5475d78ba","clientId":"241d4da8-05c8-4125-a83c-f246b590bd69"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Engine-safrankekustoneu-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E-safrankekustoneu":{"principalId":"547c27d6-4a79-4db5-83f2-549ef8b346e6","clientId":"497f6350-3681-42d7-9fa0-92a7dab33ecd"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lugoldbekusto/providers/Microsoft.Kusto/Clusters/lugoldbetestsea","name":"lugoldbetestsea","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-04T11:40:34.8891147Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":4},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://lugoldbetestsea.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-lugoldbetestsea.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":false,"minimum":2,"maximum":4},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["255.255.255.0/25","255.255.255.255"],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/omerBlumRG/providers/Microsoft.Kusto/Clusters/omeripv64","name":"omeripv64","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-06T12:48:29.9376453Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Deleted","stateReason":null,"uri":"https://omeripv64.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-omeripv64.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://omerseakv.vault.azure.net","keyName":"key2","keyVersion":"","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"},"identity":{"principalId":"eb1b6acd-390a-41c9-8411-ffee0c4f1cc1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke/providers/Microsoft.Kusto/Clusters/safrankekustosea","name":"safrankekustosea","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-15T14:41:59.6905451Z\"","location":"Southeast + Asia","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to installation failure at 2021-09-15 14:31:37 +00:00","uri":"https://safrankekustosea.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustosea.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/omerBlumRG/providers/Microsoft.Kusto/Clusters/omerbipv61","name":"omerbipv61","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-12T06:52:35.8273994Z\"","location":"Southeast + Asia","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Deleted","stateReason":null,"uri":"https://omerbipv61.southeastasia.dev.kusto.windows.net","dataIngestionUri":"https://ingest-omerbipv61.southeastasia.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kustorpe2e/providers/Microsoft.Kusto/Clusters/astaubentest","name":"astaubentest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:46:16.1209109Z\"","location":"South + Central US","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{"MachineName":"77E95E0E93B6","ArmClientRequestId":"RPE2E;2020.7.25.2028-GA-6afb2ce8ce-devCM","Test + Start Time":"7/25/2020 9:25:11 PM"},"properties":{"state":"Running","stateReason":null,"uri":"https://astaubentest.southcentralus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-astaubentest.southcentralus.dev.kusto.windows.net","trustedExternalTenants":[{"value":"fd98e228-2977-4102-9e9f-f9344e4bc05d"},{"value":"72ca4892-87f6-422f-8e14-239d88d85900"},{"value":"42619785-2ad4-478e-84a6-4c0d7dd37179"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sagivtestscus/providers/Microsoft.Kusto/Clusters/sagivtesscusluster","name":"sagivtesscusluster","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:35:06.3376345Z\"","location":"South + Central US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-02-21 08:34:54 +00:00","uri":"https://sagivtesscusluster.southcentralus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-sagivtesscusluster.southcentralus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"26067630-d207-4f7a-88fc-a7d668444862","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagiv-identity":{"principalId":"3c801d34-75a3-40d6-aa3b-ee5c63ba4f69","clientId":"d5dc2bde-e3fb-41c2-bf15-c4c0417069dd"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.Kusto/Clusters/astaubentest","name":"astaubentest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-19T09:57:55.4114812Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-09-19 09:51:37 +00:00","uri":"https://astaubentest.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-astaubentest.eastus.dev.kusto.windows.net","trustedExternalTenants":[{"value":"33e01921-4d64-4f8c-a055-5bdaffd5e33d"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":true,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"dfbfb51b-46fa-485d-818d-82eea7e35611","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.Kusto/Clusters/astauben","name":"astauben","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-19T09:56:52.4300030Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{"fdghgfh":"gfhgfhjgfj"},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-09-19 09:51:32 +00:00","uri":"https://astauben.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-astauben.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"03dde8e9-08b5-446d-a5f9-51e9f711755f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-eus/providers/Microsoft.Kusto/Clusters/safrankekusto","name":"safrankekusto","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:37:08.8384407Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-03-25 12:53:36 +00:00","uri":"https://safrankekusto.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekusto.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"deac600e-d75b-4ef2-984d-48d1cad489b6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-2-eus":{"principalId":"bcf2d669-a646-414e-8f15-eb20e01552c5","clientId":"8d6a2049-cf58-4945-bd9c-cb41dcf9196e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-sea/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-sea-1":{"principalId":"26993d29-d24a-4ccc-acf6-c55d34816644","clientId":"15d92f22-4d45-4959-8f67-fbd7a7769e1b"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-eus/providers/Microsoft.Kusto/Clusters/safrankekusto2","name":"safrankekusto2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:03:05.9600831Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:56:17 +00:00","uri":"https://safrankekusto2.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekusto2.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"6dc060e3-84cf-40f6-8418-c3a867b47247","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/Mgmt-safrankekustoeus-identity-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/D-safrankekustoeus":{"principalId":"b2e7b522-b89b-4bc0-a5b2-61604a164d9d","clientId":"bf362154-e89e-497c-a970-950bc179252f"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ohadRPtest/providers/Microsoft.Kusto/Clusters/ohadclustertest","name":"ohadclustertest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-12T07:20:18.9761151Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to cluster start failure at 2021-09-12 07:18:59 +00:00","uri":"https://ohadclustertest.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-ohadclustertest.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://ohadkv.vault.azure.net","keyName":"ohadkey","keyVersion":"ee5a58ad6d2f443eb75b470fd4ac4d61","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Failed"},"identity":{"principalId":"a09f1dad-d31d-458e-a193-d7661dcf9849","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/noamsynapseKustoDev/providers/Microsoft.Kusto/Clusters/noamsynapsedevtest","name":"noamsynapsedevtest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:40:48.5549384Z\"","location":"East + US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://noamsynapsedevtest.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-noamsynapsedevtest.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/avivyanivdfeus1","name":"avivyanivdfeus1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-04T10:35:02.8883111Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-04 10:28:43 +00:00","uri":"https://avivyanivdfeus1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-avivyanivdfeus1.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"1c8a57ec-6a40-4005-8896-bd54104d47aa","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/avivyanivdfeus2","name":"avivyanivdfeus2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-03T12:43:49.3234183Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + 2021-08-03 12:38:01 +00:00 due to lost access to KeyVault","uri":"https://avivyanivdfeus2.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-avivyanivdfeus2.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://omerkv.vault.azure.net","keyName":"iuyiuyiuy","keyVersion":"7ffbfc2ab2f04caeb3d5b92fdf8788e3","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"6acd2dfc-b073-4fd3-9da6-7c3baebc15df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke/providers/Microsoft.Kusto/Clusters/safranketest1","name":"safranketest1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:04:47.7263587Z\"","location":"East + US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:56:59 +00:00","uri":"https://safranketest1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safranketest1.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/hilatest1","name":"hilatest1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-24T11:03:19.8753761Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-24 10:56:01 +00:00","uri":"https://hilatest1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-hilatest1.eastus.dev.kusto.windows.net","trustedExternalTenants":[{"value":"72f988bf-86f1-41af-91ab-2d7cd011db47"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oronrgra/providers/Microsoft.Kusto/Clusters/amtest2Kusto1","name":"amtest2Kusto1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-01T00:31:41.4238035Z\"","location":"East + US","sku":{"name":"Standard_D14_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-09-01 00:24:22 +00:00","uri":"https://amtest2kusto1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-amtest2kusto1.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":10},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ohadRPtest/providers/Microsoft.Kusto/Clusters/ohadtest","name":"ohadtest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-13T11:56:13.8209637Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://ohadtest.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-ohadtest.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Disabled","allowedIpRangeList":["167.220.204.196"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amir-test-rg/providers/Microsoft.Kusto/Clusters/amiruai","name":"amiruai","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-14T08:51:42.5756850Z\"","location":"East + US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://amiruai.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-amiruai.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/amir-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amirumi":{"principalId":"8a5b5b2a-ebeb-410f-9211-5a9fe4fb8954","clientId":"c0f20530-2307-40f5-a9f7-dac6a4f8f51f"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adachabash-rg1/providers/Microsoft.Kusto/Clusters/adachabashtest1","name":"adachabashtest1","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-05T08:39:58.4240770Z\"","location":"East + US","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://adachabashtest1.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-adachabashtest1.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1007151239SynapseStandard-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10071512-wksp/kustoPools/rpe2estd10071512pool","name":"rpe2estd10071512-wksp/rpe2estd10071512pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-08T07:08:38.4027769Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-08 07:02:16 +00:00","uri":"https://rpe2estd10071512pool.rpe2estd10071512-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10071512pool.rpe2estd10071512-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1008144931StandardSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10081449-wksp/kustoPools/rpe2estd10081449pool","name":"rpe2estd10081449-wksp/rpe2estd10081449pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-08T15:13:06.1313919Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2estd10081449pool.rpe2estd10081449-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10081449pool.rpe2estd10081449-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://rpe2estd10081449kv.vault.azure.net","keyName":"rpe2estd10081449key","keyVersion":null,"userIdentity":null},"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1009200338StandardSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10092003-wksp/kustoPools/rpe2estd10092003pool","name":"rpe2estd10092003-wksp/rpe2estd10092003pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-09T20:26:08.7609902Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2estd10092003pool.rpe2estd10092003-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10092003pool.rpe2estd10092003-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://rpe2estd10092003kv.vault.azure.net","keyName":"rpe2estd10092003key","keyVersion":null,"userIdentity":null},"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/orenrgilaysub/providers/Microsoft.Kusto/Clusters/oreneus","name":"oreneus","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-10T07:35:59.7543595Z\"","location":"East + US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://oreneus.eastus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-oreneus.eastus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1010094645StandardSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10100946-wksp/kustoPools/rpe2estd10100946pool","name":"rpe2estd10100946-wksp/rpe2estd10100946pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-10T10:08:59.4153109Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2estd10100946pool.rpe2estd10100946-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10100946pool.rpe2estd10100946-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://rpe2estd10100946kv.vault.azure.net","keyName":"rpe2estd10100946key","keyVersion":null,"userIdentity":null},"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1010103054StandardSynapse-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10101030-wksp/kustoPools/rpe2estd10101030pool","name":"rpe2estd10101030-wksp/rpe2estd10101030pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-10T10:52:04.9756566Z\"","location":"East + US","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://rpe2estd10101030pool.rpe2estd10101030-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10101030pool.rpe2estd10101030-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://rpe2estd10101030kv.vault.azure.net","keyName":"rpe2estd10101030key","keyVersion":null,"userIdentity":null},"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":true,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/basaba/providers/Microsoft.Kusto/Clusters/basabatest33","name":"basabatest33","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:39:08.7720257Z\"","location":"West + Central US","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://basabatest33.westcentralus.dev.kusto.windows.net","dataIngestionUri":"https://ingest-basabatest33.westcentralus.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest2/providers/Microsoft.Kusto/Clusters/dortest","name":"dortest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-07T14:19:20.8244423Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://dortest.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortest.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"ddc5853e-3970-4b5c-8da8-1b265c8586db","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest2/providers/Microsoft.Kusto/Clusters/dortestf2","name":"dortestf2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-07T14:19:20.8244423Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://dortestf2.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortestf2.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-bvteus2/providers/Microsoft.Kusto/Clusters/safrankekustoeus2","name":"safrankekustoeus2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-30T10:29:20.2432555Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-06-30 10:22:27 +00:00","uri":"https://safrankekustoeus2.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustoeus2.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-bvteus2/providers/Microsoft.Kusto/Clusters/safrankekustoeus3","name":"safrankekustoeus3","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:04:03.6311932Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{"aa":"bb","cc":"ff","kk":"ll"},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:56:15 +00:00","uri":"https://safrankekustoeus3.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankekustoeus3.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"68af6caa-c595-4ba3-8b90-d7af613433d6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-sea/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-sea-1":{"principalId":"26993d29-d24a-4ccc-acf6-c55d34816644","clientId":"15d92f22-4d45-4959-8f67-fbd7a7769e1b"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/elbirnbo-synapse-rg/providers/Microsoft.Synapse/workspaces/elbirnboworkspace/kustoPools/elbirnbokpool","name":"elbirnboworkspace/elbirnbokpool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-06-13T14:38:55.5660364Z\"","location":"East + US 2","sku":{"name":"","size":"Small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://elbirnbokpool.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-elbirnbokpool.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest2/providers/Microsoft.Kusto/Clusters/dortest5","name":"dortest5","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T06:31:10.4653299Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-29 06:24:50 +00:00","uri":"https://dortest5.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortest5.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kubill-kustointernalppe/providers/Microsoft.Kusto/Clusters/hilatest2","name":"hilatest2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-24T11:02:24.7189389Z\"","location":"East + US 2","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-24 10:56:06 +00:00","uri":"https://hilatest2.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-hilatest2.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amir-test-synapse-injection/providers/Microsoft.Synapse/workspaces/amirsynapseeus2test135/kustoPools/oron1","name":"amirsynapseeus2test135/oron1","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-12T15:03:43.8183860Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://oron1.amirsynapseeus2test135.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-oron1.amirsynapseeus2test135.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dortest23/providers/Microsoft.Kusto/Clusters/dortest8","name":"dortest8","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-10T14:33:45.7674005Z\"","location":"East + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-10-10 14:27:24 +00:00","uri":"https://dortest8.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-dortest8.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"},"identity":{"principalId":"ac561b36-f5f4-4c01-b997-a7b9f23f7c6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/michaeltest/providers/Microsoft.Kusto/Clusters/michaelshikh1ls16test","name":"michaelshikh1ls16test","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-07T15:19:26.8058166Z\"","location":"East + US 2","sku":{"name":"Standard_L16s_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://michaelshikh1ls16test.eastus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-michaelshikh1ls16test.eastus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RPE2E1007164419SynapseStandard-rg/providers/Microsoft.Synapse/workspaces/rpe2estd10071644-wksp/kustoPools/rpe2estd10071644pool","name":"rpe2estd10071644-wksp/rpe2estd10071644pool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-13T13:19:13.5482034Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Deleted","stateReason":null,"uri":"https://rpe2estd10071644pool.rpe2estd10071644-wksp.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-rpe2estd10071644pool.rpe2estd10071644-wksp.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oronRG/providers/Microsoft.Synapse/workspaces/orondfsynapse/kustoPools/oronpool","name":"orondfsynapse/oronpool","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-11T08:41:21.5516382Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://oronpool.orondfsynapse.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-oronpool.orondfsynapse.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oronRG/providers/Microsoft.Synapse/workspaces/orondfsynapse/kustoPools/testportal","name":"orondfsynapse/testportal","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-11T11:21:12.6446507Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testportal.orondfsynapse.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-testportal.orondfsynapse.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oronRG/providers/Microsoft.Synapse/workspaces/orondfsynapse/kustoPools/teststudio","name":"orondfsynapse/teststudio","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-11T11:21:39.8797469Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://teststudio.orondfsynapse.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-teststudio.orondfsynapse.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/parkertestbvt/providers/Microsoft.Synapse/workspaces/pwkspacebasic1011/kustoPools/ppooltestbvt1011","name":"pwkspacebasic1011/ppooltestbvt1011","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2021-10-11T11:45:06.4100331Z\"","location":"East + US 2","sku":{"name":"Compute optimized","size":"Extra small","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://ppooltestbvt1011.pwkspacebasic1011.kustodev.azuresynapse-dogfood.net","dataIngestionUri":"https://ingest-ppooltestbvt1011.pwkspacebasic1011.kustodev.azuresynapse-dogfood.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":{"version":1,"isEnabled":true,"minimum":2,"maximum":3},"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"deployIPv6":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sagiv_test_weu/providers/Microsoft.Kusto/Clusters/sagivadxweu","name":"sagivadxweu","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:39:34.0591998Z\"","location":"West + Europe","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + due to installation failure at 2021-02-07 11:01:29 +00:00","uri":"https://sagivadxweu.westeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-sagivadxweu.westeurope.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V2","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Failed"},"identity":{"principalId":"a46c1d35-b033-4f9b-b8f3-82520a7138fc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sagiv-identity":{"principalId":"3c801d34-75a3-40d6-aa3b-ee5c63ba4f69","clientId":"d5dc2bde-e3fb-41c2-bf15-c4c0417069dd"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-rg/providers/Microsoft.Kusto/Clusters/safrankeweu","name":"safrankeweu","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-09T20:03:44.6178737Z\"","location":"West + Europe","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-08-09 19:56:52 +00:00","uri":"https://safrankeweu.westeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankeweu.westeurope.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":true,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://safranke-kv-weu.vault.azure.net","keyName":"safranke-key","keyVersion":"f970af8d7f0948699f9b323d17a0f306","userIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus"},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"9e6af201-fc66-42c5-a1d3-ede70be4d094","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-eus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-1-eus":{"principalId":"d8bcfe59-b3eb-4792-a0e6-be11d752e40b","clientId":"72ced0ce-e680-48c9-a028-3bb6af9027c4"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sagiv_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-msi-weu":{"principalId":"4387e1cb-0bd9-4c98-9557-0ad8febb610a","clientId":"b9c1663c-603e-4d7b-b922-34a0618f25ff"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/dorResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dortest2":{"principalId":"6473918b-0b97-49b7-98e2-dc06cd8181cc","clientId":"b3eace70-6e0f-44c6-b86c-9ab5dd109787"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/safranke-rg/providers/Microsoft.Kusto/Clusters/safrankeweu2","name":"safrankeweu2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-06-13T14:39:34.0591998Z\"","location":"West + Europe","sku":{"name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Stopped","stateReason":"Suspended + at 2021-05-22 00:50:19 +00:00","uri":"https://safrankeweu2.westeurope.dev.kusto.windows.net","dataIngestionUri":"https://ingest-safrankeweu2.westeurope.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":{"keyVaultUri":"https://safranke-kv-weu.vault.azure.net","keyName":"safranke-key","keyVersion":"f970af8d7f0948699f9b323d17a0f306","userIdentity":""},"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"d10dc936-a9b7-49c5-82da-e73cb8e8f469","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/safranke-sea/providers/Microsoft.ManagedIdentity/userAssignedIdentities/safranke-mi-sea-1":{"principalId":"26993d29-d24a-4ccc-acf6-c55d34816644","clientId":"15d92f22-4d45-4959-8f67-fbd7a7769e1b"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/michaeltest/providers/Microsoft.Kusto/Clusters/michaeltest","name":"michaeltest","type":"Microsoft.Kusto/Clusters","etag":"\"2021-08-29T08:09:59.9816708Z\"","location":"Australia + East","sku":{"name":"Dev(No SLA)_Standard_E2a_v4","tier":"Basic","capacity":1},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://michaeltest.australiaeast.dev.kusto.windows.net","dataIngestionUri":"https://ingest-michaeltest.australiaeast.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":false,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/michaeltest/providers/Microsoft.Kusto/Clusters/michaelTestNew2","name":"michaelTestNew2","type":"Microsoft.Kusto/Clusters","etag":"\"2021-09-19T12:43:23.7517802Z\"","location":"Australia + East","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://michaeltestnew2.australiaeast.dev.kusto.windows.net","dataIngestionUri":"https://ingest-michaeltestnew2.australiaeast.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":false,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/clusters?api-version=2021-08-27&%24skiptoken=DYxBD4IgGED%2fC%2fdPEJmmW%2bvUqTpZ64wIyUpgfOhazv8ep%2fe2t72NOP1NV%2bveSLqNPM%2f9%2fdFz0pEppYAdpbN08qVn7VIhf0vUhfIzxWVAFW1I1jukZlBKjhUDw%2fQIQioBrWgbaKvB1KUoWc0NDdGvdtQR6c2q6NGbVFwWTJ6qT0YOJxksrFny9MgZL4EdgDdk3%2f8%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '80839' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 25266ed9-ea1b-4ebc-b1b4-79e16a6a3d0d + - ff5c23e8-8a14-418b-a936-92bcbdbde93f + - 4c837161-6657-4b75-a0dc-e9edd354a0d4 + - 48f019fa-3381-432d-ade9-5d7f12fe4bfd + - fe0d26cb-f414-4748-9155-dafe82cebcc3 + - 9db804c6-c2a7-4c34-b2fd-abc18f6b578b + - 68c9870a-ea43-4c9c-8dc6-55d00abea456 + - b2ce7e17-e50a-4227-9d16-f1be7391b6ea + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list + Connection: + - keep-alive + ParameterSetName: + - --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","name":"kustoclusterclitest7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:23:31.0006223Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterclitest7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterclitest7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[{"languageExtensionName":"PYTHON"},{"languageExtensionName":"R"}]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":["0.0.0.0/0"],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"e46224d2-b8e6-4517-95ba-c0fd25e1fb94","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:12:53.8912642Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterleader7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterleader7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"principalId":"152df398-3533-4a5c-acfe-47800f4ce5ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2540' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster-principal-assignment list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/testcli1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"AllDatabasesAdmin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '594' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:00.0102878Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '758' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-sku + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/skus?api-version=2021-08-27 + response: + body: + string: '{"value":[{"resourceType":"clusters","name":"Dev(No SLA)_Standard_D11_v2","tier":"Basic","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_D11_v2","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Dev(No + SLA)_Standard_E2a_v4","tier":"Basic","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D11_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D12_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D13_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southafricawest"],"locationInfo":[{"location":"southafricawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D14_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_D32d_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiacentral"],"locationInfo":[{"location":"australiacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiasoutheast"],"locationInfo":[{"location":"australiasoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["brazilsoutheast"],"locationInfo":[{"location":"brazilsoutheast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["canadacentral"],"locationInfo":[{"location":"canadacentral","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["francecentral"],"locationInfo":[{"location":"francecentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["francesouth"],"locationInfo":[{"location":"francesouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["germanywestcentral"],"locationInfo":[{"location":"germanywestcentral","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["japanwest"],"locationInfo":[{"location":"japanwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["jioindiawest"],"locationInfo":[{"location":"jioindiawest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["koreasouth"],"locationInfo":[{"location":"koreasouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["norwayeast"],"locationInfo":[{"location":"norwayeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["norwaywest"],"locationInfo":[{"location":"norwaywest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southafricanorth"],"locationInfo":[{"location":"southafricanorth","zones":["2","1","3"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southindia"],"locationInfo":[{"location":"southindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["swedencentral"],"locationInfo":[{"location":"swedencentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["swedensouth"],"locationInfo":[{"location":"swedensouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["switzerlandnorth"],"locationInfo":[{"location":"switzerlandnorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["uaenorth"],"locationInfo":[{"location":"uaenorth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["ukwest"],"locationInfo":[{"location":"ukwest","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westcentralus"],"locationInfo":[{"location":"westcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westindia"],"locationInfo":[{"location":"westindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus3"],"locationInfo":[{"location":"westus3","zones":["3","1","2"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["centraluseuap"],"locationInfo":[{"location":"centraluseuap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E16a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E2a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E4a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E64i_v3","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E80ids_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["brazilsouth"],"locationInfo":[{"location":"brazilsouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastasia"],"locationInfo":[{"location":"eastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["koreacentral"],"locationInfo":[{"location":"koreacentral","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["northcentralus"],"locationInfo":[{"location":"northcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2euap"],"locationInfo":[{"location":"eastus2euap","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_E8a_v4","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L16s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L4s","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["canadaeast"],"locationInfo":[{"location":"canadaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["centralindia"],"locationInfo":[{"location":"centralindia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["centralus"],"locationInfo":[{"location":"centralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["japaneast"],"locationInfo":[{"location":"japaneast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["uksouth"],"locationInfo":[{"location":"uksouth","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["australiaeast"],"locationInfo":[{"location":"australiaeast","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus"],"locationInfo":[{"location":"eastus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["eastus2"],"locationInfo":[{"location":"eastus2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["northeurope"],"locationInfo":[{"location":"northeurope","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southcentralus"],"locationInfo":[{"location":"southcentralus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["southeastasia"],"locationInfo":[{"location":"southeastasia","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westeurope"],"locationInfo":[{"location":"westeurope","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus"],"locationInfo":[{"location":"westus","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"clusters","name":"Standard_L8s_v2","tier":"Standard","locations":["westus2"],"locationInfo":[{"location":"westus2","zones":["2","3","1"],"zoneDetails":[]}],"restrictions":[]}]}' + headers: + cache-control: + - no-cache + content-length: + - '168895' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-sku + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/skus?api-version=2021-08-27 + response: + body: + string: '{"value":[{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D11_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":8,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D12_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":16,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D13_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D14_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_D32d_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_DS13_v2+1TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_DS13_v2+2TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_DS14_v2+3TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_DS14_v2+4TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L4s","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":[]}]},"capacity":{"minimum":2,"maximum":16,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L8s","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L16s","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":[]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L8s_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_L16s_v2","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E64i_v3","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E80ids_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E2a_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E4a_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E8a_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E16a_v4","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E8as_v4+1TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E8as_v4+2TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E16as_v4+3TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}},{"resourceType":"Microsoft.Kusto/Clusters","sku":{"name":"Standard_E16as_v4+4TB_PS","tier":"Standard","locationInfo":[{"location":"West + US 2","zones":["uswest2-AZ01","uswest2-AZ02","uswest2-AZ03"]}]},"capacity":{"minimum":2,"maximum":1000,"default":2,"scaleType":"Automatic"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6369' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-language-extension + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/listLanguageExtensions?api-version=2021-08-27 + response: + body: + string: '{"value":[{"languageExtensionName":"PYTHON"},{"languageExtensionName":"R"}]}' + headers: + cache-control: + - no-cache + content-length: + - '76' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","statistics":{"size":0.0},"isFollowed":true,"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '489' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-follower-database + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/listFollowerDatabases?api-version=2021-08-27 + response: + body: + string: '{"value":[{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","attachedDatabaseConfigurationName":"myAttachedDatabaseConfiguration","databaseName":"KustoDatabase"}]}' + headers: + cache-control: + - no-cache + content-length: + - '334' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database-principal-assignment list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/principalAssignments?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/PrincipalAssignments/5e11cf36-45c4-42d2-a5ba-29fb9447ad32","name":"kustoclusterclitest7/KustoDatabase/5e11cf36-45c4-42d2-a5ba-29fb9447ad32","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"zoharhen@microsoft.com","role":"Admin","principalType":"User","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"Zohar + Hen (zoharhen@microsoft.com)","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/PrincipalAssignments/testcli1","name":"kustoclusterclitest7/KustoDatabase/testcli1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","role":"Admin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"testcli1","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/PrincipalAssignments/c899e159-9abb-4c4d-8fbb-62291c160a10","name":"kustoclusterclitest7/KustoDatabase/c899e159-9abb-4c4d-8fbb-62291c160a10","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","properties":{"principalId":"7bd74dc8-dd5f-4cee-8e64-866138abcf89","role":"Admin","principalType":"App","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","tenantName":"Microsoft","principalName":"clitest","provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1992' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database list-principal + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/listPrincipals?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"Zohar Hen (zoharhen@microsoft.com)","role":"Admin","type":"User","fqn":"aaduser=0f54ad84-ce5e-49d1-90b3-c553e7c96382;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"zoharhen@microsoft.com","appId":"","tenantName":"Microsoft"},{"name":"testcli1","role":"Admin","type":"App","fqn":"aadapp=ad064aa1-8b51-41ec-9c64-0d3037577d63;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"","appId":"ad064aa1-8b51-41ec-9c64-0d3037577d63","tenantName":"Microsoft"},{"name":"clitest","role":"Admin","type":"App","fqn":"aadapp=7bd74dc8-dd5f-4cee-8e64-866138abcf89;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"","appId":"7bd74dc8-dd5f-4cee-8e64-866138abcf89","tenantName":"Microsoft"}]}' + headers: + cache-control: + - no-cache + content-length: + - '684' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto attached-database-configuration list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/attachedDatabaseConfigurations?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7/AttachedDatabaseConfigurations/myAttachedDatabaseConfiguration","name":"KustoClusterLeader7/myAttachedDatabaseConfiguration","type":"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations","location":"West + US 2","properties":{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7","databaseName":"KustoDatabase","attachedDatabaseNames":["KustoDatabase"],"defaultPrincipalsModificationKind":"Union","tableLevelSharingProperties":{"tablesToInclude":["Table1"],"tablesToExclude":["Table2"],"externalTablesToInclude":["ExternalTable1"],"externalTablesToExclude":["ExternalTable2"],"materializedViewsToInclude":["MaterializedViewTable1"],"materializedViewsToExclude":["MaterializedViewTable2"]},"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1107' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '812' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:14:34.8875256Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '905' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:25:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/diagnoseVirtualNetwork?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:25:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:26:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:26:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:27:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:27:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Running","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:25:54.5412878Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a36b1a67-ffcd-429d-9481-007e6d55f2b8","name":"a36b1a67-ffcd-429d-9481-007e6d55f2b8","status":"Succeeded","startTime":"2021-10-14T10:25:54.5412878Z","endTime":"2021-10-14T10:28:26.6817979Z","percentComplete":1.0,"properties":{"Findings":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '362' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - bf8c3a76-c176-406e-85a0-009e289c17e6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster diagnose-virtual-network + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a36b1a67-ffcd-429d-9481-007e6d55f2b8?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '{"Findings":[]}' + headers: + cache-control: + - no-cache + content-length: + - '15' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster list-outbound-network-dependency-endpoint + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/outboundNetworkDependenciesEndpoints?api-version=2021-08-27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/OutboundNetworkDependenciesEndpoints/AzureActiveDirectory","name":"kustoclusterclitest7/AzureActiveDirectory","type":"Microsoft.Kusto/Clusters/OutboundNetworkDependenciesEndpoints","location":"West + US 2","properties":{"category":"Azure Active Directory","endpoints":[{"domainName":"login.microsoftonline.com","endpointDetails":[{"port":443}]},{"domainName":"graph.windows.net","endpointDetails":[{"port":443}]},{"domainName":"graph.microsoft.com","endpointDetails":[{"port":443}]},{"domainName":"graph.microsoft-ppe.com","endpointDetails":[{"port":443}]}],"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/OutboundNetworkDependenciesEndpoints/AzureMonitor","name":"kustoclusterclitest7/AzureMonitor","type":"Microsoft.Kusto/Clusters/OutboundNetworkDependenciesEndpoints","location":"West + US 2","properties":{"category":"Azure Monitor","endpoints":[{"domainName":"prod.warmpath.msftcloudes.com","endpointDetails":[{"port":443}]},{"domainName":"gcs.prod.monitoring.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"production.diagnostics.monitoring.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"shoebox2.metrics.nsatc.net:443","endpointDetails":[{"port":443}]}],"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/OutboundNetworkDependenciesEndpoints/CertificateAuthority","name":"kustoclusterclitest7/CertificateAuthority","type":"Microsoft.Kusto/Clusters/OutboundNetworkDependenciesEndpoints","location":"West + US 2","properties":{"category":"Certificate Authority","endpoints":[{"domainName":"ocsp.msocsp.com","endpointDetails":[{"port":80}]},{"domainName":"ocsp.digicert.com","endpointDetails":[{"port":80}]},{"domainName":"crl3.digicert.com","endpointDetails":[{"port":80}]},{"domainName":"crl.microsoft.com","endpointDetails":[{"port":80}]},{"domainName":"www.microsoft.com","endpointDetails":[{"port":80}]}],"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/OutboundNetworkDependenciesEndpoints/AzureStorage","name":"kustoclusterclitest7/AzureStorage","type":"Microsoft.Kusto/Clusters/OutboundNetworkDependenciesEndpoints","location":"West + US 2","properties":{"category":"Azure Storage","endpoints":[{"domainName":"ykankustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"ykankustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"ykankustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"zgdekustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"zgdekustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"zgdekustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"98pkkustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"98pkkustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"98pkkustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qpxekustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qpxekustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qpxekustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"yn7ustoclusterclitest700.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"yn7ustoclusterclitest700.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"yn7ustoclusterclitest700.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"v5zustoclusterclitest701.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"v5zustoclusterclitest701.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"v5zustoclusterclitest701.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"guaustoclusterclitest702.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"guaustoclusterclitest702.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"guaustoclusterclitest702.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"kw4ustoclusterclitest703.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"kw4ustoclusterclitest703.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"kw4ustoclusterclitest703.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"fsgdkustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"fsgdkustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"fsgdkustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qz0kkustoclusterclitest7.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qz0kkustoclusterclitest7.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"qz0kkustoclusterclitest7.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"8s8ustoclusterclitest700.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"8s8ustoclusterclitest700.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"8s8ustoclusterclitest700.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"be0ustoclusterclitest701.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"be0ustoclusterclitest701.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"be0ustoclusterclitest701.table.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"004ustoclusterclitest7eh.blob.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"004ustoclusterclitest7eh.queue.core.windows.net","endpointDetails":[{"port":443}]},{"domainName":"004ustoclusterclitest7eh.table.core.windows.net","endpointDetails":[{"port":443}]}],"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6771' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto private-endpoint-connection list + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections?api-version=2021-08-27 + response: + body: + string: '{"value":[{"name":"kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","type":"Microsoft.Kusto/Clusters/PrivateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/PrivateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574","properties":{"provisioningState":"Succeeded","groupId":"cluster","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + by test","actionsRequired":null}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '783' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:28:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "kind": "EventHub", "properties": {"eventHubResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1", + "consumerGroup": "$Default", "compression": "None"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub update + Connection: + - keep-alive + Content-Length: + - '282' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --name --database-name --location --resource-group --consumer-group + --event-hub-resource-id + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/ef50b6d4-cc37-4601-8f9a-0f9ceef2952f?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '799' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:29:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/ef50b6d4-cc37-4601-8f9a-0f9ceef2952f?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --database-name --location --resource-group --consumer-group + --event-hub-resource-id + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/ef50b6d4-cc37-4601-8f9a-0f9ceef2952f?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/ef50b6d4-cc37-4601-8f9a-0f9ceef2952f","name":"ef50b6d4-cc37-4601-8f9a-0f9ceef2952f","status":"Succeeded","startTime":"2021-10-14T10:29:03.1923884Z","endTime":"2021-10-14T10:29:06.4582994Z","percentComplete":1.0,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '349' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:29:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 6d2a796b-b415-4f8a-81e6-f23f3a970638 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --database-name --location --resource-group --consumer-group + --event-hub-resource-id + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/DataConnections/DataConnection3","name":"kustoclusterclitest7/KustoDatabase/DataConnection3","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","location":"West + US 2","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1","consumerGroup":"$Default","tableName":null,"mappingRuleName":null,"dataFormat":null,"eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:29:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"privateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest", + "groupId": "blob", "requestMessage": "Please Approve."}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint update + Connection: + - keep-alive + Content-Length: + - '228' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/897cc5bd-b660-4503-8b2e-d35494edeaea?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '656' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:29:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/897cc5bd-b660-4503-8b2e-d35494edeaea?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/897cc5bd-b660-4503-8b2e-d35494edeaea?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/897cc5bd-b660-4503-8b2e-d35494edeaea","name":"897cc5bd-b660-4503-8b2e-d35494edeaea","status":"Running","startTime":"2021-10-14T10:29:35.6458264Z","endTime":"2021-10-14T10:29:35.6614486Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '461' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:30:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d84df406-a966-433e-ac62-68961de9360d + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/897cc5bd-b660-4503-8b2e-d35494edeaea?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/897cc5bd-b660-4503-8b2e-d35494edeaea","name":"897cc5bd-b660-4503-8b2e-d35494edeaea","status":"Succeeded","startTime":"2021-10-14T10:29:35.6458264Z","endTime":"2021-10-14T10:30:13.3701273Z","percentComplete":1.0,"properties":{"operationKind":"ManagedPrivateEndpointCreateOrUpdate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '464' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:30:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d84df406-a966-433e-ac62-68961de9360d + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto managed-private-endpoint update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --name --group-id --private-link-resource-id --request-message + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/ManagedPrivateEndpoints/kustoManagedPrivateEndpoint4","name":"kustoclusterclitest7/kustoManagedPrivateEndpoint4","type":"Microsoft.Kusto/Clusters/ManagedPrivateEndpoints","location":"DummyLocation","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/clisatest","groupId":"blob","requestMessage":"Please + Approve.","provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:34.8875256Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:29:35.510515Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '892' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:30:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub data-connection-validation + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --name --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-14T09:35:29Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:30:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"dataConnectionName": "DataConnection3", "properties": {"location": "westus", + "kind": "EventHub", "properties": {"eventHubResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1", + "consumerGroup": "$Default", "compression": "None"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub data-connection-validation + Connection: + - keep-alive + Content-Length: + - '338' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --name --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnectionValidation?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:30:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub data-connection-validation + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --name --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145","name":"16d347e5-5d2d-4720-8cf1-bbfe4a1dd145","status":"Succeeded","startTime":"2021-10-14T10:30:39.3262993Z","endTime":"2021-10-14T10:30:41.7170378Z","percentComplete":1.0,"properties":{"Value":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '359' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 9a86e080-788e-4d66-aa6b-213de2cbfc1c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto data-connection event-hub data-connection-validation + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --name --consumer-group --event-hub-resource-id + --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/16d347e5-5d2d-4720-8cf1-bbfe4a1dd145?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '{"Value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"scriptUrl": "https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt", + "scriptUrlSasToken": "sp=r&st=2021-10-10T13:27:37Z&se=2024-09-06T21:27:37Z&sv=2020-08-04&sr=b&sig=bQv3g3VpesJ3nv9Fbs%2Bc0V0PQby9AY%2BFLzQBxk5a9us%3D", + "continueOnErrors": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script update + Connection: + - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","scriptUrlSasToken":"","continueOnErrors":true,"provisioningState":"Accepted"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:31:12.5386557Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:31:12.5386557Z"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '768' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc","name":"2b736a4e-ad19-4c84-9cdf-651bb1dc7ebc","status":"Succeeded","startTime":"2021-10-14T10:31:14.0976411Z","endTime":"2021-10-14T10:31:15.3321805Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseScriptCreateOrUpdate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '456' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d6681da3-8b72-454d-9bde-b0857fe7f1ae + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto script update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token + --resource-group --name + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2","name":"kustoclusterclitest7/KustoDatabase/kustoScript2","type":"Microsoft.Kusto/Clusters/Databases/Scripts","properties":{"scriptUrl":"https://clisatest.blob.core.windows.net/kustosa/kustoscript.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"zoharhen@microsoft.com","createdByType":"User","createdAt":"2021-10-14T10:14:00.0102878Z","lastModifiedBy":"zoharhen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T10:31:12.5386557Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: '{"kind": "ReadWrite", "properties": {"hotCachePeriod": "P1D"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database update + Connection: + - keep-alive + Content-Length: + - '62' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"hotCachePeriod":"P1D","provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/0fa1dfa2-b993-4407-a27f-e2f2372b0057?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '430' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:31:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/0fa1dfa2-b993-4407-a27f-e2f2372b0057?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/0fa1dfa2-b993-4407-a27f-e2f2372b0057?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/0fa1dfa2-b993-4407-a27f-e2f2372b0057","name":"0fa1dfa2-b993-4407-a27f-e2f2372b0057","status":"Succeeded","startTime":"2021-10-14T10:31:46.4625256Z","endTime":"2021-10-14T10:31:51.259639Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseCreate","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '441' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:32:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - d595c535-8a6d-47a5-9c1b-da70a0df5f35 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto database update + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --database-name --read-write-database --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase","name":"kustoclusterclitest7/KustoDatabase","type":"Microsoft.Kusto/Clusters/Databases","location":"West + US 2","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","hotCachePeriod":"P1D","statistics":{"size":0.0},"isFollowed":true,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '500' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:32:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/stop?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:32:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:32:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:33:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:33:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:34:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:34:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:35:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:35:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:36:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:36:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:37:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:37:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Running","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:32:19.2615137Z","percentComplete":0.5,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:38:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","name":"9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee","status":"Succeeded","startTime":"2021-10-14T10:32:19.1990086Z","endTime":"2021-10-14T10:38:43.3837457Z","percentComplete":1.0,"properties":{"operationKind":"ClusterSuspend","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '442' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:38:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - eb615997-6b4f-4ad9-8641-c1fdad27f35c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster stop + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/9d17f708-d3d1-4b71-8cd9-9cb5c12eb1ee?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:38:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7/start?api-version=2021-08-27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:38:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:39:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '299' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:39:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '298' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:40:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '297' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:40:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '296' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:41:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '295' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:41:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:42:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:42:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '292' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:43:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '291' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:43:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:44:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:44:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '290' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:45:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:46:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:46:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:47:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '286' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:47:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:48:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '284' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:48:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '283' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:49:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '282' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:49:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '281' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Running","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:38:56.216933Z","percentComplete":0.5,"properties":{"operationKind":"ClusterResume","provisioningState":"Running","operationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:50:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '289' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/80e25295-6511-49f2-9c6b-b36ad44bbc68","name":"80e25295-6511-49f2-9c6b-b36ad44bbc68","status":"Succeeded","startTime":"2021-10-14T10:38:55.857608Z","endTime":"2021-10-14T10:50:31.5181677Z","percentComplete":1.0,"properties":{"operationKind":"ClusterResume","provisioningState":"Succeeded","operationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '440' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Oct 2021 10:50:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-operation-root-activity-id: + - 4fb62456-234f-45fb-91da-01262c600604 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '288' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - kusto cluster start + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/80e25295-6511-49f2-9c6b-b36ad44bbc68?api-version=2021-08-27&operationResultResponseType=Location + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 14 Oct 2021 10:50:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '287' status: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"enableDiskEncryption": false, "enableStreamingIngest": true, "enablePurge": + true, "enableDoubleEncryption": false, "publicNetworkAccess": "Enabled", "engineType": + "V3", "enableAutoStop": true, "restrictOutboundNetworkAccess": "Disabled"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto database-principal-assignment show + - kusto cluster update Connection: - keep-alive + Content-Length: + - '318' + Content-Type: + - application/json ParameterSetName: - - --cluster-name --database-name --principal-assignment-name --resource-group + - --name --type --location --enable-auto-stop --enable-purge --enable-streaming-ingest + --engine-type --restrict-outbound-network-access --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/Kustodatabase8/principalAssignments/kustoprincipal1?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/Kustodatabase8/PrincipalAssignments/kustoprincipal1","name":"clitestcluster327/Kustodatabase8/kustoprincipal1","type":"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments","etag":"\"\"","tags":{},"properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"Admin","principalType":"App","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","tenantName":"MS - Azure Cloud","principalName":"KustoResourceProvider","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/KustoClusterLeader7","name":"KustoClusterLeader7","type":"Microsoft.Kusto/Clusters","etag":"\"2021-10-14T10:50:31.4244605Z\"","location":"West + US 2","sku":{"name":"Standard_D11_v2","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://kustoclusterleader7.westus2.dev.kusto.windows.net","dataIngestionUri":"https://ingest-kustoclusterleader7.westus2.dev.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":true,"enableDoubleEncryption":false,"engineType":"V3","acceptedAudiences":[],"restrictOutboundNetworkAccess":"Disabled","allowedFQDNList":[],"publicNetworkAccess":"Enabled","allowedIpRangeList":[],"enableAutoStop":true,"provisioningState":"Succeeded"},"identity":{"type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '670' + - '1149' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:33:54 GMT + - Thu, 14 Oct 2021 10:50:45 GMT etag: - - '""' + - '"2021-10-14T10:50:31.4244605Z"' expires: - '-1' pragma: @@ -4861,46 +11474,49 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + - '199' status: code: 200 message: OK - request: - body: null + body: '{"value": [{"languageExtensionName": "PYTHON"}, {"languageExtensionName": + "R"}]}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto database-principal-assignment delete + - kusto cluster remove-language-extension Connection: - keep-alive Content-Length: - - '0' + - '80' + Content-Type: + - application/json ParameterSetName: - - -y --cluster-name --database-name --principal-assignment-name --resource-group + - --name --value --value --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/Kustodatabase8/principalAssignments/kustoprincipal1?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/removeLanguageExtensions?api-version=2021-08-27 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationResults/fdccd5d3-3369-4827-81d1-7b27060ee781?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 cache-control: - no-cache content-length: - '0' date: - - Sat, 08 May 2021 17:33:58 GMT + - Thu, 14 Oct 2021 10:50:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/fdccd5d3-3369-4827-81d1-7b27060ee781?api-version=2021-01-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27&operationResultResponseType=Location pragma: - no-cache server: @@ -4909,8 +11525,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 202 message: Accepted @@ -4922,28 +11538,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto database-principal-assignment delete + - kusto cluster remove-language-extension Connection: - keep-alive ParameterSetName: - - -y --cluster-name --database-name --principal-assignment-name --resource-group + - --name --value --value --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/fdccd5d3-3369-4827-81d1-7b27060ee781?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/fdccd5d3-3369-4827-81d1-7b27060ee781","name":"fdccd5d3-3369-4827-81d1-7b27060ee781","status":"Succeeded","startTime":"2021-05-08T17:33:59.0255412Z","endTime":"2021-05-08T17:33:59.1501112Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseDropPrincipals","RootActivityId":"c94be252-b48a-4378-82f6-a8fb8a804950","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '513' + - '450' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:34:29 GMT + - Thu, 14 Oct 2021 10:51:17 GMT expires: - '-1' pragma: @@ -4958,67 +11574,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b x-ms-ratelimit-remaining-subscription-resource-requests: - '299' status: code: 200 message: OK -- request: - body: '{"properties": {"principalId": "d9a1f322-1293-4595-91e3-f54f8bb34725", - "role": "AllDatabasesViewer", "tenantId": "33e01921-4d64-4f8c-a055-5bdaffd5e33d", - "principalType": "App"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster-principal-assignment create - Connection: - - keep-alive - Content-Length: - - '177' - Content-Type: - - application/json - ParameterSetName: - - --cluster-name --principal-id --principal-type --role --tenant-id --principal-assignment-name - --resource-group - User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/principalAssignments/kustoprincipal1?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/PrincipalAssignments/kustoprincipal1","name":"clitestcluster327/kustoprincipal1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","etag":"\"\"","properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"AllDatabasesViewer","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","principalType":"App","provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationResults/87c4c8f8-2ff3-45b5-8991-d9411592ca87?api-version=2021-01-01 - cache-control: - - no-cache - content-length: - - '552' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 08 May 2021 17:34:32 GMT - etag: - - '""' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' - status: - code: 201 - message: Created - request: body: null headers: @@ -5027,29 +11589,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster-principal-assignment create + - kusto cluster remove-language-extension Connection: - keep-alive ParameterSetName: - - --cluster-name --principal-id --principal-type --role --tenant-id --principal-assignment-name - --resource-group + - --name --value --value --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/87c4c8f8-2ff3-45b5-8991-d9411592ca87?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/87c4c8f8-2ff3-45b5-8991-d9411592ca87","name":"87c4c8f8-2ff3-45b5-8991-d9411592ca87","status":"Succeeded","startTime":"2021-05-08T17:34:33.0783803Z","endTime":"2021-05-08T17:34:35.2902902Z","percentComplete":1.0,"properties":{"OperationKind":"ServicePrincipalAssignmentsAdd","RootActivityId":"bcee4208-d907-4e36-8b5c-ddebc754382d","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '521' + - '450' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:35:02 GMT + - Thu, 14 Oct 2021 10:51:47 GMT expires: - '-1' pragma: @@ -5064,8 +11625,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '298' status: code: 200 message: OK @@ -5077,31 +11640,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster-principal-assignment create + - kusto cluster remove-language-extension Connection: - keep-alive ParameterSetName: - - --cluster-name --principal-id --principal-type --role --tenant-id --principal-assignment-name - --resource-group + - --name --value --value --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/principalAssignments/kustoprincipal1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/PrincipalAssignments/kustoprincipal1","name":"clitestcluster327/kustoprincipal1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","etag":"\"\"","tags":{},"properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"AllDatabasesViewer","principalType":"App","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","tenantName":"MS - Azure Cloud","principalName":"KustoResourceProvider","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '633' + - '450' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:35:03 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:52:18 GMT expires: - '-1' pragma: @@ -5116,8 +11676,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '297' status: code: 200 message: OK @@ -5125,34 +11687,32 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster-principal-assignment wait + - kusto cluster remove-language-extension Connection: - keep-alive ParameterSetName: - - --created --principal-assignment-name --cluster-name --resource-group + - --name --value --value --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/principalAssignments/kustoprincipal1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/PrincipalAssignments/kustoprincipal1","name":"clitestcluster327/kustoprincipal1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","etag":"\"\"","tags":{},"properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"AllDatabasesViewer","principalType":"App","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","tenantName":"MS - Azure Cloud","principalName":"KustoResourceProvider","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '633' + - '450' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:35:05 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:52:48 GMT expires: - '-1' pragma: @@ -5167,8 +11727,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '296' status: code: 200 message: OK @@ -5176,34 +11738,32 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster-principal-assignment show + - kusto cluster remove-language-extension Connection: - keep-alive ParameterSetName: - - --cluster-name --principal-assignment-name --resource-group + - --name --value --value --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/principalAssignments/kustoprincipal1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/PrincipalAssignments/kustoprincipal1","name":"clitestcluster327/kustoprincipal1","type":"Microsoft.Kusto/Clusters/PrincipalAssignments","etag":"\"\"","tags":{},"properties":{"principalId":"d9a1f322-1293-4595-91e3-f54f8bb34725","role":"AllDatabasesViewer","principalType":"App","tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","tenantName":"MS - Azure Cloud","principalName":"KustoResourceProvider","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Running","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:51:02.5136336Z","percentComplete":0.5,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '633' + - '450' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:35:10 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:53:18 GMT expires: - '-1' pragma: @@ -5218,8 +11778,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '295' status: code: 200 message: OK @@ -5227,31 +11789,32 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto attached-database-configuration list + - kusto cluster remove-language-extension Connection: - keep-alive ParameterSetName: - - --cluster-name --resource-group + - --name --value --value --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/attachedDatabaseConfigurations?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27 response: body: - string: '{"value":[]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/8de67116-4a15-497b-af5c-87bb554410cb","name":"8de67116-4a15-497b-af5c-87bb554410cb","status":"Succeeded","startTime":"2021-10-14T10:50:47.4566575Z","endTime":"2021-10-14T10:53:36.8773182Z","percentComplete":1.0,"properties":{"operationKind":"ServiceConfigurationAlter","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '12' + - '453' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:35:12 GMT + - Thu, 14 Oct 2021 10:53:49 GMT expires: - '-1' pragma: @@ -5266,8 +11829,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 57163476-6da7-433b-a612-09c776213e8b x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '294' status: code: 200 message: OK @@ -5275,33 +11840,29 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster list-follower-database + - kusto cluster remove-language-extension Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --cluster-name --resource-group + - --name --value --value --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/listFollowerDatabases?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/8de67116-4a15-497b-af5c-87bb554410cb?api-version=2021-08-27&operationResultResponseType=Location response: body: - string: '{"value":[{"clusterResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster0f327","attachedDatabaseConfigurationName":"attachedDatabaseConfigurations2","databaseName":"Kustodatabase8"}]}' + string: '' headers: cache-control: - no-cache content-length: - - '335' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Sat, 08 May 2021 17:35:13 GMT + - Thu, 14 Oct 2021 10:53:49 GMT expires: - '-1' pragma: @@ -5310,57 +11871,49 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '293' status: code: 200 message: OK - request: - body: '{"clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster0f327", - "attachedDatabaseConfigurationName": "attachedDatabaseConfigurations2"}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster detach-follower-database + - kusto managed-private-endpoint delete Connection: - keep-alive Content-Length: - - '294' - Content-Type: - - application/json + - '0' ParameterSetName: - - --cluster-name --attached-database-configuration-name --cluster-resource-id - --resource-group + - -y --cluster-name --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/detachFollowerDatabases?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/managedPrivateEndpoints/kustoManagedPrivateEndpoint4?api-version=2021-08-27 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationResults/8d387123-9b6d-4212-9ddd-ebf0285957cd?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27 cache-control: - no-cache content-length: - '0' date: - - Sat, 08 May 2021 17:35:15 GMT + - Thu, 14 Oct 2021 10:53:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/8d387123-9b6d-4212-9ddd-ebf0285957cd?api-version=2021-01-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27&operationResultResponseType=Location pragma: - no-cache server: @@ -5369,8 +11922,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: code: 202 message: Accepted @@ -5382,29 +11935,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster detach-follower-database + - kusto managed-private-endpoint delete Connection: - keep-alive ParameterSetName: - - --cluster-name --attached-database-configuration-name --cluster-resource-id - --resource-group + - -y --cluster-name --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/8d387123-9b6d-4212-9ddd-ebf0285957cd?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/8d387123-9b6d-4212-9ddd-ebf0285957cd","name":"8d387123-9b6d-4212-9ddd-ebf0285957cd","status":"Succeeded","startTime":"2021-05-08T17:35:15.7820079Z","endTime":"2021-05-08T17:35:21.7954496Z","percentComplete":1.0,"properties":{"OperationKind":"FollowerDatabaseDetach","RootActivityId":"867db0aa-f1e8-435b-a1db-e5bb23b04921","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/810dbe26-86a2-44fb-a586-cd349af7a18a","name":"810dbe26-86a2-44fb-a586-cd349af7a18a","status":"Running","startTime":"2021-10-14T10:53:52.3474843Z","endTime":"2021-10-14T10:53:52.3474863Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '513' + - '453' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:35:46 GMT + - Thu, 14 Oct 2021 10:54:22 GMT expires: - '-1' pragma: @@ -5419,8 +11971,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - d3310793-c22f-4847-95d3-cd2db0ac031f x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + - '286' status: code: 200 message: OK @@ -5432,26 +11986,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster detach-follower-database + - kusto managed-private-endpoint delete Connection: - keep-alive ParameterSetName: - - --cluster-name --attached-database-configuration-name --cluster-resource-id - --resource-group + - -y --cluster-name --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/8d387123-9b6d-4212-9ddd-ebf0285957cd?api-version=2021-01-01&operationResultResponseType=Location + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/810dbe26-86a2-44fb-a586-cd349af7a18a","name":"810dbe26-86a2-44fb-a586-cd349af7a18a","status":"Running","startTime":"2021-10-14T10:53:52.3474843Z","endTime":"2021-10-14T10:53:52.3474863Z","percentComplete":0.5,"properties":{"operationKind":"ManagedPrivateEndpointDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '0' + - '453' + content-type: + - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:35:46 GMT + - Thu, 14 Oct 2021 10:54:53 GMT expires: - '-1' pragma: @@ -5460,10 +12016,16 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - d3310793-c22f-4847-95d3-cd2db0ac031f x-ms-ratelimit-remaining-subscription-resource-requests: - - '297' + - '285' status: code: 200 message: OK @@ -5471,89 +12033,89 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto data-connection event-hub data-connection-validation + - kusto managed-private-endpoint delete Connection: - keep-alive ParameterSetName: - - --cluster-name --database-name --data-connection-name --consumer-group --event-hub-resource-id - --resource-group + - -y --cluster-name --name --resource-group User-Agent: - - python/3.9.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.4 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.1 - accept-language: - - en-US + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/810dbe26-86a2-44fb-a586-cd349af7a18a?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-05-08T16:59:41Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/810dbe26-86a2-44fb-a586-cd349af7a18a","name":"810dbe26-86a2-44fb-a586-cd349af7a18a","status":"Succeeded","startTime":"2021-10-14T10:53:52.3474843Z","endTime":"2021-10-14T10:55:08.6762812Z","percentComplete":1.0,"properties":{"operationKind":"ManagedPrivateEndpointDelete","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '428' + - '456' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:35:47 GMT + - Thu, 14 Oct 2021 10:55:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - d3310793-c22f-4847-95d3-cd2db0ac031f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '294' status: code: 200 message: OK - request: - body: '{"dataConnectionName": "DataConnections8", "properties": {"location": "westus", - "kind": "EventHub", "properties": {"eventHubResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.EventHub/namespaces/ADX-EG-astauben/eventhubs/kustoclitesteh", - "consumerGroup": "$Default", "compression": "None"}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto data-connection event-hub data-connection-validation + - kusto private-endpoint-connection delete Connection: - keep-alive Content-Length: - - '356' - Content-Type: - - application/json + - '0' ParameterSetName: - - --cluster-name --database-name --data-connection-name --consumer-group --event-hub-resource-id - --resource-group + - -y --cluster-name --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8/dataConnectionValidation?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/privateEndpointConnections/kustoPrivateEndpoint4-93f82827-45af-4000-8ad8-f42087421574?api-version=2021-08-27 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationResults/f10b2e06-7863-4be9-8444-6411b5bb6205?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/a3d324d5-e7be-4a26-b8f7-de836b5b508c?api-version=2021-08-27 cache-control: - no-cache content-length: - '0' date: - - Sat, 08 May 2021 17:35:48 GMT + - Thu, 14 Oct 2021 10:55:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/f10b2e06-7863-4be9-8444-6411b5bb6205?api-version=2021-01-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a3d324d5-e7be-4a26-b8f7-de836b5b508c?api-version=2021-08-27&operationResultResponseType=Location pragma: - no-cache server: @@ -5562,8 +12124,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: code: 202 message: Accepted @@ -5575,29 +12137,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto data-connection event-hub data-connection-validation + - kusto private-endpoint-connection delete Connection: - keep-alive ParameterSetName: - - --cluster-name --database-name --data-connection-name --consumer-group --event-hub-resource-id - --resource-group + - -y --cluster-name --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/f10b2e06-7863-4be9-8444-6411b5bb6205?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/a3d324d5-e7be-4a26-b8f7-de836b5b508c?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/f10b2e06-7863-4be9-8444-6411b5bb6205","name":"f10b2e06-7863-4be9-8444-6411b5bb6205","status":"Succeeded","startTime":"2021-05-08T17:35:49.4209567Z","endTime":"2021-05-08T17:35:52.7522523Z","percentComplete":1.0,"properties":{"Value":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/a3d324d5-e7be-4a26-b8f7-de836b5b508c","name":"a3d324d5-e7be-4a26-b8f7-de836b5b508c","status":"Succeeded","startTime":"2021-10-14T10:55:25.6377171Z","endTime":"2021-10-14T10:55:52.5877064Z","percentComplete":1.0,"properties":{"operationKind":"PrivateEndpointConnectionDeleteCommand","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '366' + - '466' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:36:19 GMT + - Thu, 14 Oct 2021 10:55:55 GMT expires: - '-1' pragma: @@ -5612,6 +12173,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 92093eee-6764-4bc3-8e90-c2338d8a8541 x-ms-ratelimit-remaining-subscription-resource-requests: - '299' status: @@ -5621,106 +12184,104 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto data-connection event-hub data-connection-validation + - network private-endpoint delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --cluster-name --database-name --data-connection-name --consumer-group --event-hub-resource-id - --resource-group + - -n -g User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/f10b2e06-7863-4be9-8444-6411b5bb6205?api-version=2021-01-01&operationResultResponseType=Location + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/kustoPrivateEndpoint4?api-version=2021-03-01 response: body: - string: '{"Value":[]}' + string: '' headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/540851f0-79ed-404c-97af-2614c4753673?api-version=2021-03-01 cache-control: - no-cache content-length: - - '12' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Sat, 08 May 2021 17:36:19 GMT + - Thu, 14 Oct 2021 10:55:59 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/540851f0-79ed-404c-97af-2614c4753673?api-version=2021-03-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + x-ms-arm-service-request-id: + - 542daeda-3e8b-4444-838d-eeeae9b0fce7 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"location": "southcentralus", "kind": "EventHub", "properties": {"eventHubResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.EventHub/namespaces/ADX-EG-astauben/eventhubs/kustoclitesteh", - "consumerGroup": "$Default", "compression": "None"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto data-connection event-hub create + - network private-endpoint delete Connection: - keep-alive - Content-Length: - - '306' - Content-Type: - - application/json ParameterSetName: - - --cluster-name --data-connection-name --database-name --location --consumer-group - --event-hub-resource-id --resource-group + - -n -g User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8/dataConnections/DataConnections8?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/540851f0-79ed-404c-97af-2614c4753673?api-version=2021-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/KustoDatabase8/DataConnections/DataConnections8","name":"clitestcluster327/KustoDatabase8/DataConnections8","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","etag":"\"\"","location":"southcentralus","kind":"EventHub","properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.EventHub/namespaces/ADX-EG-astauben/eventhubs/kustoclitesteh","consumerGroup":"$Default","compression":"None","provisioningState":"Creating"}}' + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/c5e34981-7974-4920-9438-2edad44cd5e1?api-version=2021-01-01 cache-control: - no-cache content-length: - - '721' + - '30' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:36:26 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:56:09 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + x-ms-arm-service-request-id: + - 1bf3aad3-7246-4668-944e-ea0305e6f990 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -5729,34 +12290,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto data-connection event-hub create + - network private-endpoint delete Connection: - keep-alive ParameterSetName: - - --cluster-name --data-connection-name --database-name --location --consumer-group - --event-hub-resource-id --resource-group + - -n -g User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationResults/c5e34981-7974-4920-9438-2edad44cd5e1?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/540851f0-79ed-404c-97af-2614c4753673?api-version=2021-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/southcentralus/operationresults/c5e34981-7974-4920-9438-2edad44cd5e1","name":"c5e34981-7974-4920-9438-2edad44cd5e1","status":"Succeeded","startTime":"2021-05-08T17:36:25.9114309Z","endTime":"2021-05-08T17:36:55.278119Z","percentComplete":1.0,"properties":{}}' + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '353' + - '29' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:36:56 GMT + - Thu, 14 Oct 2021 10:56:20 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5765,8 +12326,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '296' + x-ms-arm-service-request-id: + - 44cc4727-3405-492c-b94e-1c6a31ec6015 status: code: 200 message: OK @@ -5774,86 +12335,81 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto data-connection event-hub create + - kusto script delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --cluster-name --data-connection-name --database-name --location --consumer-group - --event-hub-resource-id --resource-group + - -y --cluster-name --database-name --resource-group --name User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8/dataConnections/DataConnections8?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/KustoDatabase8/DataConnections/DataConnections8","name":"clitestcluster327/KustoDatabase8/DataConnections8","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","etag":"\"\"","location":"South - Central US","kind":"EventHub","tags":{},"properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.EventHub/namespaces/ADX-EG-astauben/eventhubs/kustoclitesteh","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/0ff4d97a-c449-40c6-921f-f8271f7dace2?api-version=2021-08-27 cache-control: - no-cache content-length: - - '846' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Sat, 08 May 2021 17:36:56 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:56:22 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/0ff4d97a-c449-40c6-921f-f8271f7dace2?api-version=2021-08-27&operationResultResponseType=Location pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto data-connection show + - kusto script delete Connection: - keep-alive ParameterSetName: - - --cluster-name --data-connection-name --database-name --resource-group + - -y --cluster-name --database-name --resource-group --name User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8/dataConnections/DataConnections8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/0ff4d97a-c449-40c6-921f-f8271f7dace2?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/KustoDatabase8/DataConnections/DataConnections8","name":"clitestcluster327/KustoDatabase8/DataConnections8","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","etag":"\"\"","location":"South - Central US","kind":"EventHub","tags":{},"properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.EventHub/namespaces/ADX-EG-astauben/eventhubs/kustoclitesteh","consumerGroup":"$Default","tableName":"","mappingRuleName":"","dataFormat":"","eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/0ff4d97a-c449-40c6-921f-f8271f7dace2","name":"0ff4d97a-c449-40c6-921f-f8271f7dace2","status":"Succeeded","startTime":"2021-10-14T10:56:23.0364487Z","endTime":"2021-10-14T10:56:23.0988908Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseScriptDelete","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '846' + - '448' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:36:59 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:56:53 GMT expires: - '-1' pragma: @@ -5868,57 +12424,46 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 069822ad-7402-4c48-9f66-cd7506d5b336 x-ms-ratelimit-remaining-subscription-resource-requests: - '299' status: code: 200 message: OK - request: - body: '{"location": "southcentralus", "kind": "EventHub", "properties": {"eventHubResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.EventHub/namespaces/ADX-EG-astauben/eventhubs/kustoclitesteh", - "consumerGroup": "$Default", "compression": "None"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto data-connection event-hub update + - kusto script wait Connection: - keep-alive - Content-Length: - - '306' - Content-Type: - - application/json ParameterSetName: - - --cluster-name --data-connection-name --database-name --location --consumer-group - --event-hub-resource-id --resource-group + - --deleted --cluster-name --database-name --resource-group --name User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8/dataConnections/DataConnections8?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/scripts/kustoScript2?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/KustoDatabase8/DataConnections/DataConnections8","name":"clitestcluster327/KustoDatabase8/DataConnections8","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","etag":"\"\"","location":"South - Central US","kind":"EventHub","tags":{},"properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.EventHub/namespaces/ADX-EG-astauben/eventhubs/kustoclitesteh","consumerGroup":"$Default","compression":"None","provisioningState":"Accepted"}}' + string: '{"error":{"code":"ResourceNotFound","message":"The resource with identifier + ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/kustoclusterclitest7/Databases/KustoDatabase/Scripts/kustoScript2'' + is not found."}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationResults/d8012e19-fd32-435f-ac33-5d85479be335?api-version=2021-01-01 cache-control: - no-cache content-length: - - '733' + - '338' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:37:03 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:56:54 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/d8012e19-fd32-435f-ac33-5d85479be335?api-version=2021-01-01&operationResultResponseType=Location pragma: - no-cache server: @@ -5928,60 +12473,59 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '299' status: - code: 202 - message: Accepted + code: 404 + message: Not Found - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto data-connection event-hub update + - kusto database-principal-assignment delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --cluster-name --data-connection-name --database-name --location --consumer-group - --event-hub-resource-id --resource-group + - -y --cluster-name --database-name --principal-assignment-name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/d8012e19-fd32-435f-ac33-5d85479be335?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/principalAssignments/testcli1?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/d8012e19-fd32-435f-ac33-5d85479be335","name":"d8012e19-fd32-435f-ac33-5d85479be335","status":"Succeeded","startTime":"2021-05-08T17:37:03.4608099Z","endTime":"2021-05-08T17:37:04.8428788Z","percentComplete":1.0,"properties":{}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/5b64d2ea-b964-41f0-a11b-44c5c23cb9db?api-version=2021-08-27 cache-control: - no-cache content-length: - - '356' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Sat, 08 May 2021 17:37:33 GMT + - Thu, 14 Oct 2021 10:56:59 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/5b64d2ea-b964-41f0-a11b-44c5c23cb9db?api-version=2021-08-27&operationResultResponseType=Location pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5990,31 +12534,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto data-connection event-hub update + - kusto database-principal-assignment delete Connection: - keep-alive ParameterSetName: - - --cluster-name --data-connection-name --database-name --location --consumer-group - --event-hub-resource-id --resource-group + - -y --cluster-name --database-name --principal-assignment-name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8/dataConnections/DataConnections8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/5b64d2ea-b964-41f0-a11b-44c5c23cb9db?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/Clusters/clitestcluster327/Databases/KustoDatabase8/DataConnections/DataConnections8","name":"clitestcluster327/KustoDatabase8/DataConnections8","type":"Microsoft.Kusto/Clusters/Databases/DataConnections","etag":"\"\"","location":"South - Central US","kind":"EventHub","tags":{},"properties":{"eventHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/astauben-tests/providers/Microsoft.EventHub/namespaces/ADX-EG-astauben/eventhubs/kustoclitesteh","consumerGroup":"$Default","tableName":null,"mappingRuleName":null,"dataFormat":null,"eventSystemProperties":[],"compression":"None","managedIdentityResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/5b64d2ea-b964-41f0-a11b-44c5c23cb9db","name":"5b64d2ea-b964-41f0-a11b-44c5c23cb9db","status":"Succeeded","startTime":"2021-10-14T10:57:00.0114727Z","endTime":"2021-10-14T10:57:01.0897368Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseDropPrincipals","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '852' + - '450' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:37:33 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:57:29 GMT expires: - '-1' pragma: @@ -6029,6 +12570,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 2d8706c8-2b95-4711-94df-e3d0388aa12c x-ms-ratelimit-remaining-subscription-resource-requests: - '299' status: @@ -6042,34 +12585,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto data-connection delete + - kusto cluster-principal-assignment delete Connection: - keep-alive Content-Length: - '0' ParameterSetName: - - -y --cluster-name --data-connection-name --database-name --resource-group + - -y --cluster-name --principal-assignment-name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8/dataConnections/DataConnections8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/principalAssignments/testcli1?api-version=2021-08-27 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationResults/5d596335-f45c-4437-837a-406cde73070e?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/aebb1823-9e6c-4647-998c-fdc031e93d08?api-version=2021-08-27 cache-control: - no-cache content-length: - '0' date: - - Sat, 08 May 2021 17:37:38 GMT + - Thu, 14 Oct 2021 10:57:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/5d596335-f45c-4437-837a-406cde73070e?api-version=2021-01-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/aebb1823-9e6c-4647-998c-fdc031e93d08?api-version=2021-08-27&operationResultResponseType=Location pragma: - no-cache server: @@ -6091,28 +12634,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto data-connection delete + - kusto cluster-principal-assignment delete Connection: - keep-alive ParameterSetName: - - -y --cluster-name --data-connection-name --database-name --resource-group + - -y --cluster-name --principal-assignment-name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/5d596335-f45c-4437-837a-406cde73070e?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/aebb1823-9e6c-4647-998c-fdc031e93d08?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/5d596335-f45c-4437-837a-406cde73070e","name":"5d596335-f45c-4437-837a-406cde73070e","status":"Succeeded","startTime":"2021-05-08T17:37:38.0757207Z","endTime":"2021-05-08T17:37:39.0892228Z","percentComplete":1.0,"properties":{"OperationKind":"DmServiceDataObtainerDrop","RootActivityId":"8da6d8c5-1f2c-4713-9672-c70faba31571","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/aebb1823-9e6c-4647-998c-fdc031e93d08","name":"aebb1823-9e6c-4647-998c-fdc031e93d08","status":"Succeeded","startTime":"2021-10-14T10:57:32.6171571Z","endTime":"2021-10-14T10:57:34.8829796Z","percentComplete":1.0,"properties":{"operationKind":"ServicePrincipalAssignmentsDrop","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '516' + - '459' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:38:08 GMT + - Thu, 14 Oct 2021 10:58:03 GMT expires: - '-1' pragma: @@ -6127,52 +12670,47 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 700b43e5-6ee7-4048-bc10-a32ca22f7edd x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + - '299' status: code: 200 message: OK - request: - body: '{"properties": {"scriptUrl": "https://testclients.blob.core.windows.net/testclientscontainer/script.txt", - "scriptUrlSasToken": "", - "continueOnErrors": true}}' + body: '{"value": [{"role": "Admin", "name": "clitest", "type": "App", "appId": + "7bd74dc8-dd5f-4cee-8e64-866138abcf89"}]}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto script create + - kusto database remove-principal Connection: - keep-alive Content-Length: - - '426' + - '113' Content-Type: - application/json ParameterSetName: - - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token - --resource-group --name + - --cluster-name --database-name --value --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/clusters/blablab123/databases/test00/scripts/testscript?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/removePrincipals?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/Clusters/blablab123/Databases/test00/Scripts/testscript","name":"blablab123/test00/testscript","type":"Microsoft.Kusto/Clusters/Databases/Scripts","etag":"\"\"","properties":{"scriptUrl":"https://testclients.blob.core.windows.net/testclientscontainer/script.txt","scriptUrlSasToken":"","continueOnErrors":true,"provisioningState":"Accepted"},"systemData":{"createdBy":"astauben@microsoft.com","createdAt":"2021-05-08T17:38:10.2623484Z","modifiedBy":"astauben@microsoft.com","modifiedAt":"2021-05-08T17:38:10.2623484Z"}}' + string: '{"value":[{"name":"Zohar Hen (zoharhen@microsoft.com)","role":"Admin","type":"User","fqn":"aaduser=0f54ad84-ce5e-49d1-90b3-c553e7c96382;72f988bf-86f1-41af-91ab-2d7cd011db47","email":"zoharhen@microsoft.com","appId":"","tenantName":"Microsoft"}]}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/East - US/operationResults/0ea6e315-4212-4a01-a678-5e33391db6b0?api-version=2021-01-01 cache-control: - no-cache content-length: - - '635' + - '245' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:38:11 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:58:04 GMT expires: - '-1' pragma: @@ -6187,61 +12725,63 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK - request: - body: null + body: '{"clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7", + "attachedDatabaseConfigurationName": "myAttachedDatabaseConfiguration"}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - kusto script create + - kusto cluster detach-follower-database Connection: - keep-alive + Content-Length: + - '294' + Content-Type: + - application/json ParameterSetName: - - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token - --resource-group --name + - --name --attached-database-configuration-name --cluster-resource-id --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ea6e315-4212-4a01-a678-5e33391db6b0?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/detachFollowerDatabases?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/East - US/operationresults/0ea6e315-4212-4a01-a678-5e33391db6b0","name":"0ea6e315-4212-4a01-a678-5e33391db6b0","status":"Succeeded","startTime":"2021-05-08T17:38:11.581904Z","endTime":"2021-05-08T17:38:13.0038775Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseScriptCreateOrUpdate","RootActivityId":"0884edbb-314a-45d8-ade9-3ca22e56012a","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c?api-version=2021-08-27 cache-control: - no-cache content-length: - - '509' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Sat, 08 May 2021 17:38:43 GMT + - Thu, 14 Oct 2021 10:58:06 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c?api-version=2021-08-27&operationResultResponseType=Location pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '296' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6250,30 +12790,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto script create + - kusto cluster detach-follower-database Connection: - keep-alive ParameterSetName: - - --cluster-name --database-name --continue-on-errors --script-url --script-url-sas-token - --resource-group --name + - --name --attached-database-configuration-name --cluster-resource-id --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/clusters/blablab123/databases/test00/scripts/testscript?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/Clusters/blablab123/Databases/test00/Scripts/testscript","name":"blablab123/test00/testscript","type":"Microsoft.Kusto/Clusters/Databases/Scripts","etag":"\"\"","tags":{},"properties":{"scriptUrl":"https://testclients.blob.core.windows.net/testclientscontainer/script.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"astauben@microsoft.com","createdAt":"2021-05-08T17:38:10.2623484Z","modifiedBy":"astauben@microsoft.com","modifiedAt":"2021-05-08T17:38:10.2623484Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c","name":"57dd4f08-a16c-46dd-ac6d-47281d77fd8c","status":"Succeeded","startTime":"2021-10-14T10:58:06.8553172Z","endTime":"2021-10-14T10:58:08.8953836Z","percentComplete":1.0,"properties":{"operationKind":"FollowerDatabaseDetach","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '623' + - '450' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:38:43 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:58:36 GMT expires: - '-1' pragma: @@ -6288,6 +12826,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 99934dcd-4a21-49cb-83a4-2aa46d920131 x-ms-ratelimit-remaining-subscription-resource-requests: - '299' status: @@ -6297,33 +12837,29 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - kusto script show + - kusto cluster detach-follower-database Connection: - keep-alive ParameterSetName: - - --cluster-name --database-name --resource-group --name + - --name --attached-database-configuration-name --cluster-resource-id --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/clusters/blablab123/databases/test00/scripts/testscript?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/57dd4f08-a16c-46dd-ac6d-47281d77fd8c?api-version=2021-08-27&operationResultResponseType=Location response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/Clusters/blablab123/Databases/test00/Scripts/testscript","name":"blablab123/test00/testscript","type":"Microsoft.Kusto/Clusters/Databases/Scripts","etag":"\"\"","tags":{},"properties":{"scriptUrl":"https://testclients.blob.core.windows.net/testclientscontainer/script.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"astauben@microsoft.com","createdAt":"2021-05-08T17:38:10.2623484Z","modifiedBy":"astauben@microsoft.com","modifiedAt":"2021-05-08T17:38:10.2623484Z"}}' + string: '' headers: cache-control: - no-cache content-length: - - '623' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Sat, 08 May 2021 17:38:45 GMT - etag: - - '""' + - Thu, 14 Oct 2021 10:58:36 GMT expires: - '-1' pragma: @@ -6332,14 +12868,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + - '298' status: code: 200 message: OK @@ -6351,27 +12883,25 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto script list + - kusto attached-database-configuration delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --cluster-name --database-name --resource-group + - -y --name --cluster-name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/clusters/blablab123/databases/test00/scripts?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/attachedDatabaseConfigurations/myAttachedDatabaseConfiguration?api-version=2021-08-27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgroupyefkpv/providers/Microsoft.Kusto/Clusters/blablab123/Databases/test00/Scripts/testscript","name":"blablab123/test00/testscript","type":"Microsoft.Kusto/Clusters/Databases/Scripts","etag":"\"\"","properties":{"scriptUrl":"https://testclients.blob.core.windows.net/testclientscontainer/script.txt","continueOnErrors":true,"provisioningState":"Succeeded"},"systemData":{"createdBy":"astauben@microsoft.com","createdAt":"2021-05-08T17:38:10.2623484Z","modifiedBy":"astauben@microsoft.com","modifiedAt":"2021-05-08T17:38:10.2623484Z"}}]}' + string: '' headers: cache-control: - no-cache - content-length: - - '625' - content-type: - - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:38:47 GMT + - Thu, 14 Oct 2021 10:58:39 GMT expires: - '-1' pragma: @@ -6380,17 +12910,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '299' + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -6399,34 +12925,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto database delete + - kusto data-connection delete Connection: - keep-alive Content-Length: - '0' ParameterSetName: - - -y --cluster-name --database-name --resource-group + - -y --cluster-name --name --database-name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327/databases/KustoDatabase8?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase/dataConnections/DataConnection3?api-version=2021-08-27 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationResults/310afde9-3ef6-47b5-b473-fca7d2a34a42?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/90c7d231-d85c-443c-ac36-cc7b88fad149?api-version=2021-08-27 cache-control: - no-cache content-length: - '0' date: - - Sat, 08 May 2021 17:38:50 GMT + - Thu, 14 Oct 2021 10:58:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/310afde9-3ef6-47b5-b473-fca7d2a34a42?api-version=2021-01-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/90c7d231-d85c-443c-ac36-cc7b88fad149?api-version=2021-08-27&operationResultResponseType=Location pragma: - no-cache server: @@ -6448,28 +12974,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto database delete + - kusto data-connection delete Connection: - keep-alive ParameterSetName: - - -y --cluster-name --database-name --resource-group + - -y --cluster-name --name --database-name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/310afde9-3ef6-47b5-b473-fca7d2a34a42?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/90c7d231-d85c-443c-ac36-cc7b88fad149?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/310afde9-3ef6-47b5-b473-fca7d2a34a42","name":"310afde9-3ef6-47b5-b473-fca7d2a34a42","status":"Succeeded","startTime":"2021-05-08T17:38:51.1873915Z","endTime":"2021-05-08T17:38:53.7400239Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseDelete","RootActivityId":"7b492565-6ffe-4143-b3d1-6d35d19f148c","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/90c7d231-d85c-443c-ac36-cc7b88fad149","name":"90c7d231-d85c-443c-ac36-cc7b88fad149","status":"Succeeded","startTime":"2021-10-14T10:58:41.9286324Z","endTime":"2021-10-14T10:58:43.9297567Z","percentComplete":1.0,"properties":{"operationKind":"DmServiceDataObtainerDrop","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '505' + - '453' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:39:21 GMT + - Thu, 14 Oct 2021 10:59:11 GMT expires: - '-1' pragma: @@ -6484,6 +13010,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 0fd243be-73b6-4b1c-bf73-9d6c82d09661 x-ms-ratelimit-remaining-subscription-resource-requests: - '299' status: @@ -6497,34 +13025,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster delete + - kusto database delete Connection: - keep-alive Content-Length: - '0' ParameterSetName: - - -y --cluster-name --resource-group + - -y --cluster-name --database-name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/clitestcluster327?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/kustoclusterclitest7/databases/KustoDatabase?api-version=2021-08-27 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/58999bc2-b886-4a84-b9d2-f0f450805058?api-version=2021-08-27 cache-control: - no-cache content-length: - '0' date: - - Sat, 08 May 2021 17:39:25 GMT + - Thu, 14 Oct 2021 10:59:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/58999bc2-b886-4a84-b9d2-f0f450805058?api-version=2021-08-27&operationResultResponseType=Location pragma: - no-cache server: @@ -6534,7 +13062,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -6546,28 +13074,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - kusto cluster delete + - kusto database delete Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group + - -y --cluster-name --database-name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/58999bc2-b886-4a84-b9d2-f0f450805058?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/58999bc2-b886-4a84-b9d2-f0f450805058","name":"58999bc2-b886-4a84-b9d2-f0f450805058","status":"Succeeded","startTime":"2021-10-14T10:59:14.9186473Z","endTime":"2021-10-14T10:59:19.9658263Z","percentComplete":1.0,"properties":{"operationKind":"DatabaseDelete","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '501' + - '442' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:39:56 GMT + - Thu, 14 Oct 2021 10:59:44 GMT expires: - '-1' pragma: @@ -6582,8 +13110,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 464be840-266b-4ba1-8bb9-058e470b8ab1 x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + - '299' status: code: 200 message: OK @@ -6591,51 +13121,51 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - kusto cluster delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Kusto/clusters/KustoClusterLeader7?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 cache-control: - no-cache content-length: - - '501' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Sat, 08 May 2021 17:40:26 GMT + - Thu, 14 Oct 2021 10:59:47 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27&operationResultResponseType=Location pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6648,24 +13178,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '501' + - '438' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:40:57 GMT + - Thu, 14 Oct 2021 11:00:18 GMT expires: - '-1' pragma: @@ -6680,8 +13210,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee x-ms-ratelimit-remaining-subscription-resource-requests: - - '297' + - '298' status: code: 200 message: OK @@ -6697,24 +13229,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '501' + - '438' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:41:28 GMT + - Thu, 14 Oct 2021 11:00:48 GMT expires: - '-1' pragma: @@ -6729,8 +13261,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee x-ms-ratelimit-remaining-subscription-resource-requests: - - '296' + - '297' status: code: 200 message: OK @@ -6746,24 +13280,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '501' + - '438' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:41:58 GMT + - Thu, 14 Oct 2021 11:01:18 GMT expires: - '-1' pragma: @@ -6778,8 +13312,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee x-ms-ratelimit-remaining-subscription-resource-requests: - - '295' + - '296' status: code: 200 message: OK @@ -6795,24 +13331,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '501' + - '438' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:42:29 GMT + - Thu, 14 Oct 2021 11:01:49 GMT expires: - '-1' pragma: @@ -6827,8 +13363,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee x-ms-ratelimit-remaining-subscription-resource-requests: - - '294' + - '295' status: code: 200 message: OK @@ -6844,24 +13382,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '501' + - '438' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:42:59 GMT + - Thu, 14 Oct 2021 11:02:19 GMT expires: - '-1' pragma: @@ -6876,8 +13414,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee x-ms-ratelimit-remaining-subscription-resource-requests: - - '293' + - '294' status: code: 200 message: OK @@ -6893,24 +13433,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '501' + - '438' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:43:29 GMT + - Thu, 14 Oct 2021 11:02:49 GMT expires: - '-1' pragma: @@ -6925,8 +13465,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee x-ms-ratelimit-remaining-subscription-resource-requests: - - '292' + - '293' status: code: 200 message: OK @@ -6942,24 +13484,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '501' + - '438' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:44:00 GMT + - Thu, 14 Oct 2021 11:03:20 GMT expires: - '-1' pragma: @@ -6974,8 +13516,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee x-ms-ratelimit-remaining-subscription-resource-requests: - - '291' + - '292' status: code: 200 message: OK @@ -6991,24 +13535,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '501' + - '438' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:44:31 GMT + - Thu, 14 Oct 2021 11:03:50 GMT expires: - '-1' pragma: @@ -7023,8 +13567,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee x-ms-ratelimit-remaining-subscription-resource-requests: - - '290' + - '291' status: code: 200 message: OK @@ -7040,24 +13586,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '501' + - '438' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:45:01 GMT + - Thu, 14 Oct 2021 11:04:21 GMT expires: - '-1' pragma: @@ -7072,6 +13618,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee x-ms-ratelimit-remaining-subscription-resource-requests: - '290' status: @@ -7089,24 +13637,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '501' + - '438' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:45:33 GMT + - Thu, 14 Oct 2021 11:04:50 GMT expires: - '-1' pragma: @@ -7121,6 +13669,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee x-ms-ratelimit-remaining-subscription-resource-requests: - '289' status: @@ -7138,73 +13688,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group - User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' - headers: - cache-control: - - no-cache - content-length: - - '501' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 08 May 2021 17:46:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - kusto cluster delete - Connection: - - keep-alive - ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '501' + - '438' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:46:34 GMT + - Thu, 14 Oct 2021 11:05:21 GMT expires: - '-1' pragma: @@ -7219,8 +13720,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' + - '289' status: code: 200 message: OK @@ -7236,24 +13739,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Running","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:39:26.8311325Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Running","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T10:59:48.3270085Z","percentComplete":0.5,"properties":{"operationKind":"ClusterDelete","provisioningState":"Running","operationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '501' + - '438' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:47:03 GMT + - Thu, 14 Oct 2021 11:05:52 GMT expires: - '-1' pragma: @@ -7268,8 +13771,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' + - '288' status: code: 200 message: OK @@ -7285,24 +13790,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -y --cluster-name --resource-group + - -y --name --resource-group User-Agent: - - AZURECLI/2.22.1 azsdk-python-kustomanagementclient/unknown Python/3.9.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-kustomanagementclient/unknown Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South%20Central%20US/operationResults/bfb9e051-4384-404f-9ff0-992602384adc?api-version=2021-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US%202/operationResults/6761d875-e130-4869-8493-d6300b53ca07?api-version=2021-08-27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/South - Central US/operationresults/bfb9e051-4384-404f-9ff0-992602384adc","name":"bfb9e051-4384-404f-9ff0-992602384adc","status":"Succeeded","startTime":"2021-05-08T17:39:26.5311138Z","endTime":"2021-05-08T17:47:17.0116313Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterDelete","RootActivityId":"fe0bf919-7830-481d-8fd9-3a131f8c66e7","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West + US 2/operationresults/6761d875-e130-4869-8493-d6300b53ca07","name":"6761d875-e130-4869-8493-d6300b53ca07","status":"Succeeded","startTime":"2021-10-14T10:59:48.2020025Z","endTime":"2021-10-14T11:06:07.7319584Z","percentComplete":1.0,"properties":{"operationKind":"ClusterDelete","provisioningState":"Succeeded","operationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '504' + - '441' content-type: - application/json; charset=utf-8 date: - - Sat, 08 May 2021 17:47:34 GMT + - Thu, 14 Oct 2021 11:06:22 GMT expires: - '-1' pragma: @@ -7317,8 +13822,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-operation-root-activity-id: + - 3753c8d3-03ff-4d81-8ec1-213602e192ee x-ms-ratelimit-remaining-subscription-resource-requests: - - '285' + - '287' status: code: 200 message: OK diff --git a/src/kusto/azext_kusto/tests/latest/test_kusto_scenario.py b/src/kusto/azext_kusto/tests/latest/test_kusto_scenario.py index 6d3f1e6b281..ec8b7317dcc 100644 --- a/src/kusto/azext_kusto/tests/latest/test_kusto_scenario.py +++ b/src/kusto/azext_kusto/tests/latest/test_kusto_scenario.py @@ -11,188 +11,250 @@ import os from azure.cli.testsdk import ScenarioTest from azure.cli.testsdk import ResourceGroupPreparer -from .example_steps import step_cluster_create -from .example_steps import step_data_connection_event_hub_create +from azure.cli.testsdk import StorageAccountPreparer +from azure_devtools.scenario_tests import AllowLargeResponse +from .. import ( + try_manual, + raise_if, + calc_coverage +) + from .example_steps import step_attached_database_configuration_create -from .example_steps import step_attached_database_configuration_show -from .example_steps import step_data_connection_show -from .example_steps import step_database_list +from .example_steps import step_attached_database_configuration_delete from .example_steps import step_attached_database_configuration_list -from .example_steps import step_database_show -from .example_steps import step_cluster_list_sku -from .example_steps import step_cluster_show -from .example_steps import step_cluster_list2 -from .example_steps import step_cluster_list -from .example_steps import step_cluster_list_sku2 -from .example_steps import step_data_connection_event_hub_update -from .example_steps import step_data_connection_event -from .example_steps import step_database_remove_principal -from .example_steps import step_database_list_principal -from .example_steps import step_database_add_principal -from .example_steps import step_database_update +from .example_steps import step_attached_database_configuration_show +from .example_steps import step_cluster_add_language_extension +from .example_steps import step_cluster_create +from .example_steps import step_cluster_delete from .example_steps import step_cluster_detach_follower_database +from .example_steps import step_cluster_diagnose_virtual_network +from .example_steps import step_cluster_list +from .example_steps import step_cluster_list_by_resource_group from .example_steps import step_cluster_list_follower_database +from .example_steps import step_cluster_list_language_extension +from .example_steps import step_cluster_list_outbound +from .example_steps import step_cluster_list_sku +from .example_steps import step_cluster_list_sku_by_resource_group +from .example_steps import step_cluster_principal_assignment_create +from .example_steps import step_cluster_principal_assignment_delete +from .example_steps import step_cluster_principal_assignment_list +from .example_steps import step_cluster_principal_assignment_show +from .example_steps import step_cluster_remove_language_extension +from .example_steps import step_cluster_show from .example_steps import step_cluster_start from .example_steps import step_cluster_stop from .example_steps import step_cluster_update -from .example_steps import step_attached_database_configuration_delete from .example_steps import step_data_connection_delete +from .example_steps import step_data_connection_event_hub_create +from .example_steps import step_data_connection_event_hub_update +from .example_steps import step_data_connection_list +from .example_steps import step_data_connection_show +from .example_steps import step_data_connection_validation +from .example_steps import step_database_add_principal +from .example_steps import step_database_create from .example_steps import step_database_delete -from .example_steps import step_cluster_delete -from .example_steps import step_database_principal_assignment_show +from .example_steps import step_database_list +from .example_steps import step_database_list_principal from .example_steps import step_database_principal_assignment_create from .example_steps import step_database_principal_assignment_delete -from .example_steps import step_cluster_principal_assignment_show -from .example_steps import step_cluster_principal_assignment_create -from .example_steps import step_cluster_principal_assignment_delete -from .. import ( - try_manual, - raise_if, - calc_coverage -) -from azure_devtools.scenario_tests import AllowLargeResponse - +from .example_steps import step_database_principal_assignment_list +from .example_steps import step_database_principal_assignment_show +from .example_steps import step_database_remove_principal +from .example_steps import step_database_show +from .example_steps import step_database_update +from .example_steps import step_leader_cluster_create +from .example_steps import step_managed_private_endpoint_create +from .example_steps import step_managed_private_endpoint_delete +from .example_steps import step_managed_private_endpoint_list +from .example_steps import step_managed_private_endpoint_show +from .example_steps import step_managed_private_endpoint_update +from .example_steps import step_operation_result_show +from .example_steps import step_private_endpoint_connection_create +from .example_steps import step_private_endpoint_connection_delete +from .example_steps import step_private_endpoint_connection_list +from .example_steps import step_private_endpoint_connection_show +from .example_steps import step_private_link_resource_list +from .example_steps import step_private_link_resource_show +from .example_steps import step_script_create +from .example_steps import step_script_delete +from .example_steps import step_script_list +from .example_steps import step_script_show +from .example_steps import step_script_update TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) # Env setup_scenario @try_manual -def setup_scenario(test, rg): +def setup_scenario(test): pass # Env cleanup_scenario @try_manual -def cleanup_scenario(test, rg): +def cleanup_scenario(test): pass # Testcase: Scenario @try_manual -def call_scenario(test, rg): - setup_scenario(test, rg) - step_cluster_create(test, rg, checks=[ +def call_scenario(test): + setup_scenario(test) + # Create + step_cluster_create(test, checks=[ test.check("name", "{myCluster}", case_sensitive=False), test.check("identity.type", "SystemAssigned", case_sensitive=False), - test.check("location", "westus", case_sensitive=False), + test.check("location", "westus2", case_sensitive=False), + test.check("enableAutoStop", True), test.check("enableDoubleEncryption", False), test.check("enablePurge", True), test.check("enableStreamingIngest", True), - test.check("sku.name", "Standard_L8s", case_sensitive=False), + test.check("publicNetworkAccess", "Enabled", case_sensitive=False), + test.check("sku.name", "Standard_D11_v2", case_sensitive=False), test.check("sku.capacity", 2), test.check("sku.tier", "Standard", case_sensitive=False), ]) - # STEP NOT FOUND: KustoDatabasesCreateOrUpdate - step_data_connection_event_hub_create(test, rg, checks=[]) - step_attached_database_configuration_create(test, rg, checks=[ - test.check("location", "westus", case_sensitive=False), - test.check("clusterResourceId", "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.Kusto" - "/Clusters/{myCluster3}", case_sensitive=False), - test.check("defaultPrincipalsModificationKind", "Union", case_sensitive=False), - test.check("tableLevelSharingProperties.externalTablesToExclude[0]", "ExternalTable2", case_sensitive=False), - test.check("tableLevelSharingProperties.externalTablesToInclude[0]", "ExternalTable1", case_sensitive=False), - test.check("tableLevelSharingProperties.materializedViewsToExclude[0]", "MaterializedViewTable2", - case_sensitive=False), - test.check("tableLevelSharingProperties.materializedViewsToInclude[0]", "MaterializedViewTable1", - case_sensitive=False), - test.check("tableLevelSharingProperties.tablesToExclude[0]", "Table2", case_sensitive=False), - test.check("tableLevelSharingProperties.tablesToInclude[0]", "Table1", case_sensitive=False), + step_cluster_principal_assignment_create(test, checks=[]) + step_leader_cluster_create(test, checks=[]) + step_database_create(test, checks=[]) + step_database_principal_assignment_create(test, checks=[]) + step_database_add_principal(test, checks=[]) + step_attached_database_configuration_create(test, checks=[]) + step_data_connection_event_hub_create(test, checks=[]) + step_script_create(test, checks=[]) + step_managed_private_endpoint_create(test, checks=[]) + step_cluster_add_language_extension(test, checks=[]) + step_private_endpoint_connection_create(test, checks=[]) + # Show / List + step_cluster_show(test, checks=[ + test.check("name", "{myCluster}", case_sensitive=False), + test.check("identity.type", "SystemAssigned", case_sensitive=False), + test.check("location", "West US 2", case_sensitive=False), + test.check("enableAutoStop", True), + test.check("enableStreamingIngest", True), + test.check("publicNetworkAccess", "Enabled", case_sensitive=False), + test.check("sku.name", "Standard_D11_v2", case_sensitive=False), + test.check("sku.capacity", 2), + test.check("sku.tier", "Standard", case_sensitive=False), ]) - step_attached_database_configuration_show(test, rg, checks=[ - test.check("location", "westus", case_sensitive=False), + step_cluster_principal_assignment_show(test, checks=[]) + step_database_show(test, checks=[]) + step_script_show(test, checks=[]) + step_database_principal_assignment_show(test, checks=[]) + step_attached_database_configuration_show(test, checks=[ + test.check("location", "West US 2", case_sensitive=False), test.check("defaultPrincipalsModificationKind", "Union", case_sensitive=False), test.check("tableLevelSharingProperties.externalTablesToExclude[0]", "ExternalTable2", case_sensitive=False), test.check("tableLevelSharingProperties.externalTablesToInclude[0]", "ExternalTable1", case_sensitive=False), - test.check("tableLevelSharingProperties.materializedViewsToExclude[0]", "MaterializedViewTable2", - case_sensitive=False), - test.check("tableLevelSharingProperties.materializedViewsToInclude[0]", "MaterializedViewTable1", - case_sensitive=False), + test.check("tableLevelSharingProperties.materializedViewsToExclude[0]", "MaterializedViewTable2", case_sensitive=False), + test.check("tableLevelSharingProperties.materializedViewsToInclude[0]", "MaterializedViewTable1", case_sensitive=False), test.check("tableLevelSharingProperties.tablesToExclude[0]", "Table2", case_sensitive=False), test.check("tableLevelSharingProperties.tablesToInclude[0]", "Table1", case_sensitive=False), ]) - step_data_connection_show(test, rg, checks=[ - test.check("location", "westus", case_sensitive=False), - test.check("consumerGroup", "testConsumerGroup1", case_sensitive=False), - test.check("eventHubResourceId", "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.Even" - "tHub/namespaces/eventhubTestns1/eventhubs/eventhubTest1", case_sensitive=False), - test.check("managedIdentityResourceId", "/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microso" - "ft.ManagedIdentity/userAssignedIdentities/managedidentityTest1", case_sensitive=False), + step_data_connection_show(test, checks=[ + test.check("location", "West US 2", case_sensitive=False), + test.check("eventHubResourceId", "/subscriptions/{subscription_id}/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/testcli/eventhubs/eventhubTest1", case_sensitive=False) + ]) + step_managed_private_endpoint_show(test, checks=[]) + step_private_endpoint_connection_show(test, checks=[]) + #step_private_link_resource_show(test, checks=[]) + step_cluster_list(test, checks=[]) + step_cluster_list_by_resource_group(test, checks=[ + test.check('length(@)', 2), ]) - step_database_list(test, rg, checks=[]) - step_attached_database_configuration_list(test, rg, checks=[ + step_cluster_principal_assignment_list(test, checks=[]) + step_script_list(test, checks=[ test.check('length(@)', 1), ]) - step_database_show(test, rg, checks=[]) - step_database_list(test, rg, checks=[]) - step_cluster_list_sku(test, rg, checks=[]) - step_cluster_show(test, rg, checks=[ - test.check("name", "{myCluster}", case_sensitive=False), - test.check("identity.type", "SystemAssigned", case_sensitive=False), - test.check("location", "westus", case_sensitive=False), - test.check("enableStreamingIngest", True), - test.check("sku.name", "Standard_L8s", case_sensitive=False), - test.check("sku.capacity", 2), - test.check("sku.tier", "Standard", case_sensitive=False), + step_cluster_list_sku(test, checks=[]) + step_cluster_list_sku_by_resource_group(test, checks=[]) + step_cluster_list_language_extension(test, checks=[ + test.check('length(@)', 2), ]) - step_cluster_list2(test, rg, checks=[ + step_database_list(test, checks=[ test.check('length(@)', 1), ]) - step_cluster_list(test, rg, checks=[ + step_cluster_list_follower_database(test, checks=[ test.check('length(@)', 1), ]) - step_cluster_list_sku2(test, rg, checks=[]) - # STEP NOT FOUND: KustoOperationsList - step_data_connection_event_hub_update(test, rg, checks=[]) - step_data_connection_event(test, rg, checks=[]) - # STEP NOT FOUND: KustoDataConnectionsCheckNameAvailability - step_database_remove_principal(test, rg, checks=[]) - step_database_list_principal(test, rg, checks=[]) - step_database_add_principal(test, rg, checks=[]) - step_database_update(test, rg, checks=[]) - step_cluster_detach_follower_database(test, rg, checks=[]) - # STEP NOT FOUND: KustoDatabaseCheckNameAvailability - step_cluster_list_follower_database(test, rg, checks=[]) - step_cluster_start(test, rg, checks=[]) - step_cluster_stop(test, rg, checks=[]) - step_cluster_update(test, rg, checks=[ - test.check("name", "{myCluster}", case_sensitive=False), + step_database_principal_assignment_list(test, checks=[]) + step_database_list_principal(test, checks=[ + test.check('length(@)', 3), + ]) + step_attached_database_configuration_list(test, checks=[ + test.check('length(@)', 1), + ]) + step_data_connection_list(test, checks=[ + test.check('length(@)', 1), + ]) + step_managed_private_endpoint_list(test, checks=[]) + step_cluster_diagnose_virtual_network(test, checks=[]) + step_cluster_list_outbound(test, checks=[]) + step_private_endpoint_connection_list(test, checks=[]) + #step_private_link_resource_list(test, checks=[ + # test.check('length(@)', 1), + #]) + ####################step_operation_result_show(test, checks=[]) + # Update + validation + step_data_connection_event_hub_update(test, checks=[]) + step_managed_private_endpoint_update(test, checks=[]) + step_data_connection_validation(test, checks=[]) + step_script_update(test, checks=[]) + step_database_update(test, checks=[]) + step_cluster_stop(test, checks=[]) + step_cluster_start(test, checks=[]) + step_cluster_update(test, checks=[ + test.check("name", "{myCluster1}", case_sensitive=False), test.check("identity.type", "SystemAssigned", case_sensitive=False), - test.check("location", "westus", case_sensitive=False), + test.check("location", "West US 2", case_sensitive=False), + test.check("enableAutoStop", True), test.check("enablePurge", True), test.check("enableStreamingIngest", True), - test.check("engineType", "V2", case_sensitive=False), - test.check("keyVaultProperties.keyName", "keyName", case_sensitive=False), - test.check("keyVaultProperties.keyVaultUri", "https://dummy.keyvault.com", case_sensitive=False), - test.check("keyVaultProperties.keyVersion", "keyVersion", case_sensitive=False), + test.check("engineType", "V3", case_sensitive=False), + test.check("restrictOutboundNetworkAccess", "Disabled", case_sensitive=False), ]) - # STEP NOT FOUND: KustoClustersCheckNameAvailability - step_attached_database_configuration_delete(test, rg, checks=[]) - step_data_connection_delete(test, rg, checks=[]) - step_database_delete(test, rg, checks=[]) - step_cluster_delete(test, rg, checks=[]) - step_database_principal_assignment_show(test, rg, checks=[]) - step_database_principal_assignment_create(test, rg, checks=[]) - step_database_principal_assignment_delete(test, rg, checks=[]) - step_cluster_principal_assignment_show(test, rg, checks=[]) - step_cluster_principal_assignment_create(test, rg, checks=[]) - step_cluster_principal_assignment_delete(test, rg, checks=[]) - cleanup_scenario(test, rg) + # Remove + step_cluster_remove_language_extension(test, checks=[]) + step_managed_private_endpoint_delete(test, checks=[]) + step_private_endpoint_connection_delete(test, checks=[]) + step_script_delete(test, checks=[]) + step_database_principal_assignment_delete(test, checks=[]) + step_cluster_principal_assignment_delete(test, checks=[]) + step_database_remove_principal(test, checks=[]) + step_cluster_detach_follower_database(test, checks=[]) + step_attached_database_configuration_delete(test, checks=[]) + step_data_connection_delete(test, checks=[]) + step_database_delete(test, checks=[]) + step_cluster_delete(test, checks=[]) + # Cleanup + cleanup_scenario(test) # Test class for Scenario @try_manual class KustoScenarioTest(ScenarioTest): - + def __init__(self, *args, **kwargs): super(KustoScenarioTest, self).__init__(*args, **kwargs) self.kwargs.update({ 'subscription_id': self.get_subscription_id() }) + self.kwargs.update({ + 'myCluster': 'kustoclusterclitest7', + 'myScript': 'kustoScript2', + 'myCluster1': 'KustoClusterLeader7', + 'myDataConnection': 'DataConnection3', + 'myAttachedDatabaseConfiguration': 'myAttachedDatabaseConfiguration', + 'myManagedPrivateEndpoint': 'kustoManagedPrivateEndpoint4', + 'myPrivateEndpoint': 'kustoPrivateEndpoint4', + 'myPrivateLinkResource': 'privateLinkResource' + }) + @AllowLargeResponse(size_kb=5000) @ResourceGroupPreparer(name_prefix='clitestkusto_kustorptest'[:7], key='rg', parameter_name='rg') + @StorageAccountPreparer(name_prefix='clitestkusto_storageAccountTest'[:7], key='sa', resource_group_parameter_name='rg') def test_kusto_Scenario(self, rg): - call_scenario(self, rg) + call_scenario(self) calc_coverage(__file__) raise_if() diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/_configuration.py b/src/kusto/azext_kusto/vendored_sdks/kusto/_configuration.py index 5a441c82234..9f24effee6d 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/_configuration.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/_configuration.py @@ -47,7 +47,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2021-01-01" + self.api_version = "2021-08-27" self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'kustomanagementclient/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/_kusto_management_client.py b/src/kusto/azext_kusto/vendored_sdks/kusto/_kusto_management_client.py index ce5cfd9182a..22eae8fd0fa 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/_kusto_management_client.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/_kusto_management_client.py @@ -21,9 +21,12 @@ from .operations import ClustersOperations from .operations import ClusterPrincipalAssignmentsOperations from .operations import DatabasesOperations +from .operations import AttachedDatabaseConfigurationsOperations +from .operations import ManagedPrivateEndpointsOperations from .operations import DatabasePrincipalAssignmentsOperations from .operations import ScriptsOperations -from .operations import AttachedDatabaseConfigurationsOperations +from .operations import PrivateEndpointConnectionsOperations +from .operations import PrivateLinkResourcesOperations from .operations import DataConnectionsOperations from .operations import Operations from .operations import OperationsResultsOperations @@ -39,12 +42,18 @@ class KustoManagementClient(object): :vartype cluster_principal_assignments: kusto_management_client.operations.ClusterPrincipalAssignmentsOperations :ivar databases: DatabasesOperations operations :vartype databases: kusto_management_client.operations.DatabasesOperations + :ivar attached_database_configurations: AttachedDatabaseConfigurationsOperations operations + :vartype attached_database_configurations: kusto_management_client.operations.AttachedDatabaseConfigurationsOperations + :ivar managed_private_endpoints: ManagedPrivateEndpointsOperations operations + :vartype managed_private_endpoints: kusto_management_client.operations.ManagedPrivateEndpointsOperations :ivar database_principal_assignments: DatabasePrincipalAssignmentsOperations operations :vartype database_principal_assignments: kusto_management_client.operations.DatabasePrincipalAssignmentsOperations :ivar scripts: ScriptsOperations operations :vartype scripts: kusto_management_client.operations.ScriptsOperations - :ivar attached_database_configurations: AttachedDatabaseConfigurationsOperations operations - :vartype attached_database_configurations: kusto_management_client.operations.AttachedDatabaseConfigurationsOperations + :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations + :vartype private_endpoint_connections: kusto_management_client.operations.PrivateEndpointConnectionsOperations + :ivar private_link_resources: PrivateLinkResourcesOperations operations + :vartype private_link_resources: kusto_management_client.operations.PrivateLinkResourcesOperations :ivar data_connections: DataConnectionsOperations operations :vartype data_connections: kusto_management_client.operations.DataConnectionsOperations :ivar operations: Operations operations @@ -82,11 +91,17 @@ def __init__( self._client, self._config, self._serialize, self._deserialize) self.databases = DatabasesOperations( self._client, self._config, self._serialize, self._deserialize) + self.attached_database_configurations = AttachedDatabaseConfigurationsOperations( + self._client, self._config, self._serialize, self._deserialize) + self.managed_private_endpoints = ManagedPrivateEndpointsOperations( + self._client, self._config, self._serialize, self._deserialize) self.database_principal_assignments = DatabasePrincipalAssignmentsOperations( self._client, self._config, self._serialize, self._deserialize) self.scripts = ScriptsOperations( self._client, self._config, self._serialize, self._deserialize) - self.attached_database_configurations = AttachedDatabaseConfigurationsOperations( + self.private_endpoint_connections = PrivateEndpointConnectionsOperations( + self._client, self._config, self._serialize, self._deserialize) + self.private_link_resources = PrivateLinkResourcesOperations( self._client, self._config, self._serialize, self._deserialize) self.data_connections = DataConnectionsOperations( self._client, self._config, self._serialize, self._deserialize) diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/_configuration.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/_configuration.py index 178aeb99bce..69d235cacb2 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/_configuration.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/_configuration.py @@ -44,7 +44,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2021-01-01" + self.api_version = "2021-08-27" self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'kustomanagementclient/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/_kusto_management_client.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/_kusto_management_client.py index b0cabb0863b..adcec5cf831 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/_kusto_management_client.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/_kusto_management_client.py @@ -19,9 +19,12 @@ from .operations import ClustersOperations from .operations import ClusterPrincipalAssignmentsOperations from .operations import DatabasesOperations +from .operations import AttachedDatabaseConfigurationsOperations +from .operations import ManagedPrivateEndpointsOperations from .operations import DatabasePrincipalAssignmentsOperations from .operations import ScriptsOperations -from .operations import AttachedDatabaseConfigurationsOperations +from .operations import PrivateEndpointConnectionsOperations +from .operations import PrivateLinkResourcesOperations from .operations import DataConnectionsOperations from .operations import Operations from .operations import OperationsResultsOperations @@ -37,12 +40,18 @@ class KustoManagementClient(object): :vartype cluster_principal_assignments: kusto_management_client.aio.operations.ClusterPrincipalAssignmentsOperations :ivar databases: DatabasesOperations operations :vartype databases: kusto_management_client.aio.operations.DatabasesOperations + :ivar attached_database_configurations: AttachedDatabaseConfigurationsOperations operations + :vartype attached_database_configurations: kusto_management_client.aio.operations.AttachedDatabaseConfigurationsOperations + :ivar managed_private_endpoints: ManagedPrivateEndpointsOperations operations + :vartype managed_private_endpoints: kusto_management_client.aio.operations.ManagedPrivateEndpointsOperations :ivar database_principal_assignments: DatabasePrincipalAssignmentsOperations operations :vartype database_principal_assignments: kusto_management_client.aio.operations.DatabasePrincipalAssignmentsOperations :ivar scripts: ScriptsOperations operations :vartype scripts: kusto_management_client.aio.operations.ScriptsOperations - :ivar attached_database_configurations: AttachedDatabaseConfigurationsOperations operations - :vartype attached_database_configurations: kusto_management_client.aio.operations.AttachedDatabaseConfigurationsOperations + :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations + :vartype private_endpoint_connections: kusto_management_client.aio.operations.PrivateEndpointConnectionsOperations + :ivar private_link_resources: PrivateLinkResourcesOperations operations + :vartype private_link_resources: kusto_management_client.aio.operations.PrivateLinkResourcesOperations :ivar data_connections: DataConnectionsOperations operations :vartype data_connections: kusto_management_client.aio.operations.DataConnectionsOperations :ivar operations: Operations operations @@ -79,11 +88,17 @@ def __init__( self._client, self._config, self._serialize, self._deserialize) self.databases = DatabasesOperations( self._client, self._config, self._serialize, self._deserialize) + self.attached_database_configurations = AttachedDatabaseConfigurationsOperations( + self._client, self._config, self._serialize, self._deserialize) + self.managed_private_endpoints = ManagedPrivateEndpointsOperations( + self._client, self._config, self._serialize, self._deserialize) self.database_principal_assignments = DatabasePrincipalAssignmentsOperations( self._client, self._config, self._serialize, self._deserialize) self.scripts = ScriptsOperations( self._client, self._config, self._serialize, self._deserialize) - self.attached_database_configurations = AttachedDatabaseConfigurationsOperations( + self.private_endpoint_connections = PrivateEndpointConnectionsOperations( + self._client, self._config, self._serialize, self._deserialize) + self.private_link_resources = PrivateLinkResourcesOperations( self._client, self._config, self._serialize, self._deserialize) self.data_connections = DataConnectionsOperations( self._client, self._config, self._serialize, self._deserialize) diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/__init__.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/__init__.py index 27917c1aa7d..9547038985c 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/__init__.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/__init__.py @@ -9,9 +9,12 @@ from ._clusters_operations import ClustersOperations from ._cluster_principal_assignments_operations import ClusterPrincipalAssignmentsOperations from ._databases_operations import DatabasesOperations +from ._attached_database_configurations_operations import AttachedDatabaseConfigurationsOperations +from ._managed_private_endpoints_operations import ManagedPrivateEndpointsOperations from ._database_principal_assignments_operations import DatabasePrincipalAssignmentsOperations from ._scripts_operations import ScriptsOperations -from ._attached_database_configurations_operations import AttachedDatabaseConfigurationsOperations +from ._private_endpoint_connections_operations import PrivateEndpointConnectionsOperations +from ._private_link_resources_operations import PrivateLinkResourcesOperations from ._data_connections_operations import DataConnectionsOperations from ._operations import Operations from ._operations_results_operations import OperationsResultsOperations @@ -20,9 +23,12 @@ 'ClustersOperations', 'ClusterPrincipalAssignmentsOperations', 'DatabasesOperations', + 'AttachedDatabaseConfigurationsOperations', + 'ManagedPrivateEndpointsOperations', 'DatabasePrincipalAssignmentsOperations', 'ScriptsOperations', - 'AttachedDatabaseConfigurationsOperations', + 'PrivateEndpointConnectionsOperations', + 'PrivateLinkResourcesOperations', 'DataConnectionsOperations', 'Operations', 'OperationsResultsOperations', diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_attached_database_configurations_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_attached_database_configurations_operations.py index e01c3429e97..e01c6d5ff0a 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_attached_database_configurations_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_attached_database_configurations_operations.py @@ -43,6 +43,73 @@ def __init__(self, client, config, serializer, deserializer) -> None: self._deserialize = deserializer self._config = config + async def check_name_availability( + self, + resource_group_name: str, + cluster_name: str, + resource_name: "models.AttachedDatabaseConfigurationsCheckNameRequest", + **kwargs + ) -> "models.CheckNameResult": + """Checks that the attached database configuration resource name is valid and is not already in + use. + + :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 resource_name: The name of the resource. + :type resource_name: ~kusto_management_client.models.AttachedDatabaseConfigurationsCheckNameRequest + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CheckNameResult, or the result of cls(response) + :rtype: ~kusto_management_client.models.CheckNameResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.CheckNameResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.check_name_availability.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(resource_name, 'AttachedDatabaseConfigurationsCheckNameRequest') + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CheckNameResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + check_name_availability.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/attachedDatabaseConfigurationCheckNameAvailability'} # type: ignore + def list_by_cluster( self, resource_group_name: str, @@ -65,7 +132,7 @@ def list_by_cluster( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -142,7 +209,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -192,7 +259,7 @@ async def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -329,7 +396,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_cluster_principal_assignments_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_cluster_principal_assignments_operations.py index 1b840bab7b0..0b0b646d964 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_cluster_principal_assignments_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_cluster_principal_assignments_operations.py @@ -68,7 +68,7 @@ async def check_name_availability( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -134,7 +134,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -184,7 +184,7 @@ async def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -319,7 +319,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -444,7 +444,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_clusters_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_clusters_operations.py index d40f94151a8..440c0be4fd5 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_clusters_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_clusters_operations.py @@ -65,7 +65,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -115,7 +115,7 @@ async def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -259,7 +259,7 @@ async def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -397,7 +397,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -505,7 +505,7 @@ async def _stop_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -613,7 +613,7 @@ async def _start_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -733,7 +733,7 @@ def list_follower_databases( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -797,7 +797,7 @@ async def _detach_follower_databases_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -914,7 +914,7 @@ async def _diagnose_virtual_network_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -1039,7 +1039,7 @@ def list_by_resource_group( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -1106,7 +1106,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -1172,7 +1172,7 @@ def list_skus( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -1244,7 +1244,7 @@ async def check_name_availability( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1306,7 +1306,7 @@ def list_skus_by_resource( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -1358,6 +1358,80 @@ async def get_next(next_link=None): ) list_skus_by_resource.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/skus'} # type: ignore + def list_outbound_network_dependencies_endpoints( + self, + resource_group_name: str, + cluster_name: str, + **kwargs + ) -> AsyncIterable["models.OutboundNetworkDependenciesEndpointListResult"]: + """Gets the network endpoints of all outbound dependencies of a Kusto cluster. + + :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 + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either OutboundNetworkDependenciesEndpointListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~kusto_management_client.models.OutboundNetworkDependenciesEndpointListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.OutboundNetworkDependenciesEndpointListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_outbound_network_dependencies_endpoints.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('OutboundNetworkDependenciesEndpointListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list_outbound_network_dependencies_endpoints.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/outboundNetworkDependenciesEndpoints'} # type: ignore + def list_language_extensions( self, resource_group_name: str, @@ -1380,7 +1454,7 @@ def list_language_extensions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -1444,7 +1518,7 @@ async def _add_language_extensions_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1562,7 +1636,7 @@ async def _remove_language_extensions_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_data_connections_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_data_connections_operations.py index c6e871e9002..41585947a35 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_data_connections_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_data_connections_operations.py @@ -68,7 +68,7 @@ def list_by_database( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -134,7 +134,7 @@ async def _data_connection_validation_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -282,7 +282,7 @@ async def check_name_availability( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -352,7 +352,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -404,7 +404,7 @@ async def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -549,7 +549,7 @@ async def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -693,7 +693,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_database_principal_assignments_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_database_principal_assignments_operations.py index f62c97c6e05..8ca4955d8bf 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_database_principal_assignments_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_database_principal_assignments_operations.py @@ -71,7 +71,7 @@ async def check_name_availability( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -141,7 +141,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -193,7 +193,7 @@ async def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -334,7 +334,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -468,7 +468,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_databases_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_databases_operations.py index 6014cb2a6a7..ba1bfa5f468 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_databases_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_databases_operations.py @@ -50,7 +50,7 @@ async def check_name_availability( resource_name: "models.CheckNameRequest", **kwargs ) -> "models.CheckNameResult": - """Checks that the database name is valid and is not already in use. + """Checks that the databases resource name is valid and is not already in use. :param resource_group_name: The name of the resource group containing the Kusto cluster. :type resource_group_name: str @@ -68,7 +68,7 @@ async def check_name_availability( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -131,7 +131,7 @@ def list_by_cluster( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -208,7 +208,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -258,7 +258,7 @@ async def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -396,7 +396,7 @@ async def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -533,7 +533,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -661,7 +661,7 @@ def list_principals( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -742,7 +742,7 @@ async def add_principals( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -812,7 +812,7 @@ async def remove_principals( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_managed_private_endpoints_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_managed_private_endpoints_operations.py new file mode 100644 index 00000000000..1fc3288f19c --- /dev/null +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_managed_private_endpoints_operations.py @@ -0,0 +1,634 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class ManagedPrivateEndpointsOperations: + """ManagedPrivateEndpointsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~kusto_management_client.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def check_name_availability( + self, + resource_group_name: str, + cluster_name: str, + resource_name: "models.ManagedPrivateEndpointsCheckNameRequest", + **kwargs + ) -> "models.CheckNameResult": + """Checks that the managed private endpoints resource name is valid and is not already in use. + + :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 resource_name: The name of the resource. + :type resource_name: ~kusto_management_client.models.ManagedPrivateEndpointsCheckNameRequest + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CheckNameResult, or the result of cls(response) + :rtype: ~kusto_management_client.models.CheckNameResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.CheckNameResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.check_name_availability.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(resource_name, 'ManagedPrivateEndpointsCheckNameRequest') + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CheckNameResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + check_name_availability.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpointsCheckNameAvailability'} # type: ignore + + def list( + self, + resource_group_name: str, + cluster_name: str, + **kwargs + ) -> AsyncIterable["models.ManagedPrivateEndpointListResult"]: + """Returns the list of managed private endpoints. + + :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 + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ManagedPrivateEndpointListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~kusto_management_client.models.ManagedPrivateEndpointListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.ManagedPrivateEndpointListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('ManagedPrivateEndpointListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints'} # type: ignore + + async def get( + self, + resource_group_name: str, + cluster_name: str, + managed_private_endpoint_name: str, + **kwargs + ) -> "models.ManagedPrivateEndpoint": + """Gets a managed private endpoint. + + :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 managed_private_endpoint_name: The name of the managed private endpoint. + :type managed_private_endpoint_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ManagedPrivateEndpoint, or the result of cls(response) + :rtype: ~kusto_management_client.models.ManagedPrivateEndpoint + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.ManagedPrivateEndpoint"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore + + async def _create_or_update_initial( + self, + resource_group_name: str, + cluster_name: str, + managed_private_endpoint_name: str, + parameters: "models.ManagedPrivateEndpoint", + **kwargs + ) -> "models.ManagedPrivateEndpoint": + cls = kwargs.pop('cls', None) # type: ClsType["models.ManagedPrivateEndpoint"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_or_update_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(parameters, 'ManagedPrivateEndpoint') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 201, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore + + async def begin_create_or_update( + self, + resource_group_name: str, + cluster_name: str, + managed_private_endpoint_name: str, + parameters: "models.ManagedPrivateEndpoint", + **kwargs + ) -> AsyncLROPoller["models.ManagedPrivateEndpoint"]: + """Creates a managed private endpoint. + + :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 managed_private_endpoint_name: The name of the managed private endpoint. + :type managed_private_endpoint_name: str + :param parameters: The managed private endpoint parameters. + :type parameters: ~kusto_management_client.models.ManagedPrivateEndpoint + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ManagedPrivateEndpoint or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~kusto_management_client.models.ManagedPrivateEndpoint] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.ManagedPrivateEndpoint"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + managed_private_endpoint_name=managed_private_endpoint_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore + + async def _update_initial( + self, + resource_group_name: str, + cluster_name: str, + managed_private_endpoint_name: str, + parameters: "models.ManagedPrivateEndpoint", + **kwargs + ) -> "models.ManagedPrivateEndpoint": + cls = kwargs.pop('cls', None) # type: ClsType["models.ManagedPrivateEndpoint"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._update_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(parameters, 'ManagedPrivateEndpoint') + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore + + async def begin_update( + self, + resource_group_name: str, + cluster_name: str, + managed_private_endpoint_name: str, + parameters: "models.ManagedPrivateEndpoint", + **kwargs + ) -> AsyncLROPoller["models.ManagedPrivateEndpoint"]: + """Updates a managed private endpoint. + + :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 managed_private_endpoint_name: The name of the managed private endpoint. + :type managed_private_endpoint_name: str + :param parameters: The managed private endpoint parameters. + :type parameters: ~kusto_management_client.models.ManagedPrivateEndpoint + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ManagedPrivateEndpoint or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~kusto_management_client.models.ManagedPrivateEndpoint] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.ManagedPrivateEndpoint"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._update_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + managed_private_endpoint_name=managed_private_endpoint_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore + + async def _delete_initial( + self, + resource_group_name: str, + cluster_name: str, + managed_private_endpoint_name: str, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + # Construct URL + url = self._delete_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore + + async def begin_delete( + self, + resource_group_name: str, + cluster_name: str, + managed_private_endpoint_name: str, + **kwargs + ) -> AsyncLROPoller[None]: + """Deletes a managed private endpoint. + + :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 managed_private_endpoint_name: The name of the managed private endpoint. + :type managed_private_endpoint_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + managed_private_endpoint_name=managed_private_endpoint_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_operations.py index 74e87779032..461904870c2 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_operations.py @@ -57,7 +57,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_operations_results_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_operations_results_operations.py index 534144606a7..c7342cdb191 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_operations_results_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_operations_results_operations.py @@ -62,7 +62,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_private_endpoint_connections_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_private_endpoint_connections_operations.py new file mode 100644 index 00000000000..8697c35cf71 --- /dev/null +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_private_endpoint_connections_operations.py @@ -0,0 +1,430 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class PrivateEndpointConnectionsOperations: + """PrivateEndpointConnectionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~kusto_management_client.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def list( + self, + resource_group_name: str, + cluster_name: str, + **kwargs + ) -> AsyncIterable["models.PrivateEndpointConnectionListResult"]: + """Returns the list of private endpoint connections. + + :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 + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateEndpointConnectionListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~kusto_management_client.models.PrivateEndpointConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('PrivateEndpointConnectionListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateEndpointConnections'} # type: ignore + + async def get( + self, + resource_group_name: str, + cluster_name: str, + private_endpoint_connection_name: str, + **kwargs + ) -> "models.PrivateEndpointConnection": + """Gets a private endpoint connection. + + :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 private_endpoint_connection_name: The name of the private endpoint connection. + :type private_endpoint_connection_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateEndpointConnection, or the result of cls(response) + :rtype: ~kusto_management_client.models.PrivateEndpointConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + + async def _create_or_update_initial( + self, + resource_group_name: str, + cluster_name: str, + private_endpoint_connection_name: str, + parameters: "models.PrivateEndpointConnection", + **kwargs + ) -> "models.PrivateEndpointConnection": + cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_or_update_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(parameters, 'PrivateEndpointConnection') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + + async def begin_create_or_update( + self, + resource_group_name: str, + cluster_name: str, + private_endpoint_connection_name: str, + parameters: "models.PrivateEndpointConnection", + **kwargs + ) -> AsyncLROPoller["models.PrivateEndpointConnection"]: + """Approve or reject a private endpoint connection with a given name. + + :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 private_endpoint_connection_name: The name of the private endpoint connection. + :type private_endpoint_connection_name: str + :param parameters: + :type parameters: ~kusto_management_client.models.PrivateEndpointConnection + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either PrivateEndpointConnection or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~kusto_management_client.models.PrivateEndpointConnection] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + private_endpoint_connection_name=private_endpoint_connection_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + + async def _delete_initial( + self, + resource_group_name: str, + cluster_name: str, + private_endpoint_connection_name: str, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + # Construct URL + url = self._delete_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + + async def begin_delete( + self, + resource_group_name: str, + cluster_name: str, + private_endpoint_connection_name: str, + **kwargs + ) -> AsyncLROPoller[None]: + """Deletes a private endpoint connection with a given name. + + :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 private_endpoint_connection_name: The name of the private endpoint connection. + :type private_endpoint_connection_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + private_endpoint_connection_name=private_endpoint_connection_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_private_link_resources_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_private_link_resources_operations.py new file mode 100644 index 00000000000..71e1d953db2 --- /dev/null +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_private_link_resources_operations.py @@ -0,0 +1,178 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class PrivateLinkResourcesOperations: + """PrivateLinkResourcesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~kusto_management_client.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def list( + self, + resource_group_name: str, + cluster_name: str, + **kwargs + ) -> AsyncIterable["models.PrivateLinkResourceListResult"]: + """Returns the list of private link resources. + + :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 + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateLinkResourceListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~kusto_management_client.models.PrivateLinkResourceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateLinkResourceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('PrivateLinkResourceListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateLinkResources'} # type: ignore + + async def get( + self, + resource_group_name: str, + cluster_name: str, + private_link_resource_name: str, + **kwargs + ) -> "models.PrivateLinkResource": + """Gets a private link resource. + + :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 private_link_resource_name: The name of the private link resource. + :type private_link_resource_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateLinkResource, or the result of cls(response) + :rtype: ~kusto_management_client.models.PrivateLinkResource + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateLinkResource"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'privateLinkResourceName': self._serialize.url("private_link_resource_name", private_link_resource_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateLinkResource', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateLinkResources/{privateLinkResourceName}'} # type: ignore diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_scripts_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_scripts_operations.py index 0b1cbeeef90..fff35524fd1 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_scripts_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/aio/operations/_scripts_operations.py @@ -68,7 +68,7 @@ def list_by_database( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -149,7 +149,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -201,7 +201,7 @@ async def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -346,7 +346,7 @@ async def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -487,7 +487,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -624,7 +624,7 @@ async def check_name_availability( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/models/__init__.py b/src/kusto/azext_kusto/vendored_sdks/kusto/models/__init__.py index 0d487db4925..25effe035c5 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/models/__init__.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/models/__init__.py @@ -7,8 +7,10 @@ # -------------------------------------------------------------------------- try: + from ._models_py3 import AcceptedAudiences from ._models_py3 import AttachedDatabaseConfiguration from ._models_py3 import AttachedDatabaseConfigurationListResult + from ._models_py3 import AttachedDatabaseConfigurationsCheckNameRequest from ._models_py3 import AzureCapacity from ._models_py3 import AzureResourceSku from ._models_py3 import AzureSku @@ -39,6 +41,8 @@ from ._models_py3 import DatabasePrincipalListResult from ._models_py3 import DatabaseStatistics from ._models_py3 import DiagnoseVirtualNetworkResult + from ._models_py3 import EndpointDependency + from ._models_py3 import EndpointDetail from ._models_py3 import EventGridDataConnection from ._models_py3 import EventHubDataConnection from ._models_py3 import FollowerDatabaseDefinition @@ -49,11 +53,22 @@ from ._models_py3 import LanguageExtension from ._models_py3 import LanguageExtensionsList from ._models_py3 import ListResourceSkusResult + from ._models_py3 import ManagedPrivateEndpoint + from ._models_py3 import ManagedPrivateEndpointListResult + from ._models_py3 import ManagedPrivateEndpointsCheckNameRequest from ._models_py3 import Operation from ._models_py3 import OperationDisplay from ._models_py3 import OperationListResult from ._models_py3 import OperationResult from ._models_py3 import OptimizedAutoscale + from ._models_py3 import OutboundNetworkDependenciesEndpoint + from ._models_py3 import OutboundNetworkDependenciesEndpointListResult + from ._models_py3 import PrivateEndpointConnection + from ._models_py3 import PrivateEndpointConnectionListResult + from ._models_py3 import PrivateEndpointProperty + from ._models_py3 import PrivateLinkResource + from ._models_py3 import PrivateLinkResourceListResult + from ._models_py3 import PrivateLinkServiceConnectionStateProperty from ._models_py3 import ProxyResource from ._models_py3 import ReadOnlyFollowingDatabase from ._models_py3 import ReadWriteDatabase @@ -70,8 +85,10 @@ from ._models_py3 import TrustedExternalTenant from ._models_py3 import VirtualNetworkConfiguration except (SyntaxError, ImportError): + from ._models import AcceptedAudiences # type: ignore from ._models import AttachedDatabaseConfiguration # type: ignore from ._models import AttachedDatabaseConfigurationListResult # type: ignore + from ._models import AttachedDatabaseConfigurationsCheckNameRequest # type: ignore from ._models import AzureCapacity # type: ignore from ._models import AzureResourceSku # type: ignore from ._models import AzureSku # type: ignore @@ -102,6 +119,8 @@ from ._models import DatabasePrincipalListResult # type: ignore from ._models import DatabaseStatistics # type: ignore from ._models import DiagnoseVirtualNetworkResult # type: ignore + from ._models import EndpointDependency # type: ignore + from ._models import EndpointDetail # type: ignore from ._models import EventGridDataConnection # type: ignore from ._models import EventHubDataConnection # type: ignore from ._models import FollowerDatabaseDefinition # type: ignore @@ -112,11 +131,22 @@ from ._models import LanguageExtension # type: ignore from ._models import LanguageExtensionsList # type: ignore from ._models import ListResourceSkusResult # type: ignore + from ._models import ManagedPrivateEndpoint # type: ignore + from ._models import ManagedPrivateEndpointListResult # type: ignore + from ._models import ManagedPrivateEndpointsCheckNameRequest # type: ignore from ._models import Operation # type: ignore from ._models import OperationDisplay # type: ignore from ._models import OperationListResult # type: ignore from ._models import OperationResult # type: ignore from ._models import OptimizedAutoscale # type: ignore + from ._models import OutboundNetworkDependenciesEndpoint # type: ignore + from ._models import OutboundNetworkDependenciesEndpointListResult # type: ignore + from ._models import PrivateEndpointConnection # type: ignore + from ._models import PrivateEndpointConnectionListResult # type: ignore + from ._models import PrivateEndpointProperty # type: ignore + from ._models import PrivateLinkResource # type: ignore + from ._models import PrivateLinkResourceListResult # type: ignore + from ._models import PrivateLinkServiceConnectionStateProperty # type: ignore from ._models import ProxyResource # type: ignore from ._models import ReadOnlyFollowingDatabase # type: ignore from ._models import ReadWriteDatabase # type: ignore @@ -138,6 +168,7 @@ AzureSkuName, AzureSkuTier, BlobStorageEventType, + ClusterNetworkAccessFlag, ClusterPrincipalRole, Compression, CreatedByType, @@ -155,6 +186,7 @@ PrincipalType, PrincipalsModificationKind, ProvisioningState, + PublicNetworkAccess, Reason, State, Status, @@ -162,8 +194,10 @@ ) __all__ = [ + 'AcceptedAudiences', 'AttachedDatabaseConfiguration', 'AttachedDatabaseConfigurationListResult', + 'AttachedDatabaseConfigurationsCheckNameRequest', 'AzureCapacity', 'AzureResourceSku', 'AzureSku', @@ -194,6 +228,8 @@ 'DatabasePrincipalListResult', 'DatabaseStatistics', 'DiagnoseVirtualNetworkResult', + 'EndpointDependency', + 'EndpointDetail', 'EventGridDataConnection', 'EventHubDataConnection', 'FollowerDatabaseDefinition', @@ -204,11 +240,22 @@ 'LanguageExtension', 'LanguageExtensionsList', 'ListResourceSkusResult', + 'ManagedPrivateEndpoint', + 'ManagedPrivateEndpointListResult', + 'ManagedPrivateEndpointsCheckNameRequest', 'Operation', 'OperationDisplay', 'OperationListResult', 'OperationResult', 'OptimizedAutoscale', + 'OutboundNetworkDependenciesEndpoint', + 'OutboundNetworkDependenciesEndpointListResult', + 'PrivateEndpointConnection', + 'PrivateEndpointConnectionListResult', + 'PrivateEndpointProperty', + 'PrivateLinkResource', + 'PrivateLinkResourceListResult', + 'PrivateLinkServiceConnectionStateProperty', 'ProxyResource', 'ReadOnlyFollowingDatabase', 'ReadWriteDatabase', @@ -228,6 +275,7 @@ 'AzureSkuName', 'AzureSkuTier', 'BlobStorageEventType', + 'ClusterNetworkAccessFlag', 'ClusterPrincipalRole', 'Compression', 'CreatedByType', @@ -245,6 +293,7 @@ 'PrincipalType', 'PrincipalsModificationKind', 'ProvisioningState', + 'PublicNetworkAccess', 'Reason', 'State', 'Status', diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/models/_kusto_management_client_enums.py b/src/kusto/azext_kusto/vendored_sdks/kusto/models/_kusto_management_client_enums.py index 38869eaa64f..de61d1c1ca5 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/models/_kusto_management_client_enums.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/models/_kusto_management_client_enums.py @@ -78,6 +78,14 @@ class BlobStorageEventType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): MICROSOFT_STORAGE_BLOB_CREATED = "Microsoft.Storage.BlobCreated" MICROSOFT_STORAGE_BLOB_RENAMED = "Microsoft.Storage.BlobRenamed" +class ClusterNetworkAccessFlag(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Whether or not to restrict outbound network access. Value is optional but if passed in, must + be 'Enabled' or 'Disabled' + """ + + ENABLED = "Enabled" + DISABLED = "Disabled" + class ClusterPrincipalRole(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Cluster principal role. """ @@ -258,6 +266,14 @@ class ProvisioningState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): FAILED = "Failed" MOVING = "Moving" +class PublicNetworkAccess(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Public network access to the cluster is enabled by default. When disabled, only private + endpoint connection to the cluster is allowed + """ + + ENABLED = "Enabled" + DISABLED = "Disabled" + class Reason(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Message providing the reason why the given name is invalid. """ diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/models/_models.py b/src/kusto/azext_kusto/vendored_sdks/kusto/models/_models.py index 06d26cf92ee..9bd7b4679d7 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/models/_models.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/models/_models.py @@ -9,6 +9,25 @@ import msrest.serialization +class AcceptedAudiences(msrest.serialization.Model): + """Represents an accepted audience trusted by the cluster. + + :param value: GUID or valid URL representing an accepted audience. + :type value: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(AcceptedAudiences, self).__init__(**kwargs) + self.value = kwargs.get('value', None) + + class Resource(msrest.serialization.Model): """Common fields that are returned in the response for all Azure Resource Manager resources. @@ -136,6 +155,41 @@ def __init__( self.value = kwargs.get('value', None) +class AttachedDatabaseConfigurationsCheckNameRequest(msrest.serialization.Model): + """The result returned from a AttachedDatabaseConfigurations check name availability request. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :param name: Required. Attached database resource name. + :type name: str + :ivar type: Required. The type of resource, for instance + Microsoft.Kusto/clusters/attachedDatabaseConfigurations. Default value: + "Microsoft.Kusto/clusters/attachedDatabaseConfigurations". + :vartype type: str + """ + + _validation = { + 'name': {'required': True}, + 'type': {'required': True, 'constant': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + type = "Microsoft.Kusto/clusters/attachedDatabaseConfigurations" + + def __init__( + self, + **kwargs + ): + super(AttachedDatabaseConfigurationsCheckNameRequest, self).__init__(**kwargs) + self.name = kwargs['name'] + + class AzureCapacity(msrest.serialization.Model): """Azure capacity definition. @@ -410,6 +464,8 @@ class Cluster(TrackedResource): :type location: str :param sku: Required. The SKU of the cluster. :type sku: ~kusto_management_client.models.AzureSku + :ivar system_data: Metadata pertaining to creation and last modification of the resource. + :vartype system_data: ~kusto_management_client.models.SystemData :param zones: The availability zones of the cluster. :type zones: list[str] :param identity: The identity of the cluster, if configured. @@ -450,8 +506,28 @@ class Cluster(TrackedResource): :param enable_double_encryption: A boolean value that indicates if double encryption is enabled. :type enable_double_encryption: bool + :param public_network_access: Public network access to the cluster is enabled by default. When + disabled, only private endpoint connection to the cluster is allowed. Possible values include: + "Enabled", "Disabled". Default value: "Enabled". + :type public_network_access: str or ~kusto_management_client.models.PublicNetworkAccess + :param allowed_ip_range_list: The list of ips in the format of CIDR allowed to connect to the + cluster. + :type allowed_ip_range_list: list[str] :param engine_type: The engine type. Possible values include: "V2", "V3". Default value: "V3". :type engine_type: str or ~kusto_management_client.models.EngineType + :param accepted_audiences: The cluster's accepted audiences. + :type accepted_audiences: list[~kusto_management_client.models.AcceptedAudiences] + :param enable_auto_stop: A boolean value that indicates if the cluster could be automatically + stopped (due to lack of data or no activity for many days). + :type enable_auto_stop: bool + :param restrict_outbound_network_access: Whether or not to restrict outbound network access. + Value is optional but if passed in, must be 'Enabled' or 'Disabled'. Possible values include: + "Enabled", "Disabled". + :type restrict_outbound_network_access: str or + ~kusto_management_client.models.ClusterNetworkAccessFlag + :param allowed_fqdn_list: List of allowed FQDNs(Fully Qualified Domain Name) for egress from + Cluster. + :type allowed_fqdn_list: list[str] """ _validation = { @@ -460,6 +536,7 @@ class Cluster(TrackedResource): 'type': {'readonly': True}, 'location': {'required': True}, 'sku': {'required': True}, + 'system_data': {'readonly': True}, 'etag': {'readonly': True}, 'state': {'readonly': True}, 'provisioning_state': {'readonly': True}, @@ -476,6 +553,7 @@ class Cluster(TrackedResource): 'tags': {'key': 'tags', 'type': '{str}'}, 'location': {'key': 'location', 'type': 'str'}, 'sku': {'key': 'sku', 'type': 'AzureSku'}, + 'system_data': {'key': 'systemData', 'type': 'SystemData'}, 'zones': {'key': 'zones', 'type': '[str]'}, 'identity': {'key': 'identity', 'type': 'Identity'}, 'etag': {'key': 'etag', 'type': 'str'}, @@ -493,7 +571,13 @@ class Cluster(TrackedResource): 'enable_purge': {'key': 'properties.enablePurge', 'type': 'bool'}, 'language_extensions': {'key': 'properties.languageExtensions', 'type': 'LanguageExtensionsList'}, 'enable_double_encryption': {'key': 'properties.enableDoubleEncryption', 'type': 'bool'}, + 'public_network_access': {'key': 'properties.publicNetworkAccess', 'type': 'str'}, + 'allowed_ip_range_list': {'key': 'properties.allowedIpRangeList', 'type': '[str]'}, 'engine_type': {'key': 'properties.engineType', 'type': 'str'}, + 'accepted_audiences': {'key': 'properties.acceptedAudiences', 'type': '[AcceptedAudiences]'}, + 'enable_auto_stop': {'key': 'properties.enableAutoStop', 'type': 'bool'}, + 'restrict_outbound_network_access': {'key': 'properties.restrictOutboundNetworkAccess', 'type': 'str'}, + 'allowed_fqdn_list': {'key': 'properties.allowedFqdnList', 'type': '[str]'}, } def __init__( @@ -502,6 +586,7 @@ def __init__( ): super(Cluster, self).__init__(**kwargs) self.sku = kwargs['sku'] + self.system_data = None self.zones = kwargs.get('zones', None) self.identity = kwargs.get('identity', None) self.etag = None @@ -519,7 +604,13 @@ def __init__( self.enable_purge = kwargs.get('enable_purge', False) self.language_extensions = None self.enable_double_encryption = kwargs.get('enable_double_encryption', False) + self.public_network_access = kwargs.get('public_network_access', "Enabled") + self.allowed_ip_range_list = kwargs.get('allowed_ip_range_list', None) self.engine_type = kwargs.get('engine_type', "V3") + self.accepted_audiences = kwargs.get('accepted_audiences', None) + self.enable_auto_stop = kwargs.get('enable_auto_stop', True) + self.restrict_outbound_network_access = kwargs.get('restrict_outbound_network_access', None) + self.allowed_fqdn_list = kwargs.get('allowed_fqdn_list', None) class ClusterCheckNameRequest(msrest.serialization.Model): @@ -751,8 +842,28 @@ class ClusterUpdate(Resource): :param enable_double_encryption: A boolean value that indicates if double encryption is enabled. :type enable_double_encryption: bool + :param public_network_access: Public network access to the cluster is enabled by default. When + disabled, only private endpoint connection to the cluster is allowed. Possible values include: + "Enabled", "Disabled". Default value: "Enabled". + :type public_network_access: str or ~kusto_management_client.models.PublicNetworkAccess + :param allowed_ip_range_list: The list of ips in the format of CIDR allowed to connect to the + cluster. + :type allowed_ip_range_list: list[str] :param engine_type: The engine type. Possible values include: "V2", "V3". Default value: "V3". :type engine_type: str or ~kusto_management_client.models.EngineType + :param accepted_audiences: The cluster's accepted audiences. + :type accepted_audiences: list[~kusto_management_client.models.AcceptedAudiences] + :param enable_auto_stop: A boolean value that indicates if the cluster could be automatically + stopped (due to lack of data or no activity for many days). + :type enable_auto_stop: bool + :param restrict_outbound_network_access: Whether or not to restrict outbound network access. + Value is optional but if passed in, must be 'Enabled' or 'Disabled'. Possible values include: + "Enabled", "Disabled". + :type restrict_outbound_network_access: str or + ~kusto_management_client.models.ClusterNetworkAccessFlag + :param allowed_fqdn_list: List of allowed FQDNs(Fully Qualified Domain Name) for egress from + Cluster. + :type allowed_fqdn_list: list[str] """ _validation = { @@ -789,7 +900,13 @@ class ClusterUpdate(Resource): 'enable_purge': {'key': 'properties.enablePurge', 'type': 'bool'}, 'language_extensions': {'key': 'properties.languageExtensions', 'type': 'LanguageExtensionsList'}, 'enable_double_encryption': {'key': 'properties.enableDoubleEncryption', 'type': 'bool'}, + 'public_network_access': {'key': 'properties.publicNetworkAccess', 'type': 'str'}, + 'allowed_ip_range_list': {'key': 'properties.allowedIpRangeList', 'type': '[str]'}, 'engine_type': {'key': 'properties.engineType', 'type': 'str'}, + 'accepted_audiences': {'key': 'properties.acceptedAudiences', 'type': '[AcceptedAudiences]'}, + 'enable_auto_stop': {'key': 'properties.enableAutoStop', 'type': 'bool'}, + 'restrict_outbound_network_access': {'key': 'properties.restrictOutboundNetworkAccess', 'type': 'str'}, + 'allowed_fqdn_list': {'key': 'properties.allowedFqdnList', 'type': '[str]'}, } def __init__( @@ -815,7 +932,13 @@ def __init__( self.enable_purge = kwargs.get('enable_purge', False) self.language_extensions = None self.enable_double_encryption = kwargs.get('enable_double_encryption', False) + self.public_network_access = kwargs.get('public_network_access', "Enabled") + self.allowed_ip_range_list = kwargs.get('allowed_ip_range_list', None) self.engine_type = kwargs.get('engine_type', "V3") + self.accepted_audiences = kwargs.get('accepted_audiences', None) + self.enable_auto_stop = kwargs.get('enable_auto_stop', True) + self.restrict_outbound_network_access = kwargs.get('restrict_outbound_network_access', None) + self.allowed_fqdn_list = kwargs.get('allowed_fqdn_list', None) class ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties(msrest.serialization.Model): @@ -1341,6 +1464,48 @@ def __init__( self.findings = kwargs.get('findings', None) +class EndpointDependency(msrest.serialization.Model): + """A domain name that a service is reached at, including details of the current connection status. + + :param domain_name: The domain name of the dependency. + :type domain_name: str + :param endpoint_details: The ports used when connecting to DomainName. + :type endpoint_details: list[~kusto_management_client.models.EndpointDetail] + """ + + _attribute_map = { + 'domain_name': {'key': 'domainName', 'type': 'str'}, + 'endpoint_details': {'key': 'endpointDetails', 'type': '[EndpointDetail]'}, + } + + def __init__( + self, + **kwargs + ): + super(EndpointDependency, self).__init__(**kwargs) + self.domain_name = kwargs.get('domain_name', None) + self.endpoint_details = kwargs.get('endpoint_details', None) + + +class EndpointDetail(msrest.serialization.Model): + """Current TCP connectivity information from the Kusto cluster to a single endpoint. + + :param port: The port an endpoint is connected to. + :type port: int + """ + + _attribute_map = { + 'port': {'key': 'port', 'type': 'int'}, + } + + def __init__( + self, + **kwargs + ): + super(EndpointDetail, self).__init__(**kwargs) + self.port = kwargs.get('port', None) + + class EventGridDataConnection(DataConnection): """Class representing an Event Grid data connection. @@ -1718,23 +1883,16 @@ def __init__( class KeyVaultProperties(msrest.serialization.Model): """Properties of the key vault. - All required parameters must be populated in order to send to Azure. - - :param key_name: Required. The name of the key vault key. + :param key_name: The name of the key vault key. :type key_name: str :param key_version: The version of the key vault key. :type key_version: str - :param key_vault_uri: Required. The Uri of the key vault. + :param key_vault_uri: The Uri of the key vault. :type key_vault_uri: str :param user_identity: The user assigned identity (ARM resource id) that has access to the key. :type user_identity: str """ - _validation = { - 'key_name': {'required': True}, - 'key_vault_uri': {'required': True}, - } - _attribute_map = { 'key_name': {'key': 'keyName', 'type': 'str'}, 'key_version': {'key': 'keyVersion', 'type': 'str'}, @@ -1747,9 +1905,9 @@ def __init__( **kwargs ): super(KeyVaultProperties, self).__init__(**kwargs) - self.key_name = kwargs['key_name'] + self.key_name = kwargs.get('key_name', None) self.key_version = kwargs.get('key_version', None) - self.key_vault_uri = kwargs['key_vault_uri'] + self.key_vault_uri = kwargs.get('key_vault_uri', None) self.user_identity = kwargs.get('user_identity', None) @@ -1811,6 +1969,123 @@ def __init__( self.value = kwargs.get('value', None) +class ManagedPrivateEndpoint(Resource): + """Class representing a managed private endpoint. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Metadata pertaining to creation and last modification of the resource. + :vartype system_data: ~kusto_management_client.models.SystemData + :param private_link_resource_id: The ARM resource ID of the resource for which the managed + private endpoint is created. + :type private_link_resource_id: str + :param private_link_resource_region: The region of the resource to which the managed private + endpoint is created. + :type private_link_resource_region: str + :param group_id: The groupId in which the managed private endpoint is created. + :type group_id: str + :param request_message: The user request message. + :type request_message: str + :ivar provisioning_state: The provisioned state of the resource. Possible values include: + "Running", "Creating", "Deleting", "Succeeded", "Failed", "Moving". + :vartype provisioning_state: str or ~kusto_management_client.models.ProvisioningState + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'system_data': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'system_data': {'key': 'systemData', 'type': 'SystemData'}, + 'private_link_resource_id': {'key': 'properties.privateLinkResourceId', 'type': 'str'}, + 'private_link_resource_region': {'key': 'properties.privateLinkResourceRegion', 'type': 'str'}, + 'group_id': {'key': 'properties.groupId', 'type': 'str'}, + 'request_message': {'key': 'properties.requestMessage', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(ManagedPrivateEndpoint, self).__init__(**kwargs) + self.system_data = None + self.private_link_resource_id = kwargs.get('private_link_resource_id', None) + self.private_link_resource_region = kwargs.get('private_link_resource_region', None) + self.group_id = kwargs.get('group_id', None) + self.request_message = kwargs.get('request_message', None) + self.provisioning_state = None + + +class ManagedPrivateEndpointListResult(msrest.serialization.Model): + """The list managed private endpoints operation response. + + :param value: The list of managed private endpoints. + :type value: list[~kusto_management_client.models.ManagedPrivateEndpoint] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ManagedPrivateEndpoint]'}, + } + + def __init__( + self, + **kwargs + ): + super(ManagedPrivateEndpointListResult, self).__init__(**kwargs) + self.value = kwargs.get('value', None) + + +class ManagedPrivateEndpointsCheckNameRequest(msrest.serialization.Model): + """The result returned from a managedPrivateEndpoints check name availability request. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :param name: Required. Managed private endpoint resource name. + :type name: str + :ivar type: Required. The type of resource, for instance + Microsoft.Kusto/clusters/managedPrivateEndpoints. Default value: + "Microsoft.Kusto/clusters/managedPrivateEndpoints". + :vartype type: str + """ + + _validation = { + 'name': {'required': True}, + 'type': {'required': True, 'constant': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + type = "Microsoft.Kusto/clusters/managedPrivateEndpoints" + + def __init__( + self, + **kwargs + ): + super(ManagedPrivateEndpointsCheckNameRequest, self).__init__(**kwargs) + self.name = kwargs['name'] + + class Operation(msrest.serialization.Model): """A REST API operation. @@ -2002,6 +2277,303 @@ def __init__( self.maximum = kwargs['maximum'] +class OutboundNetworkDependenciesEndpoint(Resource): + """Endpoints accessed for a common purpose that the Kusto Service Environment requires outbound network access to. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :param category: The type of service accessed by the Kusto Service Environment, e.g., Azure + Storage, Azure SQL Database, and Azure Active Directory. + :type category: str + :param endpoints: The endpoints that the Kusto Service Environment reaches the service at. + :type endpoints: list[~kusto_management_client.models.EndpointDependency] + :ivar provisioning_state: The provisioned state of the resource. Possible values include: + "Running", "Creating", "Deleting", "Succeeded", "Failed", "Moving". + :vartype provisioning_state: str or ~kusto_management_client.models.ProvisioningState + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'category': {'key': 'properties.category', 'type': 'str'}, + 'endpoints': {'key': 'properties.endpoints', 'type': '[EndpointDependency]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(OutboundNetworkDependenciesEndpoint, self).__init__(**kwargs) + self.etag = None + self.category = kwargs.get('category', None) + self.endpoints = kwargs.get('endpoints', None) + self.provisioning_state = None + + +class OutboundNetworkDependenciesEndpointListResult(msrest.serialization.Model): + """Collection of Outbound Environment Endpoints. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :param value: Required. Collection of resources. + :type value: list[~kusto_management_client.models.OutboundNetworkDependenciesEndpoint] + :ivar next_link: Link to next page of resources. + :vartype next_link: str + """ + + _validation = { + 'value': {'required': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[OutboundNetworkDependenciesEndpoint]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(OutboundNetworkDependenciesEndpointListResult, self).__init__(**kwargs) + self.value = kwargs['value'] + self.next_link = None + + +class PrivateEndpointConnection(Resource): + """A private endpoint connection. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Metadata pertaining to creation and last modification of the resource. + :vartype system_data: ~kusto_management_client.models.SystemData + :ivar private_endpoint: Private endpoint which the connection belongs to. + :vartype private_endpoint: ~kusto_management_client.models.PrivateEndpointProperty + :param private_link_service_connection_state: Connection State of the Private Endpoint + Connection. + :type private_link_service_connection_state: + ~kusto_management_client.models.PrivateLinkServiceConnectionStateProperty + :ivar group_id: Group id of the private endpoint. + :vartype group_id: str + :ivar provisioning_state: Provisioning state of the private endpoint. + :vartype provisioning_state: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'system_data': {'readonly': True}, + 'private_endpoint': {'readonly': True}, + 'group_id': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'system_data': {'key': 'systemData', 'type': 'SystemData'}, + 'private_endpoint': {'key': 'properties.privateEndpoint', 'type': 'PrivateEndpointProperty'}, + 'private_link_service_connection_state': {'key': 'properties.privateLinkServiceConnectionState', 'type': 'PrivateLinkServiceConnectionStateProperty'}, + 'group_id': {'key': 'properties.groupId', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(PrivateEndpointConnection, self).__init__(**kwargs) + self.system_data = None + self.private_endpoint = None + self.private_link_service_connection_state = kwargs.get('private_link_service_connection_state', None) + self.group_id = None + self.provisioning_state = None + + +class PrivateEndpointConnectionListResult(msrest.serialization.Model): + """A list of private endpoint connections. + + :param value: Array of private endpoint connections. + :type value: list[~kusto_management_client.models.PrivateEndpointConnection] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PrivateEndpointConnection]'}, + } + + def __init__( + self, + **kwargs + ): + super(PrivateEndpointConnectionListResult, self).__init__(**kwargs) + self.value = kwargs.get('value', None) + + +class PrivateEndpointProperty(msrest.serialization.Model): + """Private endpoint which the connection belongs to. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource id of the private endpoint. + :vartype id: str + """ + + _validation = { + 'id': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(PrivateEndpointProperty, self).__init__(**kwargs) + self.id = None + + +class PrivateLinkResource(Resource): + """A private link resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Metadata pertaining to creation and last modification of the resource. + :vartype system_data: ~kusto_management_client.models.SystemData + :ivar group_id: The private link resource group id. + :vartype group_id: str + :ivar required_members: The private link resource required member names. + :vartype required_members: list[str] + :ivar required_zone_names: The private link resource required zone names. + :vartype required_zone_names: list[str] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'system_data': {'readonly': True}, + 'group_id': {'readonly': True}, + 'required_members': {'readonly': True}, + 'required_zone_names': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'system_data': {'key': 'systemData', 'type': 'SystemData'}, + 'group_id': {'key': 'properties.groupId', 'type': 'str'}, + 'required_members': {'key': 'properties.requiredMembers', 'type': '[str]'}, + 'required_zone_names': {'key': 'properties.requiredZoneNames', 'type': '[str]'}, + } + + def __init__( + self, + **kwargs + ): + super(PrivateLinkResource, self).__init__(**kwargs) + self.system_data = None + self.group_id = None + self.required_members = None + self.required_zone_names = None + + +class PrivateLinkResourceListResult(msrest.serialization.Model): + """A list of private link resources. + + :param value: Array of private link resources. + :type value: list[~kusto_management_client.models.PrivateLinkResource] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PrivateLinkResource]'}, + } + + def __init__( + self, + **kwargs + ): + super(PrivateLinkResourceListResult, self).__init__(**kwargs) + self.value = kwargs.get('value', None) + + +class PrivateLinkServiceConnectionStateProperty(msrest.serialization.Model): + """Connection State of the Private Endpoint Connection. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param status: The private link service connection status. + :type status: str + :param description: The private link service connection description. + :type description: str + :ivar actions_required: Any action that is required beyond basic workflow (approve/ reject/ + disconnect). + :vartype actions_required: str + """ + + _validation = { + 'actions_required': {'readonly': True}, + } + + _attribute_map = { + 'status': {'key': 'status', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'actions_required': {'key': 'actionsRequired', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(PrivateLinkServiceConnectionStateProperty, self).__init__(**kwargs) + self.status = kwargs.get('status', None) + self.description = kwargs.get('description', None) + self.actions_required = None + + class ProxyResource(Resource): """The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location. diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/models/_models_py3.py b/src/kusto/azext_kusto/vendored_sdks/kusto/models/_models_py3.py index 566302263e1..74ee2081ff7 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/models/_models_py3.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/models/_models_py3.py @@ -14,6 +14,27 @@ from ._kusto_management_client_enums import * +class AcceptedAudiences(msrest.serialization.Model): + """Represents an accepted audience trusted by the cluster. + + :param value: GUID or valid URL representing an accepted audience. + :type value: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[str] = None, + **kwargs + ): + super(AcceptedAudiences, self).__init__(**kwargs) + self.value = value + + class Resource(msrest.serialization.Model): """Common fields that are returned in the response for all Azure Resource Manager resources. @@ -149,6 +170,43 @@ def __init__( self.value = value +class AttachedDatabaseConfigurationsCheckNameRequest(msrest.serialization.Model): + """The result returned from a AttachedDatabaseConfigurations check name availability request. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :param name: Required. Attached database resource name. + :type name: str + :ivar type: Required. The type of resource, for instance + Microsoft.Kusto/clusters/attachedDatabaseConfigurations. Default value: + "Microsoft.Kusto/clusters/attachedDatabaseConfigurations". + :vartype type: str + """ + + _validation = { + 'name': {'required': True}, + 'type': {'required': True, 'constant': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + type = "Microsoft.Kusto/clusters/attachedDatabaseConfigurations" + + def __init__( + self, + *, + name: str, + **kwargs + ): + super(AttachedDatabaseConfigurationsCheckNameRequest, self).__init__(**kwargs) + self.name = name + + class AzureCapacity(msrest.serialization.Model): """Azure capacity definition. @@ -452,6 +510,8 @@ class Cluster(TrackedResource): :type location: str :param sku: Required. The SKU of the cluster. :type sku: ~kusto_management_client.models.AzureSku + :ivar system_data: Metadata pertaining to creation and last modification of the resource. + :vartype system_data: ~kusto_management_client.models.SystemData :param zones: The availability zones of the cluster. :type zones: list[str] :param identity: The identity of the cluster, if configured. @@ -492,8 +552,28 @@ class Cluster(TrackedResource): :param enable_double_encryption: A boolean value that indicates if double encryption is enabled. :type enable_double_encryption: bool + :param public_network_access: Public network access to the cluster is enabled by default. When + disabled, only private endpoint connection to the cluster is allowed. Possible values include: + "Enabled", "Disabled". Default value: "Enabled". + :type public_network_access: str or ~kusto_management_client.models.PublicNetworkAccess + :param allowed_ip_range_list: The list of ips in the format of CIDR allowed to connect to the + cluster. + :type allowed_ip_range_list: list[str] :param engine_type: The engine type. Possible values include: "V2", "V3". Default value: "V3". :type engine_type: str or ~kusto_management_client.models.EngineType + :param accepted_audiences: The cluster's accepted audiences. + :type accepted_audiences: list[~kusto_management_client.models.AcceptedAudiences] + :param enable_auto_stop: A boolean value that indicates if the cluster could be automatically + stopped (due to lack of data or no activity for many days). + :type enable_auto_stop: bool + :param restrict_outbound_network_access: Whether or not to restrict outbound network access. + Value is optional but if passed in, must be 'Enabled' or 'Disabled'. Possible values include: + "Enabled", "Disabled". + :type restrict_outbound_network_access: str or + ~kusto_management_client.models.ClusterNetworkAccessFlag + :param allowed_fqdn_list: List of allowed FQDNs(Fully Qualified Domain Name) for egress from + Cluster. + :type allowed_fqdn_list: list[str] """ _validation = { @@ -502,6 +582,7 @@ class Cluster(TrackedResource): 'type': {'readonly': True}, 'location': {'required': True}, 'sku': {'required': True}, + 'system_data': {'readonly': True}, 'etag': {'readonly': True}, 'state': {'readonly': True}, 'provisioning_state': {'readonly': True}, @@ -518,6 +599,7 @@ class Cluster(TrackedResource): 'tags': {'key': 'tags', 'type': '{str}'}, 'location': {'key': 'location', 'type': 'str'}, 'sku': {'key': 'sku', 'type': 'AzureSku'}, + 'system_data': {'key': 'systemData', 'type': 'SystemData'}, 'zones': {'key': 'zones', 'type': '[str]'}, 'identity': {'key': 'identity', 'type': 'Identity'}, 'etag': {'key': 'etag', 'type': 'str'}, @@ -535,7 +617,13 @@ class Cluster(TrackedResource): 'enable_purge': {'key': 'properties.enablePurge', 'type': 'bool'}, 'language_extensions': {'key': 'properties.languageExtensions', 'type': 'LanguageExtensionsList'}, 'enable_double_encryption': {'key': 'properties.enableDoubleEncryption', 'type': 'bool'}, + 'public_network_access': {'key': 'properties.publicNetworkAccess', 'type': 'str'}, + 'allowed_ip_range_list': {'key': 'properties.allowedIpRangeList', 'type': '[str]'}, 'engine_type': {'key': 'properties.engineType', 'type': 'str'}, + 'accepted_audiences': {'key': 'properties.acceptedAudiences', 'type': '[AcceptedAudiences]'}, + 'enable_auto_stop': {'key': 'properties.enableAutoStop', 'type': 'bool'}, + 'restrict_outbound_network_access': {'key': 'properties.restrictOutboundNetworkAccess', 'type': 'str'}, + 'allowed_fqdn_list': {'key': 'properties.allowedFqdnList', 'type': '[str]'}, } def __init__( @@ -554,11 +642,18 @@ def __init__( key_vault_properties: Optional["KeyVaultProperties"] = None, enable_purge: Optional[bool] = False, enable_double_encryption: Optional[bool] = False, + public_network_access: Optional[Union[str, "PublicNetworkAccess"]] = "Enabled", + allowed_ip_range_list: Optional[List[str]] = None, engine_type: Optional[Union[str, "EngineType"]] = "V3", + accepted_audiences: Optional[List["AcceptedAudiences"]] = None, + enable_auto_stop: Optional[bool] = True, + restrict_outbound_network_access: Optional[Union[str, "ClusterNetworkAccessFlag"]] = None, + allowed_fqdn_list: Optional[List[str]] = None, **kwargs ): super(Cluster, self).__init__(tags=tags, location=location, **kwargs) self.sku = sku + self.system_data = None self.zones = zones self.identity = identity self.etag = None @@ -576,7 +671,13 @@ def __init__( self.enable_purge = enable_purge self.language_extensions = None self.enable_double_encryption = enable_double_encryption + self.public_network_access = public_network_access + self.allowed_ip_range_list = allowed_ip_range_list self.engine_type = engine_type + self.accepted_audiences = accepted_audiences + self.enable_auto_stop = enable_auto_stop + self.restrict_outbound_network_access = restrict_outbound_network_access + self.allowed_fqdn_list = allowed_fqdn_list class ClusterCheckNameRequest(msrest.serialization.Model): @@ -821,8 +922,28 @@ class ClusterUpdate(Resource): :param enable_double_encryption: A boolean value that indicates if double encryption is enabled. :type enable_double_encryption: bool + :param public_network_access: Public network access to the cluster is enabled by default. When + disabled, only private endpoint connection to the cluster is allowed. Possible values include: + "Enabled", "Disabled". Default value: "Enabled". + :type public_network_access: str or ~kusto_management_client.models.PublicNetworkAccess + :param allowed_ip_range_list: The list of ips in the format of CIDR allowed to connect to the + cluster. + :type allowed_ip_range_list: list[str] :param engine_type: The engine type. Possible values include: "V2", "V3". Default value: "V3". :type engine_type: str or ~kusto_management_client.models.EngineType + :param accepted_audiences: The cluster's accepted audiences. + :type accepted_audiences: list[~kusto_management_client.models.AcceptedAudiences] + :param enable_auto_stop: A boolean value that indicates if the cluster could be automatically + stopped (due to lack of data or no activity for many days). + :type enable_auto_stop: bool + :param restrict_outbound_network_access: Whether or not to restrict outbound network access. + Value is optional but if passed in, must be 'Enabled' or 'Disabled'. Possible values include: + "Enabled", "Disabled". + :type restrict_outbound_network_access: str or + ~kusto_management_client.models.ClusterNetworkAccessFlag + :param allowed_fqdn_list: List of allowed FQDNs(Fully Qualified Domain Name) for egress from + Cluster. + :type allowed_fqdn_list: list[str] """ _validation = { @@ -859,7 +980,13 @@ class ClusterUpdate(Resource): 'enable_purge': {'key': 'properties.enablePurge', 'type': 'bool'}, 'language_extensions': {'key': 'properties.languageExtensions', 'type': 'LanguageExtensionsList'}, 'enable_double_encryption': {'key': 'properties.enableDoubleEncryption', 'type': 'bool'}, + 'public_network_access': {'key': 'properties.publicNetworkAccess', 'type': 'str'}, + 'allowed_ip_range_list': {'key': 'properties.allowedIpRangeList', 'type': '[str]'}, 'engine_type': {'key': 'properties.engineType', 'type': 'str'}, + 'accepted_audiences': {'key': 'properties.acceptedAudiences', 'type': '[AcceptedAudiences]'}, + 'enable_auto_stop': {'key': 'properties.enableAutoStop', 'type': 'bool'}, + 'restrict_outbound_network_access': {'key': 'properties.restrictOutboundNetworkAccess', 'type': 'str'}, + 'allowed_fqdn_list': {'key': 'properties.allowedFqdnList', 'type': '[str]'}, } def __init__( @@ -877,7 +1004,13 @@ def __init__( key_vault_properties: Optional["KeyVaultProperties"] = None, enable_purge: Optional[bool] = False, enable_double_encryption: Optional[bool] = False, + public_network_access: Optional[Union[str, "PublicNetworkAccess"]] = "Enabled", + allowed_ip_range_list: Optional[List[str]] = None, engine_type: Optional[Union[str, "EngineType"]] = "V3", + accepted_audiences: Optional[List["AcceptedAudiences"]] = None, + enable_auto_stop: Optional[bool] = True, + restrict_outbound_network_access: Optional[Union[str, "ClusterNetworkAccessFlag"]] = None, + allowed_fqdn_list: Optional[List[str]] = None, **kwargs ): super(ClusterUpdate, self).__init__(**kwargs) @@ -899,7 +1032,13 @@ def __init__( self.enable_purge = enable_purge self.language_extensions = None self.enable_double_encryption = enable_double_encryption + self.public_network_access = public_network_access + self.allowed_ip_range_list = allowed_ip_range_list self.engine_type = engine_type + self.accepted_audiences = accepted_audiences + self.enable_auto_stop = enable_auto_stop + self.restrict_outbound_network_access = restrict_outbound_network_access + self.allowed_fqdn_list = allowed_fqdn_list class ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties(msrest.serialization.Model): @@ -1466,6 +1605,53 @@ def __init__( self.findings = findings +class EndpointDependency(msrest.serialization.Model): + """A domain name that a service is reached at, including details of the current connection status. + + :param domain_name: The domain name of the dependency. + :type domain_name: str + :param endpoint_details: The ports used when connecting to DomainName. + :type endpoint_details: list[~kusto_management_client.models.EndpointDetail] + """ + + _attribute_map = { + 'domain_name': {'key': 'domainName', 'type': 'str'}, + 'endpoint_details': {'key': 'endpointDetails', 'type': '[EndpointDetail]'}, + } + + def __init__( + self, + *, + domain_name: Optional[str] = None, + endpoint_details: Optional[List["EndpointDetail"]] = None, + **kwargs + ): + super(EndpointDependency, self).__init__(**kwargs) + self.domain_name = domain_name + self.endpoint_details = endpoint_details + + +class EndpointDetail(msrest.serialization.Model): + """Current TCP connectivity information from the Kusto cluster to a single endpoint. + + :param port: The port an endpoint is connected to. + :type port: int + """ + + _attribute_map = { + 'port': {'key': 'port', 'type': 'int'}, + } + + def __init__( + self, + *, + port: Optional[int] = None, + **kwargs + ): + super(EndpointDetail, self).__init__(**kwargs) + self.port = port + + class EventGridDataConnection(DataConnection): """Class representing an Event Grid data connection. @@ -1880,23 +2066,16 @@ def __init__( class KeyVaultProperties(msrest.serialization.Model): """Properties of the key vault. - All required parameters must be populated in order to send to Azure. - - :param key_name: Required. The name of the key vault key. + :param key_name: The name of the key vault key. :type key_name: str :param key_version: The version of the key vault key. :type key_version: str - :param key_vault_uri: Required. The Uri of the key vault. + :param key_vault_uri: The Uri of the key vault. :type key_vault_uri: str :param user_identity: The user assigned identity (ARM resource id) that has access to the key. :type user_identity: str """ - _validation = { - 'key_name': {'required': True}, - 'key_vault_uri': {'required': True}, - } - _attribute_map = { 'key_name': {'key': 'keyName', 'type': 'str'}, 'key_version': {'key': 'keyVersion', 'type': 'str'}, @@ -1907,9 +2086,9 @@ class KeyVaultProperties(msrest.serialization.Model): def __init__( self, *, - key_name: str, - key_vault_uri: str, + key_name: Optional[str] = None, key_version: Optional[str] = None, + key_vault_uri: Optional[str] = None, user_identity: Optional[str] = None, **kwargs ): @@ -1984,6 +2163,132 @@ def __init__( self.value = value +class ManagedPrivateEndpoint(Resource): + """Class representing a managed private endpoint. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Metadata pertaining to creation and last modification of the resource. + :vartype system_data: ~kusto_management_client.models.SystemData + :param private_link_resource_id: The ARM resource ID of the resource for which the managed + private endpoint is created. + :type private_link_resource_id: str + :param private_link_resource_region: The region of the resource to which the managed private + endpoint is created. + :type private_link_resource_region: str + :param group_id: The groupId in which the managed private endpoint is created. + :type group_id: str + :param request_message: The user request message. + :type request_message: str + :ivar provisioning_state: The provisioned state of the resource. Possible values include: + "Running", "Creating", "Deleting", "Succeeded", "Failed", "Moving". + :vartype provisioning_state: str or ~kusto_management_client.models.ProvisioningState + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'system_data': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'system_data': {'key': 'systemData', 'type': 'SystemData'}, + 'private_link_resource_id': {'key': 'properties.privateLinkResourceId', 'type': 'str'}, + 'private_link_resource_region': {'key': 'properties.privateLinkResourceRegion', 'type': 'str'}, + 'group_id': {'key': 'properties.groupId', 'type': 'str'}, + 'request_message': {'key': 'properties.requestMessage', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + private_link_resource_id: Optional[str] = None, + private_link_resource_region: Optional[str] = None, + group_id: Optional[str] = None, + request_message: Optional[str] = None, + **kwargs + ): + super(ManagedPrivateEndpoint, self).__init__(**kwargs) + self.system_data = None + self.private_link_resource_id = private_link_resource_id + self.private_link_resource_region = private_link_resource_region + self.group_id = group_id + self.request_message = request_message + self.provisioning_state = None + + +class ManagedPrivateEndpointListResult(msrest.serialization.Model): + """The list managed private endpoints operation response. + + :param value: The list of managed private endpoints. + :type value: list[~kusto_management_client.models.ManagedPrivateEndpoint] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ManagedPrivateEndpoint]'}, + } + + def __init__( + self, + *, + value: Optional[List["ManagedPrivateEndpoint"]] = None, + **kwargs + ): + super(ManagedPrivateEndpointListResult, self).__init__(**kwargs) + self.value = value + + +class ManagedPrivateEndpointsCheckNameRequest(msrest.serialization.Model): + """The result returned from a managedPrivateEndpoints check name availability request. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :param name: Required. Managed private endpoint resource name. + :type name: str + :ivar type: Required. The type of resource, for instance + Microsoft.Kusto/clusters/managedPrivateEndpoints. Default value: + "Microsoft.Kusto/clusters/managedPrivateEndpoints". + :vartype type: str + """ + + _validation = { + 'name': {'required': True}, + 'type': {'required': True, 'constant': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + type = "Microsoft.Kusto/clusters/managedPrivateEndpoints" + + def __init__( + self, + *, + name: str, + **kwargs + ): + super(ManagedPrivateEndpointsCheckNameRequest, self).__init__(**kwargs) + self.name = name + + class Operation(msrest.serialization.Model): """A REST API operation. @@ -2201,6 +2506,317 @@ def __init__( self.maximum = maximum +class OutboundNetworkDependenciesEndpoint(Resource): + """Endpoints accessed for a common purpose that the Kusto Service Environment requires outbound network access to. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :param category: The type of service accessed by the Kusto Service Environment, e.g., Azure + Storage, Azure SQL Database, and Azure Active Directory. + :type category: str + :param endpoints: The endpoints that the Kusto Service Environment reaches the service at. + :type endpoints: list[~kusto_management_client.models.EndpointDependency] + :ivar provisioning_state: The provisioned state of the resource. Possible values include: + "Running", "Creating", "Deleting", "Succeeded", "Failed", "Moving". + :vartype provisioning_state: str or ~kusto_management_client.models.ProvisioningState + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'category': {'key': 'properties.category', 'type': 'str'}, + 'endpoints': {'key': 'properties.endpoints', 'type': '[EndpointDependency]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + category: Optional[str] = None, + endpoints: Optional[List["EndpointDependency"]] = None, + **kwargs + ): + super(OutboundNetworkDependenciesEndpoint, self).__init__(**kwargs) + self.etag = None + self.category = category + self.endpoints = endpoints + self.provisioning_state = None + + +class OutboundNetworkDependenciesEndpointListResult(msrest.serialization.Model): + """Collection of Outbound Environment Endpoints. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :param value: Required. Collection of resources. + :type value: list[~kusto_management_client.models.OutboundNetworkDependenciesEndpoint] + :ivar next_link: Link to next page of resources. + :vartype next_link: str + """ + + _validation = { + 'value': {'required': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[OutboundNetworkDependenciesEndpoint]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: List["OutboundNetworkDependenciesEndpoint"], + **kwargs + ): + super(OutboundNetworkDependenciesEndpointListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class PrivateEndpointConnection(Resource): + """A private endpoint connection. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Metadata pertaining to creation and last modification of the resource. + :vartype system_data: ~kusto_management_client.models.SystemData + :ivar private_endpoint: Private endpoint which the connection belongs to. + :vartype private_endpoint: ~kusto_management_client.models.PrivateEndpointProperty + :param private_link_service_connection_state: Connection State of the Private Endpoint + Connection. + :type private_link_service_connection_state: + ~kusto_management_client.models.PrivateLinkServiceConnectionStateProperty + :ivar group_id: Group id of the private endpoint. + :vartype group_id: str + :ivar provisioning_state: Provisioning state of the private endpoint. + :vartype provisioning_state: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'system_data': {'readonly': True}, + 'private_endpoint': {'readonly': True}, + 'group_id': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'system_data': {'key': 'systemData', 'type': 'SystemData'}, + 'private_endpoint': {'key': 'properties.privateEndpoint', 'type': 'PrivateEndpointProperty'}, + 'private_link_service_connection_state': {'key': 'properties.privateLinkServiceConnectionState', 'type': 'PrivateLinkServiceConnectionStateProperty'}, + 'group_id': {'key': 'properties.groupId', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + private_link_service_connection_state: Optional["PrivateLinkServiceConnectionStateProperty"] = None, + **kwargs + ): + super(PrivateEndpointConnection, self).__init__(**kwargs) + self.system_data = None + self.private_endpoint = None + self.private_link_service_connection_state = private_link_service_connection_state + self.group_id = None + self.provisioning_state = None + + +class PrivateEndpointConnectionListResult(msrest.serialization.Model): + """A list of private endpoint connections. + + :param value: Array of private endpoint connections. + :type value: list[~kusto_management_client.models.PrivateEndpointConnection] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PrivateEndpointConnection]'}, + } + + def __init__( + self, + *, + value: Optional[List["PrivateEndpointConnection"]] = None, + **kwargs + ): + super(PrivateEndpointConnectionListResult, self).__init__(**kwargs) + self.value = value + + +class PrivateEndpointProperty(msrest.serialization.Model): + """Private endpoint which the connection belongs to. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource id of the private endpoint. + :vartype id: str + """ + + _validation = { + 'id': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(PrivateEndpointProperty, self).__init__(**kwargs) + self.id = None + + +class PrivateLinkResource(Resource): + """A private link resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Metadata pertaining to creation and last modification of the resource. + :vartype system_data: ~kusto_management_client.models.SystemData + :ivar group_id: The private link resource group id. + :vartype group_id: str + :ivar required_members: The private link resource required member names. + :vartype required_members: list[str] + :ivar required_zone_names: The private link resource required zone names. + :vartype required_zone_names: list[str] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'system_data': {'readonly': True}, + 'group_id': {'readonly': True}, + 'required_members': {'readonly': True}, + 'required_zone_names': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'system_data': {'key': 'systemData', 'type': 'SystemData'}, + 'group_id': {'key': 'properties.groupId', 'type': 'str'}, + 'required_members': {'key': 'properties.requiredMembers', 'type': '[str]'}, + 'required_zone_names': {'key': 'properties.requiredZoneNames', 'type': '[str]'}, + } + + def __init__( + self, + **kwargs + ): + super(PrivateLinkResource, self).__init__(**kwargs) + self.system_data = None + self.group_id = None + self.required_members = None + self.required_zone_names = None + + +class PrivateLinkResourceListResult(msrest.serialization.Model): + """A list of private link resources. + + :param value: Array of private link resources. + :type value: list[~kusto_management_client.models.PrivateLinkResource] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PrivateLinkResource]'}, + } + + def __init__( + self, + *, + value: Optional[List["PrivateLinkResource"]] = None, + **kwargs + ): + super(PrivateLinkResourceListResult, self).__init__(**kwargs) + self.value = value + + +class PrivateLinkServiceConnectionStateProperty(msrest.serialization.Model): + """Connection State of the Private Endpoint Connection. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param status: The private link service connection status. + :type status: str + :param description: The private link service connection description. + :type description: str + :ivar actions_required: Any action that is required beyond basic workflow (approve/ reject/ + disconnect). + :vartype actions_required: str + """ + + _validation = { + 'actions_required': {'readonly': True}, + } + + _attribute_map = { + 'status': {'key': 'status', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'actions_required': {'key': 'actionsRequired', 'type': 'str'}, + } + + def __init__( + self, + *, + status: Optional[str] = None, + description: Optional[str] = None, + **kwargs + ): + super(PrivateLinkServiceConnectionStateProperty, self).__init__(**kwargs) + self.status = status + self.description = description + self.actions_required = None + + class ProxyResource(Resource): """The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location. diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/__init__.py b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/__init__.py index 27917c1aa7d..9547038985c 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/__init__.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/__init__.py @@ -9,9 +9,12 @@ from ._clusters_operations import ClustersOperations from ._cluster_principal_assignments_operations import ClusterPrincipalAssignmentsOperations from ._databases_operations import DatabasesOperations +from ._attached_database_configurations_operations import AttachedDatabaseConfigurationsOperations +from ._managed_private_endpoints_operations import ManagedPrivateEndpointsOperations from ._database_principal_assignments_operations import DatabasePrincipalAssignmentsOperations from ._scripts_operations import ScriptsOperations -from ._attached_database_configurations_operations import AttachedDatabaseConfigurationsOperations +from ._private_endpoint_connections_operations import PrivateEndpointConnectionsOperations +from ._private_link_resources_operations import PrivateLinkResourcesOperations from ._data_connections_operations import DataConnectionsOperations from ._operations import Operations from ._operations_results_operations import OperationsResultsOperations @@ -20,9 +23,12 @@ 'ClustersOperations', 'ClusterPrincipalAssignmentsOperations', 'DatabasesOperations', + 'AttachedDatabaseConfigurationsOperations', + 'ManagedPrivateEndpointsOperations', 'DatabasePrincipalAssignmentsOperations', 'ScriptsOperations', - 'AttachedDatabaseConfigurationsOperations', + 'PrivateEndpointConnectionsOperations', + 'PrivateLinkResourcesOperations', 'DataConnectionsOperations', 'Operations', 'OperationsResultsOperations', diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_attached_database_configurations_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_attached_database_configurations_operations.py index 2c113f2dc9c..21a4bf7ecd6 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_attached_database_configurations_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_attached_database_configurations_operations.py @@ -47,6 +47,74 @@ def __init__(self, client, config, serializer, deserializer): self._deserialize = deserializer self._config = config + def check_name_availability( + self, + resource_group_name, # type: str + cluster_name, # type: str + resource_name, # type: "models.AttachedDatabaseConfigurationsCheckNameRequest" + **kwargs # type: Any + ): + # type: (...) -> "models.CheckNameResult" + """Checks that the attached database configuration resource name is valid and is not already in + use. + + :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 resource_name: The name of the resource. + :type resource_name: ~kusto_management_client.models.AttachedDatabaseConfigurationsCheckNameRequest + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CheckNameResult, or the result of cls(response) + :rtype: ~kusto_management_client.models.CheckNameResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.CheckNameResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.check_name_availability.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(resource_name, 'AttachedDatabaseConfigurationsCheckNameRequest') + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CheckNameResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + check_name_availability.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/attachedDatabaseConfigurationCheckNameAvailability'} # type: ignore + def list_by_cluster( self, resource_group_name, # type: str @@ -70,7 +138,7 @@ def list_by_cluster( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -148,7 +216,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -199,7 +267,7 @@ def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -338,7 +406,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_cluster_principal_assignments_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_cluster_principal_assignments_operations.py index ad547ede475..4648484229f 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_cluster_principal_assignments_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_cluster_principal_assignments_operations.py @@ -73,7 +73,7 @@ def check_name_availability( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -140,7 +140,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -191,7 +191,7 @@ def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -328,7 +328,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -455,7 +455,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_clusters_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_clusters_operations.py index 7aaa720e638..8fcf6eb7504 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_clusters_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_clusters_operations.py @@ -70,7 +70,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -121,7 +121,7 @@ def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -156,7 +156,10 @@ def _create_or_update_initial( if response.status_code not in [200, 201]: map_error(status_code=response.status_code, response=response, error_map=error_map) - raise HttpResponseError(response=response, error_format=ARMErrorFormat) + #import jsonpickle + #data = jsonpickle.encode(response) + #print(data) + #raise HttpResponseError(response=response, error_format=ARMErrorFormat) if response.status_code == 200: deserialized = self._deserialize('Cluster', pipeline_response) @@ -267,7 +270,7 @@ def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -407,7 +410,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -517,7 +520,7 @@ def _stop_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -627,7 +630,7 @@ def _start_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -749,7 +752,7 @@ def list_follower_databases( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -814,7 +817,7 @@ def _detach_follower_databases_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -933,7 +936,7 @@ def _diagnose_virtual_network_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -1060,7 +1063,7 @@ def list_by_resource_group( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -1128,7 +1131,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -1195,7 +1198,7 @@ def list_skus( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -1268,7 +1271,7 @@ def check_name_availability( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1331,7 +1334,7 @@ def list_skus_by_resource( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -1383,6 +1386,81 @@ def get_next(next_link=None): ) list_skus_by_resource.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/skus'} # type: ignore + def list_outbound_network_dependencies_endpoints( + self, + resource_group_name, # type: str + cluster_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> Iterable["models.OutboundNetworkDependenciesEndpointListResult"] + """Gets the network endpoints of all outbound dependencies of a Kusto cluster. + + :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 + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either OutboundNetworkDependenciesEndpointListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~kusto_management_client.models.OutboundNetworkDependenciesEndpointListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.OutboundNetworkDependenciesEndpointListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_outbound_network_dependencies_endpoints.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('OutboundNetworkDependenciesEndpointListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list_outbound_network_dependencies_endpoints.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/outboundNetworkDependenciesEndpoints'} # type: ignore + def list_language_extensions( self, resource_group_name, # type: str @@ -1406,7 +1484,7 @@ def list_language_extensions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -1471,7 +1549,7 @@ def _add_language_extensions_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1591,7 +1669,7 @@ def _remove_language_extensions_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_data_connections_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_data_connections_operations.py index 8942beffdcd..1dd8407015d 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_data_connections_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_data_connections_operations.py @@ -73,7 +73,7 @@ def list_by_database( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -140,7 +140,7 @@ def _data_connection_validation_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -290,7 +290,7 @@ def check_name_availability( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -361,7 +361,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -414,7 +414,7 @@ def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -561,7 +561,7 @@ def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -707,7 +707,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_database_principal_assignments_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_database_principal_assignments_operations.py index 282d5654892..df09c981234 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_database_principal_assignments_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_database_principal_assignments_operations.py @@ -76,7 +76,7 @@ def check_name_availability( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -147,7 +147,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -200,7 +200,7 @@ def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -343,7 +343,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -479,7 +479,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_databases_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_databases_operations.py index ccbac6f4564..507700d3683 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_databases_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_databases_operations.py @@ -55,7 +55,7 @@ def check_name_availability( **kwargs # type: Any ): # type: (...) -> "models.CheckNameResult" - """Checks that the database name is valid and is not already in use. + """Checks that the databases resource name is valid and is not already in use. :param resource_group_name: The name of the resource group containing the Kusto cluster. :type resource_group_name: str @@ -73,7 +73,7 @@ def check_name_availability( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -137,7 +137,7 @@ def list_by_cluster( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -215,7 +215,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -266,7 +266,7 @@ def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -406,7 +406,7 @@ def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -545,7 +545,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -675,7 +675,7 @@ def list_principals( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -757,7 +757,7 @@ def add_principals( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -828,7 +828,7 @@ def remove_principals( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_managed_private_endpoints_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_managed_private_endpoints_operations.py new file mode 100644 index 00000000000..c4cc2db6820 --- /dev/null +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_managed_private_endpoints_operations.py @@ -0,0 +1,647 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +class ManagedPrivateEndpointsOperations(object): + """ManagedPrivateEndpointsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~kusto_management_client.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def check_name_availability( + self, + resource_group_name, # type: str + cluster_name, # type: str + resource_name, # type: "models.ManagedPrivateEndpointsCheckNameRequest" + **kwargs # type: Any + ): + # type: (...) -> "models.CheckNameResult" + """Checks that the managed private endpoints resource name is valid and is not already in use. + + :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 resource_name: The name of the resource. + :type resource_name: ~kusto_management_client.models.ManagedPrivateEndpointsCheckNameRequest + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CheckNameResult, or the result of cls(response) + :rtype: ~kusto_management_client.models.CheckNameResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.CheckNameResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.check_name_availability.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(resource_name, 'ManagedPrivateEndpointsCheckNameRequest') + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CheckNameResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + check_name_availability.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpointsCheckNameAvailability'} # type: ignore + + def list( + self, + resource_group_name, # type: str + cluster_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> Iterable["models.ManagedPrivateEndpointListResult"] + """Returns the list of managed private endpoints. + + :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 + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ManagedPrivateEndpointListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~kusto_management_client.models.ManagedPrivateEndpointListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.ManagedPrivateEndpointListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('ManagedPrivateEndpointListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints'} # type: ignore + + def get( + self, + resource_group_name, # type: str + cluster_name, # type: str + managed_private_endpoint_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "models.ManagedPrivateEndpoint" + """Gets a managed private endpoint. + + :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 managed_private_endpoint_name: The name of the managed private endpoint. + :type managed_private_endpoint_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ManagedPrivateEndpoint, or the result of cls(response) + :rtype: ~kusto_management_client.models.ManagedPrivateEndpoint + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.ManagedPrivateEndpoint"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore + + def _create_or_update_initial( + self, + resource_group_name, # type: str + cluster_name, # type: str + managed_private_endpoint_name, # type: str + parameters, # type: "models.ManagedPrivateEndpoint" + **kwargs # type: Any + ): + # type: (...) -> "models.ManagedPrivateEndpoint" + cls = kwargs.pop('cls', None) # type: ClsType["models.ManagedPrivateEndpoint"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_or_update_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(parameters, 'ManagedPrivateEndpoint') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 201, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore + + def begin_create_or_update( + self, + resource_group_name, # type: str + cluster_name, # type: str + managed_private_endpoint_name, # type: str + parameters, # type: "models.ManagedPrivateEndpoint" + **kwargs # type: Any + ): + # type: (...) -> LROPoller["models.ManagedPrivateEndpoint"] + """Creates a managed private endpoint. + + :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 managed_private_endpoint_name: The name of the managed private endpoint. + :type managed_private_endpoint_name: str + :param parameters: The managed private endpoint parameters. + :type parameters: ~kusto_management_client.models.ManagedPrivateEndpoint + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either ManagedPrivateEndpoint or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~kusto_management_client.models.ManagedPrivateEndpoint] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.ManagedPrivateEndpoint"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + managed_private_endpoint_name=managed_private_endpoint_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore + + def _update_initial( + self, + resource_group_name, # type: str + cluster_name, # type: str + managed_private_endpoint_name, # type: str + parameters, # type: "models.ManagedPrivateEndpoint" + **kwargs # type: Any + ): + # type: (...) -> "models.ManagedPrivateEndpoint" + cls = kwargs.pop('cls', None) # type: ClsType["models.ManagedPrivateEndpoint"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._update_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(parameters, 'ManagedPrivateEndpoint') + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore + + def begin_update( + self, + resource_group_name, # type: str + cluster_name, # type: str + managed_private_endpoint_name, # type: str + parameters, # type: "models.ManagedPrivateEndpoint" + **kwargs # type: Any + ): + # type: (...) -> LROPoller["models.ManagedPrivateEndpoint"] + """Updates a managed private endpoint. + + :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 managed_private_endpoint_name: The name of the managed private endpoint. + :type managed_private_endpoint_name: str + :param parameters: The managed private endpoint parameters. + :type parameters: ~kusto_management_client.models.ManagedPrivateEndpoint + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either ManagedPrivateEndpoint or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~kusto_management_client.models.ManagedPrivateEndpoint] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.ManagedPrivateEndpoint"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._update_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + managed_private_endpoint_name=managed_private_endpoint_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('ManagedPrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore + + def _delete_initial( + self, + resource_group_name, # type: str + cluster_name, # type: str + managed_private_endpoint_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + # Construct URL + url = self._delete_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore + + def begin_delete( + self, + resource_group_name, # type: str + cluster_name, # type: str + managed_private_endpoint_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Deletes a managed private endpoint. + + :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 managed_private_endpoint_name: The name of the managed private endpoint. + :type managed_private_endpoint_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + managed_private_endpoint_name=managed_private_endpoint_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'managedPrivateEndpointName': self._serialize.url("managed_private_endpoint_name", managed_private_endpoint_name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}'} # type: ignore diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_operations.py index 47a7ee00737..60dbca1174d 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_operations.py @@ -62,7 +62,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_operations_results_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_operations_results_operations.py index fc5880674df..7327eb8ee49 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_operations_results_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_operations_results_operations.py @@ -67,7 +67,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_private_endpoint_connections_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_private_endpoint_connections_operations.py new file mode 100644 index 00000000000..d2bcd17a32c --- /dev/null +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_private_endpoint_connections_operations.py @@ -0,0 +1,440 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +class PrivateEndpointConnectionsOperations(object): + """PrivateEndpointConnectionsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~kusto_management_client.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def list( + self, + resource_group_name, # type: str + cluster_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> Iterable["models.PrivateEndpointConnectionListResult"] + """Returns the list of private endpoint connections. + + :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 + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateEndpointConnectionListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~kusto_management_client.models.PrivateEndpointConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('PrivateEndpointConnectionListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateEndpointConnections'} # type: ignore + + def get( + self, + resource_group_name, # type: str + cluster_name, # type: str + private_endpoint_connection_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "models.PrivateEndpointConnection" + """Gets a private endpoint connection. + + :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 private_endpoint_connection_name: The name of the private endpoint connection. + :type private_endpoint_connection_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateEndpointConnection, or the result of cls(response) + :rtype: ~kusto_management_client.models.PrivateEndpointConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + + def _create_or_update_initial( + self, + resource_group_name, # type: str + cluster_name, # type: str + private_endpoint_connection_name, # type: str + parameters, # type: "models.PrivateEndpointConnection" + **kwargs # type: Any + ): + # type: (...) -> "models.PrivateEndpointConnection" + cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_or_update_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(parameters, 'PrivateEndpointConnection') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + + def begin_create_or_update( + self, + resource_group_name, # type: str + cluster_name, # type: str + private_endpoint_connection_name, # type: str + parameters, # type: "models.PrivateEndpointConnection" + **kwargs # type: Any + ): + # type: (...) -> LROPoller["models.PrivateEndpointConnection"] + """Approve or reject a private endpoint connection with a given name. + + :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 private_endpoint_connection_name: The name of the private endpoint connection. + :type private_endpoint_connection_name: str + :param parameters: + :type parameters: ~kusto_management_client.models.PrivateEndpointConnection + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either PrivateEndpointConnection or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~kusto_management_client.models.PrivateEndpointConnection] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + private_endpoint_connection_name=private_endpoint_connection_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + + def _delete_initial( + self, + resource_group_name, # type: str + cluster_name, # type: str + private_endpoint_connection_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + # Construct URL + url = self._delete_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + + def begin_delete( + self, + resource_group_name, # type: str + cluster_name, # type: str + private_endpoint_connection_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Deletes a private endpoint connection with a given name. + + :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 private_endpoint_connection_name: The name of the private endpoint connection. + :type private_endpoint_connection_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + private_endpoint_connection_name=private_endpoint_connection_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_private_link_resources_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_private_link_resources_operations.py new file mode 100644 index 00000000000..3e820c197e0 --- /dev/null +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_private_link_resources_operations.py @@ -0,0 +1,184 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +class PrivateLinkResourcesOperations(object): + """PrivateLinkResourcesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~kusto_management_client.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def list( + self, + resource_group_name, # type: str + cluster_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> Iterable["models.PrivateLinkResourceListResult"] + """Returns the list of private link resources. + + :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 + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateLinkResourceListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~kusto_management_client.models.PrivateLinkResourceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateLinkResourceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('PrivateLinkResourceListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateLinkResources'} # type: ignore + + def get( + self, + resource_group_name, # type: str + cluster_name, # type: str + private_link_resource_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "models.PrivateLinkResource" + """Gets a private link resource. + + :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 private_link_resource_name: The name of the private link resource. + :type private_link_resource_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateLinkResource, or the result of cls(response) + :rtype: ~kusto_management_client.models.PrivateLinkResource + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateLinkResource"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-08-27" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'privateLinkResourceName': self._serialize.url("private_link_resource_name", private_link_resource_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateLinkResource', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/privateLinkResources/{privateLinkResourceName}'} # type: ignore diff --git a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_scripts_operations.py b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_scripts_operations.py index 7f829210188..6b80bdfb171 100644 --- a/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_scripts_operations.py +++ b/src/kusto/azext_kusto/vendored_sdks/kusto/operations/_scripts_operations.py @@ -73,7 +73,7 @@ def list_by_database( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" def prepare_request(next_link=None): @@ -155,7 +155,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -208,7 +208,7 @@ def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -355,7 +355,7 @@ def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -498,7 +498,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" accept = "application/json" # Construct URL @@ -637,7 +637,7 @@ def check_name_availability( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-01-01" + api_version = "2021-08-27" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/src/kusto/gen.zip b/src/kusto/gen.zip index d27a7e6f998b7fee572522420bfb5795eff3b565..8b3f0df9884bc62d3e76a1157e214d8f2b36533b 100644 GIT binary patch delta 4462 zcmcgweN0=|6~~6~X^0tMCxFe1ffy1$8Q=hTpsMVbjCISy}k;!RC$XyT2MV z!$b4_l3|G#sA;B)rui5r$pzUH`7m452k#X1fXPw`H5LN8Eq``Vkq94W!e^pG6gSNb zu%dLKX~N|pTuol(*VhE+tX}XI=jM0CBp#WK!uN`usA1I^jZH>a`Ya>Gd0`IC#E2pu z*~3wj5hjes$@hx)m|(fG96l-`(R>d0tECfW_kP`U6cU6_c3VT)db9j#+2EG&hP}?L z4J6?5ks_p34bI9Icv$Oz_5DSt?=X6*VWSfFeX-rUT-c~0pTa}9S9}Nh9HqI<4H6?t z&}BhubC7$IrB;}8Ffd$O2c5Zl;E5v-$p^vfJgYgA18?UR-kQi$#NRo~mG`BwV#U9P zt{O%CO3i>G|Eb1;-vuH4e`uTbzCsZ1E_3^T1xy5hVH90IJU2Et!f4|b;={^=S)tMDuCZRY1{YsAz4+mIgAcA)-d*yt}- z-V^oeGTI9(z*?9CH_zrN%V;mGN*a%Qu_jkv2j8eaxAw<+lc@zhJ9rJnnRAahyCX4C zVuT~^Ho`rJK6zSg5TXj`-Uc5OHC#XTJjJ1$4F?5wk&>7mE*#}qPBI3i@Akt_+-$IueXb9i(#)!z-DOlX zMQ_3k#2^WsM^A#&Qv+lEDMPQhdDNr}@c77m<=fhp5B`=FLgNCGjgkUp12Tf>AejmL z;fgY)xJe3e0f|$Xkc1deBjsQ{mIv>)T&`A0f#g(HASs0wG*W;>i%sr0)@bsbVkDv; zCjz0NO7L156WT~3%tRS3%y2Zzh|o1=gP$MGhxOK+l8~;dmXB#<2&`?EI#O>o<~A%W zk;oFxB{ zf+%Y8TG!tV0lw^hZ1^ zz)B1mrX*^T5*Z@G(-bbJc2^uFbxd>-B0nXOVJ5;LwJ0O7e7M~e^ao&dRDe5QC6T3Z zxoNZzPd5&4oc~aH|7I+Xh-;_$8D1i3ik{hS>Js=aeg(c9?^Mje3ldKGaXCCutJszQ zaM57~>y!oJlQilXfzMf+e44Jy)&z^ZIaP*LagRklH4{_>`E&L;UBxEfp5Lbn7O*dT zc04`Nh`wk{@+n!HUI8w8>g(oJ4hw0V6VftI3ejlY5@Y17O;aQ_MJ+|)i`W_1>@Bcm zm|~TzC{f6QWW$7OGQv-SDQ+*oe2L1Hn}ZL?^M^4pxl>q;a3f;%rLvRgdr_poAFw+Y zVkoBMJlemJ7U2p;7##AhXjI@A881BO?S%DXRrd5Ab5NS7RS0JnxBY?h8Q5L)O*6Zp z3hRj~S4L3989r`6x-Wx+68M|OX%T%o285-CPF@N9^6bLpeu!C>IlOIL3RdGPJH6QWC_ngO-;YsB~jU@E6+fj&vdWU{0lHkP5cqUhNv|Fbt9GTri zH%PcUZLi-xcW5gGLMfbBrD+<@Bt;7DF85$wd?E9EKCQ?D%0Wc@pOR00}wUlC)+e9ldlcx*6~!)s?ia{SsOAg1}Pg{g^rby*}6{h?pBt@3ADwZKar;W z>6{alT*}~GN+dIQr^OIHxg5lp%Ga)}r{0PR)qDHO7pkY;Qf`#+;`Wo(tiMHa$aKq delta 1750 zcmah~drVtZ7{9lrJj$c3;bjNyEnr7!DH|{%j8z_Gvhpe&f@QE#N);SZTFPKREgi$~ zG7-OMmavV?kp(m3BPaglbpEr9#7C^g#Ti*N#uyVcGbUtli+Ikty|i;CwmJ9yzTfvd z-}m*L@0`wjD%yHo^y-SjGqG-CCpP|)=op5KB6w%5`29QOBGf2uiH|XG-sfQ@(ZYkD z6YF?Tkfcl?E}fL)IB0gTZE63ailx+H2Kx z8Yyl#$Hf+tRe+A%bWrBrg?*`U&@9VcM`Ge94Fp;6jva9-{ z`KF-yt>tAnbY`BI9!ER$JQIUdGd*UUd0f-VrWma3*nQkXf_oBMvMsjB%k7G0(q8FN$o1n$jhCBKwRP=QT((S%tdcAoZ zy=bmKN5CK*{1vRG1h_R;N2DR#M!sCommand groups in `az kusto` extension |CLI Command Group|Group Swagger name|Commands| |---------|------------|--------| +|az kusto attached-database-configuration|AttachedDatabaseConfigurations|[commands](#CommandsInAttachedDatabaseConfigurations)| |az kusto cluster|Clusters|[commands](#CommandsInClusters)| |az kusto cluster-principal-assignment|ClusterPrincipalAssignments|[commands](#CommandsInClusterPrincipalAssignments)| +|az kusto data-connection|DataConnections|[commands](#CommandsInDataConnections)| |az kusto database|Databases|[commands](#CommandsInDatabases)| |az kusto database-principal-assignment|DatabasePrincipalAssignments|[commands](#CommandsInDatabasePrincipalAssignments)| -|az kusto script|Scripts|[commands](#CommandsInScripts)| -|az kusto attached-database-configuration|AttachedDatabaseConfigurations|[commands](#CommandsInAttachedDatabaseConfigurations)| -|az kusto data-connection|DataConnections|[commands](#CommandsInDataConnections)| +|az kusto managed-private-endpoint|ManagedPrivateEndpoints|[commands](#CommandsInManagedPrivateEndpoints)| |az kusto operation-result|OperationsResults|[commands](#CommandsInOperationsResults)| +|az kusto private-endpoint-connection|PrivateEndpointConnections|[commands](#CommandsInPrivateEndpointConnections)| +|az kusto private-link-resource|PrivateLinkResources|[commands](#CommandsInPrivateLinkResources)| +|az kusto script|Scripts|[commands](#CommandsInScripts)| ## COMMANDS ### Commands in `az kusto attached-database-configuration` group @@ -42,6 +45,7 @@ |[az kusto cluster diagnose-virtual-network](#ClustersDiagnoseVirtualNetwork)|DiagnoseVirtualNetwork|[Parameters](#ParametersClustersDiagnoseVirtualNetwork)|[Example](#ExamplesClustersDiagnoseVirtualNetwork)| |[az kusto cluster list-follower-database](#ClustersListFollowerDatabases)|ListFollowerDatabases|[Parameters](#ParametersClustersListFollowerDatabases)|[Example](#ExamplesClustersListFollowerDatabases)| |[az kusto cluster list-language-extension](#ClustersListLanguageExtensions)|ListLanguageExtensions|[Parameters](#ParametersClustersListLanguageExtensions)|[Example](#ExamplesClustersListLanguageExtensions)| +|[az kusto cluster list-outbound-network-dependency-endpoint](#ClustersListOutboundNetworkDependenciesEndpoints)|ListOutboundNetworkDependenciesEndpoints|[Parameters](#ParametersClustersListOutboundNetworkDependenciesEndpoints)|[Example](#ExamplesClustersListOutboundNetworkDependenciesEndpoints)| |[az kusto cluster list-sku](#ClustersListSkusByResource)|ListSkusByResource|[Parameters](#ParametersClustersListSkusByResource)|[Example](#ExamplesClustersListSkusByResource)| |[az kusto cluster list-sku](#ClustersListSkus)|ListSkus|[Parameters](#ParametersClustersListSkus)|[Example](#ExamplesClustersListSkus)| |[az kusto cluster remove-language-extension](#ClustersRemoveLanguageExtensions)|RemoveLanguageExtensions|[Parameters](#ParametersClustersRemoveLanguageExtensions)|[Example](#ExamplesClustersRemoveLanguageExtensions)| @@ -94,11 +98,35 @@ |[az kusto database-principal-assignment update](#DatabasePrincipalAssignmentsCreateOrUpdate#Update)|CreateOrUpdate#Update|[Parameters](#ParametersDatabasePrincipalAssignmentsCreateOrUpdate#Update)|Not Found| |[az kusto database-principal-assignment delete](#DatabasePrincipalAssignmentsDelete)|Delete|[Parameters](#ParametersDatabasePrincipalAssignmentsDelete)|[Example](#ExamplesDatabasePrincipalAssignmentsDelete)| +### Commands in `az kusto managed-private-endpoint` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az kusto managed-private-endpoint list](#ManagedPrivateEndpointsList)|List|[Parameters](#ParametersManagedPrivateEndpointsList)|[Example](#ExamplesManagedPrivateEndpointsList)| +|[az kusto managed-private-endpoint show](#ManagedPrivateEndpointsGet)|Get|[Parameters](#ParametersManagedPrivateEndpointsGet)|[Example](#ExamplesManagedPrivateEndpointsGet)| +|[az kusto managed-private-endpoint create](#ManagedPrivateEndpointsCreateOrUpdate#Create)|CreateOrUpdate#Create|[Parameters](#ParametersManagedPrivateEndpointsCreateOrUpdate#Create)|[Example](#ExamplesManagedPrivateEndpointsCreateOrUpdate#Create)| +|[az kusto managed-private-endpoint update](#ManagedPrivateEndpointsUpdate)|Update|[Parameters](#ParametersManagedPrivateEndpointsUpdate)|[Example](#ExamplesManagedPrivateEndpointsUpdate)| +|[az kusto managed-private-endpoint delete](#ManagedPrivateEndpointsDelete)|Delete|[Parameters](#ParametersManagedPrivateEndpointsDelete)|[Example](#ExamplesManagedPrivateEndpointsDelete)| + ### Commands in `az kusto operation-result` group |CLI Command|Operation Swagger name|Parameters|Examples| |---------|------------|--------|-----------| |[az kusto operation-result show](#OperationsResultsGet)|Get|[Parameters](#ParametersOperationsResultsGet)|[Example](#ExamplesOperationsResultsGet)| +### Commands in `az kusto private-endpoint-connection` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az kusto private-endpoint-connection list](#PrivateEndpointConnectionsList)|List|[Parameters](#ParametersPrivateEndpointConnectionsList)|[Example](#ExamplesPrivateEndpointConnectionsList)| +|[az kusto private-endpoint-connection show](#PrivateEndpointConnectionsGet)|Get|[Parameters](#ParametersPrivateEndpointConnectionsGet)|[Example](#ExamplesPrivateEndpointConnectionsGet)| +|[az kusto private-endpoint-connection create](#PrivateEndpointConnectionsCreateOrUpdate#Create)|CreateOrUpdate#Create|[Parameters](#ParametersPrivateEndpointConnectionsCreateOrUpdate#Create)|[Example](#ExamplesPrivateEndpointConnectionsCreateOrUpdate#Create)| +|[az kusto private-endpoint-connection update](#PrivateEndpointConnectionsCreateOrUpdate#Update)|CreateOrUpdate#Update|[Parameters](#ParametersPrivateEndpointConnectionsCreateOrUpdate#Update)|Not Found| +|[az kusto private-endpoint-connection delete](#PrivateEndpointConnectionsDelete)|Delete|[Parameters](#ParametersPrivateEndpointConnectionsDelete)|[Example](#ExamplesPrivateEndpointConnectionsDelete)| + +### Commands in `az kusto private-link-resource` group +|CLI Command|Operation Swagger name|Parameters|Examples| +|---------|------------|--------|-----------| +|[az kusto private-link-resource list](#PrivateLinkResourcesList)|List|[Parameters](#ParametersPrivateLinkResourcesList)|[Example](#ExamplesPrivateLinkResourcesList)| +|[az kusto private-link-resource show](#PrivateLinkResourcesGet)|Get|[Parameters](#ParametersPrivateLinkResourcesGet)|[Example](#ExamplesPrivateLinkResourcesGet)| + ### Commands in `az kusto script` group |CLI Command|Operation Swagger name|Parameters|Examples| |---------|------------|--------|-----------| @@ -110,7 +138,6 @@ ## COMMAND DETAILS - ### group `az kusto attached-database-configuration` #### Command `az kusto attached-database-configuration list` @@ -164,6 +191,7 @@ materialized-views-to-include="MaterializedViewTable1" tables-to-exclude="Table2 #### Command `az kusto attached-database-configuration update` + ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| @@ -211,6 +239,7 @@ az kusto cluster list ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| + #### Command `az kusto cluster show` ##### Example @@ -228,18 +257,19 @@ az kusto cluster show --name "kustoclusterrptest4" --resource-group "kustorptest ##### Example ``` az kusto cluster create --name "kustoclusterrptest4" --type "SystemAssigned" --location "westus" \ ---enable-double-encryption false --enable-purge true --enable-streaming-ingest true --sku name="Standard_L8s" \ -capacity=2 tier="Standard" --resource-group "kustorptest" +--allowed-ip-range-list "0.0.0.0/0" --enable-auto-stop true --enable-double-encryption false --enable-purge true \ +--enable-streaming-ingest true --public-network-access "Enabled" --sku name="Standard_L8s" capacity=2 tier="Standard" \ +--resource-group "kustorptest" ``` ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| |**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| |**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| -|**--location**|string|The geo-location where the resource lives|location|location| -|**--sku**|object|The SKU of the cluster.|sku|sku| |**--if-match**|string|The ETag of the cluster. Omit this value to always overwrite the current cluster. Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes.|if_match|IfMatch| |**--if-none-match**|string|Set to '*' to allow a new cluster to be created, but to prevent updating an existing cluster. Other values will result in a 412 Pre-condition Failed response.|if_none_match|IfNoneMatch| +|**--location**|string|The geo-location where the resource lives|location|location| +|**--sku**|object|The SKU of the cluster.|sku|sku| |**--tags**|dictionary|Resource tags.|tags|tags| |**--zones**|array|The availability zones of the cluster.|zones|zones| |**--trusted-external-tenants**|array|The cluster's external tenants.|trusted_external_tenants|trustedExternalTenants| @@ -250,7 +280,13 @@ capacity=2 tier="Standard" --resource-group "kustorptest" |**--key-vault-properties**|object|KeyVault properties for the cluster encryption.|key_vault_properties|keyVaultProperties| |**--enable-purge**|boolean|A boolean value that indicates if the purge operations are enabled.|enable_purge|enablePurge| |**--enable-double-encryption**|boolean|A boolean value that indicates if double encryption is enabled.|enable_double_encryption|enableDoubleEncryption| +|**--public-network-access**|choice|Public network access to the cluster is enabled by default. When disabled, only private endpoint connection to the cluster is allowed|public_network_access|publicNetworkAccess| +|**--allowed-ip-range-list**|array|The list of ips in the format of CIDR allowed to connect to the cluster.|allowed_ip_range_list|allowedIpRangeList| |**--engine-type**|choice|The engine type|engine_type|engineType| +|**--accepted-audiences**|array|The cluster's accepted audiences.|accepted_audiences|acceptedAudiences| +|**--enable-auto-stop**|boolean|A boolean value that indicates if the cluster could be automatically stopped (due to lack of data or no activity for many days).|enable_auto_stop|enableAutoStop| +|**--restrict-outbound-network-access**|choice|Whether or not to restrict outbound network access. Value is optional but if passed in, must be 'Enabled' or 'Disabled'|restrict_outbound_network_access|restrictOutboundNetworkAccess| +|**--allowed-fqdn-list**|array|List of allowed FQDNs(Fully Qualified Domain Name) for egress from Cluster.|allowed_fqdn_list|allowedFqdnList| |**--type**|choice|The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove all identities.|type|type| |**--user-assigned-identities**|dictionary|The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.|user_assigned_identities|userAssignedIdentities| @@ -258,9 +294,10 @@ capacity=2 tier="Standard" --resource-group "kustorptest" ##### Example ``` -az kusto cluster update --name "kustoclusterrptest4" --type "SystemAssigned" --location "westus" --enable-purge true \ ---enable-streaming-ingest true --engine-type "V2" --key-vault-properties key-name="keyName" \ -key-vault-uri="https://dummy.keyvault.com" key-version="keyVersion" --resource-group "kustorptest" +az kusto cluster update --name "kustoclusterrptest4" --type "SystemAssigned" --location "westus" --enable-auto-stop \ +true --enable-purge true --enable-streaming-ingest true --engine-type "V3" --key-vault-properties key-name="keyName" \ +key-vault-uri="https://dummy.keyvault.com" key-version="keyVersion" --restrict-outbound-network-access "Disabled" \ +--resource-group "kustorptest" ``` ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| @@ -279,7 +316,13 @@ key-vault-uri="https://dummy.keyvault.com" key-version="keyVersion" --resource-g |**--key-vault-properties**|object|KeyVault properties for the cluster encryption.|key_vault_properties|keyVaultProperties| |**--enable-purge**|boolean|A boolean value that indicates if the purge operations are enabled.|enable_purge|enablePurge| |**--enable-double-encryption**|boolean|A boolean value that indicates if double encryption is enabled.|enable_double_encryption|enableDoubleEncryption| +|**--public-network-access**|choice|Public network access to the cluster is enabled by default. When disabled, only private endpoint connection to the cluster is allowed|public_network_access|publicNetworkAccess| +|**--allowed-ip-range-list**|array|The list of ips in the format of CIDR allowed to connect to the cluster.|allowed_ip_range_list|allowedIpRangeList| |**--engine-type**|choice|The engine type|engine_type|engineType| +|**--accepted-audiences**|array|The cluster's accepted audiences.|accepted_audiences|acceptedAudiences| +|**--enable-auto-stop**|boolean|A boolean value that indicates if the cluster could be automatically stopped (due to lack of data or no activity for many days).|enable_auto_stop|enableAutoStop| +|**--restrict-outbound-network-access**|choice|Whether or not to restrict outbound network access. Value is optional but if passed in, must be 'Enabled' or 'Disabled'|restrict_outbound_network_access|restrictOutboundNetworkAccess| +|**--allowed-fqdn-list**|array|List of allowed FQDNs(Fully Qualified Domain Name) for egress from Cluster.|allowed_fqdn_list|allowedFqdnList| |**--type**|choice|The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove all identities.|type|type| |**--user-assigned-identities**|dictionary|The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.|user_assigned_identities|userAssignedIdentities| @@ -361,6 +404,18 @@ az kusto cluster list-language-extension --name "kustoclusterrptest4" --resource |**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| |**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| +#### Command `az kusto cluster list-outbound-network-dependency-endpoint` + +##### Example +``` +az kusto cluster list-outbound-network-dependency-endpoint --name "kustoclusterrptest" --resource-group "kustorptest" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| + #### Command `az kusto cluster list-sku` ##### Example @@ -382,6 +437,7 @@ az kusto cluster list-sku ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| + #### Command `az kusto cluster remove-language-extension` ##### Example @@ -468,6 +524,7 @@ az kusto cluster-principal-assignment create --cluster-name "kustoclusterrptest4 #### Command `az kusto cluster-principal-assignment update` + ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| @@ -525,6 +582,7 @@ az kusto data-connection show --cluster-name "kustoclusterrptest4" --name "DataC #### Command `az kusto data-connection event-grid create` + ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| @@ -572,6 +630,7 @@ az kusto data-connection event-hub create --cluster-name "kustoclusterrptest4" - #### Command `az kusto data-connection iot-hub create` + ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| @@ -590,6 +649,7 @@ az kusto data-connection event-hub create --cluster-name "kustoclusterrptest4" - #### Command `az kusto data-connection event-grid update` + ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| @@ -637,6 +697,7 @@ az kusto data-connection event-hub update --cluster-name "kustoclusterrptest4" - #### Command `az kusto data-connection iot-hub update` + ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| @@ -670,6 +731,7 @@ az kusto data-connection delete --cluster-name "kustoclusterrptest4" --name "kus #### Command `az kusto data-connection event-grid data-connection-validation` + ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| @@ -717,6 +779,7 @@ az kusto data-connection event-hub data-connection-validation --cluster-name "ku #### Command `az kusto data-connection iot-hub data-connection-validation` + ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| @@ -764,8 +827,8 @@ az kusto database show --cluster-name "kustoclusterrptest4" --database-name "Kus ##### Example ``` -az kusto database create --cluster-name "kustoclusterrptest4" --database-name "KustoDatabase8" --parameters \ -"{\\"location\\":\\"westus\\",\\"properties\\":{\\"softDeletePeriod\\":\\"P1D\\"}}" --resource-group "kustorptest" +az kusto database create --cluster-name "kustoclusterrptest4" --database-name "KustoDatabase8" --read-write-database \ +location="westus" soft-delete-period="P1D" --resource-group "kustorptest" ``` ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| @@ -780,8 +843,8 @@ az kusto database create --cluster-name "kustoclusterrptest4" --database-name "K ##### Example ``` -az kusto database update --cluster-name "kustoclusterrptest4" --database-name "KustoDatabase8" --parameters \ -"{\\"properties\\":{\\"hotCachePeriod\\":\\"P1D\\"}}" --resource-group "kustorptest" +az kusto database update --cluster-name "kustoclusterrptest4" --database-name "KustoDatabase8" --read-write-database \ +hot-cache-period="P1D" --resource-group "kustorptest" ``` ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| @@ -908,6 +971,7 @@ az kusto database-principal-assignment create --cluster-name "kustoclusterrptest #### Command `az kusto database-principal-assignment update` + ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| @@ -935,6 +999,87 @@ az kusto database-principal-assignment delete --cluster-name "kustoclusterrptest |**--database-name**|string|The name of the database in the Kusto cluster.|database_name|databaseName| |**--principal-assignment-name**|string|The name of the Kusto principalAssignment.|principal_assignment_name|principalAssignmentName| +### group `az kusto managed-private-endpoint` +#### Command `az kusto managed-private-endpoint list` + +##### Example +``` +az kusto managed-private-endpoint list --cluster-name "kustoclusterrptest4" --resource-group "kustorptest" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| + +#### Command `az kusto managed-private-endpoint show` + +##### Example +``` +az kusto managed-private-endpoint show --cluster-name "kustoclusterrptest4" --name "kustoManagedPrivateEndpoint1" \ +--resource-group "kustorptest" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| +|**--managed-private-endpoint-name**|string|The name of the managed private endpoint.|managed_private_endpoint_name|managedPrivateEndpointName| + +#### Command `az kusto managed-private-endpoint create` + +##### Example +``` +az kusto managed-private-endpoint create --cluster-name "kustoclusterrptest4" --name "kustoManagedPrivateEndpoint1" \ +--group-id "blob" --private-link-resource-id "/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustor\ +ptest/providers/Microsoft.Storage/storageAccounts/storageAccountTest" --request-message "Please Approve." \ +--resource-group "kustorptest" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| +|**--managed-private-endpoint-name**|string|The name of the managed private endpoint.|managed_private_endpoint_name|managedPrivateEndpointName| +|**--private-link-resource-id**|string|The ARM resource ID of the resource for which the managed private endpoint is created.|private_link_resource_id|privateLinkResourceId| +|**--private-link-resource-region**|string|The region of the resource to which the managed private endpoint is created.|private_link_resource_region|privateLinkResourceRegion| +|**--group-id**|string|The groupId in which the managed private endpoint is created.|group_id|groupId| +|**--request-message**|string|The user request message.|request_message|requestMessage| + +#### Command `az kusto managed-private-endpoint update` + +##### Example +``` +az kusto managed-private-endpoint update --cluster-name "kustoclusterrptest4" --name "kustoManagedPrivateEndpoint1" \ +--group-id "blob" --private-link-resource-id "/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustor\ +ptest/providers/Microsoft.Storage/storageAccounts/storageAccountTest" --request-message "Please Approve Managed \ +Private Endpoint Request." --resource-group "kustorptest" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| +|**--managed-private-endpoint-name**|string|The name of the managed private endpoint.|managed_private_endpoint_name|managedPrivateEndpointName| +|**--private-link-resource-id**|string|The ARM resource ID of the resource for which the managed private endpoint is created.|private_link_resource_id|privateLinkResourceId| +|**--private-link-resource-region**|string|The region of the resource to which the managed private endpoint is created.|private_link_resource_region|privateLinkResourceRegion| +|**--group-id**|string|The groupId in which the managed private endpoint is created.|group_id|groupId| +|**--request-message**|string|The user request message.|request_message|requestMessage| + +#### Command `az kusto managed-private-endpoint delete` + +##### Example +``` +az kusto managed-private-endpoint delete --cluster-name "kustoclusterrptest4" --name "kustoManagedPrivateEndpoint1" \ +--resource-group "kustorptest" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| +|**--managed-private-endpoint-name**|string|The name of the managed private endpoint.|managed_private_endpoint_name|managedPrivateEndpointName| + ### group `az kusto operation-result` #### Command `az kusto operation-result show` @@ -948,6 +1093,101 @@ az kusto operation-result show --operation-id "30972f1b-b61d-4fd8-bd34-3dcfa2467 |**--location**|string|Azure location (region) name.|location|location| |**--operation-id**|string|The Guid of the operation ID|operation_id|operationId| +### group `az kusto private-endpoint-connection` +#### Command `az kusto private-endpoint-connection list` + +##### Example +``` +az kusto private-endpoint-connection list --cluster-name "kustoclusterrptest4" --resource-group "kustorptest" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| + +#### Command `az kusto private-endpoint-connection show` + +##### Example +``` +az kusto private-endpoint-connection show --cluster-name "kustoclusterrptest4" --name "privateEndpointConnectionName" \ +--resource-group "kustorptest" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| +|**--private-endpoint-connection-name**|string|The name of the private endpoint connection.|private_endpoint_connection_name|privateEndpointConnectionName| + +#### Command `az kusto private-endpoint-connection create` + +##### Example +``` +az kusto private-endpoint-connection create --cluster-name "kustoclusterrptest4" --private-link-service-connection-stat\ +e description="Approved by johndoe@contoso.com" status="Approved" --name "privateEndpointConnectionName" \ +--resource-group "kustorptest" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| +|**--private-endpoint-connection-name**|string|The name of the private endpoint connection.|private_endpoint_connection_name|privateEndpointConnectionName| +|**--private-link-service-connection-state**|object|Connection State of the Private Endpoint Connection.|private_link_service_connection_state|privateLinkServiceConnectionState| + +#### Command `az kusto private-endpoint-connection update` + + +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| +|**--private-endpoint-connection-name**|string|The name of the private endpoint connection.|private_endpoint_connection_name|privateEndpointConnectionName| +|**--private-link-service-connection-state**|object|Connection State of the Private Endpoint Connection.|private_link_service_connection_state|privateLinkServiceConnectionState| + +#### Command `az kusto private-endpoint-connection delete` + +##### Example +``` +az kusto private-endpoint-connection delete --cluster-name "kustoclusterrptest4" --name "privateEndpointConnectionName"\ + --resource-group "kustorptest" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| +|**--private-endpoint-connection-name**|string|The name of the private endpoint connection.|private_endpoint_connection_name|privateEndpointConnectionName| + +### group `az kusto private-link-resource` +#### Command `az kusto private-link-resource list` + +##### Example +``` +az kusto private-link-resource list --cluster-name "kustoclusterrptest4" --resource-group "kustorptest" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| + +#### Command `az kusto private-link-resource show` + +##### Example +``` +az kusto private-link-resource show --cluster-name "kustoclusterrptest4" --name "cluster" --resource-group \ +"kustorptest" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group containing the Kusto cluster.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the Kusto cluster.|cluster_name|clusterName| +|**--private-link-resource-name**|string|The name of the private link resource.|private_link_resource_name|privateLinkResourceName| + ### group `az kusto script` #### Command `az kusto script list` diff --git a/src/kusto/setup.py b/src/kusto/setup.py index 2f37277f5a3..5f247d05bf7 100644 --- a/src/kusto/setup.py +++ b/src/kusto/setup.py @@ -10,7 +10,7 @@ from setuptools import setup, find_packages # HISTORY.rst entry. -VERSION = '0.3.0' +VERSION = '0.4.0' try: from azext_kusto.manual.version import VERSION except ImportError: