k8s.io/client-go@v0.31.1/listers/resource/v1alpha3/podschedulingcontext.go (about) 1 /* 2 Copyright The Kubernetes Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 // Code generated by lister-gen. DO NOT EDIT. 18 19 package v1alpha3 20 21 import ( 22 v1alpha3 "k8s.io/api/resource/v1alpha3" 23 "k8s.io/apimachinery/pkg/labels" 24 "k8s.io/client-go/listers" 25 "k8s.io/client-go/tools/cache" 26 ) 27 28 // PodSchedulingContextLister helps list PodSchedulingContexts. 29 // All objects returned here must be treated as read-only. 30 type PodSchedulingContextLister interface { 31 // List lists all PodSchedulingContexts in the indexer. 32 // Objects returned here must be treated as read-only. 33 List(selector labels.Selector) (ret []*v1alpha3.PodSchedulingContext, err error) 34 // PodSchedulingContexts returns an object that can list and get PodSchedulingContexts. 35 PodSchedulingContexts(namespace string) PodSchedulingContextNamespaceLister 36 PodSchedulingContextListerExpansion 37 } 38 39 // podSchedulingContextLister implements the PodSchedulingContextLister interface. 40 type podSchedulingContextLister struct { 41 listers.ResourceIndexer[*v1alpha3.PodSchedulingContext] 42 } 43 44 // NewPodSchedulingContextLister returns a new PodSchedulingContextLister. 45 func NewPodSchedulingContextLister(indexer cache.Indexer) PodSchedulingContextLister { 46 return &podSchedulingContextLister{listers.New[*v1alpha3.PodSchedulingContext](indexer, v1alpha3.Resource("podschedulingcontext"))} 47 } 48 49 // PodSchedulingContexts returns an object that can list and get PodSchedulingContexts. 50 func (s *podSchedulingContextLister) PodSchedulingContexts(namespace string) PodSchedulingContextNamespaceLister { 51 return podSchedulingContextNamespaceLister{listers.NewNamespaced[*v1alpha3.PodSchedulingContext](s.ResourceIndexer, namespace)} 52 } 53 54 // PodSchedulingContextNamespaceLister helps list and get PodSchedulingContexts. 55 // All objects returned here must be treated as read-only. 56 type PodSchedulingContextNamespaceLister interface { 57 // List lists all PodSchedulingContexts in the indexer for a given namespace. 58 // Objects returned here must be treated as read-only. 59 List(selector labels.Selector) (ret []*v1alpha3.PodSchedulingContext, err error) 60 // Get retrieves the PodSchedulingContext from the indexer for a given namespace and name. 61 // Objects returned here must be treated as read-only. 62 Get(name string) (*v1alpha3.PodSchedulingContext, error) 63 PodSchedulingContextNamespaceListerExpansion 64 } 65 66 // podSchedulingContextNamespaceLister implements the PodSchedulingContextNamespaceLister 67 // interface. 68 type podSchedulingContextNamespaceLister struct { 69 listers.ResourceIndexer[*v1alpha3.PodSchedulingContext] 70 }