blob: b89c9bbe2afe4b38c5fea07d8c91ef8a03a8333d [file] [log] [blame]
Matthias Andreas Benkard832a54e2019-01-29 09:27:38 +01001/*
2Copyright The Kubernetes Authors.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17// Code generated by lister-gen. DO NOT EDIT.
18
19package v1beta1
20
21import (
22 v1beta1 "k8s.io/api/admissionregistration/v1beta1"
23 "k8s.io/apimachinery/pkg/api/errors"
24 "k8s.io/apimachinery/pkg/labels"
25 "k8s.io/client-go/tools/cache"
26)
27
28// ValidatingWebhookConfigurationLister helps list ValidatingWebhookConfigurations.
29type ValidatingWebhookConfigurationLister interface {
30 // List lists all ValidatingWebhookConfigurations in the indexer.
31 List(selector labels.Selector) (ret []*v1beta1.ValidatingWebhookConfiguration, err error)
32 // Get retrieves the ValidatingWebhookConfiguration from the index for a given name.
33 Get(name string) (*v1beta1.ValidatingWebhookConfiguration, error)
34 ValidatingWebhookConfigurationListerExpansion
35}
36
37// validatingWebhookConfigurationLister implements the ValidatingWebhookConfigurationLister interface.
38type validatingWebhookConfigurationLister struct {
39 indexer cache.Indexer
40}
41
42// NewValidatingWebhookConfigurationLister returns a new ValidatingWebhookConfigurationLister.
43func NewValidatingWebhookConfigurationLister(indexer cache.Indexer) ValidatingWebhookConfigurationLister {
44 return &validatingWebhookConfigurationLister{indexer: indexer}
45}
46
47// List lists all ValidatingWebhookConfigurations in the indexer.
48func (s *validatingWebhookConfigurationLister) List(selector labels.Selector) (ret []*v1beta1.ValidatingWebhookConfiguration, err error) {
49 err = cache.ListAll(s.indexer, selector, func(m interface{}) {
50 ret = append(ret, m.(*v1beta1.ValidatingWebhookConfiguration))
51 })
52 return ret, err
53}
54
55// Get retrieves the ValidatingWebhookConfiguration from the index for a given name.
56func (s *validatingWebhookConfigurationLister) Get(name string) (*v1beta1.ValidatingWebhookConfiguration, error) {
57 obj, exists, err := s.indexer.GetByKey(name)
58 if err != nil {
59 return nil, err
60 }
61 if !exists {
62 return nil, errors.NewNotFound(v1beta1.Resource("validatingwebhookconfiguration"), name)
63 }
64 return obj.(*v1beta1.ValidatingWebhookConfiguration), nil
65}