Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CryptLister ¶
type CryptLister interface { // List lists all Crypts in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Crypt, err error) // Crypts returns an object that can list and get Crypts. Crypts(namespace string) CryptNamespaceLister CryptListerExpansion }
CryptLister helps list Crypts.
func NewCryptLister ¶
func NewCryptLister(indexer cache.Indexer) CryptLister
NewCryptLister returns a new CryptLister.
type CryptListerExpansion ¶
type CryptListerExpansion interface{}
CryptListerExpansion allows custom methods to be added to CryptLister.
type CryptNamespaceLister ¶
type CryptNamespaceLister interface { // List lists all Crypts in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Crypt, err error) // Get retrieves the Crypt from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Crypt, error) CryptNamespaceListerExpansion }
CryptNamespaceLister helps list and get Crypts.
type CryptNamespaceListerExpansion ¶
type CryptNamespaceListerExpansion interface{}
CryptNamespaceListerExpansion allows custom methods to be added to CryptNamespaceLister.
Click to show internal directories.
Click to hide internal directories.