Documentation
¶
Overview ¶
Package flavors provides primitives to interact with the openapi HTTP API.
Code generated by github.com/do87/oapi-codegen version v0.5.1 DO NOT EDIT.
Index ¶
- Constants
- func NewGetFlavorsRequest(ctx context.Context, server string, projectID string) (*http.Request, error)
- func NewGetStoragesFlavorRequest(ctx context.Context, server string, projectID string, flavor string) (*http.Request, error)
- type Client
- type ClientInterface
- type ClientWithResponses
- func (c *ClientWithResponses) GetFlavorsWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*GetFlavorsResponse, error)
- func (c *ClientWithResponses) GetStoragesFlavorWithResponse(ctx context.Context, projectID string, flavor string, ...) (*GetStoragesFlavorResponse, error)
- func (c *ClientWithResponses) ParseGetFlavorsResponse(rsp *http.Response) (*GetFlavorsResponse, error)
- func (c *ClientWithResponses) ParseGetStoragesFlavorResponse(rsp *http.Response) (*GetStoragesFlavorResponse, error)
- type ClientWithResponsesInterface
- type GetFlavorsResponse
- type GetStoragesFlavorResponse
- type InfraFlavor
- type InfraGetFlavorsResponse
- type InstanceError
- type InstanceGetFlavorStorageResponse
- type InstanceStorageRange
- type RequestEditorFn
Constants ¶
const (
BearerAuthScopes = "BearerAuth.Scopes"
)
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Client ¶
type Client struct {
// The endpoint of the server conforming to this interface, with scheme,
// https://api.deepmap.com for example. This can contain a path relative
// to the server, such as https://api.deepmap.com/dev-test, and all the
// paths in the swagger spec will be appended to the server.
Server string
// Doer for performing requests, typically a *http.Client with any
// customized settings, such as certificate chains.
Client common.Client
}
Client which conforms to the OpenAPI3 specification for this service.
func (*Client) GetFlavors ¶
type ClientInterface ¶
type ClientInterface interface {
// GetFlavors request
GetFlavors(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*http.Response, error)
// GetStoragesFlavor request
GetStoragesFlavor(ctx context.Context, projectID string, flavor string, reqEditors ...RequestEditorFn) (*http.Response, error)
}
The interface specification for the client above.
type ClientWithResponses ¶
type ClientWithResponses struct {
ClientInterface
}
ClientWithResponses builds on ClientInterface to offer response payloads
func NewClientWithResponses ¶
func NewClientWithResponses(server string, httpClient common.Client) *ClientWithResponses
NewClientWithResponses creates a new ClientWithResponses, which wraps Client with return type handling
func (*ClientWithResponses) GetFlavorsWithResponse ¶
func (c *ClientWithResponses) GetFlavorsWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*GetFlavorsResponse, error)
GetFlavorsWithResponse request returning *GetFlavorsResponse
func (*ClientWithResponses) GetStoragesFlavorWithResponse ¶ added in v1.14.1
func (c *ClientWithResponses) GetStoragesFlavorWithResponse(ctx context.Context, projectID string, flavor string, reqEditors ...RequestEditorFn) (*GetStoragesFlavorResponse, error)
GetStoragesFlavorWithResponse request returning *GetStoragesFlavorResponse
func (*ClientWithResponses) ParseGetFlavorsResponse ¶
func (c *ClientWithResponses) ParseGetFlavorsResponse(rsp *http.Response) (*GetFlavorsResponse, error)
ParseGetFlavorsResponse parses an HTTP response from a GetFlavorsWithResponse call
func (*ClientWithResponses) ParseGetStoragesFlavorResponse ¶ added in v1.14.1
func (c *ClientWithResponses) ParseGetStoragesFlavorResponse(rsp *http.Response) (*GetStoragesFlavorResponse, error)
ParseGetStoragesFlavorResponse parses an HTTP response from a GetStoragesFlavorWithResponse call
type ClientWithResponsesInterface ¶
type ClientWithResponsesInterface interface {
// GetFlavors request
GetFlavorsWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*GetFlavorsResponse, error)
// GetStoragesFlavor request
GetStoragesFlavorWithResponse(ctx context.Context, projectID string, flavor string, reqEditors ...RequestEditorFn) (*GetStoragesFlavorResponse, error)
}
ClientWithResponsesInterface is the interface specification for the client with responses above.
type GetFlavorsResponse ¶
type GetFlavorsResponse struct {
Body []byte
HTTPResponse *http.Response
JSON200 *InfraGetFlavorsResponse
JSON400 *InstanceError
JSON500 *InstanceError
Error error // Aggregated error
}
func (GetFlavorsResponse) Status ¶
func (r GetFlavorsResponse) Status() string
Status returns HTTPResponse.Status
func (GetFlavorsResponse) StatusCode ¶
func (r GetFlavorsResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetStoragesFlavorResponse ¶ added in v1.14.1
type GetStoragesFlavorResponse struct {
Body []byte
HTTPResponse *http.Response
JSON200 *InstanceGetFlavorStorageResponse
JSON400 *InstanceError
JSON404 *InstanceError
Error error // Aggregated error
}
func (GetStoragesFlavorResponse) Status ¶ added in v1.14.1
func (r GetStoragesFlavorResponse) Status() string
Status returns HTTPResponse.Status
func (GetStoragesFlavorResponse) StatusCode ¶ added in v1.14.1
func (r GetStoragesFlavorResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type InfraFlavor ¶
type InfraFlavor struct {
Categories *[]string `json:"categories,omitempty"`
CPU *int `json:"cpu,omitempty"`
Description *string `json:"description,omitempty"`
ID *string `json:"id,omitempty"`
Memory *int `json:"memory,omitempty"`
}
InfraFlavor defines model for infra.Flavor.
type InfraGetFlavorsResponse ¶
type InfraGetFlavorsResponse struct {
Flavors *[]InfraFlavor `json:"flavors,omitempty"`
}
InfraGetFlavorsResponse defines model for infra.GetFlavorsResponse.
type InstanceError ¶
type InstanceError struct {
Code *int `json:"code,omitempty"`
Fields *map[string][]string `json:"fields,omitempty"`
Message *string `json:"message,omitempty"`
Type *string `json:"type,omitempty"`
}
InstanceError defines model for instance.Error.
type InstanceGetFlavorStorageResponse ¶ added in v1.14.1
type InstanceGetFlavorStorageResponse struct {
StorageClasses *[]string `json:"storageClasses,omitempty"`
StorageRange *InstanceStorageRange `json:"storageRange,omitempty"`
}
InstanceGetFlavorStorageResponse defines model for instance.GetFlavorStorageResponse.
type InstanceStorageRange ¶ added in v1.14.1
type InstanceStorageRange struct {
Max *int `json:"max,omitempty"`
Min *int `json:"min,omitempty"`
}
InstanceStorageRange defines model for instance.StorageRange.