diff --git a/docs/source/glossary.rst b/docs/source/glossary.rst index 4844b8049b2fff9c98561ac6e9f56b92a63ef4ae..4dc66b8eac5e2e408f220c93b8c4be80cf8e3301 100644 --- a/docs/source/glossary.rst +++ b/docs/source/glossary.rst @@ -81,3 +81,6 @@ Glossary of terms WFO `Workflow Orchestrator <https://workfloworchestrator.org/>`_ + + LAN + Local Area Network diff --git a/gso/products/product_blocks/pop_vlan.py b/gso/products/product_blocks/pop_vlan.py index 196158c14bf1eaca146be14556f2c7a8b8615ab5..4935c2f69966874c686489c7e06e3061d5509365 100644 --- a/gso/products/product_blocks/pop_vlan.py +++ b/gso/products/product_blocks/pop_vlan.py @@ -89,13 +89,13 @@ class PopVlanBlock(PopVlanBlockProvisioning, lifecycle=[SubscriptionLifecycle.AC vlan_id: int #: The description of the Pop VLAN. pop_vlan_description: str - #: The Lan Switch Interconnect that this Pop VLAN is connected to. + #: The LAN Switch Interconnect that this Pop VLAN is connected to. lan_switch_interconnect: LanSwitchInterconnectBlock #: The ports of the Pop VLAN. ports: PortList[PopVlanPortBlock] #: The level of the layer preference for the Pop VLAN (L2 or L3). layer_preference: LayerPreference - #: IPv4 network for the Pop VLAN if layer_preference is L3. + #: IPv4 network for the Pop VLAN if layer preference is L3. ipv4_network: IPv4Network | None = None - #: IPv6 network for the Pop VLAN if layer_preference is L3. + #: IPv6 network for the Pop VLAN if layer preference is L3. ipv6_network: IPv6Network | None = None