CSIDriverLister helps list CSIDrivers. All objects returned here must be treated as read-only.
type CSIDriverLister interface { // List lists all CSIDrivers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.CSIDriver, err error) // Get retrieves the CSIDriver from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.CSIDriver, error) CSIDriverListerExpansion }
func NewCSIDriverLister(indexer cache.Indexer) CSIDriverLister
NewCSIDriverLister returns a new CSIDriverLister.
CSIDriverListerExpansion allows custom methods to be added to CSIDriverLister.
type CSIDriverListerExpansion interface{}
CSINodeLister helps list CSINodes. All objects returned here must be treated as read-only.
type CSINodeLister interface { // List lists all CSINodes in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.CSINode, err error) // Get retrieves the CSINode from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.CSINode, error) CSINodeListerExpansion }
func NewCSINodeLister(indexer cache.Indexer) CSINodeLister
NewCSINodeLister returns a new CSINodeLister.
CSINodeListerExpansion allows custom methods to be added to CSINodeLister.
type CSINodeListerExpansion interface{}
CSIStorageCapacityLister helps list CSIStorageCapacities. All objects returned here must be treated as read-only.
type CSIStorageCapacityLister interface { // List lists all CSIStorageCapacities in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.CSIStorageCapacity, err error) // CSIStorageCapacities returns an object that can list and get CSIStorageCapacities. CSIStorageCapacities(namespace string) CSIStorageCapacityNamespaceLister CSIStorageCapacityListerExpansion }
func NewCSIStorageCapacityLister(indexer cache.Indexer) CSIStorageCapacityLister
NewCSIStorageCapacityLister returns a new CSIStorageCapacityLister.
CSIStorageCapacityListerExpansion allows custom methods to be added to CSIStorageCapacityLister.
type CSIStorageCapacityListerExpansion interface{}
CSIStorageCapacityNamespaceLister helps list and get CSIStorageCapacities. All objects returned here must be treated as read-only.
type CSIStorageCapacityNamespaceLister interface { // List lists all CSIStorageCapacities in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.CSIStorageCapacity, err error) // Get retrieves the CSIStorageCapacity from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.CSIStorageCapacity, error) CSIStorageCapacityNamespaceListerExpansion }
CSIStorageCapacityNamespaceListerExpansion allows custom methods to be added to CSIStorageCapacityNamespaceLister.
type CSIStorageCapacityNamespaceListerExpansion interface{}
StorageClassLister helps list StorageClasses. All objects returned here must be treated as read-only.
type StorageClassLister interface { // List lists all StorageClasses in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.StorageClass, err error) // Get retrieves the StorageClass from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.StorageClass, error) StorageClassListerExpansion }
func NewStorageClassLister(indexer cache.Indexer) StorageClassLister
NewStorageClassLister returns a new StorageClassLister.
StorageClassListerExpansion allows custom methods to be added to StorageClassLister.
type StorageClassListerExpansion interface{}
VolumeAttachmentLister helps list VolumeAttachments. All objects returned here must be treated as read-only.
type VolumeAttachmentLister interface { // List lists all VolumeAttachments in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.VolumeAttachment, err error) // Get retrieves the VolumeAttachment from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.VolumeAttachment, error) VolumeAttachmentListerExpansion }
func NewVolumeAttachmentLister(indexer cache.Indexer) VolumeAttachmentLister
NewVolumeAttachmentLister returns a new VolumeAttachmentLister.
VolumeAttachmentListerExpansion allows custom methods to be added to VolumeAttachmentLister.
type VolumeAttachmentListerExpansion interface{}