universe_information

package
v0.0.0-...-af0b780 Latest Latest
Warning

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

Go to latest
Published: Apr 17, 2024 License: Apache-2.0, Apache-2.0 Imports: 10 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 universe information API

func (*Client) DownloadNodeLogs

func (a *Client) DownloadNodeLogs(params *DownloadNodeLogsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DownloadNodeLogsOK, error)

DownloadNodeLogs downloads a node s logs

Downloads the log files from a given node.

func (*Client) GetLiveQueries

func (a *Client) GetLiveQueries(params *GetLiveQueriesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetLiveQueriesOK, error)

GetLiveQueries gets live queries for a universe

func (*Client) GetMasterLeaderIP

func (a *Client) GetMasterLeaderIP(params *GetMasterLeaderIPParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetMasterLeaderIPOK, error)

GetMasterLeaderIP gets IP address of a universe s master leader

func (*Client) GetSlowQueries

func (a *Client) GetSlowQueries(params *GetSlowQueriesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetSlowQueriesOK, error)

GetSlowQueries gets slow queries for a universe

func (*Client) GetUniverseCost

func (a *Client) GetUniverseCost(params *GetUniverseCostParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUniverseCostOK, error)

GetUniverseCost gets a cost estimate for a universe

func (*Client) GetUniverseCostForAll

func (a *Client) GetUniverseCostForAll(params *GetUniverseCostForAllParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUniverseCostForAllOK, error)

GetUniverseCostForAll gets a cost estimate for all universes

func (*Client) HealthCheckUniverse

func (a *Client) HealthCheckUniverse(params *HealthCheckUniverseParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*HealthCheckUniverseOK, error)

HealthCheckUniverse runs a universe health check

Checks the health of all tablet servers and masters in the universe, as well as certain conditions on the machines themselves, including disk utilization, presence of FATAL or core files, and more.

func (*Client) ResetSlowQueries

func (a *Client) ResetSlowQueries(params *ResetSlowQueriesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ResetSlowQueriesOK, error)

ResetSlowQueries resets slow queries for a universe

func (*Client) SetTransport

func (a *Client) SetTransport(transport runtime.ClientTransport)

SetTransport changes the transport on the client

func (*Client) TriggerHealthCheck

func (a *Client) TriggerHealthCheck(params *TriggerHealthCheckParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*TriggerHealthCheckOK, error)

TriggerHealthCheck triggers a universe health check

Trigger a universe health check and return the trigger time.

func (*Client) UniverseStatus

func (a *Client) UniverseStatus(params *UniverseStatusParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UniverseStatusOK, error)

UniverseStatus gets a universe s status

