github.com/kubearmor/cilium@v1.6.12/api/v1/client/policy/get_identity_endpoints_responses.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  package policy
     4  
     5  // This file was generated by the swagger tool.
     6  // Editing this file might prove futile when you re-run the swagger generate command
     7  
     8  import (
     9  	"fmt"
    10  	"io"
    11  
    12  	"github.com/go-openapi/runtime"
    13  
    14  	strfmt "github.com/go-openapi/strfmt"
    15  
    16  	models "github.com/cilium/cilium/api/v1/models"
    17  )
    18  
    19  // GetIdentityEndpointsReader is a Reader for the GetIdentityEndpoints structure.
    20  type GetIdentityEndpointsReader struct {
    21  	formats strfmt.Registry
    22  }
    23  
    24  // ReadResponse reads a server response into the received o.
    25  func (o *GetIdentityEndpointsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
    26  	switch response.Code() {
    27  
    28  	case 200:
    29  		result := NewGetIdentityEndpointsOK()
    30  		if err := result.readResponse(response, consumer, o.formats); err != nil {
    31  			return nil, err
    32  		}
    33  		return result, nil
    34  
    35  	case 404:
    36  		result := NewGetIdentityEndpointsNotFound()
    37  		if err := result.readResponse(response, consumer, o.formats); err != nil {
    38  			return nil, err
    39  		}
    40  		return nil, result
    41  
    42  	default:
    43  		return nil, runtime.NewAPIError("unknown error", response, response.Code())
    44  	}
    45  }
    46  
    47  // NewGetIdentityEndpointsOK creates a GetIdentityEndpointsOK with default headers values
    48  func NewGetIdentityEndpointsOK() *GetIdentityEndpointsOK {
    49  	return &GetIdentityEndpointsOK{}
    50  }
    51  
    52  /*GetIdentityEndpointsOK handles this case with default header values.
    53  
    54  Success
    55  */
    56  type GetIdentityEndpointsOK struct {
    57  	Payload []*models.IdentityEndpoints
    58  }
    59  
    60  func (o *GetIdentityEndpointsOK) Error() string {
    61  	return fmt.Sprintf("[GET /identity/endpoints][%d] getIdentityEndpointsOK  %+v", 200, o.Payload)
    62  }
    63  
    64  func (o *GetIdentityEndpointsOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
    65  
    66  	// response payload
    67  	if err := consumer.Consume(response.Body(), &o.Payload); err != nil && err != io.EOF {
    68  		return err
    69  	}
    70  
    71  	return nil
    72  }
    73  
    74  // NewGetIdentityEndpointsNotFound creates a GetIdentityEndpointsNotFound with default headers values
    75  func NewGetIdentityEndpointsNotFound() *GetIdentityEndpointsNotFound {
    76  	return &GetIdentityEndpointsNotFound{}
    77  }
    78  
    79  /*GetIdentityEndpointsNotFound handles this case with default header values.
    80  
    81  Set of identities which are being used by local endpoints could not be found.
    82  */
    83  type GetIdentityEndpointsNotFound struct {
    84  }
    85  
    86  func (o *GetIdentityEndpointsNotFound) Error() string {
    87  	return fmt.Sprintf("[GET /identity/endpoints][%d] getIdentityEndpointsNotFound ", 404)
    88  }
    89  
    90  func (o *GetIdentityEndpointsNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
    91  
    92  	return nil
    93  }