github.com/kubearmor/cilium@v1.6.12/api/v1/server/restapi/policy/get_policy_parameters.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  	"net/http"
    10  
    11  	"github.com/go-openapi/errors"
    12  	"github.com/go-openapi/runtime"
    13  	"github.com/go-openapi/runtime/middleware"
    14  
    15  	models "github.com/cilium/cilium/api/v1/models"
    16  )
    17  
    18  // NewGetPolicyParams creates a new GetPolicyParams object
    19  // no default values defined in spec.
    20  func NewGetPolicyParams() GetPolicyParams {
    21  
    22  	return GetPolicyParams{}
    23  }
    24  
    25  // GetPolicyParams contains all the bound params for the get policy operation
    26  // typically these are obtained from a http.Request
    27  //
    28  // swagger:parameters GetPolicy
    29  type GetPolicyParams struct {
    30  
    31  	// HTTP Request Object
    32  	HTTPRequest *http.Request `json:"-"`
    33  
    34  	/*
    35  	  In: body
    36  	*/
    37  	Labels models.Labels
    38  }
    39  
    40  // BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface
    41  // for simple values it will use straight method calls.
    42  //
    43  // To ensure default values, the struct must have been initialized with NewGetPolicyParams() beforehand.
    44  func (o *GetPolicyParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
    45  	var res []error
    46  
    47  	o.HTTPRequest = r
    48  
    49  	if runtime.HasBody(r) {
    50  		defer r.Body.Close()
    51  		var body models.Labels
    52  		if err := route.Consumer.Consume(r.Body, &body); err != nil {
    53  			res = append(res, errors.NewParseError("labels", "body", "", err))
    54  		} else {
    55  			// validate body object
    56  			if err := body.Validate(route.Formats); err != nil {
    57  				res = append(res, err)
    58  			}
    59  
    60  			if len(res) == 0 {
    61  				o.Labels = body
    62  			}
    63  		}
    64  	}
    65  	if len(res) > 0 {
    66  		return errors.CompositeValidationError(res...)
    67  	}
    68  	return nil
    69  }