Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SourceLister ¶
type SourceLister interface { // List lists all Sources in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Source, err error) // Sources returns an object that can list and get Sources. Sources(namespace string) SourceNamespaceLister SourceListerExpansion }
SourceLister helps list Sources. All objects returned here must be treated as read-only.
func NewSourceLister ¶
func NewSourceLister(indexer cache.Indexer) SourceLister
NewSourceLister returns a new SourceLister.
type SourceListerExpansion ¶
type SourceListerExpansion interface{}
SourceListerExpansion allows custom methods to be added to SourceLister.
type SourceNamespaceLister ¶
type SourceNamespaceLister interface { // List lists all Sources in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Source, err error) // Get retrieves the Source from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Source, error) SourceNamespaceListerExpansion }
SourceNamespaceLister helps list and get Sources. All objects returned here must be treated as read-only.
type SourceNamespaceListerExpansion ¶
type SourceNamespaceListerExpansion interface{}
SourceNamespaceListerExpansion allows custom methods to be added to SourceNamespaceLister.
type SourcePermissionLister ¶ added in v0.5.0
type SourcePermissionLister interface { // List lists all SourcePermissions in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.SourcePermission, err error) // SourcePermissions returns an object that can list and get SourcePermissions. SourcePermissions(namespace string) SourcePermissionNamespaceLister SourcePermissionListerExpansion }
SourcePermissionLister helps list SourcePermissions. All objects returned here must be treated as read-only.
func NewSourcePermissionLister ¶ added in v0.5.0
func NewSourcePermissionLister(indexer cache.Indexer) SourcePermissionLister
NewSourcePermissionLister returns a new SourcePermissionLister.
type SourcePermissionListerExpansion ¶ added in v0.5.0
type SourcePermissionListerExpansion interface{}
SourcePermissionListerExpansion allows custom methods to be added to SourcePermissionLister.
type SourcePermissionNamespaceLister ¶ added in v0.5.0
type SourcePermissionNamespaceLister interface { // List lists all SourcePermissions in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.SourcePermission, err error) // Get retrieves the SourcePermission from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.SourcePermission, error) SourcePermissionNamespaceListerExpansion }
SourcePermissionNamespaceLister helps list and get SourcePermissions. All objects returned here must be treated as read-only.
type SourcePermissionNamespaceListerExpansion ¶ added in v0.5.0
type SourcePermissionNamespaceListerExpansion interface{}
SourcePermissionNamespaceListerExpansion allows custom methods to be added to SourcePermissionNamespaceLister.