Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DataVolumeLister ¶
type DataVolumeLister interface { // List lists all DataVolumes in the indexer. List(selector labels.Selector) (ret []*v1alpha1.DataVolume, err error) // DataVolumes returns an object that can list and get DataVolumes. DataVolumes(namespace string) DataVolumeNamespaceLister DataVolumeListerExpansion }
DataVolumeLister helps list DataVolumes.
func NewDataVolumeLister ¶
func NewDataVolumeLister(indexer cache.Indexer) DataVolumeLister
NewDataVolumeLister returns a new DataVolumeLister.
type DataVolumeListerExpansion ¶
type DataVolumeListerExpansion interface{}
DataVolumeListerExpansion allows custom methods to be added to DataVolumeLister.
type DataVolumeNamespaceLister ¶
type DataVolumeNamespaceLister interface { // List lists all DataVolumes in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.DataVolume, err error) // Get retrieves the DataVolume from the indexer for a given namespace and name. Get(name string) (*v1alpha1.DataVolume, error) DataVolumeNamespaceListerExpansion }
DataVolumeNamespaceLister helps list and get DataVolumes.
type DataVolumeNamespaceListerExpansion ¶
type DataVolumeNamespaceListerExpansion interface{}
DataVolumeNamespaceListerExpansion allows custom methods to be added to DataVolumeNamespaceLister.
Click to show internal directories.
Click to hide internal directories.