Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MetadataLister ¶
type MetadataLister interface { // List lists all Metadatas in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Metadata, err error) // Metadatas returns an object that can list and get Metadatas. Metadatas(namespace string) MetadataNamespaceLister MetadataListerExpansion }
MetadataLister helps list Metadatas. All objects returned here must be treated as read-only.
func NewMetadataLister ¶
func NewMetadataLister(indexer cache.Indexer) MetadataLister
NewMetadataLister returns a new MetadataLister.
type MetadataListerExpansion ¶
type MetadataListerExpansion interface{}
MetadataListerExpansion allows custom methods to be added to MetadataLister.
type MetadataNamespaceLister ¶
type MetadataNamespaceLister interface { // List lists all Metadatas in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Metadata, err error) // Get retrieves the Metadata from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Metadata, error) MetadataNamespaceListerExpansion }
MetadataNamespaceLister helps list and get Metadatas. All objects returned here must be treated as read-only.
type MetadataNamespaceListerExpansion ¶
type MetadataNamespaceListerExpansion interface{}
MetadataNamespaceListerExpansion allows custom methods to be added to MetadataNamespaceLister.
type TagConfigurationLister ¶
type TagConfigurationLister interface { // List lists all TagConfigurations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.TagConfiguration, err error) // TagConfigurations returns an object that can list and get TagConfigurations. TagConfigurations(namespace string) TagConfigurationNamespaceLister TagConfigurationListerExpansion }
TagConfigurationLister helps list TagConfigurations. All objects returned here must be treated as read-only.
func NewTagConfigurationLister ¶
func NewTagConfigurationLister(indexer cache.Indexer) TagConfigurationLister
NewTagConfigurationLister returns a new TagConfigurationLister.
type TagConfigurationListerExpansion ¶
type TagConfigurationListerExpansion interface{}
TagConfigurationListerExpansion allows custom methods to be added to TagConfigurationLister.
type TagConfigurationNamespaceLister ¶
type TagConfigurationNamespaceLister interface { // List lists all TagConfigurations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.TagConfiguration, err error) // Get retrieves the TagConfiguration from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.TagConfiguration, error) TagConfigurationNamespaceListerExpansion }
TagConfigurationNamespaceLister helps list and get TagConfigurations. All objects returned here must be treated as read-only.
type TagConfigurationNamespaceListerExpansion ¶
type TagConfigurationNamespaceListerExpansion interface{}
TagConfigurationNamespaceListerExpansion allows custom methods to be added to TagConfigurationNamespaceLister.