system

package
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 5, 2024 License: MPL-2.0 Imports: 11 Imported by: 0

Documentation

Index

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 system API

func (*Client) Health

func (a *Client) Health(params *HealthParams, opts ...ClientOption) (*HealthOK, error)

Health queries health status of mserv service

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 {
	Health(params *HealthParams, opts ...ClientOption) (*HealthOK, 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 system API client.

type HealthInternalServerError

type HealthInternalServerError struct {
	Payload *HealthInternalServerErrorBody
}

HealthInternalServerError describes a response with status code 500, with default header values.

Health status response

func NewHealthInternalServerError

func NewHealthInternalServerError() *HealthInternalServerError

NewHealthInternalServerError creates a HealthInternalServerError with default headers values

func (*HealthInternalServerError) Code

func (o *HealthInternalServerError) Code() int

Code gets the status code for the health internal server error response

func (*HealthInternalServerError) Error

func (o *HealthInternalServerError) Error() string

func (*HealthInternalServerError) GetPayload

func (*HealthInternalServerError) IsClientError

func (o *HealthInternalServerError) IsClientError() bool

IsClientError returns true when this health internal server error response has a 4xx status code

func (*HealthInternalServerError) IsCode

func (o *HealthInternalServerError) IsCode(code int) bool

IsCode returns true when this health internal server error response a status code equal to that given

func (*HealthInternalServerError) IsRedirect

func (o *HealthInternalServerError) IsRedirect() bool

IsRedirect returns true when this health internal server error response has a 3xx status code

func (*HealthInternalServerError) IsServerError

func (o *HealthInternalServerError) IsServerError() bool

IsServerError returns true when this health internal server error response has a 5xx status code

func (*HealthInternalServerError) IsSuccess

func (o *HealthInternalServerError) IsSuccess() bool

IsSuccess returns true when this health internal server error response has a 2xx status code

func (*HealthInternalServerError) String

func (o *HealthInternalServerError) String() string

type HealthInternalServerErrorBody

type HealthInternalServerErrorBody struct {

	// error
	Error string `json:"Error,omitempty"`

	// payload
	Payload *models.HReport `json:"Payload,omitempty"`

	// status
	Status string `json:"Status,omitempty"`
}

HealthInternalServerErrorBody health internal server error body swagger:model HealthInternalServerErrorBody

func (*HealthInternalServerErrorBody) ContextValidate

func (o *HealthInternalServerErrorBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this health internal server error body based on the context it is used

func (*HealthInternalServerErrorBody) MarshalBinary

func (o *HealthInternalServerErrorBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*HealthInternalServerErrorBody) UnmarshalBinary

func (o *HealthInternalServerErrorBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*HealthInternalServerErrorBody) Validate

func (o *HealthInternalServerErrorBody) Validate(formats strfmt.Registry) error

Validate validates this health internal server error body

type HealthOK

type HealthOK struct {
	Payload *HealthOKBody
}

HealthOK describes a response with status code 200, with default header values.

Health status response

func NewHealthOK

func NewHealthOK() *HealthOK

NewHealthOK creates a HealthOK with default headers values

func (*HealthOK) Code

func (o *HealthOK) Code() int

Code gets the status code for the health o k response

func (*HealthOK) Error

func (o *HealthOK) Error() string

func (*HealthOK) GetPayload

func (o *HealthOK) GetPayload() *HealthOKBody

func (*HealthOK) IsClientError

func (o *HealthOK) IsClientError() bool

IsClientError returns true when this health o k response has a 4xx status code

func (*HealthOK) IsCode

func (o *HealthOK) IsCode(code int) bool

IsCode returns true when this health o k response a status code equal to that given

func (*HealthOK) IsRedirect

func (o *HealthOK) IsRedirect() bool

IsRedirect returns true when this health o k response has a 3xx status code

func (*HealthOK) IsServerError

func (o *HealthOK) IsServerError() bool

IsServerError returns true when this health o k response has a 5xx status code

func (*HealthOK) IsSuccess

func (o *HealthOK) IsSuccess() bool

IsSuccess returns true when this health o k response has a 2xx status code

func (*HealthOK) String

func (o *HealthOK) String() string

type HealthOKBody

type HealthOKBody struct {

	// error
	Error string `json:"Error,omitempty"`

	// payload
	Payload *models.HReport `json:"Payload,omitempty"`

	// status
	Status string `json:"Status,omitempty"`
}

HealthOKBody health o k body swagger:model HealthOKBody

func (*HealthOKBody) ContextValidate

func (o *HealthOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this health o k body based on the context it is used

func (*HealthOKBody) MarshalBinary

func (o *HealthOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*HealthOKBody) UnmarshalBinary

func (o *HealthOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*HealthOKBody) Validate

func (o *HealthOKBody) Validate(formats strfmt.Registry) error

Validate validates this health o k body

type HealthParams

type HealthParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

HealthParams contains all the parameters to send to the API endpoint

for the health operation.

Typically these are written to a http.Request.

func NewHealthParams

func NewHealthParams() *HealthParams

NewHealthParams creates a new HealthParams 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 NewHealthParamsWithContext

func NewHealthParamsWithContext(ctx context.Context) *HealthParams

NewHealthParamsWithContext creates a new HealthParams object with the ability to set a context for a request.

func NewHealthParamsWithHTTPClient

func NewHealthParamsWithHTTPClient(client *http.Client) *HealthParams

NewHealthParamsWithHTTPClient creates a new HealthParams object with the ability to set a custom HTTPClient for a request.

func NewHealthParamsWithTimeout

func NewHealthParamsWithTimeout(timeout time.Duration) *HealthParams

NewHealthParamsWithTimeout creates a new HealthParams object with the ability to set a timeout on a request.

func (*HealthParams) SetContext

func (o *HealthParams) SetContext(ctx context.Context)

SetContext adds the context to the health params

func (*HealthParams) SetDefaults

func (o *HealthParams) SetDefaults()

SetDefaults hydrates default values in the health params (not the query body).

All values with no default are reset to their zero value.

func (*HealthParams) SetHTTPClient

func (o *HealthParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the health params

func (*HealthParams) SetTimeout

func (o *HealthParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the health params

func (*HealthParams) WithContext

func (o *HealthParams) WithContext(ctx context.Context) *HealthParams

WithContext adds the context to the health params

func (*HealthParams) WithDefaults

func (o *HealthParams) WithDefaults() *HealthParams

WithDefaults hydrates default values in the health params (not the query body).

All values with no default are reset to their zero value.

func (*HealthParams) WithHTTPClient

func (o *HealthParams) WithHTTPClient(client *http.Client) *HealthParams

WithHTTPClient adds the HTTPClient to the health params

func (*HealthParams) WithTimeout

func (o *HealthParams) WithTimeout(timeout time.Duration) *HealthParams

WithTimeout adds the timeout to the health params

func (*HealthParams) WriteToRequest

func (o *HealthParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type HealthReader

type HealthReader struct {
	// contains filtered or unexported fields
}

HealthReader is a Reader for the Health structure.

func (*HealthReader) ReadResponse

func (o *HealthReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL