Skip to content
Snippets Groups Projects
Commit f8723407 authored by Neda Moeini's avatar Neda Moeini
Browse files

Remove ae_iface from EdgePort product block since it is always the same as the Edge port name.

parent 5459d8e1
No related branches found
No related tags found
No related merge requests found
Pipeline #88617 failed
...@@ -86,7 +86,6 @@ class EdgePortBlockInactive( ...@@ -86,7 +86,6 @@ class EdgePortBlockInactive(
edge_port_type: EdgePortType edge_port_type: EdgePortType
edge_port_ignore_if_down: bool = False edge_port_ignore_if_down: bool = False
edge_port_geant_ga_id: str | None = None edge_port_geant_ga_id: str | None = None
edge_port_ae_iface: str | None = None
edge_port_ae_members: LAGMemberList[EdgePortInterfaceBlockInactive] edge_port_ae_members: LAGMemberList[EdgePortInterfaceBlockInactive]
...@@ -103,7 +102,6 @@ class EdgePortBlockProvisioning(EdgePortBlockInactive, lifecycle=[SubscriptionLi ...@@ -103,7 +102,6 @@ class EdgePortBlockProvisioning(EdgePortBlockInactive, lifecycle=[SubscriptionLi
edge_port_type: EdgePortType edge_port_type: EdgePortType
edge_port_ignore_if_down: bool = False edge_port_ignore_if_down: bool = False
edge_port_geant_ga_id: str | None = None edge_port_geant_ga_id: str | None = None
edge_port_ae_iface: str | None = None
edge_port_ae_members: LAGMemberList[EdgePortInterfaceBlockProvisioning] # type: ignore[assignment] edge_port_ae_members: LAGMemberList[EdgePortInterfaceBlockProvisioning] # type: ignore[assignment]
...@@ -112,7 +110,7 @@ class EdgePortBlock(EdgePortBlockProvisioning, lifecycle=[SubscriptionLifecycle. ...@@ -112,7 +110,7 @@ class EdgePortBlock(EdgePortBlockProvisioning, lifecycle=[SubscriptionLifecycle.
#: The router that this edge port is connected to. #: The router that this edge port is connected to.
node: RouterBlockInactive node: RouterBlockInactive
#: The name of the edge port. #: The name of the edge port. In our case, this is the name of the LAG interface.
edge_port_name: str edge_port_name: str
#: Indicates whether LACP (Link Aggregation Control Protocol) is enabled for this edge port. #: Indicates whether LACP (Link Aggregation Control Protocol) is enabled for this edge port.
edge_port_enable_lacp: bool edge_port_enable_lacp: bool
...@@ -130,7 +128,5 @@ class EdgePortBlock(EdgePortBlockProvisioning, lifecycle=[SubscriptionLifecycle. ...@@ -130,7 +128,5 @@ class EdgePortBlock(EdgePortBlockProvisioning, lifecycle=[SubscriptionLifecycle.
edge_port_ignore_if_down: bool = False edge_port_ignore_if_down: bool = False
#: The GEANT GA ID associated with this edge port, if any. #: The GEANT GA ID associated with this edge port, if any.
edge_port_geant_ga_id: str | None = None edge_port_geant_ga_id: str | None = None
#: The interface name for the aggregated Ethernet (AE) interface, if applicable.
edge_port_ae_iface: str | None = None
#: A list of LAG members associated with this edge port. #: A list of LAG members associated with this edge port.
edge_port_ae_members: LAGMemberList[EdgePortInterfaceBlock] # type: ignore[assignment] edge_port_ae_members: LAGMemberList[EdgePortInterfaceBlock] # type: ignore[assignment]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment