1/*
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	"k8s.io/apimachinery/pkg/api/errors"
23	"k8s.io/apimachinery/pkg/labels"
24	"k8s.io/client-go/tools/cache"
25	v1 "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1"
26)
27
28// APIServiceLister helps list APIServices.
29// All objects returned here must be treated as read-only.
30type APIServiceLister interface {
31	// List lists all APIServices in the indexer.
32	// Objects returned here must be treated as read-only.
33	List(selector labels.Selector) (ret []*v1.APIService, err error)
34	// Get retrieves the APIService from the index for a given name.
35	// Objects returned here must be treated as read-only.
36	Get(name string) (*v1.APIService, error)
37	APIServiceListerExpansion
38}
39
40// aPIServiceLister implements the APIServiceLister interface.
41type aPIServiceLister struct {
42	indexer cache.Indexer
43}
44
45// NewAPIServiceLister returns a new APIServiceLister.
46func NewAPIServiceLister(indexer cache.Indexer) APIServiceLister {
47	return &aPIServiceLister{indexer: indexer}
48}
49
50// List lists all APIServices in the indexer.
51func (s *aPIServiceLister) List(selector labels.Selector) (ret []*v1.APIService, err error) {
52	err = cache.ListAll(s.indexer, selector, func(m interface{}) {
53		ret = append(ret, m.(*v1.APIService))
54	})
55	return ret, err
56}
57
58// Get retrieves the APIService from the index for a given name.
59func (s *aPIServiceLister) Get(name string) (*v1.APIService, error) {
60	obj, exists, err := s.indexer.GetByKey(name)
61	if err != nil {
62		return nil, err
63	}
64	if !exists {
65		return nil, errors.NewNotFound(v1.Resource("apiservice"), name)
66	}
67	return obj.(*v1.APIService), nil
68}
69