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