github.com/imran-kn/cilium-fork@v1.6.9/pkg/client/prefilter.go (about)

     1  // Copyright 2017 Authors of Cilium
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package client
    16  
    17  import (
    18  	"github.com/cilium/cilium/api/v1/client/prefilter"
    19  	"github.com/cilium/cilium/api/v1/models"
    20  	"github.com/cilium/cilium/pkg/api"
    21  )
    22  
    23  // GetPrefilter returns a list of all CIDR prefixes
    24  func (c *Client) GetPrefilter() (*models.Prefilter, error) {
    25  	resp, err := c.Prefilter.GetPrefilter(nil)
    26  	if err != nil {
    27  		return nil, Hint(err)
    28  	}
    29  	return resp.Payload, nil
    30  }
    31  
    32  // PatchPrefilter sets a list of CIDR prefixes
    33  func (c *Client) PatchPrefilter(spec *models.PrefilterSpec) (*models.Prefilter, error) {
    34  	params := prefilter.NewPatchPrefilterParams().WithPrefilterSpec(spec).WithTimeout(api.ClientTimeout)
    35  	resp, err := c.Prefilter.PatchPrefilter(params)
    36  	if err != nil {
    37  		return nil, Hint(err)
    38  	}
    39  	return resp.Payload, nil
    40  }
    41  
    42  // DeletePrefilter deletes a list of CIDR prefixes
    43  func (c *Client) DeletePrefilter(spec *models.PrefilterSpec) (*models.Prefilter, error) {
    44  	params := prefilter.NewDeletePrefilterParams().WithPrefilterSpec(spec).WithTimeout(api.ClientTimeout)
    45  	resp, err := c.Prefilter.DeletePrefilter(params)
    46  	if err != nil {
    47  		return nil, Hint(err)
    48  	}
    49  	return resp.Payload, nil
    50  }