oc-schedulerd/docs/uml/class_old_graph.puml

33 lines
738 B
Plaintext
Raw Normal View History

2024-07-02 12:24:03 +02:00
@startuml
package "main" {
class Graph {
[]Link Links
[]DataModel Datas
[]ComputingModel Computings
2024-11-07 13:35:16 +01:00
[]ComputeModel Computes
2024-07-02 12:24:03 +02:00
[]StorageModel Storages
HttpQuery ws
GetGraphList(apiurl string) (map[string]string, error)
LoadFrom(workspace string) error
AddDataModel(id string) error
2024-11-07 13:35:16 +01:00
AddComputeModel(id string) error
2024-07-02 12:24:03 +02:00
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