Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ReleasePR costmanagement] [costmanagement] Update readme.md #2737

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/costmanagement/HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.. :changelog:
Release History
===============
0.1.0
++++++
* Initial release.
.. :changelog:

Release History
===============

0.1.0
++++++
* Initial release.
15 changes: 9 additions & 6 deletions src/costmanagement/azext_costmanagement/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,23 @@
# --------------------------------------------------------------------------

from azure.cli.core import AzCommandsLoader
# from azext_costmanagement.generated._help import helps # pylint: disable=unused-import
from azext_costmanagement.manual._help import helps # pylint: disable=unused-import
from azext_costmanagement.generated._help import helps # pylint: disable=unused-import
try:
from azext_costmanagement.manual._help import helps # pylint: disable=reimported
except ImportError:
pass


class CostManagementClientCommandsLoader(AzCommandsLoader):

def __init__(self, cli_ctx=None):
from azure.cli.core.commands import CliCommandType
from azext_costmanagement.generated._client_factory import cf_costmanagement
from azext_costmanagement.generated._client_factory import cf_costmanagement_cl
costmanagement_custom = CliCommandType(
operations_tmpl='azext_costmanagement.custom#{}',
client_factory=cf_costmanagement)
super(CostManagementClientCommandsLoader, self).__init__(cli_ctx=cli_ctx,
custom_command_type=costmanagement_custom)
client_factory=cf_costmanagement_cl)
parent = super(CostManagementClientCommandsLoader, self)
parent.__init__(cli_ctx=cli_ctx, custom_command_type=costmanagement_custom)

def load_command_table(self, args):
from azext_costmanagement.generated.commands import load_command_table
Expand Down
34 changes: 17 additions & 17 deletions src/costmanagement/azext_costmanagement/action.py
Original file line number Diff line number Diff line change
@@ -1,17 +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
from .generated.action import * # noqa: F403
try:
from .manual.action import * # noqa: F403
except ImportError:
pass
# --------------------------------------------------------------------------
# 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

from .generated.action import * # noqa: F403
try:
from .manual.action import * # noqa: F403
except ImportError:
pass
6 changes: 3 additions & 3 deletions src/costmanagement/azext_costmanagement/azext_metadata.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"azext.isExperimental": true,
"azext.minCliCoreVersion": "2.3.1"
{
"azext.isExperimental": true,
"azext.minCliCoreVersion": "2.11.0"
}
34 changes: 17 additions & 17 deletions src/costmanagement/azext_costmanagement/custom.py
Original file line number Diff line number Diff line change
@@ -1,17 +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
from .generated.custom import * # noqa: F403
try:
from .manual.custom import * # noqa: F403
except ImportError:
pass
# --------------------------------------------------------------------------
# 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

from .generated.custom import * # noqa: F403
try:
from .manual.custom import * # noqa: F403
except ImportError:
pass
24 changes: 12 additions & 12 deletions src/costmanagement/azext_costmanagement/generated/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +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__)
# 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__)
Original file line number Diff line number Diff line change
@@ -1,41 +1,42 @@
# --------------------------------------------------------------------------
# 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.
# --------------------------------------------------------------------------


def cf_costmanagement(cli_ctx, *_):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from ..vendored_sdks.costmanagement import CostManagementClient
return get_mgmt_service_client(cli_ctx, CostManagementClient,
subscription_bound=False,
base_url_bound=True)


def cf_view(cli_ctx, *_):
return cf_costmanagement(cli_ctx).view


def cf_alert(cli_ctx, *_):
return cf_costmanagement(cli_ctx).alert


def cf_forecast(cli_ctx, *_):
return cf_costmanagement(cli_ctx).forecast


def cf_dimension(cli_ctx, *_):
return cf_costmanagement(cli_ctx).dimension


def cf_query(cli_ctx, *_):
return cf_costmanagement(cli_ctx).query


def cf_export(cli_ctx, *_):
return cf_costmanagement(cli_ctx).export
# --------------------------------------------------------------------------
# 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.
# --------------------------------------------------------------------------


def cf_costmanagement_cl(cli_ctx, *_):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from ..vendored_sdks.costmanagement import CostManagementClient
return get_mgmt_service_client(cli_ctx,
CostManagementClient,
subscription_bound=False,
base_url_bound=True)


def cf_view(cli_ctx, *_):
return cf_costmanagement_cl(cli_ctx).view


def cf_alert(cli_ctx, *_):
return cf_costmanagement_cl(cli_ctx).alert


def cf_forecast(cli_ctx, *_):
return cf_costmanagement_cl(cli_ctx).forecast


def cf_dimension(cli_ctx, *_):
return cf_costmanagement_cl(cli_ctx).dimension


def cf_query(cli_ctx, *_):
return cf_costmanagement_cl(cli_ctx).query


def cf_export(cli_ctx, *_):
return cf_costmanagement_cl(cli_ctx).export
Loading