This will return a Map of node name to its status in json format

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	DownloadNodeLogs(params *DownloadNodeLogsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DownloadNodeLogsOK, error)

	GetLiveQueries(params *GetLiveQueriesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetLiveQueriesOK, error)

	GetMasterLeaderIP(params *GetMasterLeaderIPParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetMasterLeaderIPOK, error)

	GetSlowQueries(params *GetSlowQueriesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetSlowQueriesOK, error)

	GetUniverseCost(params *GetUniverseCostParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUniverseCostOK, error)

	GetUniverseCostForAll(params *GetUniverseCostForAllParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUniverseCostForAllOK, error)

	HealthCheckUniverse(params *HealthCheckUniverseParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*HealthCheckUniverseOK, error)

	ResetSlowQueries(params *ResetSlowQueriesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ResetSlowQueriesOK, error)

	TriggerHealthCheck(params *TriggerHealthCheckParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*TriggerHealthCheckOK, error)

	UniverseStatus(params *UniverseStatusParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UniverseStatusOK, 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 universe information API client.

type DownloadNodeLogsOK

type DownloadNodeLogsOK struct {
	Payload string
}
DownloadNodeLogsOK describes a response with status code 200, with default header values.

successful operation

func NewDownloadNodeLogsOK

func NewDownloadNodeLogsOK() *DownloadNodeLogsOK

NewDownloadNodeLogsOK creates a DownloadNodeLogsOK with default headers values

func (*DownloadNodeLogsOK) Error

func (o *DownloadNodeLogsOK) Error() string

func (*DownloadNodeLogsOK) GetPayload

func (o *DownloadNodeLogsOK) GetPayload() string

type DownloadNodeLogsParams

type DownloadNodeLogsParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// NodeName.
	NodeName string

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

DownloadNodeLogsParams contains all the parameters to send to the API endpoint

for the download node logs operation.

Typically these are written to a http.Request.

func NewDownloadNodeLogsParams

func NewDownloadNodeLogsParams() *DownloadNodeLogsParams

NewDownloadNodeLogsParams creates a new DownloadNodeLogsParams 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 NewDownloadNodeLogsParamsWithContext

func NewDownloadNodeLogsParamsWithContext(ctx context.Context) *DownloadNodeLogsParams

NewDownloadNodeLogsParamsWithContext creates a new DownloadNodeLogsParams object with the ability to set a context for a request.

func NewDownloadNodeLogsParamsWithHTTPClient

func NewDownloadNodeLogsParamsWithHTTPClient(client *http.Client) *DownloadNodeLogsParams

NewDownloadNodeLogsParamsWithHTTPClient creates a new DownloadNodeLogsParams object with the ability to set a custom HTTPClient for a request.

func NewDownloadNodeLogsParamsWithTimeout

func NewDownloadNodeLogsParamsWithTimeout(timeout time.Duration) *DownloadNodeLogsParams

NewDownloadNodeLogsParamsWithTimeout creates a new DownloadNodeLogsParams object with the ability to set a timeout on a request.

func (*DownloadNodeLogsParams) SetCUUID

func (o *DownloadNodeLogsParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the download node logs params

func (*DownloadNodeLogsParams) SetContext

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

SetContext adds the context to the download node logs params

func (*DownloadNodeLogsParams) SetDefaults

func (o *DownloadNodeLogsParams) SetDefaults()

SetDefaults hydrates default values in the download node logs params (not the query body).

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

func (*DownloadNodeLogsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the download node logs params

func (*DownloadNodeLogsParams) SetNodeName

func (o *DownloadNodeLogsParams) SetNodeName(nodeName string)

SetNodeName adds the nodeName to the download node logs params

func (*DownloadNodeLogsParams) SetTimeout

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

SetTimeout adds the timeout to the download node logs params

func (*DownloadNodeLogsParams) SetUniUUID

func (o *DownloadNodeLogsParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the download node logs params

func (*DownloadNodeLogsParams) WithCUUID

WithCUUID adds the cUUID to the download node logs params

func (*DownloadNodeLogsParams) WithContext

WithContext adds the context to the download node logs params

func (*DownloadNodeLogsParams) WithDefaults

WithDefaults hydrates default values in the download node logs params (not the query body).

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

func (*DownloadNodeLogsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the download node logs params

func (*DownloadNodeLogsParams) WithNodeName

func (o *DownloadNodeLogsParams) WithNodeName(nodeName string) *DownloadNodeLogsParams

WithNodeName adds the nodeName to the download node logs params

func (*DownloadNodeLogsParams) WithTimeout

WithTimeout adds the timeout to the download node logs params

func (*DownloadNodeLogsParams) WithUniUUID

func (o *DownloadNodeLogsParams) WithUniUUID(uniUUID strfmt.UUID) *DownloadNodeLogsParams

WithUniUUID adds the uniUUID to the download node logs params

func (*DownloadNodeLogsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DownloadNodeLogsReader

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

DownloadNodeLogsReader is a Reader for the DownloadNodeLogs structure.

func (*DownloadNodeLogsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetLiveQueriesOK

type GetLiveQueriesOK struct {
	Payload interface{}
}
GetLiveQueriesOK describes a response with status code 200, with default header values.

successful operation

func NewGetLiveQueriesOK

func NewGetLiveQueriesOK() *GetLiveQueriesOK

NewGetLiveQueriesOK creates a GetLiveQueriesOK with default headers values

func (*GetLiveQueriesOK) Error

func (o *GetLiveQueriesOK) Error() string

func (*GetLiveQueriesOK) GetPayload

func (o *GetLiveQueriesOK) GetPayload() interface{}

type GetLiveQueriesParams

type GetLiveQueriesParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetLiveQueriesParams contains all the parameters to send to the API endpoint

for the get live queries operation.

Typically these are written to a http.Request.

func NewGetLiveQueriesParams

func NewGetLiveQueriesParams() *GetLiveQueriesParams

NewGetLiveQueriesParams creates a new GetLiveQueriesParams 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 NewGetLiveQueriesParamsWithContext

func NewGetLiveQueriesParamsWithContext(ctx context.Context) *GetLiveQueriesParams

NewGetLiveQueriesParamsWithContext creates a new GetLiveQueriesParams object with the ability to set a context for a request.

func NewGetLiveQueriesParamsWithHTTPClient

func NewGetLiveQueriesParamsWithHTTPClient(client *http.Client) *GetLiveQueriesParams

NewGetLiveQueriesParamsWithHTTPClient creates a new GetLiveQueriesParams object with the ability to set a custom HTTPClient for a request.

func NewGetLiveQueriesParamsWithTimeout

func NewGetLiveQueriesParamsWithTimeout(timeout time.Duration) *GetLiveQueriesParams

NewGetLiveQueriesParamsWithTimeout creates a new GetLiveQueriesParams object with the ability to set a timeout on a request.

func (*GetLiveQueriesParams) SetCUUID

func (o *GetLiveQueriesParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the get live queries params

func (*GetLiveQueriesParams) SetContext

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

SetContext adds the context to the get live queries params

func (*GetLiveQueriesParams) SetDefaults

func (o *GetLiveQueriesParams) SetDefaults()

SetDefaults hydrates default values in the get live queries params (not the query body).

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

func (*GetLiveQueriesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get live queries params

func (*GetLiveQueriesParams) SetTimeout

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

SetTimeout adds the timeout to the get live queries params

func (*GetLiveQueriesParams) SetUniUUID

func (o *GetLiveQueriesParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the get live queries params

func (*GetLiveQueriesParams) WithCUUID

WithCUUID adds the cUUID to the get live queries params

func (*GetLiveQueriesParams) WithContext

WithContext adds the context to the get live queries params

func (*GetLiveQueriesParams) WithDefaults

func (o *GetLiveQueriesParams) WithDefaults() *GetLiveQueriesParams

WithDefaults hydrates default values in the get live queries params (not the query body).

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

func (*GetLiveQueriesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get live queries params

func (*GetLiveQueriesParams) WithTimeout

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

WithTimeout adds the timeout to the get live queries params

func (*GetLiveQueriesParams) WithUniUUID

func (o *GetLiveQueriesParams) WithUniUUID(uniUUID strfmt.UUID) *GetLiveQueriesParams

WithUniUUID adds the uniUUID to the get live queries params

func (*GetLiveQueriesParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetLiveQueriesReader

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

GetLiveQueriesReader is a Reader for the GetLiveQueries structure.

func (*GetLiveQueriesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetMasterLeaderIPOK

type GetMasterLeaderIPOK struct {
	Payload interface{}
}
GetMasterLeaderIPOK describes a response with status code 200, with default header values.

successful operation

func NewGetMasterLeaderIPOK

func NewGetMasterLeaderIPOK() *GetMasterLeaderIPOK

NewGetMasterLeaderIPOK creates a GetMasterLeaderIPOK with default headers values

func (*GetMasterLeaderIPOK) Error

func (o *GetMasterLeaderIPOK) Error() string

func (*GetMasterLeaderIPOK) GetPayload

func (o *GetMasterLeaderIPOK) GetPayload() interface{}

type GetMasterLeaderIPParams

type GetMasterLeaderIPParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetMasterLeaderIPParams contains all the parameters to send to the API endpoint

for the get master leader IP operation.

Typically these are written to a http.Request.

func NewGetMasterLeaderIPParams

func NewGetMasterLeaderIPParams() *GetMasterLeaderIPParams

NewGetMasterLeaderIPParams creates a new GetMasterLeaderIPParams 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 NewGetMasterLeaderIPParamsWithContext

func NewGetMasterLeaderIPParamsWithContext(ctx context.Context) *GetMasterLeaderIPParams

NewGetMasterLeaderIPParamsWithContext creates a new GetMasterLeaderIPParams object with the ability to set a context for a request.

func NewGetMasterLeaderIPParamsWithHTTPClient

func NewGetMasterLeaderIPParamsWithHTTPClient(client *http.Client) *GetMasterLeaderIPParams

NewGetMasterLeaderIPParamsWithHTTPClient creates a new GetMasterLeaderIPParams object with the ability to set a custom HTTPClient for a request.

func NewGetMasterLeaderIPParamsWithTimeout

func NewGetMasterLeaderIPParamsWithTimeout(timeout time.Duration) *GetMasterLeaderIPParams

NewGetMasterLeaderIPParamsWithTimeout creates a new GetMasterLeaderIPParams object with the ability to set a timeout on a request.

func (*GetMasterLeaderIPParams) SetCUUID

func (o *GetMasterLeaderIPParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the get master leader IP params

func (*GetMasterLeaderIPParams) SetContext

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

SetContext adds the context to the get master leader IP params

func (*GetMasterLeaderIPParams) SetDefaults

func (o *GetMasterLeaderIPParams) SetDefaults()

SetDefaults hydrates default values in the get master leader IP params (not the query body).

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

func (*GetMasterLeaderIPParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get master leader IP params

func (*GetMasterLeaderIPParams) SetTimeout

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

SetTimeout adds the timeout to the get master leader IP params

func (*GetMasterLeaderIPParams) SetUniUUID

func (o *GetMasterLeaderIPParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the get master leader IP params

func (*GetMasterLeaderIPParams) WithCUUID

WithCUUID adds the cUUID to the get master leader IP params

func (*GetMasterLeaderIPParams) WithContext

WithContext adds the context to the get master leader IP params

func (*GetMasterLeaderIPParams) WithDefaults

WithDefaults hydrates default values in the get master leader IP params (not the query body).

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

func (*GetMasterLeaderIPParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get master leader IP params

func (*GetMasterLeaderIPParams) WithTimeout

WithTimeout adds the timeout to the get master leader IP params

func (*GetMasterLeaderIPParams) WithUniUUID

WithUniUUID adds the uniUUID to the get master leader IP params

func (*GetMasterLeaderIPParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetMasterLeaderIPReader

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

GetMasterLeaderIPReader is a Reader for the GetMasterLeaderIP structure.

func (*GetMasterLeaderIPReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetSlowQueriesOK

type GetSlowQueriesOK struct {
	Payload interface{}
}
GetSlowQueriesOK describes a response with status code 200, with default header values.

successful operation

func NewGetSlowQueriesOK

func NewGetSlowQueriesOK() *GetSlowQueriesOK

NewGetSlowQueriesOK creates a GetSlowQueriesOK with default headers values

func (*GetSlowQueriesOK) Error

func (o *GetSlowQueriesOK) Error() string

func (*GetSlowQueriesOK) GetPayload

func (o *GetSlowQueriesOK) GetPayload() interface{}

type GetSlowQueriesParams

type GetSlowQueriesParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetSlowQueriesParams contains all the parameters to send to the API endpoint

for the get slow queries operation.

Typically these are written to a http.Request.

func NewGetSlowQueriesParams

func NewGetSlowQueriesParams() *GetSlowQueriesParams

NewGetSlowQueriesParams creates a new GetSlowQueriesParams 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 NewGetSlowQueriesParamsWithContext

func NewGetSlowQueriesParamsWithContext(ctx context.Context) *GetSlowQueriesParams

NewGetSlowQueriesParamsWithContext creates a new GetSlowQueriesParams object with the ability to set a context for a request.

func NewGetSlowQueriesParamsWithHTTPClient

func NewGetSlowQueriesParamsWithHTTPClient(client *http.Client) *GetSlowQueriesParams

NewGetSlowQueriesParamsWithHTTPClient creates a new GetSlowQueriesParams object with the ability to set a custom HTTPClient for a request.

func NewGetSlowQueriesParamsWithTimeout

func NewGetSlowQueriesParamsWithTimeout(timeout time.Duration) *GetSlowQueriesParams

NewGetSlowQueriesParamsWithTimeout creates a new GetSlowQueriesParams object with the ability to set a timeout on a request.

func (*GetSlowQueriesParams) SetCUUID

func (o *GetSlowQueriesParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the get slow queries params

func (*GetSlowQueriesParams) SetContext

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

SetContext adds the context to the get slow queries params

func (*GetSlowQueriesParams) SetDefaults

func (o *GetSlowQueriesParams) SetDefaults()

SetDefaults hydrates default values in the get slow queries params (not the query body).

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

func (*GetSlowQueriesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get slow queries params

func (*GetSlowQueriesParams) SetTimeout

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

SetTimeout adds the timeout to the get slow queries params

func (*GetSlowQueriesParams) SetUniUUID

func (o *GetSlowQueriesParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the get slow queries params

func (*GetSlowQueriesParams) WithCUUID

WithCUUID adds the cUUID to the get slow queries params

func (*GetSlowQueriesParams) WithContext

WithContext adds the context to the get slow queries params

func (*GetSlowQueriesParams) WithDefaults

func (o *GetSlowQueriesParams) WithDefaults() *GetSlowQueriesParams

WithDefaults hydrates default values in the get slow queries params (not the query body).

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

func (*GetSlowQueriesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get slow queries params

func (*GetSlowQueriesParams) WithTimeout

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

WithTimeout adds the timeout to the get slow queries params

func (*GetSlowQueriesParams) WithUniUUID

func (o *GetSlowQueriesParams) WithUniUUID(uniUUID strfmt.UUID) *GetSlowQueriesParams

WithUniUUID adds the uniUUID to the get slow queries params

func (*GetSlowQueriesParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetSlowQueriesReader

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

GetSlowQueriesReader is a Reader for the GetSlowQueries structure.

func (*GetSlowQueriesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetUniverseCostForAllOK

type GetUniverseCostForAllOK struct {
	Payload []*models.UniverseResourceDetails
}
GetUniverseCostForAllOK describes a response with status code 200, with default header values.

successful operation

func NewGetUniverseCostForAllOK

func NewGetUniverseCostForAllOK() *GetUniverseCostForAllOK

NewGetUniverseCostForAllOK creates a GetUniverseCostForAllOK with default headers values

func (*GetUniverseCostForAllOK) Error

func (o *GetUniverseCostForAllOK) Error() string

func (*GetUniverseCostForAllOK) GetPayload

type GetUniverseCostForAllParams

type GetUniverseCostForAllParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetUniverseCostForAllParams contains all the parameters to send to the API endpoint

for the get universe cost for all operation.

Typically these are written to a http.Request.

func NewGetUniverseCostForAllParams

func NewGetUniverseCostForAllParams() *GetUniverseCostForAllParams

NewGetUniverseCostForAllParams creates a new GetUniverseCostForAllParams 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 NewGetUniverseCostForAllParamsWithContext

func NewGetUniverseCostForAllParamsWithContext(ctx context.Context) *GetUniverseCostForAllParams

NewGetUniverseCostForAllParamsWithContext creates a new GetUniverseCostForAllParams object with the ability to set a context for a request.

func NewGetUniverseCostForAllParamsWithHTTPClient

func NewGetUniverseCostForAllParamsWithHTTPClient(client *http.Client) *GetUniverseCostForAllParams

NewGetUniverseCostForAllParamsWithHTTPClient creates a new GetUniverseCostForAllParams object with the ability to set a custom HTTPClient for a request.

func NewGetUniverseCostForAllParamsWithTimeout

func NewGetUniverseCostForAllParamsWithTimeout(timeout time.Duration) *GetUniverseCostForAllParams

NewGetUniverseCostForAllParamsWithTimeout creates a new GetUniverseCostForAllParams object with the ability to set a timeout on a request.

func (*GetUniverseCostForAllParams) SetCUUID

func (o *GetUniverseCostForAllParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the get universe cost for all params

func (*GetUniverseCostForAllParams) SetContext

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

SetContext adds the context to the get universe cost for all params

func (*GetUniverseCostForAllParams) SetDefaults

func (o *GetUniverseCostForAllParams) SetDefaults()

SetDefaults hydrates default values in the get universe cost for all params (not the query body).

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

func (*GetUniverseCostForAllParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get universe cost for all params

func (*GetUniverseCostForAllParams) SetTimeout

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

SetTimeout adds the timeout to the get universe cost for all params

func (*GetUniverseCostForAllParams) WithCUUID

WithCUUID adds the cUUID to the get universe cost for all params

func (*GetUniverseCostForAllParams) WithContext

WithContext adds the context to the get universe cost for all params

func (*GetUniverseCostForAllParams) WithDefaults

WithDefaults hydrates default values in the get universe cost for all params (not the query body).

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

func (*GetUniverseCostForAllParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get universe cost for all params

func (*GetUniverseCostForAllParams) WithTimeout

WithTimeout adds the timeout to the get universe cost for all params

func (*GetUniverseCostForAllParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetUniverseCostForAllReader

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

GetUniverseCostForAllReader is a Reader for the GetUniverseCostForAll structure.

func (*GetUniverseCostForAllReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetUniverseCostOK

type GetUniverseCostOK struct {
	Payload *models.UniverseResourceDetails
}
GetUniverseCostOK describes a response with status code 200, with default header values.

successful operation

func NewGetUniverseCostOK

func NewGetUniverseCostOK() *GetUniverseCostOK

NewGetUniverseCostOK creates a GetUniverseCostOK with default headers values

func (*GetUniverseCostOK) Error

func (o *GetUniverseCostOK) Error() string

func (*GetUniverseCostOK) GetPayload

type GetUniverseCostParams

type GetUniverseCostParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetUniverseCostParams contains all the parameters to send to the API endpoint

for the get universe cost operation.

Typically these are written to a http.Request.

func NewGetUniverseCostParams

func NewGetUniverseCostParams() *GetUniverseCostParams

NewGetUniverseCostParams creates a new GetUniverseCostParams 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 NewGetUniverseCostParamsWithContext

func NewGetUniverseCostParamsWithContext(ctx context.Context) *GetUniverseCostParams

NewGetUniverseCostParamsWithContext creates a new GetUniverseCostParams object with the ability to set a context for a request.

func NewGetUniverseCostParamsWithHTTPClient

func NewGetUniverseCostParamsWithHTTPClient(client *http.Client) *GetUniverseCostParams

NewGetUniverseCostParamsWithHTTPClient creates a new GetUniverseCostParams object with the ability to set a custom HTTPClient for a request.

func NewGetUniverseCostParamsWithTimeout

func NewGetUniverseCostParamsWithTimeout(timeout time.Duration) *GetUniverseCostParams

NewGetUniverseCostParamsWithTimeout creates a new GetUniverseCostParams object with the ability to set a timeout on a request.

func (*GetUniverseCostParams) SetCUUID

func (o *GetUniverseCostParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the get universe cost params

func (*GetUniverseCostParams) SetContext

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

SetContext adds the context to the get universe cost params

func (*GetUniverseCostParams) SetDefaults

func (o *GetUniverseCostParams) SetDefaults()

SetDefaults hydrates default values in the get universe cost params (not the query body).

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

func (*GetUniverseCostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get universe cost params

func (*GetUniverseCostParams) SetTimeout

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

SetTimeout adds the timeout to the get universe cost params

func (*GetUniverseCostParams) SetUniUUID

func (o *GetUniverseCostParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the get universe cost params

func (*GetUniverseCostParams) WithCUUID

WithCUUID adds the cUUID to the get universe cost params

func (*GetUniverseCostParams) WithContext

WithContext adds the context to the get universe cost params

func (*GetUniverseCostParams) WithDefaults

func (o *GetUniverseCostParams) WithDefaults() *GetUniverseCostParams

WithDefaults hydrates default values in the get universe cost params (not the query body).

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

func (*GetUniverseCostParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get universe cost params

func (*GetUniverseCostParams) WithTimeout

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

WithTimeout adds the timeout to the get universe cost params

func (*GetUniverseCostParams) WithUniUUID

func (o *GetUniverseCostParams) WithUniUUID(uniUUID strfmt.UUID) *GetUniverseCostParams

WithUniUUID adds the uniUUID to the get universe cost params

func (*GetUniverseCostParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetUniverseCostReader

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

GetUniverseCostReader is a Reader for the GetUniverseCost structure.

func (*GetUniverseCostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type HealthCheckUniverseOK

type HealthCheckUniverseOK struct {
	Payload interface{}
}
HealthCheckUniverseOK describes a response with status code 200, with default header values.

successful operation

func NewHealthCheckUniverseOK

func NewHealthCheckUniverseOK() *HealthCheckUniverseOK

NewHealthCheckUniverseOK creates a HealthCheckUniverseOK with default headers values

func (*HealthCheckUniverseOK) Error

func (o *HealthCheckUniverseOK) Error() string

func (*HealthCheckUniverseOK) GetPayload

func (o *HealthCheckUniverseOK) GetPayload() interface{}

type HealthCheckUniverseParams

type HealthCheckUniverseParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

HealthCheckUniverseParams contains all the parameters to send to the API endpoint

for the health check universe operation.

Typically these are written to a http.Request.

func NewHealthCheckUniverseParams

func NewHealthCheckUniverseParams() *HealthCheckUniverseParams

NewHealthCheckUniverseParams creates a new HealthCheckUniverseParams 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 NewHealthCheckUniverseParamsWithContext

func NewHealthCheckUniverseParamsWithContext(ctx context.Context) *HealthCheckUniverseParams

NewHealthCheckUniverseParamsWithContext creates a new HealthCheckUniverseParams object with the ability to set a context for a request.

func NewHealthCheckUniverseParamsWithHTTPClient

func NewHealthCheckUniverseParamsWithHTTPClient(client *http.Client) *HealthCheckUniverseParams

NewHealthCheckUniverseParamsWithHTTPClient creates a new HealthCheckUniverseParams object with the ability to set a custom HTTPClient for a request.

func NewHealthCheckUniverseParamsWithTimeout

func NewHealthCheckUniverseParamsWithTimeout(timeout time.Duration) *HealthCheckUniverseParams

NewHealthCheckUniverseParamsWithTimeout creates a new HealthCheckUniverseParams object with the ability to set a timeout on a request.

func (*HealthCheckUniverseParams) SetCUUID

func (o *HealthCheckUniverseParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the health check universe params

func (*HealthCheckUniverseParams) SetContext

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

SetContext adds the context to the health check universe params

func (*HealthCheckUniverseParams) SetDefaults

func (o *HealthCheckUniverseParams) SetDefaults()

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

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

func (*HealthCheckUniverseParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the health check universe params

func (*HealthCheckUniverseParams) SetTimeout

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

SetTimeout adds the timeout to the health check universe params

func (*HealthCheckUniverseParams) SetUniUUID

func (o *HealthCheckUniverseParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the health check universe params

func (*HealthCheckUniverseParams) WithCUUID

WithCUUID adds the cUUID to the health check universe params

func (*HealthCheckUniverseParams) WithContext

WithContext adds the context to the health check universe params

func (*HealthCheckUniverseParams) WithDefaults

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

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

func (*HealthCheckUniverseParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the health check universe params

func (*HealthCheckUniverseParams) WithTimeout

WithTimeout adds the timeout to the health check universe params

func (*HealthCheckUniverseParams) WithUniUUID

WithUniUUID adds the uniUUID to the health check universe params

func (*HealthCheckUniverseParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type HealthCheckUniverseReader

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

HealthCheckUniverseReader is a Reader for the HealthCheckUniverse structure.

func (*HealthCheckUniverseReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ResetSlowQueriesOK

type ResetSlowQueriesOK struct {
	Payload interface{}
}
ResetSlowQueriesOK describes a response with status code 200, with default header values.

successful operation

func NewResetSlowQueriesOK

func NewResetSlowQueriesOK() *ResetSlowQueriesOK

NewResetSlowQueriesOK creates a ResetSlowQueriesOK with default headers values

func (*ResetSlowQueriesOK) Error

func (o *ResetSlowQueriesOK) Error() string

func (*ResetSlowQueriesOK) GetPayload

func (o *ResetSlowQueriesOK) GetPayload() interface{}

type ResetSlowQueriesParams

type ResetSlowQueriesParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

ResetSlowQueriesParams contains all the parameters to send to the API endpoint

for the reset slow queries operation.

Typically these are written to a http.Request.

func NewResetSlowQueriesParams

func NewResetSlowQueriesParams() *ResetSlowQueriesParams

NewResetSlowQueriesParams creates a new ResetSlowQueriesParams 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 NewResetSlowQueriesParamsWithContext

func NewResetSlowQueriesParamsWithContext(ctx context.Context) *ResetSlowQueriesParams

NewResetSlowQueriesParamsWithContext creates a new ResetSlowQueriesParams object with the ability to set a context for a request.

func NewResetSlowQueriesParamsWithHTTPClient

func NewResetSlowQueriesParamsWithHTTPClient(client *http.Client) *ResetSlowQueriesParams

NewResetSlowQueriesParamsWithHTTPClient creates a new ResetSlowQueriesParams object with the ability to set a custom HTTPClient for a request.

func NewResetSlowQueriesParamsWithTimeout

func NewResetSlowQueriesParamsWithTimeout(timeout time.Duration) *ResetSlowQueriesParams

NewResetSlowQueriesParamsWithTimeout creates a new ResetSlowQueriesParams object with the ability to set a timeout on a request.

func (*ResetSlowQueriesParams) SetCUUID

func (o *ResetSlowQueriesParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the reset slow queries params

func (*ResetSlowQueriesParams) SetContext

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

SetContext adds the context to the reset slow queries params

func (*ResetSlowQueriesParams) SetDefaults

func (o *ResetSlowQueriesParams) SetDefaults()

SetDefaults hydrates default values in the reset slow queries params (not the query body).

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

func (*ResetSlowQueriesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the reset slow queries params

func (*ResetSlowQueriesParams) SetTimeout

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

SetTimeout adds the timeout to the reset slow queries params

func (*ResetSlowQueriesParams) SetUniUUID

func (o *ResetSlowQueriesParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the reset slow queries params

func (*ResetSlowQueriesParams) WithCUUID

WithCUUID adds the cUUID to the reset slow queries params

func (*ResetSlowQueriesParams) WithContext

WithContext adds the context to the reset slow queries params

func (*ResetSlowQueriesParams) WithDefaults

WithDefaults hydrates default values in the reset slow queries params (not the query body).

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

func (*ResetSlowQueriesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the reset slow queries params

func (*ResetSlowQueriesParams) WithTimeout

WithTimeout adds the timeout to the reset slow queries params

func (*ResetSlowQueriesParams) WithUniUUID

func (o *ResetSlowQueriesParams) WithUniUUID(uniUUID strfmt.UUID) *ResetSlowQueriesParams

WithUniUUID adds the uniUUID to the reset slow queries params

func (*ResetSlowQueriesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ResetSlowQueriesReader

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

ResetSlowQueriesReader is a Reader for the ResetSlowQueries structure.

func (*ResetSlowQueriesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type TriggerHealthCheckOK

type TriggerHealthCheckOK struct {
	Payload *models.TriggerHealthCheckResult
}
TriggerHealthCheckOK describes a response with status code 200, with default header values.

successful operation

func NewTriggerHealthCheckOK

func NewTriggerHealthCheckOK() *TriggerHealthCheckOK

NewTriggerHealthCheckOK creates a TriggerHealthCheckOK with default headers values

func (*TriggerHealthCheckOK) Error

func (o *TriggerHealthCheckOK) Error() string

func (*TriggerHealthCheckOK) GetPayload

type TriggerHealthCheckParams

type TriggerHealthCheckParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

TriggerHealthCheckParams contains all the parameters to send to the API endpoint

for the trigger health check operation.

Typically these are written to a http.Request.

func NewTriggerHealthCheckParams

func NewTriggerHealthCheckParams() *TriggerHealthCheckParams

NewTriggerHealthCheckParams creates a new TriggerHealthCheckParams 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 NewTriggerHealthCheckParamsWithContext

func NewTriggerHealthCheckParamsWithContext(ctx context.Context) *TriggerHealthCheckParams

NewTriggerHealthCheckParamsWithContext creates a new TriggerHealthCheckParams object with the ability to set a context for a request.

func NewTriggerHealthCheckParamsWithHTTPClient

func NewTriggerHealthCheckParamsWithHTTPClient(client *http.Client) *TriggerHealthCheckParams

NewTriggerHealthCheckParamsWithHTTPClient creates a new TriggerHealthCheckParams object with the ability to set a custom HTTPClient for a request.

func NewTriggerHealthCheckParamsWithTimeout

func NewTriggerHealthCheckParamsWithTimeout(timeout time.Duration) *TriggerHealthCheckParams

NewTriggerHealthCheckParamsWithTimeout creates a new TriggerHealthCheckParams object with the ability to set a timeout on a request.

func (*TriggerHealthCheckParams) SetCUUID

func (o *TriggerHealthCheckParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the trigger health check params

func (*TriggerHealthCheckParams) SetContext

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

SetContext adds the context to the trigger health check params

func (*TriggerHealthCheckParams) SetDefaults

func (o *TriggerHealthCheckParams) SetDefaults()

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

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

func (*TriggerHealthCheckParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the trigger health check params

func (*TriggerHealthCheckParams) SetTimeout

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

SetTimeout adds the timeout to the trigger health check params

func (*TriggerHealthCheckParams) SetUniUUID

func (o *TriggerHealthCheckParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the trigger health check params

func (*TriggerHealthCheckParams) WithCUUID

WithCUUID adds the cUUID to the trigger health check params

func (*TriggerHealthCheckParams) WithContext

WithContext adds the context to the trigger health check params

func (*TriggerHealthCheckParams) WithDefaults

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

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

func (*TriggerHealthCheckParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the trigger health check params

func (*TriggerHealthCheckParams) WithTimeout

WithTimeout adds the timeout to the trigger health check params

func (*TriggerHealthCheckParams) WithUniUUID

WithUniUUID adds the uniUUID to the trigger health check params

func (*TriggerHealthCheckParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type TriggerHealthCheckReader

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

TriggerHealthCheckReader is a Reader for the TriggerHealthCheck structure.

func (*TriggerHealthCheckReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UniverseStatusOK

type UniverseStatusOK struct {
	Payload map[string]interface{}
}
UniverseStatusOK describes a response with status code 200, with default header values.

successful operation

func NewUniverseStatusOK

func NewUniverseStatusOK() *UniverseStatusOK

NewUniverseStatusOK creates a UniverseStatusOK with default headers values

func (*UniverseStatusOK) Error

func (o *UniverseStatusOK) Error() string

func (*UniverseStatusOK) GetPayload

func (o *UniverseStatusOK) GetPayload() map[string]interface{}

type UniverseStatusParams

type UniverseStatusParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

UniverseStatusParams contains all the parameters to send to the API endpoint

for the universe status operation.

Typically these are written to a http.Request.

func NewUniverseStatusParams

func NewUniverseStatusParams() *UniverseStatusParams

NewUniverseStatusParams creates a new UniverseStatusParams 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 NewUniverseStatusParamsWithContext

func NewUniverseStatusParamsWithContext(ctx context.Context) *UniverseStatusParams

NewUniverseStatusParamsWithContext creates a new UniverseStatusParams object with the ability to set a context for a request.

func NewUniverseStatusParamsWithHTTPClient

func NewUniverseStatusParamsWithHTTPClient(client *http.Client) *UniverseStatusParams

NewUniverseStatusParamsWithHTTPClient creates a new UniverseStatusParams object with the ability to set a custom HTTPClient for a request.

func NewUniverseStatusParamsWithTimeout

func NewUniverseStatusParamsWithTimeout(timeout time.Duration) *UniverseStatusParams

NewUniverseStatusParamsWithTimeout creates a new UniverseStatusParams object with the ability to set a timeout on a request.

func (*UniverseStatusParams) SetCUUID

func (o *UniverseStatusParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the universe status params

func (*UniverseStatusParams) SetContext

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

SetContext adds the context to the universe status params

func (*UniverseStatusParams) SetDefaults

func (o *UniverseStatusParams) SetDefaults()

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

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

func (*UniverseStatusParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the universe status params

func (*UniverseStatusParams) SetTimeout

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

SetTimeout adds the timeout to the universe status params

func (*UniverseStatusParams) SetUniUUID

func (o *UniverseStatusParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the universe status params

func (*UniverseStatusParams) WithCUUID

WithCUUID adds the cUUID to the universe status params

func (*UniverseStatusParams) WithContext

WithContext adds the context to the universe status params

func (*UniverseStatusParams) WithDefaults

func (o *UniverseStatusParams) WithDefaults() *UniverseStatusParams

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

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

func (*UniverseStatusParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the universe status params

func (*UniverseStatusParams) WithTimeout

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

WithTimeout adds the timeout to the universe status params

func (*UniverseStatusParams) WithUniUUID

func (o *UniverseStatusParams) WithUniUUID(uniUUID strfmt.UUID) *UniverseStatusParams

WithUniUUID adds the uniUUID to the universe status params

func (*UniverseStatusParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UniverseStatusReader

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

UniverseStatusReader is a Reader for the UniverseStatus structure.

func (*UniverseStatusReader) ReadResponse

func (o *UniverseStatusReader) 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