Documentation ¶
Overview ¶
Package objectstorage 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 ¶
This section is empty.
Variables ¶
View Source
var BaseURLs = urls.Init(
"object_storage",
"https://api.stackit.cloud/object-storage-api/",
"https://api-qa.stackit.cloud/object-storage-api/",
"https://api-dev.stackit.cloud/object-storage-api/",
)
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct { // list of connected client services AccessKey *accesskey.Client Bucket *bucket.Client CredentialsGroup *credentialsgroup.Client Project *project.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 common.Client }
Client which conforms to the OpenAPI3 specification for this service.
type ClientOption ¶
ClientOption allows setting custom parameters during construction
func WithHTTPClient ¶
func WithHTTPClient(doer common.Client) 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 AccessKey *accesskey.ClientWithResponses Bucket *bucket.ClientWithResponses CredentialsGroup *credentialsgroup.ClientWithResponses Project *project.ClientWithResponses }
ClientWithResponses builds on ClientInterface to offer response payloads
func NewClientWithResponses ¶
func NewClientWithResponses(server string, opts ...ClientOption) (*ClientWithResponses, error)
NewClientWithResponses creates a new ClientWithResponses, which wraps Client with return type handling
func NewService ¶
func NewService(c common.Client) *ClientWithResponses
Directories ¶
Path | Synopsis |
---|---|
Package accesskey provides primitives to interact with the openapi HTTP API.
|
Package accesskey provides primitives to interact with the openapi HTTP API. |
Package bucket provides primitives to interact with the openapi HTTP API.
|
Package bucket provides primitives to interact with the openapi HTTP API. |
Package credentialsgroup provides primitives to interact with the openapi HTTP API.
|
Package credentialsgroup 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. |
Click to show internal directories.
Click to hide internal directories.