Documentation ¶
Index ¶
- type Client
- type ClientOption
- type ClientService
- type IsInstanceAliveInternalServerError
- type IsInstanceAliveInternalServerErrorBody
- func (o *IsInstanceAliveInternalServerErrorBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error
- func (o *IsInstanceAliveInternalServerErrorBody) MarshalBinary() ([]byte, error)
- func (o *IsInstanceAliveInternalServerErrorBody) UnmarshalBinary(b []byte) error
- func (o *IsInstanceAliveInternalServerErrorBody) Validate(formats strfmt.Registry) error
- type IsInstanceAliveOK
- type IsInstanceAliveParams
- func NewIsInstanceAliveParams() *IsInstanceAliveParams
- func NewIsInstanceAliveParamsWithContext(ctx context.Context) *IsInstanceAliveParams
- func NewIsInstanceAliveParamsWithHTTPClient(client *http.Client) *IsInstanceAliveParams
- func NewIsInstanceAliveParamsWithTimeout(timeout time.Duration) *IsInstanceAliveParams
- func (o *IsInstanceAliveParams) SetContext(ctx context.Context)
- func (o *IsInstanceAliveParams) SetDefaults()
- func (o *IsInstanceAliveParams) SetHTTPClient(client *http.Client)
- func (o *IsInstanceAliveParams) SetTimeout(timeout time.Duration)
- func (o *IsInstanceAliveParams) WithContext(ctx context.Context) *IsInstanceAliveParams
- func (o *IsInstanceAliveParams) WithDefaults() *IsInstanceAliveParams
- func (o *IsInstanceAliveParams) WithHTTPClient(client *http.Client) *IsInstanceAliveParams
- func (o *IsInstanceAliveParams) WithTimeout(timeout time.Duration) *IsInstanceAliveParams
- func (o *IsInstanceAliveParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
- type IsInstanceAliveReader
- type IsInstanceReadyOK
- type IsInstanceReadyParams
- func NewIsInstanceReadyParams() *IsInstanceReadyParams
- func NewIsInstanceReadyParamsWithContext(ctx context.Context) *IsInstanceReadyParams
- func NewIsInstanceReadyParamsWithHTTPClient(client *http.Client) *IsInstanceReadyParams
- func NewIsInstanceReadyParamsWithTimeout(timeout time.Duration) *IsInstanceReadyParams
- func (o *IsInstanceReadyParams) SetContext(ctx context.Context)
- func (o *IsInstanceReadyParams) SetDefaults()
- func (o *IsInstanceReadyParams) SetHTTPClient(client *http.Client)
- func (o *IsInstanceReadyParams) SetTimeout(timeout time.Duration)
- func (o *IsInstanceReadyParams) WithContext(ctx context.Context) *IsInstanceReadyParams
- func (o *IsInstanceReadyParams) WithDefaults() *IsInstanceReadyParams
- func (o *IsInstanceReadyParams) WithHTTPClient(client *http.Client) *IsInstanceReadyParams
- func (o *IsInstanceReadyParams) WithTimeout(timeout time.Duration) *IsInstanceReadyParams
- func (o *IsInstanceReadyParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
- type IsInstanceReadyReader
- type IsInstanceReadyServiceUnavailable
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client for health API
func (*Client) IsInstanceAlive ¶
func (a *Client) IsInstanceAlive(params *IsInstanceAliveParams, opts ...ClientOption) (*IsInstanceAliveOK, error)
IsInstanceAlive checks alive status This endpoint returns a 200 status code when the HTTP server is up running.
This status does currently not include checks whether the database connection is working.
If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set.
Be aware that if you are running multiple nodes of this service, the health status will never refer to the cluster state, only to a single instance.
func (*Client) IsInstanceReady ¶
func (a *Client) IsInstanceReady(params *IsInstanceReadyParams, opts ...ClientOption) (*IsInstanceReadyOK, error)
IsInstanceReady checks readiness status This endpoint returns a 200 status code when the HTTP server is up running and the environment dependencies (e.g.
the database) are responsive as well.
If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set.
Be aware that if you are running multiple nodes of this service, the health status will never refer to the cluster state, only to a single instance.
func (*Client) SetTransport ¶
func (a *Client) SetTransport(transport runtime.ClientTransport)
SetTransport changes the transport on the client
type ClientOption ¶
type ClientOption func(*runtime.ClientOperation)
ClientOption is the option for Client methods
type ClientService ¶
type ClientService interface { IsInstanceAlive(params *IsInstanceAliveParams, opts ...ClientOption) (*IsInstanceAliveOK, error) IsInstanceReady(params *IsInstanceReadyParams, opts ...ClientOption) (*IsInstanceReadyOK, error) SetTransport(transport runtime.ClientTransport) }
ClientService is the interface for Client methods
func New ¶
func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService
New creates a new health API client.
type IsInstanceAliveInternalServerError ¶
type IsInstanceAliveInternalServerError struct {
Payload *IsInstanceAliveInternalServerErrorBody
}
IsInstanceAliveInternalServerError describes a response with status code 500, with default header values.
The standard error format
func NewIsInstanceAliveInternalServerError ¶
func NewIsInstanceAliveInternalServerError() *IsInstanceAliveInternalServerError
NewIsInstanceAliveInternalServerError creates a IsInstanceAliveInternalServerError with default headers values
func (*IsInstanceAliveInternalServerError) Error ¶
func (o *IsInstanceAliveInternalServerError) Error() string
func (*IsInstanceAliveInternalServerError) GetPayload ¶
func (o *IsInstanceAliveInternalServerError) GetPayload() *IsInstanceAliveInternalServerErrorBody
type IsInstanceAliveInternalServerErrorBody ¶
type IsInstanceAliveInternalServerErrorBody struct { // code Code int64 `json:"code,omitempty"` // details Details []interface{} `json:"details"` // message Message string `json:"message,omitempty"` // reason Reason string `json:"reason,omitempty"` // request Request string `json:"request,omitempty"` // status Status string `json:"status,omitempty"` }
IsInstanceAliveInternalServerErrorBody is instance alive internal server error body swagger:model IsInstanceAliveInternalServerErrorBody
func (*IsInstanceAliveInternalServerErrorBody) ContextValidate ¶
func (o *IsInstanceAliveInternalServerErrorBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error
ContextValidate validates this is instance alive internal server error body based on context it is used
func (*IsInstanceAliveInternalServerErrorBody) MarshalBinary ¶
func (o *IsInstanceAliveInternalServerErrorBody) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*IsInstanceAliveInternalServerErrorBody) UnmarshalBinary ¶
func (o *IsInstanceAliveInternalServerErrorBody) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type IsInstanceAliveOK ¶
type IsInstanceAliveOK struct {
Payload *models.HealthStatus
}
IsInstanceAliveOK describes a response with status code 200, with default header values.
healthStatus
func NewIsInstanceAliveOK ¶
func NewIsInstanceAliveOK() *IsInstanceAliveOK
NewIsInstanceAliveOK creates a IsInstanceAliveOK with default headers values
func (*IsInstanceAliveOK) Error ¶
func (o *IsInstanceAliveOK) Error() string
func (*IsInstanceAliveOK) GetPayload ¶
func (o *IsInstanceAliveOK) GetPayload() *models.HealthStatus
type IsInstanceAliveParams ¶
type IsInstanceAliveParams struct { Context context.Context HTTPClient *http.Client // contains filtered or unexported fields }
IsInstanceAliveParams contains all the parameters to send to the API endpoint
for the is instance alive operation. Typically these are written to a http.Request.
func NewIsInstanceAliveParams ¶
func NewIsInstanceAliveParams() *IsInstanceAliveParams
NewIsInstanceAliveParams creates a new IsInstanceAliveParams object, with the default timeout for this client.
Default values are not hydrated, since defaults are normally applied by the API server side.
To enforce default values in parameter, use SetDefaults or WithDefaults.
func NewIsInstanceAliveParamsWithContext ¶
func NewIsInstanceAliveParamsWithContext(ctx context.Context) *IsInstanceAliveParams
NewIsInstanceAliveParamsWithContext creates a new IsInstanceAliveParams object with the ability to set a context for a request.
func NewIsInstanceAliveParamsWithHTTPClient ¶
func NewIsInstanceAliveParamsWithHTTPClient(client *http.Client) *IsInstanceAliveParams
NewIsInstanceAliveParamsWithHTTPClient creates a new IsInstanceAliveParams object with the ability to set a custom HTTPClient for a request.
func NewIsInstanceAliveParamsWithTimeout ¶
func NewIsInstanceAliveParamsWithTimeout(timeout time.Duration) *IsInstanceAliveParams
NewIsInstanceAliveParamsWithTimeout creates a new IsInstanceAliveParams object with the ability to set a timeout on a request.
func (*IsInstanceAliveParams) SetContext ¶
func (o *IsInstanceAliveParams) SetContext(ctx context.Context)
SetContext adds the context to the is instance alive params
func (*IsInstanceAliveParams) SetDefaults ¶
func (o *IsInstanceAliveParams) SetDefaults()
SetDefaults hydrates default values in the is instance alive params (not the query body).
All values with no default are reset to their zero value.
func (*IsInstanceAliveParams) SetHTTPClient ¶
func (o *IsInstanceAliveParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the is instance alive params
func (*IsInstanceAliveParams) SetTimeout ¶
func (o *IsInstanceAliveParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the is instance alive params
func (*IsInstanceAliveParams) WithContext ¶
func (o *IsInstanceAliveParams) WithContext(ctx context.Context) *IsInstanceAliveParams
WithContext adds the context to the is instance alive params
func (*IsInstanceAliveParams) WithDefaults ¶
func (o *IsInstanceAliveParams) WithDefaults() *IsInstanceAliveParams
WithDefaults hydrates default values in the is instance alive params (not the query body).
All values with no default are reset to their zero value.
func (*IsInstanceAliveParams) WithHTTPClient ¶
func (o *IsInstanceAliveParams) WithHTTPClient(client *http.Client) *IsInstanceAliveParams
WithHTTPClient adds the HTTPClient to the is instance alive params
func (*IsInstanceAliveParams) WithTimeout ¶
func (o *IsInstanceAliveParams) WithTimeout(timeout time.Duration) *IsInstanceAliveParams
WithTimeout adds the timeout to the is instance alive params
func (*IsInstanceAliveParams) WriteToRequest ¶
func (o *IsInstanceAliveParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
type IsInstanceAliveReader ¶
type IsInstanceAliveReader struct {
// contains filtered or unexported fields
}
IsInstanceAliveReader is a Reader for the IsInstanceAlive structure.
func (*IsInstanceAliveReader) ReadResponse ¶
func (o *IsInstanceAliveReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.
type IsInstanceReadyOK ¶
type IsInstanceReadyOK struct {
Payload *models.HealthStatus
}
IsInstanceReadyOK describes a response with status code 200, with default header values.
healthStatus
func NewIsInstanceReadyOK ¶
func NewIsInstanceReadyOK() *IsInstanceReadyOK
NewIsInstanceReadyOK creates a IsInstanceReadyOK with default headers values
func (*IsInstanceReadyOK) Error ¶
func (o *IsInstanceReadyOK) Error() string
func (*IsInstanceReadyOK) GetPayload ¶
func (o *IsInstanceReadyOK) GetPayload() *models.HealthStatus
type IsInstanceReadyParams ¶
type IsInstanceReadyParams struct { Context context.Context HTTPClient *http.Client // contains filtered or unexported fields }
IsInstanceReadyParams contains all the parameters to send to the API endpoint
for the is instance ready operation. Typically these are written to a http.Request.
func NewIsInstanceReadyParams ¶
func NewIsInstanceReadyParams() *IsInstanceReadyParams
NewIsInstanceReadyParams creates a new IsInstanceReadyParams object, with the default timeout for this client.
Default values are not hydrated, since defaults are normally applied by the API server side.
To enforce default values in parameter, use SetDefaults or WithDefaults.
func NewIsInstanceReadyParamsWithContext ¶
func NewIsInstanceReadyParamsWithContext(ctx context.Context) *IsInstanceReadyParams
NewIsInstanceReadyParamsWithContext creates a new IsInstanceReadyParams object with the ability to set a context for a request.
func NewIsInstanceReadyParamsWithHTTPClient ¶
func NewIsInstanceReadyParamsWithHTTPClient(client *http.Client) *IsInstanceReadyParams
NewIsInstanceReadyParamsWithHTTPClient creates a new IsInstanceReadyParams object with the ability to set a custom HTTPClient for a request.
func NewIsInstanceReadyParamsWithTimeout ¶
func NewIsInstanceReadyParamsWithTimeout(timeout time.Duration) *IsInstanceReadyParams
NewIsInstanceReadyParamsWithTimeout creates a new IsInstanceReadyParams object with the ability to set a timeout on a request.
func (*IsInstanceReadyParams) SetContext ¶
func (o *IsInstanceReadyParams) SetContext(ctx context.Context)
SetContext adds the context to the is instance ready params
func (*IsInstanceReadyParams) SetDefaults ¶
func (o *IsInstanceReadyParams) SetDefaults()
SetDefaults hydrates default values in the is instance ready params (not the query body).
All values with no default are reset to their zero value.
func (*IsInstanceReadyParams) SetHTTPClient ¶
func (o *IsInstanceReadyParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the is instance ready params
func (*IsInstanceReadyParams) SetTimeout ¶
func (o *IsInstanceReadyParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the is instance ready params
func (*IsInstanceReadyParams) WithContext ¶
func (o *IsInstanceReadyParams) WithContext(ctx context.Context) *IsInstanceReadyParams
WithContext adds the context to the is instance ready params
func (*IsInstanceReadyParams) WithDefaults ¶
func (o *IsInstanceReadyParams) WithDefaults() *IsInstanceReadyParams
WithDefaults hydrates default values in the is instance ready params (not the query body).
All values with no default are reset to their zero value.
func (*IsInstanceReadyParams) WithHTTPClient ¶
func (o *IsInstanceReadyParams) WithHTTPClient(client *http.Client) *IsInstanceReadyParams
WithHTTPClient adds the HTTPClient to the is instance ready params
func (*IsInstanceReadyParams) WithTimeout ¶
func (o *IsInstanceReadyParams) WithTimeout(timeout time.Duration) *IsInstanceReadyParams
WithTimeout adds the timeout to the is instance ready params
func (*IsInstanceReadyParams) WriteToRequest ¶
func (o *IsInstanceReadyParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
type IsInstanceReadyReader ¶
type IsInstanceReadyReader struct {
// contains filtered or unexported fields
}
IsInstanceReadyReader is a Reader for the IsInstanceReady structure.
func (*IsInstanceReadyReader) ReadResponse ¶
func (o *IsInstanceReadyReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.
type IsInstanceReadyServiceUnavailable ¶
type IsInstanceReadyServiceUnavailable struct {
}IsInstanceReadyServiceUnavailable describes a response with status code 503, with default header values.
healthNotReadyStatus
func NewIsInstanceReadyServiceUnavailable ¶
func NewIsInstanceReadyServiceUnavailable() *IsInstanceReadyServiceUnavailable
NewIsInstanceReadyServiceUnavailable creates a IsInstanceReadyServiceUnavailable with default headers values
func (*IsInstanceReadyServiceUnavailable) Error ¶
func (o *IsInstanceReadyServiceUnavailable) Error() string
func (*IsInstanceReadyServiceUnavailable) GetPayload ¶
func (o *IsInstanceReadyServiceUnavailable) GetPayload() *models.HealthNotReadyStatus