ClusterTrustBundleLister helps list ClusterTrustBundles. All objects returned here must be treated as read-only.
type ClusterTrustBundleLister interface { // List lists all ClusterTrustBundles in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ClusterTrustBundle, err error) // Get retrieves the ClusterTrustBundle from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ClusterTrustBundle, error) ClusterTrustBundleListerExpansion }
func NewClusterTrustBundleLister(indexer cache.Indexer) ClusterTrustBundleLister
NewClusterTrustBundleLister returns a new ClusterTrustBundleLister.
ClusterTrustBundleListerExpansion allows custom methods to be added to ClusterTrustBundleLister.
type ClusterTrustBundleListerExpansion interface{}