You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
decort-golang-sdk/pkg/cloudapi/sizes/sizes.go

20 lines
422 B

// Lists all the configured flavors available.
// A flavor is a combination of amount of compute capacity(CU) and disk capacity(GB).
package sizes
import (
"repos.digitalenergy.online/BASIS/decort-golang-sdk/interfaces"
)
// Structure for creatig request to sizes
type Sizes struct {
client interfaces.Caller
}
// Builder for sizes endpoints
func New(client interfaces.Caller) *Sizes {
return &Sizes{
client,
}
}