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