Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClusterRegistrationRequestLister ¶
type ClusterRegistrationRequestLister interface { // List lists all ClusterRegistrationRequests in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.ClusterRegistrationRequest, err error) // Get retrieves the ClusterRegistrationRequest from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.ClusterRegistrationRequest, error) ClusterRegistrationRequestListerExpansion }
ClusterRegistrationRequestLister helps list ClusterRegistrationRequests. All objects returned here must be treated as read-only.
func NewClusterRegistrationRequestLister ¶
func NewClusterRegistrationRequestLister(indexer cache.Indexer) ClusterRegistrationRequestLister
NewClusterRegistrationRequestLister returns a new ClusterRegistrationRequestLister.
type ClusterRegistrationRequestListerExpansion ¶
type ClusterRegistrationRequestListerExpansion interface{}
ClusterRegistrationRequestListerExpansion allows custom methods to be added to ClusterRegistrationRequestLister.
type ManagedClusterLister ¶
type ManagedClusterLister interface { // List lists all ManagedClusters in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.ManagedCluster, err error) // ManagedClusters returns an object that can list and get ManagedClusters. ManagedClusters(namespace string) ManagedClusterNamespaceLister ManagedClusterListerExpansion }
ManagedClusterLister helps list ManagedClusters. All objects returned here must be treated as read-only.
func NewManagedClusterLister ¶
func NewManagedClusterLister(indexer cache.Indexer) ManagedClusterLister
NewManagedClusterLister returns a new ManagedClusterLister.
type ManagedClusterListerExpansion ¶
type ManagedClusterListerExpansion interface{}
ManagedClusterListerExpansion allows custom methods to be added to ManagedClusterLister.
type ManagedClusterNamespaceLister ¶
type ManagedClusterNamespaceLister interface { // List lists all ManagedClusters in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.ManagedCluster, err error) // Get retrieves the ManagedCluster from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.ManagedCluster, error) ManagedClusterNamespaceListerExpansion }
ManagedClusterNamespaceLister helps list and get ManagedClusters. All objects returned here must be treated as read-only.
type ManagedClusterNamespaceListerExpansion ¶
type ManagedClusterNamespaceListerExpansion interface{}
ManagedClusterNamespaceListerExpansion allows custom methods to be added to ManagedClusterNamespaceLister.