Skip to content

Commit

Permalink
Add Python3 CLI Commands (#5415)
Browse files Browse the repository at this point in the history
* Add Python3 CLI Commands

* Update Linter exclusion rule for automation account parameter

* Added Test cases for PY3

* Updated Test cases recording with latest test cases

* Updated Test cases recording with latest test cases

* Updated Test cases recording with latest test cases

* Updated Test cases recording with latest test cases

* Updated Command with examples

* Updated Command with examples

* Updated Command with examples

Co-authored-by: Sushil Upadhyay <[email protected]>
  • Loading branch information
sushil490023 and Sushil Upadhyay authored Oct 25, 2022
1 parent b5e0aff commit d855cc2
Show file tree
Hide file tree
Showing 31 changed files with 7,225 additions and 5,360 deletions.
4 changes: 4 additions & 0 deletions src/automation/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

0.2.1
++++++
* `az automation python3-package`: Add new command group to support managing python3 package operations.

0.2.0
++++++
* `az automation schedule`: Add new command group to support managing schedule
Expand Down
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# --------------------------------------------------------------------------------------------
# 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 aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from azure.cli.core.aaz import *


@register_command_group(
"automation",
)
class __CMDGroup(AAZCommandGroup):
"""Automation Account.
"""
pass


__all__ = ["__CMDGroup"]
# --------------------------------------------------------------------------------------------
# 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 aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from azure.cli.core.aaz import *


@register_command_group(
"automation",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Automation Account
"""
pass


__all__ = ["__CMDGroup"]
22 changes: 11 additions & 11 deletions src/automation/azext_automation/aaz/latest/automation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# --------------------------------------------------------------------------------------------
# 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 aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from .__cmd_group import *
# --------------------------------------------------------------------------------------------
# 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 aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from .__cmd_group import *
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# --------------------------------------------------------------------------------------------
# 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 aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from azure.cli.core.aaz import *


@register_command_group(
"automation hrwg",
)
class __CMDGroup(AAZCommandGroup):
"""Automation Hybrid Runbook Worker Group
"""
pass


__all__ = ["__CMDGroup"]
# --------------------------------------------------------------------------------------------
# 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 aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from azure.cli.core.aaz import *


@register_command_group(
"automation hrwg",
)
class __CMDGroup(AAZCommandGroup):
"""Automation Hybrid Runbook Worker Group
"""
pass


__all__ = ["__CMDGroup"]
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# --------------------------------------------------------------------------------------------
# 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 aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from .__cmd_group import *
from ._create import *
from ._delete import *
from ._list import *
from ._show import *
from ._update import *
# --------------------------------------------------------------------------------------------
# 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 aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from .__cmd_group import *
from ._create import *
from ._delete import *
from ._list import *
from ._show import *
from ._update import *
Loading

0 comments on commit d855cc2

Please sign in to comment.