Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DeviceLister ¶
type DeviceLister interface { // List lists all Devices in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Device, err error) // Devices returns an object that can list and get Devices. Devices(namespace string) DeviceNamespaceLister DeviceListerExpansion }
DeviceLister helps list Devices. All objects returned here must be treated as read-only.
func NewDeviceLister ¶
func NewDeviceLister(indexer cache.Indexer) DeviceLister
NewDeviceLister returns a new DeviceLister.
type DeviceListerExpansion ¶
type DeviceListerExpansion interface{}
DeviceListerExpansion allows custom methods to be added to DeviceLister.
type DeviceNamespaceLister ¶
type DeviceNamespaceLister interface { // List lists all Devices in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Device, err error) // Get retrieves the Device from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Device, error) DeviceNamespaceListerExpansion }
DeviceNamespaceLister helps list and get Devices. All objects returned here must be treated as read-only.
type DeviceNamespaceListerExpansion ¶
type DeviceNamespaceListerExpansion interface{}
DeviceNamespaceListerExpansion allows custom methods to be added to DeviceNamespaceLister.
type RegistryLister ¶
type RegistryLister interface { // List lists all Registries in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Registry, err error) // Registries returns an object that can list and get Registries. Registries(namespace string) RegistryNamespaceLister RegistryListerExpansion }
RegistryLister helps list Registries. All objects returned here must be treated as read-only.
func NewRegistryLister ¶
func NewRegistryLister(indexer cache.Indexer) RegistryLister
NewRegistryLister returns a new RegistryLister.
type RegistryListerExpansion ¶
type RegistryListerExpansion interface{}
RegistryListerExpansion allows custom methods to be added to RegistryLister.
type RegistryNamespaceLister ¶
type RegistryNamespaceLister interface { // List lists all Registries in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Registry, err error) // Get retrieves the Registry from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Registry, error) RegistryNamespaceListerExpansion }
RegistryNamespaceLister helps list and get Registries. All objects returned here must be treated as read-only.
type RegistryNamespaceListerExpansion ¶
type RegistryNamespaceListerExpansion interface{}
RegistryNamespaceListerExpansion allows custom methods to be added to RegistryNamespaceLister.