 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
- type CSIDriverLister
- type CSIDriverListerExpansion
- type CSINodeLister
- type CSINodeListerExpansion
- type CSIStorageCapacityLister
- type CSIStorageCapacityListerExpansion
- type CSIStorageCapacityNamespaceLister
- type CSIStorageCapacityNamespaceListerExpansion
- type StorageClassLister
- type StorageClassListerExpansion
- type VolumeAttachmentLister
- type VolumeAttachmentListerExpansion
- type VolumeAttributesClassLister
- type VolumeAttributesClassListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CSIDriverLister ¶ added in v0.18.0
type CSIDriverLister interface {
	// List lists all CSIDrivers in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*storagev1.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) (*storagev1.CSIDriver, error)
	CSIDriverListerExpansion
}
    CSIDriverLister helps list CSIDrivers. All objects returned here must be treated as read-only.
func NewCSIDriverLister ¶ added in v0.18.0
func NewCSIDriverLister(indexer cache.Indexer) CSIDriverLister
NewCSIDriverLister returns a new CSIDriverLister.
type CSIDriverListerExpansion ¶ added in v0.18.0
type CSIDriverListerExpansion interface{}
    CSIDriverListerExpansion allows custom methods to be added to CSIDriverLister.
type CSINodeLister ¶ added in v0.17.0
type CSINodeLister interface {
	// List lists all CSINodes in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*storagev1.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) (*storagev1.CSINode, error)
	CSINodeListerExpansion
}
    CSINodeLister helps list CSINodes. All objects returned here must be treated as read-only.
func NewCSINodeLister ¶ added in v0.17.0
func NewCSINodeLister(indexer cache.Indexer) CSINodeLister
NewCSINodeLister returns a new CSINodeLister.
type CSINodeListerExpansion ¶ added in v0.17.0
type CSINodeListerExpansion interface{}
    CSINodeListerExpansion allows custom methods to be added to CSINodeLister.
type CSIStorageCapacityLister ¶ added in v0.24.0
type CSIStorageCapacityLister interface {
	// List lists all CSIStorageCapacities in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*storagev1.CSIStorageCapacity, err error)
	// CSIStorageCapacities returns an object that can list and get CSIStorageCapacities.
	CSIStorageCapacities(namespace string) CSIStorageCapacityNamespaceLister
	CSIStorageCapacityListerExpansion
}
    CSIStorageCapacityLister helps list CSIStorageCapacities. All objects returned here must be treated as read-only.
func NewCSIStorageCapacityLister ¶ added in v0.24.0
func NewCSIStorageCapacityLister(indexer cache.Indexer) CSIStorageCapacityLister
NewCSIStorageCapacityLister returns a new CSIStorageCapacityLister.
type CSIStorageCapacityListerExpansion ¶ added in v0.24.0
type CSIStorageCapacityListerExpansion interface{}
    CSIStorageCapacityListerExpansion allows custom methods to be added to CSIStorageCapacityLister.
type CSIStorageCapacityNamespaceLister ¶ added in v0.24.0
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 []*storagev1.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) (*storagev1.CSIStorageCapacity, error)
	CSIStorageCapacityNamespaceListerExpansion
}
    CSIStorageCapacityNamespaceLister helps list and get CSIStorageCapacities. All objects returned here must be treated as read-only.
type CSIStorageCapacityNamespaceListerExpansion ¶ added in v0.24.0
type CSIStorageCapacityNamespaceListerExpansion interface{}
    CSIStorageCapacityNamespaceListerExpansion allows custom methods to be added to CSIStorageCapacityNamespaceLister.
type StorageClassLister ¶
type StorageClassLister interface {
	// List lists all StorageClasses in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*storagev1.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) (*storagev1.StorageClass, error)
	StorageClassListerExpansion
}
    StorageClassLister helps list StorageClasses. All objects returned here must be treated as read-only.
func NewStorageClassLister ¶
func NewStorageClassLister(indexer cache.Indexer) StorageClassLister
NewStorageClassLister returns a new StorageClassLister.
type StorageClassListerExpansion ¶
type StorageClassListerExpansion interface{}
    StorageClassListerExpansion allows custom methods to be added to StorageClassLister.
type VolumeAttachmentLister ¶
type VolumeAttachmentLister interface {
	// List lists all VolumeAttachments in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*storagev1.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) (*storagev1.VolumeAttachment, error)
	VolumeAttachmentListerExpansion
}
    VolumeAttachmentLister helps list VolumeAttachments. All objects returned here must be treated as read-only.
func NewVolumeAttachmentLister ¶
func NewVolumeAttachmentLister(indexer cache.Indexer) VolumeAttachmentLister
NewVolumeAttachmentLister returns a new VolumeAttachmentLister.
type VolumeAttachmentListerExpansion ¶
type VolumeAttachmentListerExpansion interface{}
    VolumeAttachmentListerExpansion allows custom methods to be added to VolumeAttachmentLister.
type VolumeAttributesClassLister ¶ added in v0.34.0
type VolumeAttributesClassLister interface {
	// List lists all VolumeAttributesClasses in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*storagev1.VolumeAttributesClass, err error)
	// Get retrieves the VolumeAttributesClass from the index for a given name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*storagev1.VolumeAttributesClass, error)
	VolumeAttributesClassListerExpansion
}
    VolumeAttributesClassLister helps list VolumeAttributesClasses. All objects returned here must be treated as read-only.
func NewVolumeAttributesClassLister ¶ added in v0.34.0
func NewVolumeAttributesClassLister(indexer cache.Indexer) VolumeAttributesClassLister
NewVolumeAttributesClassLister returns a new VolumeAttributesClassLister.
type VolumeAttributesClassListerExpansion ¶ added in v0.34.0
type VolumeAttributesClassListerExpansion interface{}
    VolumeAttributesClassListerExpansion allows custom methods to be added to VolumeAttributesClassLister.