Documentation ¶
Overview ¶
Package bucket 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 ¶
- func NewCreateRequest(ctx context.Context, server string, projectID string, bucketName string) (*http.Request, error)
- func NewDeleteRequest(ctx context.Context, server string, projectID string, bucketName string) (*http.Request, error)
- func NewGetRequest(ctx context.Context, server string, projectID string, bucketName string) (*http.Request, error)
- func NewListRequest(ctx context.Context, server string, projectID string) (*http.Request, error)
- type Client
- func (c *Client) Create(ctx context.Context, projectID string, bucketName string, ...) (*http.Response, error)
- func (c *Client) Delete(ctx context.Context, projectID string, bucketName string, ...) (*http.Response, error)
- func (c *Client) Get(ctx context.Context, projectID string, bucketName string, ...) (*http.Response, error)
- func (c *Client) List(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*http.Response, error)
- type ClientInterface
- type ClientWithResponses
- func (c *ClientWithResponses) CreateWithResponse(ctx context.Context, projectID string, bucketName string, ...) (*CreateResponse, error)
- func (c *ClientWithResponses) DeleteWithResponse(ctx context.Context, projectID string, bucketName string, ...) (*DeleteResponse, error)
- func (c *ClientWithResponses) GetWithResponse(ctx context.Context, projectID string, bucketName string, ...) (*GetResponse, error)
- func (c *ClientWithResponses) ListWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*ListResponse, error)
- func (c *ClientWithResponses) ParseCreateResponse(rsp *http.Response) (*CreateResponse, 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)
- type ClientWithResponsesInterface
- type CreateResponse
- type DeleteResponse
- type GetResponse
- type ListResponse
- type RequestEditorFn
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewCreateRequest ¶
func NewCreateRequest(ctx context.Context, server string, projectID string, bucketName string) (*http.Request, error)
NewCreateRequest generates requests for Create
func NewDeleteRequest ¶
func NewDeleteRequest(ctx context.Context, server string, projectID string, bucketName string) (*http.Request, error)
NewDeleteRequest generates requests for Delete
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 common.Client }
Client which conforms to the OpenAPI3 specification for this service.
type ClientInterface ¶
type ClientInterface interface { // Delete request Delete(ctx context.Context, projectID string, bucketName string, reqEditors ...RequestEditorFn) (*http.Response, error) // Get request Get(ctx context.Context, projectID string, bucketName string, reqEditors ...RequestEditorFn) (*http.Response, error) // Create request Create(ctx context.Context, projectID string, bucketName string, reqEditors ...RequestEditorFn) (*http.Response, error) // List request List(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*http.Response, error) }
The interface specification for the client above.
type ClientWithResponses ¶
type ClientWithResponses struct {
ClientInterface
}
ClientWithResponses builds on ClientInterface to offer response payloads
func NewClientWithResponses ¶
func NewClientWithResponses(server string, httpClient common.Client) *ClientWithResponses
NewClientWithResponses creates a new ClientWithResponses, which wraps Client with return type handling
func (*ClientWithResponses) CreateWithResponse ¶
func (c *ClientWithResponses) CreateWithResponse(ctx context.Context, projectID string, bucketName string, reqEditors ...RequestEditorFn) (*CreateResponse, error)
CreateWithResponse request returning *CreateResponse
func (*ClientWithResponses) DeleteWithResponse ¶
func (c *ClientWithResponses) DeleteWithResponse(ctx context.Context, projectID string, bucketName string, reqEditors ...RequestEditorFn) (*DeleteResponse, error)
DeleteWithResponse request returning *DeleteResponse
func (*ClientWithResponses) GetWithResponse ¶
func (c *ClientWithResponses) GetWithResponse(ctx context.Context, projectID string, bucketName string, reqEditors ...RequestEditorFn) (*GetResponse, error)
GetWithResponse request returning *GetResponse
func (*ClientWithResponses) ListWithResponse ¶
func (c *ClientWithResponses) ListWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*ListResponse, error)
ListWithResponse request returning *ListResponse
func (*ClientWithResponses) ParseCreateResponse ¶
func (c *ClientWithResponses) ParseCreateResponse(rsp *http.Response) (*CreateResponse, error)
ParseCreateResponse parses an HTTP response from a CreateWithResponse call
func (*ClientWithResponses) ParseDeleteResponse ¶
func (c *ClientWithResponses) ParseDeleteResponse(rsp *http.Response) (*DeleteResponse, error)
ParseDeleteResponse parses an HTTP response from a DeleteWithResponse call
func (*ClientWithResponses) ParseGetResponse ¶
func (c *ClientWithResponses) ParseGetResponse(rsp *http.Response) (*GetResponse, error)
ParseGetResponse parses an HTTP response from a GetWithResponse call
func (*ClientWithResponses) ParseListResponse ¶
func (c *ClientWithResponses) ParseListResponse(rsp *http.Response) (*ListResponse, error)
ParseListResponse parses an HTTP response from a ListWithResponse call
type ClientWithResponsesInterface ¶
type ClientWithResponsesInterface interface { // Delete request DeleteWithResponse(ctx context.Context, projectID string, bucketName string, reqEditors ...RequestEditorFn) (*DeleteResponse, error) // Get request GetWithResponse(ctx context.Context, projectID string, bucketName string, reqEditors ...RequestEditorFn) (*GetResponse, error) // Create request CreateWithResponse(ctx context.Context, projectID string, bucketName string, reqEditors ...RequestEditorFn) (*CreateResponse, error) // List request ListWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*ListResponse, error) }
ClientWithResponsesInterface is the interface specification for the client with responses above.
type CreateResponse ¶
type CreateResponse struct { Body []byte HTTPResponse *http.Response JSON201 *struct { // Bucket Name of the bucket Bucket string `json:"bucket"` // Project Project ID Project string `json:"project"` } JSON404 *struct { Details []struct { Key string `json:"key"` Msg string `json:"msg"` } `json:"detail"` } JSON409 *struct { Details []struct { Key string `json:"key"` Msg string `json:"msg"` } `json:"detail"` } JSON422 *struct { Details []struct { Key string `json:"key"` Msg string `json:"msg"` } `json:"detail"` } JSON500 *struct { Details []struct { Key string `json:"key"` Msg string `json:"msg"` } `json:"detail"` } Error error // Aggregated error }
func (CreateResponse) Status ¶
func (r CreateResponse) Status() string
Status returns HTTPResponse.Status
func (CreateResponse) StatusCode ¶
func (r CreateResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
func (CreateResponse) WaitHandler ¶
func (r CreateResponse) WaitHandler(ctx context.Context, c *ClientWithResponses, projectID, bucketName string) *wait.Handler
WaitHandler for creation. in case there are no errors, the returned interface is of *GetResponse
type DeleteResponse ¶
type DeleteResponse struct { Body []byte HTTPResponse *http.Response JSON200 *struct { // Bucket Name of the bucket Bucket string `json:"bucket"` // Project Project ID Project string `json:"project"` } JSON404 *struct { Details []struct { Key string `json:"key"` Msg string `json:"msg"` } `json:"detail"` } JSON422 *struct { Details []struct { Key string `json:"key"` Msg string `json:"msg"` } `json:"detail"` } JSON500 *struct { Details []struct { Key string `json:"key"` Msg string `json:"msg"` } `json:"detail"` } 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
func (DeleteResponse) WaitHandler ¶
func (r DeleteResponse) WaitHandler(ctx context.Context, c *ClientWithResponses, projectID, bucketName string) *wait.Handler
WaitHandler for deletion
type GetResponse ¶
type GetResponse struct { Body []byte HTTPResponse *http.Response JSON200 *struct { Bucket struct { Name string `json:"name"` Region string `json:"region"` // UrlPathStyle URL in path style UrlPathStyle string `json:"urlPathStyle"` // UrlVirtualHostedStyle URL in virtual hosted style UrlVirtualHostedStyle string `json:"urlVirtualHostedStyle"` } `json:"bucket"` // Project Project ID Project string `json:"project"` } JSON403 *struct { Details []struct { Key string `json:"key"` Msg string `json:"msg"` } `json:"detail"` } JSON404 *struct { Details []struct { Key string `json:"key"` Msg string `json:"msg"` } `json:"detail"` } JSON422 *struct { Details *[]struct { Loc []string `json:"loc"` Msg string `json:"msg"` Type string `json:"type"` } `json:"detail,omitempty"` } JSON500 *struct { Details []struct { Key string `json:"key"` Msg string `json:"msg"` } `json:"detail"` } 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 *struct { Buckets []struct { Name string `json:"name"` Region string `json:"region"` // UrlPathStyle URL in path style UrlPathStyle string `json:"urlPathStyle"` // UrlVirtualHostedStyle URL in virtual hosted style UrlVirtualHostedStyle string `json:"urlVirtualHostedStyle"` } `json:"buckets"` // Project Project ID Project string `json:"project"` } JSON403 *struct { Details []struct { Key string `json:"key"` Msg string `json:"msg"` } `json:"detail"` } JSON404 *struct { Details []struct { Key string `json:"key"` Msg string `json:"msg"` } `json:"detail"` } JSON422 *struct { Details *[]struct { Loc []string `json:"loc"` Msg string `json:"msg"` Type string `json:"type"` } `json:"detail,omitempty"` } JSON500 *struct { Details []struct { Key string `json:"key"` Msg string `json:"msg"` } `json:"detail"` } 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