Skip to content

Commit

Permalink
Kusto: releasing 2021-08-27 client (#3974)
Browse files Browse the repository at this point in the history
* 2021-08-27 new api version

Co-authored-by: kai ru <69238381+kairu-ms@users.noreply.github.com>
  • Loading branch information
zoharHenMicrosoft and kairu-ms authored Oct 29, 2021
1 parent c6fa133 commit 8361056
Show file tree
Hide file tree
Showing 59 changed files with 43,764 additions and 9,399 deletions.
7 changes: 2 additions & 5 deletions src/kusto/azext_kusto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
17 changes: 17 additions & 0 deletions src/kusto/azext_kusto/_help.py
Original file line number Diff line number Diff line change
@@ -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
1 change: 0 additions & 1 deletion src/kusto/azext_kusto/azext_metadata.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"azext.isExperimental": true,
"azext.minCliCoreVersion": "2.15.0"
}
16 changes: 14 additions & 2 deletions src/kusto/azext_kusto/generated/_client_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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, *_):
Expand Down
Loading

0 comments on commit 8361056

Please sign in to comment.