blob: 55d7cd4d3ae30ab599f2090a0a588a32b4a51518 [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 v1
20
21import (
22 v1 "k8s.io/api/core/v1"
23 "k8s.io/apimachinery/pkg/api/errors"
24 "k8s.io/apimachinery/pkg/labels"
25 "k8s.io/client-go/tools/cache"
26)
27
28// ConfigMapLister helps list ConfigMaps.
29type ConfigMapLister interface {
30 // List lists all ConfigMaps in the indexer.
31 List(selector labels.Selector) (ret []*v1.ConfigMap, err error)
32 // ConfigMaps returns an object that can list and get ConfigMaps.
33 ConfigMaps(namespace string) ConfigMapNamespaceLister
34 ConfigMapListerExpansion
35}
36
37// configMapLister implements the ConfigMapLister interface.
38type configMapLister struct {
39 indexer cache.Indexer
40}
41
42// NewConfigMapLister returns a new ConfigMapLister.
43func NewConfigMapLister(indexer cache.Indexer) ConfigMapLister {
44 return &configMapLister{indexer: indexer}
45}
46
47// List lists all ConfigMaps in the indexer.
48func (s *configMapLister) List(selector labels.Selector) (ret []*v1.ConfigMap, err error) {
49 err = cache.ListAll(s.indexer, selector, func(m interface{}) {
50 ret = append(ret, m.(*v1.ConfigMap))
51 })
52 return ret, err
53}
54
55// ConfigMaps returns an object that can list and get ConfigMaps.
56func (s *configMapLister) ConfigMaps(namespace string) ConfigMapNamespaceLister {
57 return configMapNamespaceLister{indexer: s.indexer, namespace: namespace}
58}
59
60// ConfigMapNamespaceLister helps list and get ConfigMaps.
61type ConfigMapNamespaceLister interface {
62 // List lists all ConfigMaps in the indexer for a given namespace.
63 List(selector labels.Selector) (ret []*v1.ConfigMap, err error)
64 // Get retrieves the ConfigMap from the indexer for a given namespace and name.
65 Get(name string) (*v1.ConfigMap, error)
66 ConfigMapNamespaceListerExpansion
67}
68
69// configMapNamespaceLister implements the ConfigMapNamespaceLister
70// interface.
71type configMapNamespaceLister struct {
72 indexer cache.Indexer
73 namespace string
74}
75
76// List lists all ConfigMaps in the indexer for a given namespace.
77func (s configMapNamespaceLister) List(selector labels.Selector) (ret []*v1.ConfigMap, err error) {
78 err = cache.ListAllByNamespace(s.indexer, s.namespace, selector, func(m interface{}) {
79 ret = append(ret, m.(*v1.ConfigMap))
80 })
81 return ret, err
82}
83
84// Get retrieves the ConfigMap from the indexer for a given namespace and name.
85func (s configMapNamespaceLister) Get(name string) (*v1.ConfigMap, error) {
86 obj, exists, err := s.indexer.GetByKey(s.namespace + "/" + name)
87 if err != nil {
88 return nil, err
89 }
90 if !exists {
91 return nil, errors.NewNotFound(v1.Resource("configmap"), name)
92 }
93 return obj.(*v1.ConfigMap), nil
94}