Skip to content

Commit

Permalink
Remove network security perimeter based access rule creation/updation (
Browse files Browse the repository at this point in the history
…#6570)

* Remove network security perimeter based access rule creation/updation

* history and setup updated

* History update

---------

Co-authored-by: Kaushal Kumar <kumarkaushal@microsoft.com>
  • Loading branch information
kaushal087 and Kaushal Kumar authored Aug 3, 2023
1 parent 549b8d8 commit e518e05
Show file tree
Hide file tree
Showing 49 changed files with 7,943 additions and 7,977 deletions.
7 changes: 7 additions & 0 deletions src/nsp/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
Release History
===============
===============
##### 0.2.1
++++++
No new commands added.

Existing commands updated:
* perimeter profile access-rule: create, update (remove existing "--nsp" paramter from request. Now access rule doesn't support creation/updation of perimeter based rules.

##### 0.2.0
++++++
New commands added:
Expand Down
46 changes: 23 additions & 23 deletions src/nsp/azext_nsp/aaz/latest/network/__cmd_group.py
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(
"network",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Azure Network resources.
"""
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(
"network",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Azure Network resources.
"""
pass


__all__ = ["__CMDGroup"]
22 changes: 11 additions & 11 deletions src/nsp/azext_nsp/aaz/latest/network/__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 *
46 changes: 23 additions & 23 deletions src/nsp/azext_nsp/aaz/latest/network/perimeter/__cmd_group.py
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(
"network perimeter",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Network Security Perimeters
"""
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(
"network perimeter",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Network Security Perimeters
"""
pass


__all__ = ["__CMDGroup"]
30 changes: 15 additions & 15 deletions src/nsp/azext_nsp/aaz/latest/network/perimeter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# --------------------------------------------------------------------------------------------
# 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 *
# --------------------------------------------------------------------------------------------
# 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 *
Loading

0 comments on commit e518e05

Please sign in to comment.