Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClusterObjectSyncLister ¶
type ClusterObjectSyncLister interface { // List lists all ClusterObjectSyncs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ClusterObjectSync, err error) // Get retrieves the ClusterObjectSync from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ClusterObjectSync, error) ClusterObjectSyncListerExpansion }
ClusterObjectSyncLister helps list ClusterObjectSyncs. All objects returned here must be treated as read-only.
func NewClusterObjectSyncLister ¶
func NewClusterObjectSyncLister(indexer cache.Indexer) ClusterObjectSyncLister
NewClusterObjectSyncLister returns a new ClusterObjectSyncLister.
type ClusterObjectSyncListerExpansion ¶
type ClusterObjectSyncListerExpansion interface{}
ClusterObjectSyncListerExpansion allows custom methods to be added to ClusterObjectSyncLister.
type ObjectSyncLister ¶
type ObjectSyncLister interface { // List lists all ObjectSyncs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ObjectSync, err error) // ObjectSyncs returns an object that can list and get ObjectSyncs. ObjectSyncs(namespace string) ObjectSyncNamespaceLister ObjectSyncListerExpansion }
ObjectSyncLister helps list ObjectSyncs. All objects returned here must be treated as read-only.
func NewObjectSyncLister ¶
func NewObjectSyncLister(indexer cache.Indexer) ObjectSyncLister
NewObjectSyncLister returns a new ObjectSyncLister.
type ObjectSyncListerExpansion ¶
type ObjectSyncListerExpansion interface{}
ObjectSyncListerExpansion allows custom methods to be added to ObjectSyncLister.
type ObjectSyncNamespaceLister ¶
type ObjectSyncNamespaceLister interface { // List lists all ObjectSyncs in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ObjectSync, err error) // Get retrieves the ObjectSync from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ObjectSync, error) ObjectSyncNamespaceListerExpansion }
ObjectSyncNamespaceLister helps list and get ObjectSyncs. All objects returned here must be treated as read-only.
type ObjectSyncNamespaceListerExpansion ¶
type ObjectSyncNamespaceListerExpansion interface{}
ObjectSyncNamespaceListerExpansion allows custom methods to be added to ObjectSyncNamespaceLister.