Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConfigurationLister ¶
type ConfigurationLister interface { // List lists all Configurations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Configuration, err error) // Configurations returns an object that can list and get Configurations. Configurations(namespace string) ConfigurationNamespaceLister ConfigurationListerExpansion }
ConfigurationLister helps list Configurations. All objects returned here must be treated as read-only.
func NewConfigurationLister ¶
func NewConfigurationLister(indexer cache.Indexer) ConfigurationLister
NewConfigurationLister returns a new ConfigurationLister.
type ConfigurationListerExpansion ¶
type ConfigurationListerExpansion interface{}
ConfigurationListerExpansion allows custom methods to be added to ConfigurationLister.
type ConfigurationNamespaceLister ¶
type ConfigurationNamespaceLister interface { // List lists all Configurations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Configuration, err error) // Get retrieves the Configuration from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Configuration, error) ConfigurationNamespaceListerExpansion }
ConfigurationNamespaceLister helps list and get Configurations. All objects returned here must be treated as read-only.
type ConfigurationNamespaceListerExpansion ¶
type ConfigurationNamespaceListerExpansion interface{}
ConfigurationNamespaceListerExpansion allows custom methods to be added to ConfigurationNamespaceLister.
type VerifyLister ¶
type VerifyLister interface { // List lists all Verifies in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Verify, err error) // Verifies returns an object that can list and get Verifies. Verifies(namespace string) VerifyNamespaceLister VerifyListerExpansion }
VerifyLister helps list Verifies. All objects returned here must be treated as read-only.
func NewVerifyLister ¶
func NewVerifyLister(indexer cache.Indexer) VerifyLister
NewVerifyLister returns a new VerifyLister.
type VerifyListerExpansion ¶
type VerifyListerExpansion interface{}
VerifyListerExpansion allows custom methods to be added to VerifyLister.
type VerifyNamespaceLister ¶
type VerifyNamespaceLister interface { // List lists all Verifies in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Verify, err error) // Get retrieves the Verify from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Verify, error) VerifyNamespaceListerExpansion }
VerifyNamespaceLister helps list and get Verifies. All objects returned here must be treated as read-only.
type VerifyNamespaceListerExpansion ¶
type VerifyNamespaceListerExpansion interface{}
VerifyNamespaceListerExpansion allows custom methods to be added to VerifyNamespaceLister.