Skip to content

Commit

Permalink
[CostManagement] az costmanagement: GA (#3135)
Browse files Browse the repository at this point in the history
* cost management GA

* update version to 0.1.1
  • Loading branch information
kairu-ms authored Mar 10, 2021
1 parent 1a2d083 commit 446a355
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
3 changes: 3 additions & 0 deletions src/costmanagement/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Release History
===============
0.1.1
++++++
* Command group ``az costmanagement`` GA

0.1.0
++++++
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"azext.isExperimental": true,
"azext.minCliCoreVersion": "2.3.1"
}
6 changes: 2 additions & 4 deletions src/costmanagement/azext_costmanagement/manual/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,15 @@ def load_command_table(self, _):
operations_tmpl='azext_costmanagement.vendored_sdks.costmanagement.operations.'
'_query_operations#QueryOperations.{}',
client_factory=cf_query)
with self.command_group('costmanagement', costmanagement_query,
client_factory=cf_query, is_experimental=True) as g:
with self.command_group('costmanagement', costmanagement_query, client_factory=cf_query) as g:
g.custom_command('query', 'costmanagement_query')

from azext_costmanagement.generated._client_factory import cf_export
costmanagement_export = CliCommandType(
operations_tmpl='azext_costmanagement.vendored_sdks.costmanagement.operations._export_operations#ExportOperatio'
'ns.{}',
client_factory=cf_export)
with self.command_group('costmanagement export', costmanagement_export, client_factory=cf_export,
is_experimental=True) as g:
with self.command_group('costmanagement export', costmanagement_export, client_factory=cf_export) as g:
g.custom_command('list', 'costmanagement_export_list')
g.custom_show_command('show', 'costmanagement_export_show')
g.custom_command('create', 'costmanagement_export_create')
Expand Down
2 changes: 1 addition & 1 deletion src/costmanagement/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

# TODO: Confirm this is the right version number you want and it matches your
# HISTORY.rst entry.
VERSION = '0.1.0'
VERSION = '0.1.1'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down

0 comments on commit 446a355

Please sign in to comment.