Skip to content

Commit d855cc2

Browse files
sushil490023Sushil Upadhyay
andauthored
Add Python3 CLI Commands (#5415)
* 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]>
1 parent b5e0aff commit d855cc2

31 files changed

+7225
-5360
lines changed

src/automation/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Release History
44
===============
55

6+
0.2.1
7+
++++++
8+
* `az automation python3-package`: Add new command group to support managing python3 package operations.
9+
610
0.2.0
711
++++++
812
* `az automation schedule`: Add new command group to support managing schedule
Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# --------------------------------------------------------------------------------------------
2-
# Copyright (c) Microsoft Corporation. All rights reserved.
3-
# Licensed under the MIT License. See License.txt in the project root for license information.
4-
#
5-
# Code generated by aaz-dev-tools
6-
# --------------------------------------------------------------------------------------------
7-
8-
# pylint: skip-file
9-
# flake8: noqa
10-
11-
from azure.cli.core.aaz import *
12-
13-
14-
@register_command_group(
15-
"automation",
16-
)
17-
class __CMDGroup(AAZCommandGroup):
18-
"""Automation Account.
19-
"""
20-
pass
21-
22-
23-
__all__ = ["__CMDGroup"]
1+
# --------------------------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for license information.
4+
#
5+
# Code generated by aaz-dev-tools
6+
# --------------------------------------------------------------------------------------------
7+
8+
# pylint: skip-file
9+
# flake8: noqa
10+
11+
from azure.cli.core.aaz import *
12+
13+
14+
@register_command_group(
15+
"automation",
16+
)
17+
class __CMDGroup(AAZCommandGroup):
18+
"""Manage Automation Account
19+
"""
20+
pass
21+
22+
23+
__all__ = ["__CMDGroup"]
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# --------------------------------------------------------------------------------------------
2-
# Copyright (c) Microsoft Corporation. All rights reserved.
3-
# Licensed under the MIT License. See License.txt in the project root for license information.
4-
#
5-
# Code generated by aaz-dev-tools
6-
# --------------------------------------------------------------------------------------------
7-
8-
# pylint: skip-file
9-
# flake8: noqa
10-
11-
from .__cmd_group import *
1+
# --------------------------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for license information.
4+
#
5+
# Code generated by aaz-dev-tools
6+
# --------------------------------------------------------------------------------------------
7+
8+
# pylint: skip-file
9+
# flake8: noqa
10+
11+
from .__cmd_group import *
Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# --------------------------------------------------------------------------------------------
2-
# Copyright (c) Microsoft Corporation. All rights reserved.
3-
# Licensed under the MIT License. See License.txt in the project root for license information.
4-
#
5-
# Code generated by aaz-dev-tools
6-
# --------------------------------------------------------------------------------------------
7-
8-
# pylint: skip-file
9-
# flake8: noqa
10-
11-
from azure.cli.core.aaz import *
12-
13-
14-
@register_command_group(
15-
"automation hrwg",
16-
)
17-
class __CMDGroup(AAZCommandGroup):
18-
"""Automation Hybrid Runbook Worker Group
19-
"""
20-
pass
21-
22-
23-
__all__ = ["__CMDGroup"]
1+
# --------------------------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for license information.
4+
#
5+
# Code generated by aaz-dev-tools
6+
# --------------------------------------------------------------------------------------------
7+
8+
# pylint: skip-file
9+
# flake8: noqa
10+
11+
from azure.cli.core.aaz import *
12+
13+
14+
@register_command_group(
15+
"automation hrwg",
16+
)
17+
class __CMDGroup(AAZCommandGroup):
18+
"""Automation Hybrid Runbook Worker Group
19+
"""
20+
pass
21+
22+
23+
__all__ = ["__CMDGroup"]
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# --------------------------------------------------------------------------------------------
2-
# Copyright (c) Microsoft Corporation. All rights reserved.
3-
# Licensed under the MIT License. See License.txt in the project root for license information.
4-
#
5-
# Code generated by aaz-dev-tools
6-
# --------------------------------------------------------------------------------------------
7-
8-
# pylint: skip-file
9-
# flake8: noqa
10-
11-
from .__cmd_group import *
12-
from ._create import *
13-
from ._delete import *
14-
from ._list import *
15-
from ._show import *
16-
from ._update import *
1+
# --------------------------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for license information.
4+
#
5+
# Code generated by aaz-dev-tools
6+
# --------------------------------------------------------------------------------------------
7+
8+
# pylint: skip-file
9+
# flake8: noqa
10+
11+
from .__cmd_group import *
12+
from ._create import *
13+
from ._delete import *
14+
from ._list import *
15+
from ._show import *
16+
from ._update import *

0 commit comments

Comments
 (0)