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