Skip to content

Commit ca96e54

Browse files
author
Your Name
committed
Servicebus NSP cmdlets added
1 parent 77ef1c5 commit ca96e54

File tree

11 files changed

+723
-7
lines changed

11 files changed

+723
-7
lines changed

src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@
44
#
55
# Code generated by aaz-dev-tools
66
# --------------------------------------------------------------------------------------------
7+
8+
# pylint: skip-file
9+
# flake8: noqa
10+

src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/__cmd_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"servicebus",
1616
)
1717
class __CMDGroup(AAZCommandGroup):
18-
"""servicebus
18+
"""Manage Service Bus
1919
"""
2020
pass
2121

src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/__cmd_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"servicebus namespace",
1616
)
1717
class __CMDGroup(AAZCommandGroup):
18-
"""servicebus namespace
18+
"""Manage Namespace
1919
"""
2020
pass
2121

src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
from .__cmd_group import *
1212
from ._create import *
1313
from ._delete import *
14+
from ._exists import *
15+
from ._failover import *
1416
from ._list import *
1517
from ._show import *
1618
from ._update import *
1719
from ._wait import *
18-
from ._exists import *
19-
from ._failover import *
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +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+
"servicebus namespace nsp-configuration",
16+
)
17+
class __CMDGroup(AAZCommandGroup):
18+
"""Manage Network Security Perimeter Configuration
19+
"""
20+
pass
21+
22+
23+
__all__ = ["__CMDGroup"]
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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 ._list import *
13+
from ._show import *

0 commit comments

Comments
 (0)