Documentation ¶
Overview ¶
Package iaas 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 ¶
View Source
var BaseURLs = baseurl.New(
"iaas",
"https://iaas.api.eu01.stackit.cloud/",
)
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct { // list of connected client services Area *area.Client Backups *backups.Client Flavors *flavors.Client Images *images.Client Keypairs *keypairs.Client Network *network.Client Probes *probes.Client Project *project.Client Request *request.Client Servers *servers.Client // 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, opts ...ClientOption) (*Client, error)
type ClientOption ¶
ClientOption allows setting custom parameters during construction
func WithHTTPClient ¶
func WithHTTPClient(doer contracts.BaseClientInterface) ClientOption
WithHTTPClient allows overriding the default Doer, which is automatically created using http.Client. This is useful for tests.
type ClientWithResponses ¶
type ClientWithResponses struct { Client *Client // list of connected client services Area *area.ClientWithResponses Backups *backups.ClientWithResponses Flavors *flavors.ClientWithResponses Images *images.ClientWithResponses Keypairs *keypairs.ClientWithResponses Network *network.ClientWithResponses Probes *probes.ClientWithResponses Project *project.ClientWithResponses Request *request.ClientWithResponses Servers *servers.ClientWithResponses }
ClientWithResponses builds on rawClientInterface to offer response payloads
func NewClient ¶
func NewClient(server string, opts ...ClientOption) (*ClientWithResponses, error)
NewClient creates a new ClientWithResponses, which wraps Client with return type handling
func NewService ¶
func NewService(c contracts.BaseClientInterface) *ClientWithResponses
Directories ¶
Path | Synopsis |
---|---|
Package area provides primitives to interact with the openapi HTTP API.
|
Package area provides primitives to interact with the openapi HTTP API. |
Package backups provides primitives to interact with the openapi HTTP API.
|
Package backups provides primitives to interact with the openapi HTTP API. |
Package flavors provides primitives to interact with the openapi HTTP API.
|
Package flavors provides primitives to interact with the openapi HTTP API. |
Package images provides primitives to interact with the openapi HTTP API.
|
Package images provides primitives to interact with the openapi HTTP API. |
Package keypairs provides primitives to interact with the openapi HTTP API.
|
Package keypairs provides primitives to interact with the openapi HTTP API. |
Package network provides primitives to interact with the openapi HTTP API.
|
Package network provides primitives to interact with the openapi HTTP API. |
Package probes provides primitives to interact with the openapi HTTP API.
|
Package probes provides primitives to interact with the openapi HTTP API. |
Package project provides primitives to interact with the openapi HTTP API.
|
Package project provides primitives to interact with the openapi HTTP API. |
Package request provides primitives to interact with the openapi HTTP API.
|
Package request provides primitives to interact with the openapi HTTP API. |
Package servers provides primitives to interact with the openapi HTTP API.
|
Package servers provides primitives to interact with the openapi HTTP API. |
Click to show internal directories.
Click to hide internal directories.