Client for alertgroup API
type Client struct {
// contains filtered or unexported fields
}
func (a *Client) GetAlertGroups(params *GetAlertGroupsParams, opts ...ClientOption) (*GetAlertGroupsOK, error)
GetAlertGroups Get a list of alert groups
func (a *Client) SetTransport(transport runtime.ClientTransport)
SetTransport changes the transport on the client
ClientOption is the option for Client methods
type ClientOption func(*runtime.ClientOperation)
ClientService is the interface for Client methods
type ClientService interface { GetAlertGroups(params *GetAlertGroupsParams, opts ...ClientOption) (*GetAlertGroupsOK, error) SetTransport(transport runtime.ClientTransport) }
func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService
New creates a new alertgroup API client.
GetAlertGroupsBadRequest describes a response with status code 400, with default header values.
Bad request
type GetAlertGroupsBadRequest struct { Payload string }
func NewGetAlertGroupsBadRequest() *GetAlertGroupsBadRequest
NewGetAlertGroupsBadRequest creates a GetAlertGroupsBadRequest with default headers values
func (o *GetAlertGroupsBadRequest) Error() string
func (o *GetAlertGroupsBadRequest) GetPayload() string
func (o *GetAlertGroupsBadRequest) IsClientError() bool
IsClientError returns true when this get alert groups bad request response has a 4xx status code
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 (o *GetAlertGroupsBadRequest) IsRedirect() bool
IsRedirect returns true when this get alert groups bad request response has a 3xx status code
func (o *GetAlertGroupsBadRequest) IsServerError() bool
IsServerError returns true when this get alert groups bad request response has a 5xx status code
func (o *GetAlertGroupsBadRequest) IsSuccess() bool
IsSuccess returns true when this get alert groups bad request response has a 2xx status code
func (o *GetAlertGroupsBadRequest) String() string
GetAlertGroupsInternalServerError describes a response with status code 500, with default header values.
Internal server error
type GetAlertGroupsInternalServerError struct { Payload string }
func NewGetAlertGroupsInternalServerError() *GetAlertGroupsInternalServerError
NewGetAlertGroupsInternalServerError creates a GetAlertGroupsInternalServerError with default headers values
func (o *GetAlertGroupsInternalServerError) Error() string
func (o *GetAlertGroupsInternalServerError) GetPayload() string
func (o *GetAlertGroupsInternalServerError) IsClientError() bool
IsClientError returns true when this get alert groups internal server error response has a 4xx status code
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 (o *GetAlertGroupsInternalServerError) IsRedirect() bool
IsRedirect returns true when this get alert groups internal server error response has a 3xx status code
func (o *GetAlertGroupsInternalServerError) IsServerError() bool
IsServerError returns true when this get alert groups internal server error response has a 5xx status code
func (o *GetAlertGroupsInternalServerError) IsSuccess() bool
IsSuccess returns true when this get alert groups internal server error response has a 2xx status code
func (o *GetAlertGroupsInternalServerError) String() string
GetAlertGroupsOK describes a response with status code 200, with default header values.
Get alert groups response
type GetAlertGroupsOK struct { Payload models.AlertGroups }
func NewGetAlertGroupsOK() *GetAlertGroupsOK
NewGetAlertGroupsOK creates a GetAlertGroupsOK with default headers values
func (o *GetAlertGroupsOK) Error() string
func (o *GetAlertGroupsOK) GetPayload() models.AlertGroups
func (o *GetAlertGroupsOK) IsClientError() bool
IsClientError returns true when this get alert groups o k response has a 4xx status code
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 (o *GetAlertGroupsOK) IsRedirect() bool
IsRedirect returns true when this get alert groups o k response has a 3xx status code
func (o *GetAlertGroupsOK) IsServerError() bool
IsServerError returns true when this get alert groups o k response has a 5xx status code
func (o *GetAlertGroupsOK) IsSuccess() bool
IsSuccess returns true when this get alert groups o k response has a 2xx status code
func (o *GetAlertGroupsOK) String() string
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.
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 }
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(ctx context.Context) *GetAlertGroupsParams
NewGetAlertGroupsParamsWithContext creates a new GetAlertGroupsParams object with the ability to set a context for a request.
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(timeout time.Duration) *GetAlertGroupsParams
NewGetAlertGroupsParamsWithTimeout creates a new GetAlertGroupsParams object with the ability to set a timeout on a request.
func (o *GetAlertGroupsParams) SetActive(active *bool)
SetActive adds the active to the get alert groups params
func (o *GetAlertGroupsParams) SetContext(ctx context.Context)
SetContext adds the context to the get alert groups params
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 (o *GetAlertGroupsParams) SetFilter(filter []string)
SetFilter adds the filter to the get alert groups params
func (o *GetAlertGroupsParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the get alert groups params
func (o *GetAlertGroupsParams) SetInhibited(inhibited *bool)
SetInhibited adds the inhibited to the get alert groups params
func (o *GetAlertGroupsParams) SetReceiver(receiver *string)
SetReceiver adds the receiver to the get alert groups params
func (o *GetAlertGroupsParams) SetSilenced(silenced *bool)
SetSilenced adds the silenced to the get alert groups params
func (o *GetAlertGroupsParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the get alert groups params
func (o *GetAlertGroupsParams) WithActive(active *bool) *GetAlertGroupsParams
WithActive adds the active to the get alert groups params
func (o *GetAlertGroupsParams) WithContext(ctx context.Context) *GetAlertGroupsParams
WithContext adds the context to the get alert groups params
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 (o *GetAlertGroupsParams) WithFilter(filter []string) *GetAlertGroupsParams
WithFilter adds the filter to the get alert groups params
func (o *GetAlertGroupsParams) WithHTTPClient(client *http.Client) *GetAlertGroupsParams
WithHTTPClient adds the HTTPClient to the get alert groups params
func (o *GetAlertGroupsParams) WithInhibited(inhibited *bool) *GetAlertGroupsParams
WithInhibited adds the inhibited to the get alert groups params
func (o *GetAlertGroupsParams) WithReceiver(receiver *string) *GetAlertGroupsParams
WithReceiver adds the receiver to the get alert groups params
func (o *GetAlertGroupsParams) WithSilenced(silenced *bool) *GetAlertGroupsParams
WithSilenced adds the silenced to the get alert groups params
func (o *GetAlertGroupsParams) WithTimeout(timeout time.Duration) *GetAlertGroupsParams
WithTimeout adds the timeout to the get alert groups params
func (o *GetAlertGroupsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
GetAlertGroupsReader is a Reader for the GetAlertGroups structure.
type GetAlertGroupsReader struct {
// contains filtered or unexported fields
}
func (o *GetAlertGroupsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.