alertgroup

package
v2.0.0-prerelease3 Latest Latest
Warning

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

Go to latest
Published: Apr 9, 2024 License: GPL-3.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 alertgroup API

func (*Client) GetAlertGroups

func (a *Client) GetAlertGroups(params *GetAlertGroupsParams, opts ...ClientOption) (*GetAlertGroupsOK, error)

GetAlertGroups Get a list of alert groups

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 {
	GetAlertGroups(params *GetAlertGroupsParams, opts ...ClientOption) (*GetAlertGroupsOK, 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 alertgroup API client.

type GetAlertGroupsBadRequest

type GetAlertGroupsBadRequest struct {
	Payload string
}

GetAlertGroupsBadRequest describes a response with status code 400, with default header values.

Bad request

func NewGetAlertGroupsBadRequest

func NewGetAlertGroupsBadRequest() *GetAlertGroupsBadRequest

NewGetAlertGroupsBadRequest creates a GetAlertGroupsBadRequest with default headers values

func (*GetAlertGroupsBadRequest) Code

func (o *GetAlertGroupsBadRequest) Code() int

Code gets the status code for the get alert groups bad request response

func (*GetAlertGroupsBadRequest) Error

func (o *GetAlertGroupsBadRequest) Error() string

func (*GetAlertGroupsBadRequest) GetPayload

func (o *GetAlertGroupsBadRequest) GetPayload() string

func (*GetAlertGroupsBadRequest) IsClientError

func (o *GetAlertGroupsBadRequest) IsClientError() bool

IsClientError returns true when this get alert groups bad request response has a 4xx status code

func (*GetAlertGroupsBadRequest) IsCode

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

IsCode returns true when this get alert groups bad request response a status code equal to that given

func (*GetAlertGroupsBadRequest) IsRedirect

func (o *GetAlertGroupsBadRequest) IsRedirect() bool

IsRedirect returns true when this get alert groups bad request response has a 3xx status code

func (*GetAlertGroupsBadRequest) IsServerError

func (o *GetAlertGroupsBadRequest) IsServerError() bool

IsServerError returns true when this get alert groups bad request response has a 5xx status code

func (*GetAlertGroupsBadRequest) IsSuccess

func (o *GetAlertGroupsBadRequest) IsSuccess() bool

IsSuccess returns true when this get alert groups bad request response has a 2xx status code

func (*GetAlertGroupsBadRequest) String

func (o *GetAlertGroupsBadRequest) String() string

type GetAlertGroupsInternalServerError

type GetAlertGroupsInternalServerError struct {
	Payload string
}

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

Internal server error

func NewGetAlertGroupsInternalServerError

func NewGetAlertGroupsInternalServerError() *GetAlertGroupsInternalServerError

NewGetAlertGroupsInternalServerError creates a GetAlertGroupsInternalServerError with default headers values

func (*GetAlertGroupsInternalServerError) Code

Code gets the status code for the get alert groups internal server error response

func (*GetAlertGroupsInternalServerError) Error

func (*GetAlertGroupsInternalServerError) GetPayload

func (o *GetAlertGroupsInternalServerError) GetPayload() string

func (*GetAlertGroupsInternalServerError) IsClientError

func (o *GetAlertGroupsInternalServerError) IsClientError() bool

IsClientError returns true when this get alert groups internal server error response has a 4xx status code

func (*GetAlertGroupsInternalServerError) IsCode

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

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

func (*GetAlertGroupsInternalServerError) IsRedirect

func (o *GetAlertGroupsInternalServerError) IsRedirect() bool

IsRedirect returns true when this get alert groups internal server error response has a 3xx status code

func (*GetAlertGroupsInternalServerError) IsServerError

func (o *GetAlertGroupsInternalServerError) IsServerError() bool

IsServerError returns true when this get alert groups internal server error response has a 5xx status code

func (*GetAlertGroupsInternalServerError) IsSuccess

func (o *GetAlertGroupsInternalServerError) IsSuccess() bool

IsSuccess returns true when this get alert groups internal server error response has a 2xx status code

func (*GetAlertGroupsInternalServerError) String

type GetAlertGroupsOK

type GetAlertGroupsOK struct {
	Payload models.AlertGroups
}

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

Get alert groups response

func NewGetAlertGroupsOK

func NewGetAlertGroupsOK() *GetAlertGroupsOK

NewGetAlertGroupsOK creates a GetAlertGroupsOK with default headers values

func (*GetAlertGroupsOK) Code

func (o *GetAlertGroupsOK) Code() int

Code gets the status code for the get alert groups o k response

func (*GetAlertGroupsOK) Error

func (o *GetAlertGroupsOK) Error() string

func (*GetAlertGroupsOK) GetPayload

func (o *GetAlertGroupsOK) GetPayload() models.AlertGroups

func (*GetAlertGroupsOK) IsClientError

func (o *GetAlertGroupsOK) IsClientError() bool

IsClientError returns true when this get alert groups o k response has a 4xx status code

func (*GetAlertGroupsOK) IsCode

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

IsCode returns true when this get alert groups o k response a status code equal to that given

func (*GetAlertGroupsOK) IsRedirect

func (o *GetAlertGroupsOK) IsRedirect() bool

IsRedirect returns true when this get alert groups o k response has a 3xx status code

func (*GetAlertGroupsOK) IsServerError

func (o *GetAlertGroupsOK) IsServerError() bool

IsServerError returns true when this get alert groups o k response has a 5xx status code

func (*GetAlertGroupsOK) IsSuccess

func (o *GetAlertGroupsOK) IsSuccess() bool

IsSuccess returns true when this get alert groups o k response has a 2xx status code

func (*GetAlertGroupsOK) String

func (o *GetAlertGroupsOK) String() string

type GetAlertGroupsParams

type GetAlertGroupsParams struct {

	/* Active.

	   Show active alerts

	   Default: true
	*/
	Active *bool

	/* Filter.

	   A list of matchers to filter alerts by
	*/
	Filter []string

	/* Inhibited.

	   Show inhibited alerts

	   Default: true
	*/
	Inhibited *bool

	/* Receiver.

	   A regex matching receivers to filter alerts by
	*/
	Receiver *string

	/* Silenced.

	   Show silenced alerts

	   Default: true
	*/
	Silenced *bool

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

GetAlertGroupsParams contains all the parameters to send to the API endpoint

for the get alert groups operation.

Typically these are written to a http.Request.

func NewGetAlertGroupsParams

func NewGetAlertGroupsParams() *GetAlertGroupsParams

NewGetAlertGroupsParams creates a new GetAlertGroupsParams 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 NewGetAlertGroupsParamsWithContext

func NewGetAlertGroupsParamsWithContext(ctx context.Context) *GetAlertGroupsParams

NewGetAlertGroupsParamsWithContext creates a new GetAlertGroupsParams object with the ability to set a context for a request.

func NewGetAlertGroupsParamsWithHTTPClient

func NewGetAlertGroupsParamsWithHTTPClient(client *http.Client) *GetAlertGroupsParams

NewGetAlertGroupsParamsWithHTTPClient creates a new GetAlertGroupsParams object with the ability to set a custom HTTPClient for a request.

func NewGetAlertGroupsParamsWithTimeout

func NewGetAlertGroupsParamsWithTimeout(timeout time.Duration) *GetAlertGroupsParams

NewGetAlertGroupsParamsWithTimeout creates a new GetAlertGroupsParams object with the ability to set a timeout on a request.

func (*GetAlertGroupsParams) SetActive

func (o *GetAlertGroupsParams) SetActive(active *bool)

SetActive adds the active to the get alert groups params

func (*GetAlertGroupsParams) SetContext

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

SetContext adds the context to the get alert groups params

func (*GetAlertGroupsParams) SetDefaults

func (o *GetAlertGroupsParams) SetDefaults()

SetDefaults hydrates default values in the get alert groups params (not the query body).

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

func (*GetAlertGroupsParams) SetFilter

func (o *GetAlertGroupsParams) SetFilter(filter []string)

SetFilter adds the filter to the get alert groups params

func (*GetAlertGroupsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get alert groups params

func (*GetAlertGroupsParams) SetInhibited

func (o *GetAlertGroupsParams) SetInhibited(inhibited *bool)

SetInhibited adds the inhibited to the get alert groups params

func (*GetAlertGroupsParams) SetReceiver

func (o *GetAlertGroupsParams) SetReceiver(receiver *string)

SetReceiver adds the receiver to the get alert groups params

func (*GetAlertGroupsParams) SetSilenced

func (o *GetAlertGroupsParams) SetSilenced(silenced *bool)

SetSilenced adds the silenced to the get alert groups params

func (*GetAlertGroupsParams) SetTimeout

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

SetTimeout adds the timeout to the get alert groups params

func (*GetAlertGroupsParams) WithActive

func (o *GetAlertGroupsParams) WithActive(active *bool) *GetAlertGroupsParams

WithActive adds the active to the get alert groups params

func (*GetAlertGroupsParams) WithContext

WithContext adds the context to the get alert groups params

func (*GetAlertGroupsParams) WithDefaults

func (o *GetAlertGroupsParams) WithDefaults() *GetAlertGroupsParams

WithDefaults hydrates default values in the get alert groups params (not the query body).

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

func (*GetAlertGroupsParams) WithFilter

func (o *GetAlertGroupsParams) WithFilter(filter []string) *GetAlertGroupsParams

WithFilter adds the filter to the get alert groups params

func (*GetAlertGroupsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get alert groups params

func (*GetAlertGroupsParams) WithInhibited

func (o *GetAlertGroupsParams) WithInhibited(inhibited *bool) *GetAlertGroupsParams

WithInhibited adds the inhibited to the get alert groups params

func (*GetAlertGroupsParams) WithReceiver

func (o *GetAlertGroupsParams) WithReceiver(receiver *string) *GetAlertGroupsParams

WithReceiver adds the receiver to the get alert groups params

func (*GetAlertGroupsParams) WithSilenced

func (o *GetAlertGroupsParams) WithSilenced(silenced *bool) *GetAlertGroupsParams

WithSilenced adds the silenced to the get alert groups params

func (*GetAlertGroupsParams) WithTimeout

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

WithTimeout adds the timeout to the get alert groups params

func (*GetAlertGroupsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetAlertGroupsReader

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

GetAlertGroupsReader is a Reader for the GetAlertGroups structure.

func (*GetAlertGroupsReader) ReadResponse

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