mirror of
https://github.com/prometheus/alertmanager
synced 2025-02-21 13:17:01 +00:00
Bumps the API spec/client generation util of `go-swagger` from 0.30.2 to 0.30.5 which is the latest stable. Signed-off-by: gotjosh <josue.abreu@gmail.com>
116 lines
3.3 KiB
Go
116 lines
3.3 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
// Copyright Prometheus Team
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
package receiver
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/go-openapi/runtime"
|
|
"github.com/go-openapi/strfmt"
|
|
|
|
"github.com/prometheus/alertmanager/api/v2/models"
|
|
)
|
|
|
|
// GetReceiversReader is a Reader for the GetReceivers structure.
|
|
type GetReceiversReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *GetReceiversReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
case 200:
|
|
result := NewGetReceiversOK()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
default:
|
|
return nil, runtime.NewAPIError("[GET /receivers] getReceivers", response, response.Code())
|
|
}
|
|
}
|
|
|
|
// NewGetReceiversOK creates a GetReceiversOK with default headers values
|
|
func NewGetReceiversOK() *GetReceiversOK {
|
|
return &GetReceiversOK{}
|
|
}
|
|
|
|
/*
|
|
GetReceiversOK describes a response with status code 200, with default header values.
|
|
|
|
Get receivers response
|
|
*/
|
|
type GetReceiversOK struct {
|
|
Payload []*models.Receiver
|
|
}
|
|
|
|
// IsSuccess returns true when this get receivers o k response has a 2xx status code
|
|
func (o *GetReceiversOK) IsSuccess() bool {
|
|
return true
|
|
}
|
|
|
|
// IsRedirect returns true when this get receivers o k response has a 3xx status code
|
|
func (o *GetReceiversOK) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get receivers o k response has a 4xx status code
|
|
func (o *GetReceiversOK) IsClientError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsServerError returns true when this get receivers o k response has a 5xx status code
|
|
func (o *GetReceiversOK) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get receivers o k response a status code equal to that given
|
|
func (o *GetReceiversOK) IsCode(code int) bool {
|
|
return code == 200
|
|
}
|
|
|
|
// Code gets the status code for the get receivers o k response
|
|
func (o *GetReceiversOK) Code() int {
|
|
return 200
|
|
}
|
|
|
|
func (o *GetReceiversOK) Error() string {
|
|
return fmt.Sprintf("[GET /receivers][%d] getReceiversOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *GetReceiversOK) String() string {
|
|
return fmt.Sprintf("[GET /receivers][%d] getReceiversOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *GetReceiversOK) GetPayload() []*models.Receiver {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetReceiversOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), &o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|