k8s.io/client-go@v0.31.1/listers/admissionregistration/v1beta1/mutatingwebhookconfiguration.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 v1beta1 20 21 import ( 22 v1beta1 "k8s.io/api/admissionregistration/v1beta1" 23 "k8s.io/apimachinery/pkg/labels" 24 "k8s.io/client-go/listers" 25 "k8s.io/client-go/tools/cache" 26 ) 27 28 // MutatingWebhookConfigurationLister helps list MutatingWebhookConfigurations. 29 // All objects returned here must be treated as read-only. 30 type MutatingWebhookConfigurationLister interface { 31 // List lists all MutatingWebhookConfigurations in the indexer. 32 // Objects returned here must be treated as read-only. 33 List(selector labels.Selector) (ret []*v1beta1.MutatingWebhookConfiguration, err error) 34 // Get retrieves the MutatingWebhookConfiguration from the index for a given name. 35 // Objects returned here must be treated as read-only. 36 Get(name string) (*v1beta1.MutatingWebhookConfiguration, error) 37 MutatingWebhookConfigurationListerExpansion 38 } 39 40 // mutatingWebhookConfigurationLister implements the MutatingWebhookConfigurationLister interface. 41 type mutatingWebhookConfigurationLister struct { 42 listers.ResourceIndexer[*v1beta1.MutatingWebhookConfiguration] 43 } 44 45 // NewMutatingWebhookConfigurationLister returns a new MutatingWebhookConfigurationLister. 46 func NewMutatingWebhookConfigurationLister(indexer cache.Indexer) MutatingWebhookConfigurationLister { 47 return &mutatingWebhookConfigurationLister{listers.New[*v1beta1.MutatingWebhookConfiguration](indexer, v1beta1.Resource("mutatingwebhookconfiguration"))} 48 }