Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DeviceNodeLister ¶
type DeviceNodeLister interface { // List lists all DeviceNodes in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DeviceNode, err error) // DeviceNodes returns an object that can list and get DeviceNodes. DeviceNodes(namespace string) DeviceNodeNamespaceLister DeviceNodeListerExpansion }
DeviceNodeLister helps list DeviceNodes. All objects returned here must be treated as read-only.
func NewDeviceNodeLister ¶
func NewDeviceNodeLister(indexer cache.Indexer) DeviceNodeLister
NewDeviceNodeLister returns a new DeviceNodeLister.
type DeviceNodeListerExpansion ¶
type DeviceNodeListerExpansion interface{}
DeviceNodeListerExpansion allows custom methods to be added to DeviceNodeLister.
type DeviceNodeNamespaceLister ¶
type DeviceNodeNamespaceLister interface { // List lists all DeviceNodes in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DeviceNode, err error) // Get retrieves the DeviceNode from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.DeviceNode, error) DeviceNodeNamespaceListerExpansion }
DeviceNodeNamespaceLister helps list and get DeviceNodes. All objects returned here must be treated as read-only.
type DeviceNodeNamespaceListerExpansion ¶
type DeviceNodeNamespaceListerExpansion interface{}
DeviceNodeNamespaceListerExpansion allows custom methods to be added to DeviceNodeNamespaceLister.
type DeviceVolumeLister ¶
type DeviceVolumeLister interface { // List lists all DeviceVolumes in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DeviceVolume, err error) // DeviceVolumes returns an object that can list and get DeviceVolumes. DeviceVolumes(namespace string) DeviceVolumeNamespaceLister DeviceVolumeListerExpansion }
DeviceVolumeLister helps list DeviceVolumes. All objects returned here must be treated as read-only.
func NewDeviceVolumeLister ¶
func NewDeviceVolumeLister(indexer cache.Indexer) DeviceVolumeLister
NewDeviceVolumeLister returns a new DeviceVolumeLister.
type DeviceVolumeListerExpansion ¶
type DeviceVolumeListerExpansion interface{}
DeviceVolumeListerExpansion allows custom methods to be added to DeviceVolumeLister.
type DeviceVolumeNamespaceLister ¶
type DeviceVolumeNamespaceLister interface { // List lists all DeviceVolumes in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DeviceVolume, err error) // Get retrieves the DeviceVolume from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.DeviceVolume, error) DeviceVolumeNamespaceListerExpansion }
DeviceVolumeNamespaceLister helps list and get DeviceVolumes. All objects returned here must be treated as read-only.
type DeviceVolumeNamespaceListerExpansion ¶
type DeviceVolumeNamespaceListerExpansion interface{}
DeviceVolumeNamespaceListerExpansion allows custom methods to be added to DeviceVolumeNamespaceLister.