Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/managednetworkfabric/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Release History
===============
8.1.1
++++++
* Removing the `externalnetwork update-bfd-administrative-state` command as it is not supported by the API.

8.1.0
++++++
* Adding breaking change notices for the following items that will be included in the upcoming 2025-07-15-stable CLI (9.0.x).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@
from ._list import *
from ._show import *
from ._update import *
from ._update_bfd_administrative_state import *
from ._wait import *

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -197,18 +197,13 @@ def _build_schema_on_200(cls):
cls._schema_on_200 = AAZObjectType()

_schema_on_200 = cls._schema_on_200
_schema_on_200.error = AAZObjectType()
_ValidateConfigurationHelper._build_schema_error_detail_read(_schema_on_200.error)
_schema_on_200.properties = AAZObjectType(
flags={"read_only": True},
)

properties = cls._schema_on_200.properties
properties.configuration_state = AAZStrType(
_schema_on_200.configuration_state = AAZStrType(
serialized_name="configurationState",
flags={"read_only": True},
)
properties.url = AAZStrType()
_schema_on_200.error = AAZObjectType()
_ValidateConfigurationHelper._build_schema_error_detail_read(_schema_on_200.error)
_schema_on_200.url = AAZStrType()

return cls._schema_on_200

Expand Down
Loading
Loading