...

Source file src/k8s.io/client-go/listers/certificates/v1alpha1/clustertrustbundle.go

Documentation: k8s.io/client-go/listers/certificates/v1alpha1

     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 v1alpha1
    20  
    21  import (
    22  	v1alpha1 "k8s.io/api/certificates/v1alpha1"
    23  	"k8s.io/apimachinery/pkg/api/errors"
    24  	"k8s.io/apimachinery/pkg/labels"
    25  	"k8s.io/client-go/tools/cache"
    26  )
    27  
    28  // ClusterTrustBundleLister helps list ClusterTrustBundles.
    29  // All objects returned here must be treated as read-only.
    30  type ClusterTrustBundleLister interface {
    31  	// List lists all ClusterTrustBundles in the indexer.
    32  	// Objects returned here must be treated as read-only.
    33  	List(selector labels.Selector) (ret []*v1alpha1.ClusterTrustBundle, err error)
    34  	// Get retrieves the ClusterTrustBundle from the index for a given name.
    35  	// Objects returned here must be treated as read-only.
    36  	Get(name string) (*v1alpha1.ClusterTrustBundle, error)
    37  	ClusterTrustBundleListerExpansion
    38  }
    39  
    40  // clusterTrustBundleLister implements the ClusterTrustBundleLister interface.
    41  type clusterTrustBundleLister struct {
    42  	indexer cache.Indexer
    43  }
    44  
    45  // NewClusterTrustBundleLister returns a new ClusterTrustBundleLister.
    46  func NewClusterTrustBundleLister(indexer cache.Indexer) ClusterTrustBundleLister {
    47  	return &clusterTrustBundleLister{indexer: indexer}
    48  }
    49  
    50  // List lists all ClusterTrustBundles in the indexer.
    51  func (s *clusterTrustBundleLister) List(selector labels.Selector) (ret []*v1alpha1.ClusterTrustBundle, err error) {
    52  	err = cache.ListAll(s.indexer, selector, func(m interface{}) {
    53  		ret = append(ret, m.(*v1alpha1.ClusterTrustBundle))
    54  	})
    55  	return ret, err
    56  }
    57  
    58  // Get retrieves the ClusterTrustBundle from the index for a given name.
    59  func (s *clusterTrustBundleLister) Get(name string) (*v1alpha1.ClusterTrustBundle, 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(v1alpha1.Resource("clustertrustbundle"), name)
    66  	}
    67  	return obj.(*v1alpha1.ClusterTrustBundle), nil
    68  }
    69  

View as plain text