Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type StorageAccountLister ¶
type StorageAccountLister interface { // List lists all StorageAccounts in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.StorageAccount, err error) // StorageAccounts returns an object that can list and get StorageAccounts. StorageAccounts(namespace string) StorageAccountNamespaceLister StorageAccountListerExpansion }
StorageAccountLister helps list StorageAccounts. All objects returned here must be treated as read-only.
func NewStorageAccountLister ¶
func NewStorageAccountLister(indexer cache.Indexer) StorageAccountLister
NewStorageAccountLister returns a new StorageAccountLister.
type StorageAccountListerExpansion ¶
type StorageAccountListerExpansion interface{}
StorageAccountListerExpansion allows custom methods to be added to StorageAccountLister.
type StorageAccountNamespaceLister ¶
type StorageAccountNamespaceLister interface { // List lists all StorageAccounts in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.StorageAccount, err error) // Get retrieves the StorageAccount from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.StorageAccount, error) StorageAccountNamespaceListerExpansion }
StorageAccountNamespaceLister helps list and get StorageAccounts. All objects returned here must be treated as read-only.
type StorageAccountNamespaceListerExpansion ¶
type StorageAccountNamespaceListerExpansion interface{}
StorageAccountNamespaceListerExpansion allows custom methods to be added to StorageAccountNamespaceLister.
Click to show internal directories.
Click to hide internal directories.