Documentation ¶
Overview ¶
Package offerings 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 ¶
This section is empty.
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) List ¶ added in v1.23.0
func (c *ClientWithResponses) List(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*ListResponse, error)
List request returning *ListResponse
func (*ClientWithResponses) ParseListResponse ¶ added in v1.23.0
func (c *ClientWithResponses) ParseListResponse(rsp *http.Response) (*ListResponse, error)
ParseListResponse parses an HTTP response from a List call
type ClientWithResponsesInterface ¶
type ClientWithResponsesInterface interface { // List request List(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*ListResponse, error) }
ClientWithResponsesInterface is the interface specification for the client with responses above.
type InstanceSchema ¶
InstanceSchema defines model for InstanceSchema.
type ListResponse ¶ added in v1.23.0
type ListResponse struct { Body []byte HTTPResponse *http.Response JSON200 *Offerings Error error // Aggregated error }
func (ListResponse) Status ¶ added in v1.23.0
func (r ListResponse) Status() string
Status returns HTTPResponse.Status
func (ListResponse) StatusCode ¶ added in v1.23.0
func (r ListResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type Offering ¶
type Offering struct { Description string `json:"description"` DocumentationUrl string `json:"documentationUrl"` ImageUrl string `json:"imageUrl"` Latest bool `json:"latest"` Name string `json:"name"` Plans []Plan `json:"plans"` QuotaCount int `json:"quotaCount"` Schema *InstanceSchema `json:"schema,omitempty"` Version string `json:"version"` }
Offering defines model for Offering.
type Offerings ¶
type Offerings struct {
Offerings []Offering `json:"offerings"`
}
Offerings defines model for Offerings.
type Plan ¶
type Plan struct { Description string `json:"description"` Free bool `json:"free"` ID string `json:"id"` Name string `json:"name"` }
Plan defines model for Plan.
type RequestEditorFn ¶
RequestEditorFn is the function signature for the RequestEditor callback function