Documentation ¶
Overview ¶
Package postgresflex provides primitives to interact with the openapi HTTP API.
Code generated by dev.azure.com/schwarzit/schwarzit.odj.core/_git/stackit-client-generator.git version v1.0.23 DO NOT EDIT.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var BaseURLs = env.URLs(
"postgres_flex",
"https://postgres-flex-service.api.eu01.stackit.cloud/v1/",
"https://postgres-flex-service.api.eu01.qa.stackit.cloud/v1/",
"https://postgres-flex-service.api.eu01.dev.stackit.cloud/v1/",
)
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client[K contracts.ClientFlowConfig] struct { // list of connected client services Backups *backups.Client[K] Users *users.Client[K] Storage *storage.Client[K] Versions *versions.Client[K] Flavors *flavors.Client[K] Instance *instance.Client[K] // 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.ClientInterface[K] }
Client which conforms to the OpenAPI3 specification for this service.
func NewRawClient ¶
func NewRawClient[K contracts.ClientFlowConfig](server string, opts ...ClientOption[K]) (*Client[K], error)
type ClientOption ¶
type ClientOption[K contracts.ClientFlowConfig] func(*Client[K]) error
ClientOption allows setting custom parameters during construction
func WithBaseURL ¶
func WithBaseURL[K contracts.ClientFlowConfig](baseURL string) ClientOption[K]
WithBaseURL overrides the baseURL.
func WithHTTPClient ¶
func WithHTTPClient[K contracts.ClientFlowConfig](doer contracts.ClientInterface[K]) ClientOption[K]
WithHTTPClient allows overriding the default Doer, which is automatically created using http.Client. This is useful for tests.
type ClientWithResponses ¶
type ClientWithResponses[K contracts.ClientFlowConfig] struct { Client *Client[K] // list of connected client services Backups *backups.ClientWithResponses[K] Users *users.ClientWithResponses[K] Storage *storage.ClientWithResponses[K] Versions *versions.ClientWithResponses[K] Flavors *flavors.ClientWithResponses[K] Instance *instance.ClientWithResponses[K] }
ClientWithResponses builds on rawClientInterface to offer response payloads
func NewClient ¶
func NewClient[K contracts.ClientFlowConfig](server string, opts ...ClientOption[K]) (*ClientWithResponses[K], error)
NewClient creates a new ClientWithResponses, which wraps Client with return type handling
func NewService ¶
func NewService[K contracts.ClientFlowConfig](c contracts.ClientInterface[K]) *ClientWithResponses[K]
Directories ¶
Path | Synopsis |
---|---|
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 instance provides primitives to interact with the openapi HTTP API.
|
Package instance provides primitives to interact with the openapi HTTP API. |
Package storage provides primitives to interact with the openapi HTTP API.
|
Package storage provides primitives to interact with the openapi HTTP API. |
Package users provides primitives to interact with the openapi HTTP API.
|
Package users provides primitives to interact with the openapi HTTP API. |
Package versions provides primitives to interact with the openapi HTTP API.
|
Package versions provides primitives to interact with the openapi HTTP API. |