2024-10-01 11:15:36 +03:00
|
|
|
package cluster
|
|
|
|
|
|
2024-10-02 12:14:31 +03:00
|
|
|
import "repository.basistech.ru/BASIS/dynamix-standard-go-sdk/interfaces"
|
2024-10-01 11:15:36 +03:00
|
|
|
|
|
|
|
|
// Structure for creating request to cluster
|
|
|
|
|
type Cluster struct {
|
|
|
|
|
client interfaces.Caller
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Builder for vms endpoints
|
|
|
|
|
func New(client interfaces.Caller) *Cluster {
|
|
|
|
|
return &Cluster{
|
|
|
|
|
client,
|
|
|
|
|
}
|
|
|
|
|
}
|