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 []*v1beta1.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 DeviceModelLister ¶
type DeviceModelLister interface { // List lists all DeviceModels in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.DeviceModel, err error) // DeviceModels returns an object that can list and get DeviceModels. DeviceModels(namespace string) DeviceModelNamespaceLister DeviceModelListerExpansion }
DeviceModelLister helps list DeviceModels. All objects returned here must be treated as read-only.
func NewDeviceModelLister ¶
func NewDeviceModelLister(indexer cache.Indexer) DeviceModelLister
NewDeviceModelLister returns a new DeviceModelLister.
type DeviceModelListerExpansion ¶
type DeviceModelListerExpansion interface{}
DeviceModelListerExpansion allows custom methods to be added to DeviceModelLister.
type DeviceModelNamespaceLister ¶
type DeviceModelNamespaceLister interface { // List lists all DeviceModels in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.DeviceModel, err error) // Get retrieves the DeviceModel from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.DeviceModel, error) DeviceModelNamespaceListerExpansion }
DeviceModelNamespaceLister helps list and get DeviceModels. All objects returned here must be treated as read-only.
type DeviceModelNamespaceListerExpansion ¶
type DeviceModelNamespaceListerExpansion interface{}
DeviceModelNamespaceListerExpansion allows custom methods to be added to DeviceModelNamespaceLister.
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 []*v1beta1.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) (*v1beta1.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.