blob: 8b94cf594c748f9c66590f67615fa39bfba208d3 [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// ServiceAccountLister helps list ServiceAccounts.
29type ServiceAccountLister interface {
30 // List lists all ServiceAccounts in the indexer.
31 List(selector labels.Selector) (ret []*v1.ServiceAccount, err error)
32 // ServiceAccounts returns an object that can list and get ServiceAccounts.
33 ServiceAccounts(namespace string) ServiceAccountNamespaceLister
34 ServiceAccountListerExpansion
35}
36
37// serviceAccountLister implements the ServiceAccountLister interface.
38type serviceAccountLister struct {
39 indexer cache.Indexer
40}
41
42// NewServiceAccountLister returns a new ServiceAccountLister.
43func NewServiceAccountLister(indexer cache.Indexer) ServiceAccountLister {
44 return &serviceAccountLister{indexer: indexer}
45}
46
47// List lists all ServiceAccounts in the indexer.
48func (s *serviceAccountLister) List(selector labels.Selector) (ret []*v1.ServiceAccount, err error) {
49 err = cache.ListAll(s.indexer, selector, func(m interface{}) {
50 ret = append(ret, m.(*v1.ServiceAccount))
51 })
52 return ret, err
53}
54
55// ServiceAccounts returns an object that can list and get ServiceAccounts.
56func (s *serviceAccountLister) ServiceAccounts(namespace string) ServiceAccountNamespaceLister {
57 return serviceAccountNamespaceLister{indexer: s.indexer, namespace: namespace}
58}
59
60// ServiceAccountNamespaceLister helps list and get ServiceAccounts.
61type ServiceAccountNamespaceLister interface {
62 // List lists all ServiceAccounts in the indexer for a given namespace.
63 List(selector labels.Selector) (ret []*v1.ServiceAccount, err error)
64 // Get retrieves the ServiceAccount from the indexer for a given namespace and name.
65 Get(name string) (*v1.ServiceAccount, error)
66 ServiceAccountNamespaceListerExpansion
67}
68
69// serviceAccountNamespaceLister implements the ServiceAccountNamespaceLister
70// interface.
71type serviceAccountNamespaceLister struct {
72 indexer cache.Indexer
73 namespace string
74}
75
76// List lists all ServiceAccounts in the indexer for a given namespace.
77func (s serviceAccountNamespaceLister) List(selector labels.Selector) (ret []*v1.ServiceAccount, err error) {
78 err = cache.ListAllByNamespace(s.indexer, s.namespace, selector, func(m interface{}) {
79 ret = append(ret, m.(*v1.ServiceAccount))
80 })
81 return ret, err
82}
83
84// Get retrieves the ServiceAccount from the indexer for a given namespace and name.
85func (s serviceAccountNamespaceLister) Get(name string) (*v1.ServiceAccount, 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("serviceaccount"), name)
92 }
93 return obj.(*v1.ServiceAccount), nil
94}