Skip to content
Snippets Groups Projects
Verified Commit d2db7cb5 authored by Karel van Klink's avatar Karel van Klink :smiley_cat:
Browse files

Add missing terms to glossary

parent 572f99e2
No related branches found
No related tags found
1 merge request!286Add Edge Port, GÉANT IP and IAS products
This commit is part of merge request !286. Comments created here will be created in the context of that merge request.
...@@ -90,6 +90,10 @@ Glossary of terms ...@@ -90,6 +90,10 @@ Glossary of terms
OSS OSS
Operational Support Systems Operational Support Systems
SBP
Service Binding Point, a logical construct used in the orchestrator to attach a partner subscription to a physical
(set of) ports.
SDP SDP
Service Demarcation Point: A logical construct used for modeling partner subscriptions. It models the link between Service Demarcation Point: A logical construct used for modeling partner subscriptions. It models the link between
the physical and the service domains. the physical and the service domains.
...@@ -107,5 +111,8 @@ Glossary of terms ...@@ -107,5 +111,8 @@ Glossary of terms
VLAN VLAN
Virtual LAN Virtual LAN
WAN
Wide Area Network
WFO WFO
`Workflow Orchestrator <https://workfloworchestrator.org/>`_ `Workflow Orchestrator <https://workfloworchestrator.org/>`_
...@@ -11,7 +11,7 @@ from gso.utils.types.ip_address import IPAddress ...@@ -11,7 +11,7 @@ from gso.utils.types.ip_address import IPAddress
@strawberry.enum @strawberry.enum
class IPFamily(strEnum): class IPFamily(strEnum):
"""Possible :term:`IP` families of a :term:`BGP` peering.""" """Possible IP families of a :term:`BGP` peering."""
V4UNICAST = "v4unicast" V4UNICAST = "v4unicast"
V6UNICAST = "v6unicast" V6UNICAST = "v6unicast"
...@@ -64,7 +64,7 @@ class BGPSession(BGPSessionProvisioning, lifecycle=[SubscriptionLifecycle.ACTIVE ...@@ -64,7 +64,7 @@ class BGPSession(BGPSessionProvisioning, lifecycle=[SubscriptionLifecycle.ACTIVE
bfd_interval: int | None = None bfd_interval: int | None = None
#: The :term:`BFD` multiplier, if enabled. #: The :term:`BFD` multiplier, if enabled.
bfd_multiplier: int | None = None bfd_multiplier: int | None = None
#: The list of :term:`IP` families enabled for this session. #: The list of IP families enabled for this session.
families: list[IPFamily] families: list[IPFamily]
#: Whether any custom policies exist for this session. #: Whether any custom policies exist for this session.
has_custom_policies: bool has_custom_policies: bool
......
...@@ -106,7 +106,7 @@ class EdgePortBlock(EdgePortBlockProvisioning, lifecycle=[SubscriptionLifecycle. ...@@ -106,7 +106,7 @@ class EdgePortBlock(EdgePortBlockProvisioning, lifecycle=[SubscriptionLifecycle.
edge_port_enable_lacp: bool edge_port_enable_lacp: bool
#: The type of encapsulation used on this edge port, by default DOT1Q. #: The type of encapsulation used on this edge port, by default DOT1Q.
edge_port_encapsulation: EncapsulationType = EncapsulationType.DOT1Q edge_port_encapsulation: EncapsulationType = EncapsulationType.DOT1Q
#: The :term:`MAC` address assigned to this edge port, if applicable. #: The MAC address assigned to this edge port, if applicable.
edge_port_mac_address: str | None = None edge_port_mac_address: str | None = None
#: The speed capacity of each member in the physical port. #: The speed capacity of each member in the physical port.
edge_port_member_speed: PhysicalPortCapacity edge_port_member_speed: PhysicalPortCapacity
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment