Skip to content

Commit

Permalink
add NodeTypeFabricAddressingPolicy
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismarget-j committed Jan 25, 2024
1 parent 4fed17e commit 8e63aac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apstra/query_node.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const (
NodeTypeEpApplicationInstance
NodeTypeEpEndpointPolicy
NodeTypeEpGroup
NodeTypeFabricAddressingPolicy
NodeTypeInterface
NodeTypeInterfaceMap
NodeTypeLink
Expand All @@ -29,6 +30,7 @@ const (
nodeTypeEpApplicationInstance = nodeType("ep_application_instance")
nodeTypeEpEndpointPolicy = nodeType("ep_endpoint_policy")
nodeTypeEpGroup = nodeType("ep_group")
nodeTypeFabricAddressingPolicy = nodeType("fabric_addressing_policy")
nodeTypeInterface = nodeType("interface")
nodeTypeInterfaceMap = nodeType("interface_map")
nodeTypeLink = nodeType("link")
Expand Down Expand Up @@ -61,6 +63,8 @@ func (o NodeType) String() string {
return string(nodeTypeEpEndpointPolicy)
case NodeTypeEpGroup:
return string(nodeTypeEpGroup)
case NodeTypeFabricAddressingPolicy:
return string(nodeTypeFabricAddressingPolicy)
case NodeTypeInterface:
return string(nodeTypeInterface)
case NodeTypeInterfaceMap:
Expand Down

0 comments on commit 8e63aac

Please sign in to comment.