Documentation ¶
Index ¶
- type BackupLister
- type BackupListerExpansion
- type BackupLocationLister
- type BackupLocationListerExpansion
- type ProviderLister
- type ProviderListerExpansion
- type RestoreLister
- type RestoreListerExpansion
- type VolumeBackupContentLister
- type VolumeBackupContentListerExpansion
- type VolumeGroupLister
- type VolumeGroupListerExpansion
- type VolumeRestoreContentLister
- type VolumeRestoreContentListerExpansion
- type VolumeSnapshotLister
- type VolumeSnapshotListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BackupLister ¶
type BackupLister interface { // List lists all Backups in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.Backup, err error) // Get retrieves the Backup from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.Backup, error) BackupListerExpansion }
BackupLister helps list Backups. All objects returned here must be treated as read-only.
func NewBackupLister ¶
func NewBackupLister(indexer cache.Indexer) BackupLister
NewBackupLister returns a new BackupLister.
type BackupListerExpansion ¶
type BackupListerExpansion interface{}
BackupListerExpansion allows custom methods to be added to BackupLister.
type BackupLocationLister ¶
type BackupLocationLister interface { // List lists all BackupLocations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.BackupLocation, err error) // Get retrieves the BackupLocation from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.BackupLocation, error) BackupLocationListerExpansion }
BackupLocationLister helps list BackupLocations. All objects returned here must be treated as read-only.
func NewBackupLocationLister ¶
func NewBackupLocationLister(indexer cache.Indexer) BackupLocationLister
NewBackupLocationLister returns a new BackupLocationLister.
type BackupLocationListerExpansion ¶
type BackupLocationListerExpansion interface{}
BackupLocationListerExpansion allows custom methods to be added to BackupLocationLister.
type ProviderLister ¶
type ProviderLister interface { // List lists all Providers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.Provider, err error) // Get retrieves the Provider from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.Provider, error) ProviderListerExpansion }
ProviderLister helps list Providers. All objects returned here must be treated as read-only.
func NewProviderLister ¶
func NewProviderLister(indexer cache.Indexer) ProviderLister
NewProviderLister returns a new ProviderLister.
type ProviderListerExpansion ¶
type ProviderListerExpansion interface{}
ProviderListerExpansion allows custom methods to be added to ProviderLister.
type RestoreLister ¶
type RestoreLister interface { // List lists all Restores in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.Restore, err error) // Get retrieves the Restore from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.Restore, error) RestoreListerExpansion }
RestoreLister helps list Restores. All objects returned here must be treated as read-only.
func NewRestoreLister ¶
func NewRestoreLister(indexer cache.Indexer) RestoreLister
NewRestoreLister returns a new RestoreLister.
type RestoreListerExpansion ¶
type RestoreListerExpansion interface{}
RestoreListerExpansion allows custom methods to be added to RestoreLister.
type VolumeBackupContentLister ¶
type VolumeBackupContentLister interface { // List lists all VolumeBackupContents in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.VolumeBackupContent, err error) // Get retrieves the VolumeBackupContent from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.VolumeBackupContent, error) VolumeBackupContentListerExpansion }
VolumeBackupContentLister helps list VolumeBackupContents. All objects returned here must be treated as read-only.
func NewVolumeBackupContentLister ¶
func NewVolumeBackupContentLister(indexer cache.Indexer) VolumeBackupContentLister
NewVolumeBackupContentLister returns a new VolumeBackupContentLister.
type VolumeBackupContentListerExpansion ¶
type VolumeBackupContentListerExpansion interface{}
VolumeBackupContentListerExpansion allows custom methods to be added to VolumeBackupContentLister.
type VolumeGroupLister ¶ added in v1.0.0
type VolumeGroupLister interface { // List lists all VolumeGroups in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.VolumeGroup, err error) // Get retrieves the VolumeGroup from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.VolumeGroup, error) VolumeGroupListerExpansion }
VolumeGroupLister helps list VolumeGroups. All objects returned here must be treated as read-only.
func NewVolumeGroupLister ¶ added in v1.0.0
func NewVolumeGroupLister(indexer cache.Indexer) VolumeGroupLister
NewVolumeGroupLister returns a new VolumeGroupLister.
type VolumeGroupListerExpansion ¶ added in v1.0.0
type VolumeGroupListerExpansion interface{}
VolumeGroupListerExpansion allows custom methods to be added to VolumeGroupLister.
type VolumeRestoreContentLister ¶
type VolumeRestoreContentLister interface { // List lists all VolumeRestoreContents in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.VolumeRestoreContent, err error) // Get retrieves the VolumeRestoreContent from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.VolumeRestoreContent, error) VolumeRestoreContentListerExpansion }
VolumeRestoreContentLister helps list VolumeRestoreContents. All objects returned here must be treated as read-only.
func NewVolumeRestoreContentLister ¶
func NewVolumeRestoreContentLister(indexer cache.Indexer) VolumeRestoreContentLister
NewVolumeRestoreContentLister returns a new VolumeRestoreContentLister.
type VolumeRestoreContentListerExpansion ¶
type VolumeRestoreContentListerExpansion interface{}
VolumeRestoreContentListerExpansion allows custom methods to be added to VolumeRestoreContentLister.
type VolumeSnapshotLister ¶ added in v1.0.0
type VolumeSnapshotLister interface { // List lists all VolumeSnapshots in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.VolumeSnapshot, err error) // Get retrieves the VolumeSnapshot from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.VolumeSnapshot, error) VolumeSnapshotListerExpansion }
VolumeSnapshotLister helps list VolumeSnapshots. All objects returned here must be treated as read-only.
func NewVolumeSnapshotLister ¶ added in v1.0.0
func NewVolumeSnapshotLister(indexer cache.Indexer) VolumeSnapshotLister
NewVolumeSnapshotLister returns a new VolumeSnapshotLister.
type VolumeSnapshotListerExpansion ¶ added in v1.0.0
type VolumeSnapshotListerExpansion interface{}
VolumeSnapshotListerExpansion allows custom methods to be added to VolumeSnapshotLister.