 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Overview ¶
Package storage provides primitives to interact with the openapi HTTP API.
Code generated by github.com/do87/stackit-client-generator version v0.0.2 DO NOT EDIT.
Index ¶
- Constants
- func NewGetStorageOptionsRequest(ctx context.Context, server string, projectID string, flavorID string) (*http.Request, error)
- type Client
- type ClientWithResponses
- type ClientWithResponsesInterface
- type GetStorageOptionsResponse
- 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 contracts.BaseClientInterface
}
    Client which conforms to the OpenAPI3 specification for this service.
func NewRawClient ¶
func NewRawClient(server string, httpClient contracts.BaseClientInterface) *Client
NewRawClient Creates a new Client, with reasonable defaults
type ClientWithResponses ¶
type ClientWithResponses struct {
	// contains filtered or unexported fields
}
    ClientWithResponses builds on rawClientInterface to offer response payloads
func NewClient ¶
func NewClient(server string, httpClient contracts.BaseClientInterface) *ClientWithResponses
NewClient creates a new ClientWithResponses, which wraps Client with return type handling
func (*ClientWithResponses) GetStorageOptions ¶
func (c *ClientWithResponses) GetStorageOptions(ctx context.Context, projectID string, flavorID string, reqEditors ...RequestEditorFn) (*GetStorageOptionsResponse, error)
GetStorageOptions request returning *GetStorageOptionsResponse
func (*ClientWithResponses) ParseGetStorageOptionsResponse ¶
func (c *ClientWithResponses) ParseGetStorageOptionsResponse(rsp *http.Response) (*GetStorageOptionsResponse, error)
ParseGetStorageOptionsResponse parses an HTTP response from a GetStorageOptions call
type ClientWithResponsesInterface ¶
type ClientWithResponsesInterface interface {
	// GetStorageOptions request
	GetStorageOptions(ctx context.Context, projectID string, flavorID string, reqEditors ...RequestEditorFn) (*GetStorageOptionsResponse, error)
}
    ClientWithResponsesInterface is the interface specification for the client with responses above.
type GetStorageOptionsResponse ¶
type GetStorageOptionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *InstanceGetFlavorStorageResponse
	JSON400      *InstanceError
	Error        error // Aggregated error
}
    func (GetStorageOptionsResponse) Status ¶
func (r GetStorageOptionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetStorageOptionsResponse) StatusCode ¶
func (r GetStorageOptionsResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
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 ¶
type InstanceGetFlavorStorageResponse struct {
	StorageClasses *[]string             `json:"storageClasses,omitempty"`
	StorageRange   *InstanceStorageRange `json:"storageRange,omitempty"`
}
    InstanceGetFlavorStorageResponse defines model for instance.GetFlavorStorageResponse.
type InstanceStorageRange ¶
type InstanceStorageRange struct {
	Max *int `json:"max,omitempty"`
	Min *int `json:"min,omitempty"`
}
    InstanceStorageRange defines model for instance.StorageRange.