Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Edge ¶
type Edge struct {
Data EdgeData `json:"data"`
}
Edge is the structure for a edge in the topology graph.
type EdgeData ¶
type EdgeData struct { ID string `json:"id"` Source string `json:"source"` SourceCluster string `json:"-"` SourceNamespace string `json:"-"` SourceName string `json:"-"` Target string `json:"target"` TargetCluster string `json:"-"` TargetNamespace string `json:"-"` TargetName string `json:"-"` Description string `json:"description"` }
EdgeData is the data for a edge.
type Node ¶
type Node struct {
Data NodeData `json:"data"`
}
Node is the structure for a node in the topology graph.
Click to show internal directories.
Click to hide internal directories.