Documentation ¶
Overview ¶
Package credentials 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 ¶
- func NewDeleteRequest(ctx context.Context, server string, projectID string, instanceID string, ...) (*http.Request, error)
- func NewGetRequest(ctx context.Context, server string, projectID string, instanceID string, ...) (*http.Request, error)
- func NewListRequest(ctx context.Context, server string, projectID string, instanceID string) (*http.Request, error)
- func NewPostRequest(ctx context.Context, server string, projectID string, instanceID string) (*http.Request, error)
- type BadRequest
- type Client
- func (c *Client) DeleteRaw(ctx context.Context, projectID string, instanceID string, credentialsID string, ...) (*http.Response, error)
- func (c *Client) GetRaw(ctx context.Context, projectID string, instanceID string, credentialsID string, ...) (*http.Response, error)
- func (c *Client) ListRaw(ctx context.Context, projectID string, instanceID string, ...) (*http.Response, error)
- func (c *Client) PostRaw(ctx context.Context, projectID string, instanceID string, ...) (*http.Response, error)
- type ClientWithResponses
- func (c *ClientWithResponses) Delete(ctx context.Context, projectID string, instanceID string, credentialsID string, ...) (*DeleteResponse, error)
- func (c *ClientWithResponses) Get(ctx context.Context, projectID string, instanceID string, credentialsID string, ...) (*GetResponse, error)
- func (c *ClientWithResponses) List(ctx context.Context, projectID string, instanceID string, ...) (*ListResponse, error)
- func (c *ClientWithResponses) ParseDeleteResponse(rsp *http.Response) (*DeleteResponse, error)
- func (c *ClientWithResponses) ParseGetResponse(rsp *http.Response) (*GetResponse, error)
- func (c *ClientWithResponses) ParseListResponse(rsp *http.Response) (*ListResponse, error)
- func (c *ClientWithResponses) ParsePostResponse(rsp *http.Response) (*PostResponse, error)
- func (c *ClientWithResponses) Post(ctx context.Context, projectID string, instanceID string, ...) (*PostResponse, error)
- type ClientWithResponsesInterface
- type Credentials
- type CredentialsList
- type CredentialsListItem
- type CredentialsResponse
- type DeleteResponse
- type Error
- type GetResponse
- type ListResponse
- type NotFound
- type Object
- type PostResponse
- type RawCredentials
- type RequestEditorFn
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewDeleteRequest ¶
func NewDeleteRequest(ctx context.Context, server string, projectID string, instanceID string, credentialsID string) (*http.Request, error)
NewDeleteRequest generates requests for Delete
func NewGetRequest ¶
func NewGetRequest(ctx context.Context, server string, projectID string, instanceID string, credentialsID string) (*http.Request, error)
NewGetRequest generates requests for Get
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) Delete ¶
func (c *ClientWithResponses) Delete(ctx context.Context, projectID string, instanceID string, credentialsID string, reqEditors ...RequestEditorFn) (*DeleteResponse, error)
Delete request returning *DeleteResponse
func (*ClientWithResponses) Get ¶
func (c *ClientWithResponses) Get(ctx context.Context, projectID string, instanceID string, credentialsID string, reqEditors ...RequestEditorFn) (*GetResponse, error)
Get request returning *GetResponse
func (*ClientWithResponses) List ¶
func (c *ClientWithResponses) List(ctx context.Context, projectID string, instanceID string, reqEditors ...RequestEditorFn) (*ListResponse, error)
List request returning *ListResponse
func (*ClientWithResponses) ParseDeleteResponse ¶
func (c *ClientWithResponses) ParseDeleteResponse(rsp *http.Response) (*DeleteResponse, error)
ParseDeleteResponse parses an HTTP response from a Delete call
func (*ClientWithResponses) ParseGetResponse ¶
func (c *ClientWithResponses) ParseGetResponse(rsp *http.Response) (*GetResponse, error)
ParseGetResponse parses an HTTP response from a Get call
func (*ClientWithResponses) ParseListResponse ¶
func (c *ClientWithResponses) ParseListResponse(rsp *http.Response) (*ListResponse, error)
ParseListResponse parses an HTTP response from a List call
func (*ClientWithResponses) ParsePostResponse ¶
func (c *ClientWithResponses) ParsePostResponse(rsp *http.Response) (*PostResponse, error)
ParsePostResponse parses an HTTP response from a Post call
func (*ClientWithResponses) Post ¶
func (c *ClientWithResponses) Post(ctx context.Context, projectID string, instanceID string, reqEditors ...RequestEditorFn) (*PostResponse, error)
Post request returning *PostResponse
type ClientWithResponsesInterface ¶
type ClientWithResponsesInterface interface { // List request List(ctx context.Context, projectID string, instanceID string, reqEditors ...RequestEditorFn) (*ListResponse, error) // Post request Post(ctx context.Context, projectID string, instanceID string, reqEditors ...RequestEditorFn) (*PostResponse, error) // Delete request Delete(ctx context.Context, projectID string, instanceID string, credentialsID string, reqEditors ...RequestEditorFn) (*DeleteResponse, error) // Get request Get(ctx context.Context, projectID string, instanceID string, credentialsID string, reqEditors ...RequestEditorFn) (*GetResponse, error) }
ClientWithResponsesInterface is the interface specification for the client with responses above.
type Credentials ¶
type Credentials struct { Host string `json:"host"` Hosts []string `json:"hosts"` Name string `json:"name"` Password string `json:"password"` Port int `json:"port"` Protocols *Object `json:"protocols,omitempty"` Username string `json:"username"` }
Credentials defines model for Credentials.
type CredentialsList ¶
type CredentialsList struct {
CredentialsList []CredentialsListItem `json:"credentialsList"`
}
CredentialsList defines model for CredentialsList.
type CredentialsListItem ¶
type CredentialsListItem struct {
ID string `json:"id"`
}
CredentialsListItem defines model for CredentialsListItem.
type CredentialsResponse ¶
type CredentialsResponse struct { ID string `json:"id"` Raw *RawCredentials `json:"raw,omitempty"` Uri string `json:"uri"` }
CredentialsResponse defines model for CredentialsResponse.
type DeleteResponse ¶
type DeleteResponse struct { Body []byte HTTPResponse *http.Response JSON404 *Error Error error // Aggregated error }
func (DeleteResponse) Status ¶
func (r DeleteResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteResponse) StatusCode ¶
func (r DeleteResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetResponse ¶
type GetResponse struct { Body []byte HTTPResponse *http.Response JSON200 *CredentialsResponse JSON404 *Error Error error // Aggregated error }
func (GetResponse) StatusCode ¶
func (r GetResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type ListResponse ¶
type ListResponse struct { Body []byte HTTPResponse *http.Response JSON200 *CredentialsList JSON404 *Error Error error // Aggregated error }
func (ListResponse) Status ¶
func (r ListResponse) Status() string
Status returns HTTPResponse.Status
func (ListResponse) StatusCode ¶
func (r ListResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostResponse ¶
type PostResponse struct { Body []byte HTTPResponse *http.Response JSON200 *CredentialsResponse JSON400 *Error Error error // Aggregated error }
func (PostResponse) Status ¶
func (r PostResponse) Status() string
Status returns HTTPResponse.Status
func (PostResponse) StatusCode ¶
func (r PostResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type RawCredentials ¶
type RawCredentials struct { Credentials Credentials `json:"credentials"` RouteServiceUrl string `json:"routeServiceUrl"` SyslogDrainUrl string `json:"syslogDrainUrl"` VolumeMounts *[]Object `json:"volumeMounts,omitempty"` }
RawCredentials defines model for RawCredentials.