Skip to content

Commit

Permalink
Changing service_unsupported_transceiver 4840
Browse files Browse the repository at this point in the history
  • Loading branch information
Vibhu-gslab committed Jan 7, 2025
1 parent 1461833 commit af6fc0e
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -786,3 +786,6 @@ vxlan_interface:
vni: 31
- name: TENANT_D_WAN_ZONE
vni: 42
unsupported_transceiver:
license_name: key1
license_key: dsafDSFfvadskjh3424

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions python-avd/pyavd/_eos_designs/schema/__init__.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions python-avd/pyavd/_eos_designs/schema/eos_designs.schema.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
# Use Ctrl + Space to get suggestions for every field. Autocomplete will pop up after typing 2 letters.
type: dict
keys:
service_unsupported_transceiver:
unsupported_transceiver:
type: dict
$ref: "eos_cli_config_gen#/keys/service_unsupported_transceiver"
Original file line number Diff line number Diff line change
Expand Up @@ -421,9 +421,9 @@ def spanning_tree(self) -> dict | None:
return spanning_tree

@cached_property
def service_unsupported_transceiver(self) -> dict | None:
def unsupported_transceiver(self) -> dict | None:
"""service_unsupported_transceiver based on unsupported_transceiver data-model."""
return self.inputs.service_unsupported_transceiver._as_dict() or None
return self.inputs.unsupported_transceiver._as_dict() or None

@cached_property
def local_users(self) -> list | None:
Expand Down

0 comments on commit af6fc0e

Please sign in to comment.