Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppGroupLister ¶
type AppGroupLister interface { // List lists all AppGroups in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.AppGroup, err error) // AppGroups returns an object that can list and get AppGroups. AppGroups(namespace string) AppGroupNamespaceLister AppGroupListerExpansion }
AppGroupLister helps list AppGroups. All objects returned here must be treated as read-only.
func NewAppGroupLister ¶
func NewAppGroupLister(indexer cache.Indexer) AppGroupLister
NewAppGroupLister returns a new AppGroupLister.
type AppGroupListerExpansion ¶
type AppGroupListerExpansion interface{}
AppGroupListerExpansion allows custom methods to be added to AppGroupLister.
type AppGroupNamespaceLister ¶
type AppGroupNamespaceLister interface { // List lists all AppGroups in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.AppGroup, err error) // Get retrieves the AppGroup from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.AppGroup, error) AppGroupNamespaceListerExpansion }
AppGroupNamespaceLister helps list and get AppGroups. All objects returned here must be treated as read-only.
type AppGroupNamespaceListerExpansion ¶
type AppGroupNamespaceListerExpansion interface{}
AppGroupNamespaceListerExpansion allows custom methods to be added to AppGroupNamespaceLister.
Click to show internal directories.
Click to hide internal directories.