mirror of
https://github.com/kubernetes/client-go.git
synced 2025-10-22 06:26:40 +00:00
remove generated files with tpr
Kubernetes-commit: e9bb42d3bca709e3a6518fbb7d6f917f5b213c04
This commit is contained in:
committed by
Kubernetes Publisher
parent
b38bbd711b
commit
bb459ffc83
@@ -19,7 +19,6 @@ go_library(
|
||||
"replicaset.go",
|
||||
"replicaset_expansion.go",
|
||||
"scale.go",
|
||||
"thirdpartyresource.go",
|
||||
],
|
||||
importpath = "k8s.io/client-go/listers/extensions/v1beta1",
|
||||
deps = [
|
||||
|
@@ -1,65 +0,0 @@
|
||||
/*
|
||||
Copyright 2017 The Kubernetes Authors.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
// This file was automatically generated by lister-gen
|
||||
|
||||
package v1beta1
|
||||
|
||||
import (
|
||||
v1beta1 "k8s.io/api/extensions/v1beta1"
|
||||
"k8s.io/apimachinery/pkg/api/errors"
|
||||
"k8s.io/apimachinery/pkg/labels"
|
||||
"k8s.io/client-go/tools/cache"
|
||||
)
|
||||
|
||||
// ThirdPartyResourceLister helps list ThirdPartyResources.
|
||||
type ThirdPartyResourceLister interface {
|
||||
// List lists all ThirdPartyResources in the indexer.
|
||||
List(selector labels.Selector) (ret []*v1beta1.ThirdPartyResource, err error)
|
||||
// Get retrieves the ThirdPartyResource from the index for a given name.
|
||||
Get(name string) (*v1beta1.ThirdPartyResource, error)
|
||||
ThirdPartyResourceListerExpansion
|
||||
}
|
||||
|
||||
// thirdPartyResourceLister implements the ThirdPartyResourceLister interface.
|
||||
type thirdPartyResourceLister struct {
|
||||
indexer cache.Indexer
|
||||
}
|
||||
|
||||
// NewThirdPartyResourceLister returns a new ThirdPartyResourceLister.
|
||||
func NewThirdPartyResourceLister(indexer cache.Indexer) ThirdPartyResourceLister {
|
||||
return &thirdPartyResourceLister{indexer: indexer}
|
||||
}
|
||||
|
||||
// List lists all ThirdPartyResources in the indexer.
|
||||
func (s *thirdPartyResourceLister) List(selector labels.Selector) (ret []*v1beta1.ThirdPartyResource, err error) {
|
||||
err = cache.ListAll(s.indexer, selector, func(m interface{}) {
|
||||
ret = append(ret, m.(*v1beta1.ThirdPartyResource))
|
||||
})
|
||||
return ret, err
|
||||
}
|
||||
|
||||
// Get retrieves the ThirdPartyResource from the index for a given name.
|
||||
func (s *thirdPartyResourceLister) Get(name string) (*v1beta1.ThirdPartyResource, error) {
|
||||
obj, exists, err := s.indexer.GetByKey(name)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if !exists {
|
||||
return nil, errors.NewNotFound(v1beta1.Resource("thirdpartyresource"), name)
|
||||
}
|
||||
return obj.(*v1beta1.ThirdPartyResource), nil
|
||||
}
|
Reference in New Issue
Block a user