Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type StorageLister ¶ added in v0.8.1
type StorageLister interface { // List lists all Storages in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Storage, err error) // Storages returns an object that can list and get Storages. Storages(namespace string) StorageNamespaceLister StorageListerExpansion }
StorageLister helps list Storages.
func NewStorageLister ¶ added in v0.8.1
func NewStorageLister(indexer cache.Indexer) StorageLister
NewStorageLister returns a new StorageLister.
type StorageListerExpansion ¶ added in v0.8.1
type StorageListerExpansion interface{}
StorageListerExpansion allows custom methods to be added to StorageLister.
type StorageNamespaceLister ¶ added in v0.8.1
type StorageNamespaceLister interface { // List lists all Storages in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Storage, err error) // Get retrieves the Storage from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Storage, error) StorageNamespaceListerExpansion }
StorageNamespaceLister helps list and get Storages.
type StorageNamespaceListerExpansion ¶ added in v0.8.1
type StorageNamespaceListerExpansion interface{}
StorageNamespaceListerExpansion allows custom methods to be added to StorageNamespaceLister.