Skip to content

Commit 1a76d47

Browse files
committed
removing unsupported operation
1 parent 7e14649 commit 1a76d47

File tree

6 files changed

+53
-347
lines changed

6 files changed

+53
-347
lines changed

src/managednetworkfabric/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
33
Release History
44
===============
5+
8.1.1
6+
++++++
7+
* Removing the `externalnetwork update-bfd-administrative-state` command as it is not supported by the API.
8+
59
8.1.0
610
++++++
711
* Adding breaking change notices for the following items that will be included in the upcoming 2025-07-15-stable CLI (9.0.x).

src/managednetworkfabric/azext_managednetworkfabric/aaz/latest/networkfabric/externalnetwork/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,4 @@
1414
from ._list import *
1515
from ._show import *
1616
from ._update import *
17-
from ._update_bfd_administrative_state import *
1817
from ._wait import *

src/managednetworkfabric/azext_managednetworkfabric/aaz/latest/networkfabric/externalnetwork/_update_bfd_administrative_state.py

Lines changed: 0 additions & 292 deletions
This file was deleted.

src/managednetworkfabric/azext_managednetworkfabric/aaz/latest/networkfabric/fabric/_validate_configuration.py

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -197,18 +197,13 @@ def _build_schema_on_200(cls):
197197
cls._schema_on_200 = AAZObjectType()
198198

199199
_schema_on_200 = cls._schema_on_200
200-
_schema_on_200.error = AAZObjectType()
201-
_ValidateConfigurationHelper._build_schema_error_detail_read(_schema_on_200.error)
202-
_schema_on_200.properties = AAZObjectType(
203-
flags={"read_only": True},
204-
)
205-
206-
properties = cls._schema_on_200.properties
207-
properties.configuration_state = AAZStrType(
200+
_schema_on_200.configuration_state = AAZStrType(
208201
serialized_name="configurationState",
209202
flags={"read_only": True},
210203
)
211-
properties.url = AAZStrType()
204+
_schema_on_200.error = AAZObjectType()
205+
_ValidateConfigurationHelper._build_schema_error_detail_read(_schema_on_200.error)
206+
_schema_on_200.url = AAZStrType()
212207

213208
return cls._schema_on_200
214209

0 commit comments

Comments
 (0)