github.com/kubearmor/cilium@v1.6.12/api/v1/client/prefilter/delete_prefilter_parameters.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  package prefilter
     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  	"context"
    10  	"net/http"
    11  	"time"
    12  
    13  	"github.com/go-openapi/errors"
    14  	"github.com/go-openapi/runtime"
    15  	cr "github.com/go-openapi/runtime/client"
    16  
    17  	strfmt "github.com/go-openapi/strfmt"
    18  
    19  	models "github.com/cilium/cilium/api/v1/models"
    20  )
    21  
    22  // NewDeletePrefilterParams creates a new DeletePrefilterParams object
    23  // with the default values initialized.
    24  func NewDeletePrefilterParams() *DeletePrefilterParams {
    25  	var ()
    26  	return &DeletePrefilterParams{
    27  
    28  		timeout: cr.DefaultTimeout,
    29  	}
    30  }
    31  
    32  // NewDeletePrefilterParamsWithTimeout creates a new DeletePrefilterParams object
    33  // with the default values initialized, and the ability to set a timeout on a request
    34  func NewDeletePrefilterParamsWithTimeout(timeout time.Duration) *DeletePrefilterParams {
    35  	var ()
    36  	return &DeletePrefilterParams{
    37  
    38  		timeout: timeout,
    39  	}
    40  }
    41  
    42  // NewDeletePrefilterParamsWithContext creates a new DeletePrefilterParams object
    43  // with the default values initialized, and the ability to set a context for a request
    44  func NewDeletePrefilterParamsWithContext(ctx context.Context) *DeletePrefilterParams {
    45  	var ()
    46  	return &DeletePrefilterParams{
    47  
    48  		Context: ctx,
    49  	}
    50  }
    51  
    52  // NewDeletePrefilterParamsWithHTTPClient creates a new DeletePrefilterParams object
    53  // with the default values initialized, and the ability to set a custom HTTPClient for a request
    54  func NewDeletePrefilterParamsWithHTTPClient(client *http.Client) *DeletePrefilterParams {
    55  	var ()
    56  	return &DeletePrefilterParams{
    57  		HTTPClient: client,
    58  	}
    59  }
    60  
    61  /*DeletePrefilterParams contains all the parameters to send to the API endpoint
    62  for the delete prefilter operation typically these are written to a http.Request
    63  */
    64  type DeletePrefilterParams struct {
    65  
    66  	/*PrefilterSpec
    67  	  List of CIDR ranges for filter table
    68  
    69  	*/
    70  	PrefilterSpec *models.PrefilterSpec
    71  
    72  	timeout    time.Duration
    73  	Context    context.Context
    74  	HTTPClient *http.Client
    75  }
    76  
    77  // WithTimeout adds the timeout to the delete prefilter params
    78  func (o *DeletePrefilterParams) WithTimeout(timeout time.Duration) *DeletePrefilterParams {
    79  	o.SetTimeout(timeout)
    80  	return o
    81  }
    82  
    83  // SetTimeout adds the timeout to the delete prefilter params
    84  func (o *DeletePrefilterParams) SetTimeout(timeout time.Duration) {
    85  	o.timeout = timeout
    86  }
    87  
    88  // WithContext adds the context to the delete prefilter params
    89  func (o *DeletePrefilterParams) WithContext(ctx context.Context) *DeletePrefilterParams {
    90  	o.SetContext(ctx)
    91  	return o
    92  }
    93  
    94  // SetContext adds the context to the delete prefilter params
    95  func (o *DeletePrefilterParams) SetContext(ctx context.Context) {
    96  	o.Context = ctx
    97  }
    98  
    99  // WithHTTPClient adds the HTTPClient to the delete prefilter params
   100  func (o *DeletePrefilterParams) WithHTTPClient(client *http.Client) *DeletePrefilterParams {
   101  	o.SetHTTPClient(client)
   102  	return o
   103  }
   104  
   105  // SetHTTPClient adds the HTTPClient to the delete prefilter params
   106  func (o *DeletePrefilterParams) SetHTTPClient(client *http.Client) {
   107  	o.HTTPClient = client
   108  }
   109  
   110  // WithPrefilterSpec adds the prefilterSpec to the delete prefilter params
   111  func (o *DeletePrefilterParams) WithPrefilterSpec(prefilterSpec *models.PrefilterSpec) *DeletePrefilterParams {
   112  	o.SetPrefilterSpec(prefilterSpec)
   113  	return o
   114  }
   115  
   116  // SetPrefilterSpec adds the prefilterSpec to the delete prefilter params
   117  func (o *DeletePrefilterParams) SetPrefilterSpec(prefilterSpec *models.PrefilterSpec) {
   118  	o.PrefilterSpec = prefilterSpec
   119  }
   120  
   121  // WriteToRequest writes these params to a swagger request
   122  func (o *DeletePrefilterParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
   123  
   124  	if err := r.SetTimeout(o.timeout); err != nil {
   125  		return err
   126  	}
   127  	var res []error
   128  
   129  	if o.PrefilterSpec != nil {
   130  		if err := r.SetBodyParam(o.PrefilterSpec); err != nil {
   131  			return err
   132  		}
   133  	}
   134  
   135  	if len(res) > 0 {
   136  		return errors.CompositeValidationError(res...)
   137  	}
   138  	return nil
   139  }