Documentation ¶
Overview ¶
Package client provides primitives to interact with the openapi HTTP API.
Code generated by github.com/deepmap/oapi-codegen version v1.12.4 DO NOT EDIT.
Index ¶
- func NewGetApiAllJsonRequest(server string) (*http.Request, error)
- func NewGetApiProductCycleJsonRequest(server string, product string, cycle string) (*http.Request, error)
- func NewGetApiProductJsonRequest(server string, product string) (*http.Request, error)
- type Client
- func (c *Client) GetApiAllJson(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetApiProductCycleJson(ctx context.Context, product string, cycle string, ...) (*http.Response, error)
- func (c *Client) GetApiProductJson(ctx context.Context, product string, reqEditors ...RequestEditorFn) (*http.Response, error)
- type ClientInterface
- type ClientOption
- type ClientWithResponses
- func (c *ClientWithResponses) GetApiAllJsonWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GetApiAllJsonResponse, error)
- func (c *ClientWithResponses) GetApiProductCycleJsonWithResponse(ctx context.Context, product string, cycle string, ...) (*GetApiProductCycleJsonResponse, error)
- func (c *ClientWithResponses) GetApiProductJsonWithResponse(ctx context.Context, product string, reqEditors ...RequestEditorFn) (*GetApiProductJsonResponse, error)
- type ClientWithResponsesInterface
- type Cycle
- type CycleCycle0
- type CycleCycle1
- type CycleDiscontinued0
- type CycleDiscontinued1
- type CycleEol0
- type CycleEol1
- type CycleLts0
- type CycleLts1
- type CycleSupport0
- type CycleSupport1
- type Cycle_Cycle
- func (t Cycle_Cycle) AsCycleCycle0() (CycleCycle0, error)
- func (t Cycle_Cycle) AsCycleCycle1() (CycleCycle1, error)
- func (t *Cycle_Cycle) FromCycleCycle0(v CycleCycle0) error
- func (t *Cycle_Cycle) FromCycleCycle1(v CycleCycle1) error
- func (t Cycle_Cycle) MarshalJSON() ([]byte, error)
- func (t *Cycle_Cycle) MergeCycleCycle0(v CycleCycle0) error
- func (t *Cycle_Cycle) MergeCycleCycle1(v CycleCycle1) error
- func (t *Cycle_Cycle) UnmarshalJSON(b []byte) error
- type Cycle_Discontinued
- func (t Cycle_Discontinued) AsCycleDiscontinued0() (CycleDiscontinued0, error)
- func (t Cycle_Discontinued) AsCycleDiscontinued1() (CycleDiscontinued1, error)
- func (t *Cycle_Discontinued) FromCycleDiscontinued0(v CycleDiscontinued0) error
- func (t *Cycle_Discontinued) FromCycleDiscontinued1(v CycleDiscontinued1) error
- func (t Cycle_Discontinued) MarshalJSON() ([]byte, error)
- func (t *Cycle_Discontinued) MergeCycleDiscontinued0(v CycleDiscontinued0) error
- func (t *Cycle_Discontinued) MergeCycleDiscontinued1(v CycleDiscontinued1) error
- func (t *Cycle_Discontinued) UnmarshalJSON(b []byte) error
- type Cycle_Eol
- func (t Cycle_Eol) AsCycleEol0() (CycleEol0, error)
- func (t Cycle_Eol) AsCycleEol1() (CycleEol1, error)
- func (t *Cycle_Eol) FromCycleEol0(v CycleEol0) error
- func (t *Cycle_Eol) FromCycleEol1(v CycleEol1) error
- func (t Cycle_Eol) MarshalJSON() ([]byte, error)
- func (t *Cycle_Eol) MergeCycleEol0(v CycleEol0) error
- func (t *Cycle_Eol) MergeCycleEol1(v CycleEol1) error
- func (t *Cycle_Eol) UnmarshalJSON(b []byte) error
- type Cycle_Lts
- func (t Cycle_Lts) AsCycleLts0() (CycleLts0, error)
- func (t Cycle_Lts) AsCycleLts1() (CycleLts1, error)
- func (t *Cycle_Lts) FromCycleLts0(v CycleLts0) error
- func (t *Cycle_Lts) FromCycleLts1(v CycleLts1) error
- func (t Cycle_Lts) MarshalJSON() ([]byte, error)
- func (t *Cycle_Lts) MergeCycleLts0(v CycleLts0) error
- func (t *Cycle_Lts) MergeCycleLts1(v CycleLts1) error
- func (t *Cycle_Lts) UnmarshalJSON(b []byte) error
- type Cycle_Support
- func (t Cycle_Support) AsCycleSupport0() (CycleSupport0, error)
- func (t Cycle_Support) AsCycleSupport1() (CycleSupport1, error)
- func (t *Cycle_Support) FromCycleSupport0(v CycleSupport0) error
- func (t *Cycle_Support) FromCycleSupport1(v CycleSupport1) error
- func (t Cycle_Support) MarshalJSON() ([]byte, error)
- func (t *Cycle_Support) MergeCycleSupport0(v CycleSupport0) error
- func (t *Cycle_Support) MergeCycleSupport1(v CycleSupport1) error
- func (t *Cycle_Support) UnmarshalJSON(b []byte) error
- type GetApiAllJsonResponse
- type GetApiProductCycleJsonResponse
- type GetApiProductJsonResponse
- type HttpRequestDoer
- type RequestEditorFn
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewGetApiAllJsonRequest ¶
NewGetApiAllJsonRequest generates requests for GetApiAllJson
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 HttpRequestDoer // A list of callbacks for modifying requests which are generated before sending over // the network. RequestEditors []RequestEditorFn }
Client which conforms to the OpenAPI3 specification for this service.
func NewClient ¶
func NewClient(server string, opts ...ClientOption) (*Client, error)
Creates a new Client, with reasonable defaults
func (*Client) GetApiAllJson ¶
func (*Client) GetApiProductCycleJson ¶
func (*Client) GetApiProductJson ¶
type ClientInterface ¶
type ClientInterface interface { // GetApiAllJson request GetApiAllJson(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) // GetApiProductJson request GetApiProductJson(ctx context.Context, product string, reqEditors ...RequestEditorFn) (*http.Response, error) // GetApiProductCycleJson request GetApiProductCycleJson(ctx context.Context, product string, cycle string, reqEditors ...RequestEditorFn) (*http.Response, error) }
The interface specification for the client above.
type ClientOption ¶
ClientOption allows setting custom parameters during construction
func WithHTTPClient ¶
func WithHTTPClient(doer HttpRequestDoer) ClientOption
WithHTTPClient allows overriding the default Doer, which is automatically created using http.Client. This is useful for tests.
func WithRequestEditorFn ¶
func WithRequestEditorFn(fn RequestEditorFn) ClientOption
WithRequestEditorFn allows setting up a callback function, which will be called right before sending the request. This can be used to mutate the request.
type ClientWithResponses ¶
type ClientWithResponses struct {
ClientInterface
}
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 (*ClientWithResponses) GetApiAllJsonWithResponse ¶
func (c *ClientWithResponses) GetApiAllJsonWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GetApiAllJsonResponse, error)
GetApiAllJsonWithResponse request returning *GetApiAllJsonResponse
func (*ClientWithResponses) GetApiProductCycleJsonWithResponse ¶
func (c *ClientWithResponses) GetApiProductCycleJsonWithResponse(ctx context.Context, product string, cycle string, reqEditors ...RequestEditorFn) (*GetApiProductCycleJsonResponse, error)
GetApiProductCycleJsonWithResponse request returning *GetApiProductCycleJsonResponse
func (*ClientWithResponses) GetApiProductJsonWithResponse ¶
func (c *ClientWithResponses) GetApiProductJsonWithResponse(ctx context.Context, product string, reqEditors ...RequestEditorFn) (*GetApiProductJsonResponse, error)
GetApiProductJsonWithResponse request returning *GetApiProductJsonResponse
type ClientWithResponsesInterface ¶
type ClientWithResponsesInterface interface { // GetApiAllJson request GetApiAllJsonWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GetApiAllJsonResponse, error) // GetApiProductJson request GetApiProductJsonWithResponse(ctx context.Context, product string, reqEditors ...RequestEditorFn) (*GetApiProductJsonResponse, error) // GetApiProductCycleJson request GetApiProductCycleJsonWithResponse(ctx context.Context, product string, cycle string, reqEditors ...RequestEditorFn) (*GetApiProductCycleJsonResponse, error) }
ClientWithResponsesInterface is the interface specification for the client with responses above.
type Cycle ¶
type Cycle struct { // Cycle Release Cycle Cycle *Cycle_Cycle `json:"cycle,omitempty"` // Discontinued Whether this cycle is now discontinued. Discontinued *Cycle_Discontinued `json:"discontinued,omitempty"` // Eol End of Life Date for this release cycle Eol *Cycle_Eol `json:"eol,omitempty"` // Latest Latest release in this cycle Latest *string `json:"latest,omitempty"` // Link Link to changelog for the latest release, if available Link *string `json:"link,omitempty"` // Lts Whether this release cycle has long-term-support (LTS). Can be a date instead in YYYY-MM-DD format as well if the release enters LTS status on a given date. Lts *Cycle_Lts `json:"lts,omitempty"` // ReleaseDate Release Date for the first release in this cycle ReleaseDate *openapi_types.Date `json:"releaseDate,omitempty"` // Support Whether this release cycle has active support Support *Cycle_Support `json:"support,omitempty"` }
Cycle Details of a single release cycle of a given product. There might be some slight variations to this depending on the product.
type CycleDiscontinued0 ¶
type CycleDiscontinued0 = openapi_types.Date
CycleDiscontinued0 defines model for .
type Cycle_Cycle ¶
type Cycle_Cycle struct {
// contains filtered or unexported fields
}
Cycle_Cycle Release Cycle
func (Cycle_Cycle) AsCycleCycle0 ¶
func (t Cycle_Cycle) AsCycleCycle0() (CycleCycle0, error)
AsCycleCycle0 returns the union data inside the Cycle_Cycle as a CycleCycle0
func (Cycle_Cycle) AsCycleCycle1 ¶
func (t Cycle_Cycle) AsCycleCycle1() (CycleCycle1, error)
AsCycleCycle1 returns the union data inside the Cycle_Cycle as a CycleCycle1
func (*Cycle_Cycle) FromCycleCycle0 ¶
func (t *Cycle_Cycle) FromCycleCycle0(v CycleCycle0) error
FromCycleCycle0 overwrites any union data inside the Cycle_Cycle as the provided CycleCycle0
func (*Cycle_Cycle) FromCycleCycle1 ¶
func (t *Cycle_Cycle) FromCycleCycle1(v CycleCycle1) error
FromCycleCycle1 overwrites any union data inside the Cycle_Cycle as the provided CycleCycle1
func (Cycle_Cycle) MarshalJSON ¶
func (t Cycle_Cycle) MarshalJSON() ([]byte, error)
func (*Cycle_Cycle) MergeCycleCycle0 ¶
func (t *Cycle_Cycle) MergeCycleCycle0(v CycleCycle0) error
MergeCycleCycle0 performs a merge with any union data inside the Cycle_Cycle, using the provided CycleCycle0
func (*Cycle_Cycle) MergeCycleCycle1 ¶
func (t *Cycle_Cycle) MergeCycleCycle1(v CycleCycle1) error
MergeCycleCycle1 performs a merge with any union data inside the Cycle_Cycle, using the provided CycleCycle1
func (*Cycle_Cycle) UnmarshalJSON ¶
func (t *Cycle_Cycle) UnmarshalJSON(b []byte) error
type Cycle_Discontinued ¶
type Cycle_Discontinued struct {
// contains filtered or unexported fields
}
Cycle_Discontinued Whether this cycle is now discontinued.
func (Cycle_Discontinued) AsCycleDiscontinued0 ¶
func (t Cycle_Discontinued) AsCycleDiscontinued0() (CycleDiscontinued0, error)
AsCycleDiscontinued0 returns the union data inside the Cycle_Discontinued as a CycleDiscontinued0
func (Cycle_Discontinued) AsCycleDiscontinued1 ¶
func (t Cycle_Discontinued) AsCycleDiscontinued1() (CycleDiscontinued1, error)
AsCycleDiscontinued1 returns the union data inside the Cycle_Discontinued as a CycleDiscontinued1
func (*Cycle_Discontinued) FromCycleDiscontinued0 ¶
func (t *Cycle_Discontinued) FromCycleDiscontinued0(v CycleDiscontinued0) error
FromCycleDiscontinued0 overwrites any union data inside the Cycle_Discontinued as the provided CycleDiscontinued0
func (*Cycle_Discontinued) FromCycleDiscontinued1 ¶
func (t *Cycle_Discontinued) FromCycleDiscontinued1(v CycleDiscontinued1) error
FromCycleDiscontinued1 overwrites any union data inside the Cycle_Discontinued as the provided CycleDiscontinued1
func (Cycle_Discontinued) MarshalJSON ¶
func (t Cycle_Discontinued) MarshalJSON() ([]byte, error)
func (*Cycle_Discontinued) MergeCycleDiscontinued0 ¶
func (t *Cycle_Discontinued) MergeCycleDiscontinued0(v CycleDiscontinued0) error
MergeCycleDiscontinued0 performs a merge with any union data inside the Cycle_Discontinued, using the provided CycleDiscontinued0
func (*Cycle_Discontinued) MergeCycleDiscontinued1 ¶
func (t *Cycle_Discontinued) MergeCycleDiscontinued1(v CycleDiscontinued1) error
MergeCycleDiscontinued1 performs a merge with any union data inside the Cycle_Discontinued, using the provided CycleDiscontinued1
func (*Cycle_Discontinued) UnmarshalJSON ¶
func (t *Cycle_Discontinued) UnmarshalJSON(b []byte) error
type Cycle_Eol ¶
type Cycle_Eol struct {
// contains filtered or unexported fields
}
Cycle_Eol End of Life Date for this release cycle
func (Cycle_Eol) AsCycleEol0 ¶
AsCycleEol0 returns the union data inside the Cycle_Eol as a CycleEol0
func (Cycle_Eol) AsCycleEol1 ¶
AsCycleEol1 returns the union data inside the Cycle_Eol as a CycleEol1
func (*Cycle_Eol) FromCycleEol0 ¶
FromCycleEol0 overwrites any union data inside the Cycle_Eol as the provided CycleEol0
func (*Cycle_Eol) FromCycleEol1 ¶
FromCycleEol1 overwrites any union data inside the Cycle_Eol as the provided CycleEol1
func (Cycle_Eol) MarshalJSON ¶
func (*Cycle_Eol) MergeCycleEol0 ¶
MergeCycleEol0 performs a merge with any union data inside the Cycle_Eol, using the provided CycleEol0
func (*Cycle_Eol) MergeCycleEol1 ¶
MergeCycleEol1 performs a merge with any union data inside the Cycle_Eol, using the provided CycleEol1
func (*Cycle_Eol) UnmarshalJSON ¶
type Cycle_Lts ¶
type Cycle_Lts struct {
// contains filtered or unexported fields
}
Cycle_Lts Whether this release cycle has long-term-support (LTS). Can be a date instead in YYYY-MM-DD format as well if the release enters LTS status on a given date.
func (Cycle_Lts) AsCycleLts0 ¶
AsCycleLts0 returns the union data inside the Cycle_Lts as a CycleLts0
func (Cycle_Lts) AsCycleLts1 ¶
AsCycleLts1 returns the union data inside the Cycle_Lts as a CycleLts1
func (*Cycle_Lts) FromCycleLts0 ¶
FromCycleLts0 overwrites any union data inside the Cycle_Lts as the provided CycleLts0
func (*Cycle_Lts) FromCycleLts1 ¶
FromCycleLts1 overwrites any union data inside the Cycle_Lts as the provided CycleLts1
func (Cycle_Lts) MarshalJSON ¶
func (*Cycle_Lts) MergeCycleLts0 ¶
MergeCycleLts0 performs a merge with any union data inside the Cycle_Lts, using the provided CycleLts0
func (*Cycle_Lts) MergeCycleLts1 ¶
MergeCycleLts1 performs a merge with any union data inside the Cycle_Lts, using the provided CycleLts1
func (*Cycle_Lts) UnmarshalJSON ¶
type Cycle_Support ¶
type Cycle_Support struct {
// contains filtered or unexported fields
}
Cycle_Support Whether this release cycle has active support
func (Cycle_Support) AsCycleSupport0 ¶
func (t Cycle_Support) AsCycleSupport0() (CycleSupport0, error)
AsCycleSupport0 returns the union data inside the Cycle_Support as a CycleSupport0
func (Cycle_Support) AsCycleSupport1 ¶
func (t Cycle_Support) AsCycleSupport1() (CycleSupport1, error)
AsCycleSupport1 returns the union data inside the Cycle_Support as a CycleSupport1
func (*Cycle_Support) FromCycleSupport0 ¶
func (t *Cycle_Support) FromCycleSupport0(v CycleSupport0) error
FromCycleSupport0 overwrites any union data inside the Cycle_Support as the provided CycleSupport0
func (*Cycle_Support) FromCycleSupport1 ¶
func (t *Cycle_Support) FromCycleSupport1(v CycleSupport1) error
FromCycleSupport1 overwrites any union data inside the Cycle_Support as the provided CycleSupport1
func (Cycle_Support) MarshalJSON ¶
func (t Cycle_Support) MarshalJSON() ([]byte, error)
func (*Cycle_Support) MergeCycleSupport0 ¶
func (t *Cycle_Support) MergeCycleSupport0(v CycleSupport0) error
MergeCycleSupport0 performs a merge with any union data inside the Cycle_Support, using the provided CycleSupport0
func (*Cycle_Support) MergeCycleSupport1 ¶
func (t *Cycle_Support) MergeCycleSupport1(v CycleSupport1) error
MergeCycleSupport1 performs a merge with any union data inside the Cycle_Support, using the provided CycleSupport1
func (*Cycle_Support) UnmarshalJSON ¶
func (t *Cycle_Support) UnmarshalJSON(b []byte) error
type GetApiAllJsonResponse ¶
func ParseGetApiAllJsonResponse ¶
func ParseGetApiAllJsonResponse(rsp *http.Response) (*GetApiAllJsonResponse, error)
ParseGetApiAllJsonResponse parses an HTTP response from a GetApiAllJsonWithResponse call
func (GetApiAllJsonResponse) Status ¶
func (r GetApiAllJsonResponse) Status() string
Status returns HTTPResponse.Status
func (GetApiAllJsonResponse) StatusCode ¶
func (r GetApiAllJsonResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetApiProductCycleJsonResponse ¶
type GetApiProductCycleJsonResponse struct { Body []byte HTTPResponse *http.Response JSON200 *Cycle }
func ParseGetApiProductCycleJsonResponse ¶
func ParseGetApiProductCycleJsonResponse(rsp *http.Response) (*GetApiProductCycleJsonResponse, error)
ParseGetApiProductCycleJsonResponse parses an HTTP response from a GetApiProductCycleJsonWithResponse call
func (GetApiProductCycleJsonResponse) Status ¶
func (r GetApiProductCycleJsonResponse) Status() string
Status returns HTTPResponse.Status
func (GetApiProductCycleJsonResponse) StatusCode ¶
func (r GetApiProductCycleJsonResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetApiProductJsonResponse ¶
func ParseGetApiProductJsonResponse ¶
func ParseGetApiProductJsonResponse(rsp *http.Response) (*GetApiProductJsonResponse, error)
ParseGetApiProductJsonResponse parses an HTTP response from a GetApiProductJsonWithResponse call
func (GetApiProductJsonResponse) Status ¶
func (r GetApiProductJsonResponse) Status() string
Status returns HTTPResponse.Status
func (GetApiProductJsonResponse) StatusCode ¶
func (r GetApiProductJsonResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type HttpRequestDoer ¶
Doer performs HTTP requests.
The standard http.Client implements this interface.