Skip to content

Commit c1acf31

Browse files
authored
[Network] az network virtual-network-appliance create/update: Add --private-ip-address-version to support private ip address version (#33315)
1 parent 70fcc11 commit c1acf31

11 files changed

Lines changed: 5355 additions & 3350 deletions

File tree

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/route_table/_create.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ def _build_arguments_schema(cls, *args, **kwargs):
8080
options=["--disable-peering-route"],
8181
arg_group="Properties",
8282
help="Whether to disable the routes learned by peering on the route table. 'None' means peering routes are enabled, 'All' means all peering routes are disabled.",
83-
is_preview=True,
8483
enum={"All": "All", "None": "None"},
8584
)
8685
return cls._args_schema

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/route_table/_update.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ def _build_arguments_schema(cls, *args, **kwargs):
8181
options=["--disable-peering-route"],
8282
arg_group="Properties",
8383
help="Whether to disable the routes learned by peering on the route table. 'None' means peering routes are enabled, 'All' means all peering routes are disabled.",
84-
is_preview=True,
8584
nullable=True,
8685
enum={"All": "All", "None": "None"},
8786
)

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/virtual_network_appliance/_create.py

Lines changed: 722 additions & 660 deletions
Large diffs are not rendered by default.

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/virtual_network_appliance/_delete.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ class Delete(AAZCommand):
2323
"""
2424

2525
_aaz_info = {
26-
"version": "2025-05-01",
26+
"version": "2025-07-01",
2727
"resources": [
28-
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkappliances/{}", "2025-05-01"],
28+
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkappliances/{}", "2025-07-01"],
2929
]
3030
}
3131

@@ -146,7 +146,7 @@ def url_parameters(self):
146146
def query_parameters(self):
147147
parameters = {
148148
**self.serialize_query_param(
149-
"api-version", "2025-05-01",
149+
"api-version", "2025-07-01",
150150
required=True,
151151
),
152152
}

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/virtual_network_appliance/_list.py

Lines changed: 650 additions & 766 deletions
Large diffs are not rendered by default.

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/virtual_network_appliance/_show.py

Lines changed: 643 additions & 601 deletions
Large diffs are not rendered by default.

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/virtual_network_appliance/_update.py

Lines changed: 767 additions & 705 deletions
Large diffs are not rendered by default.

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/virtual_network_appliance/_wait.py

Lines changed: 642 additions & 600 deletions
Large diffs are not rendered by default.

src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_network_appliance.yaml

Lines changed: 12 additions & 12 deletions
Large diffs are not rendered by default.

src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_network_appliance_private_ip_address_version.yaml

Lines changed: 1855 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)