Documentation
¶
Index ¶
- type ProjectLister
- type ProjectListerExpansion
- type ProjectNamespaceLister
- type ProjectNamespaceListerExpansion
- type SubscriptionLister
- type SubscriptionListerExpansion
- type SubscriptionNamespaceLister
- type SubscriptionNamespaceListerExpansion
- type TopicLister
- type TopicListerExpansion
- type TopicNamespaceLister
- type TopicNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ProjectLister ¶
type ProjectLister interface { // List lists all Projects in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Project, err error) // Projects returns an object that can list and get Projects. Projects(namespace string) ProjectNamespaceLister ProjectListerExpansion }
ProjectLister helps list Projects. All objects returned here must be treated as read-only.
func NewProjectLister ¶
func NewProjectLister(indexer cache.Indexer) ProjectLister
NewProjectLister returns a new ProjectLister.
type ProjectListerExpansion ¶
type ProjectListerExpansion interface{}
ProjectListerExpansion allows custom methods to be added to ProjectLister.
type ProjectNamespaceLister ¶
type ProjectNamespaceLister interface { // List lists all Projects in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Project, err error) // Get retrieves the Project from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Project, error) ProjectNamespaceListerExpansion }
ProjectNamespaceLister helps list and get Projects. All objects returned here must be treated as read-only.
type ProjectNamespaceListerExpansion ¶
type ProjectNamespaceListerExpansion interface{}
ProjectNamespaceListerExpansion allows custom methods to be added to ProjectNamespaceLister.
type SubscriptionLister ¶
type SubscriptionLister interface { // List lists all Subscriptions in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Subscription, err error) // Subscriptions returns an object that can list and get Subscriptions. Subscriptions(namespace string) SubscriptionNamespaceLister SubscriptionListerExpansion }
SubscriptionLister helps list Subscriptions. All objects returned here must be treated as read-only.
func NewSubscriptionLister ¶
func NewSubscriptionLister(indexer cache.Indexer) SubscriptionLister
NewSubscriptionLister returns a new SubscriptionLister.
type SubscriptionListerExpansion ¶
type SubscriptionListerExpansion interface{}
SubscriptionListerExpansion allows custom methods to be added to SubscriptionLister.
type SubscriptionNamespaceLister ¶
type SubscriptionNamespaceLister interface { // List lists all Subscriptions in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Subscription, err error) // Get retrieves the Subscription from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Subscription, error) SubscriptionNamespaceListerExpansion }
SubscriptionNamespaceLister helps list and get Subscriptions. All objects returned here must be treated as read-only.
type SubscriptionNamespaceListerExpansion ¶
type SubscriptionNamespaceListerExpansion interface{}
SubscriptionNamespaceListerExpansion allows custom methods to be added to SubscriptionNamespaceLister.
type TopicLister ¶
type TopicLister interface { // List lists all Topics in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Topic, err error) // Topics returns an object that can list and get Topics. Topics(namespace string) TopicNamespaceLister TopicListerExpansion }
TopicLister helps list Topics. All objects returned here must be treated as read-only.
func NewTopicLister ¶
func NewTopicLister(indexer cache.Indexer) TopicLister
NewTopicLister returns a new TopicLister.
type TopicListerExpansion ¶
type TopicListerExpansion interface{}
TopicListerExpansion allows custom methods to be added to TopicLister.
type TopicNamespaceLister ¶
type TopicNamespaceLister interface { // List lists all Topics in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Topic, err error) // Get retrieves the Topic from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Topic, error) TopicNamespaceListerExpansion }
TopicNamespaceLister helps list and get Topics. All objects returned here must be treated as read-only.
type TopicNamespaceListerExpansion ¶
type TopicNamespaceListerExpansion interface{}
TopicNamespaceListerExpansion allows custom methods to be added to TopicNamespaceLister.