diagrams documentation
This commit is contained in:
32
docs/uml/class_old_graph.puml
Normal file
32
docs/uml/class_old_graph.puml
Normal file
@@ -0,0 +1,32 @@
|
||||
@startuml
|
||||
package "main" {
|
||||
class Graph {
|
||||
[]Link Links
|
||||
[]DataModel Datas
|
||||
[]ComputingModel Computings
|
||||
[]DatacenterModel Datacenters
|
||||
[]StorageModel Storages
|
||||
HttpQuery ws
|
||||
|
||||
GetGraphList(apiurl string) (map[string]string, error)
|
||||
LoadFrom(workspace string) error
|
||||
AddDataModel(id string) error
|
||||
AddDatacenterModel(id string) error
|
||||
AddComputingModel(id string) error
|
||||
AddStorageModel(id string) error
|
||||
ExportToArgo(id string) error
|
||||
ExportToHelm(id string) error
|
||||
}
|
||||
|
||||
class Link {
|
||||
string Src
|
||||
string Dst
|
||||
}
|
||||
|
||||
class HttpQuery {
|
||||
Init(apiurl string)
|
||||
Get(endpoint string) ([]byte, error)
|
||||
}
|
||||
}
|
||||
|
||||
@enduml
|
||||
Reference in New Issue
Block a user