Documentation ¶
Index ¶
- type ChannelLister
- type ChannelListerExpansion
- type ChannelNamespaceLister
- type ChannelNamespaceListerExpansion
- type ChoiceLister
- type ChoiceListerExpansion
- type ChoiceNamespaceLister
- type ChoiceNamespaceListerExpansion
- type InMemoryChannelLister
- type InMemoryChannelListerExpansion
- type InMemoryChannelNamespaceLister
- type InMemoryChannelNamespaceListerExpansion
- type SequenceLister
- type SequenceListerExpansion
- type SequenceNamespaceLister
- type SequenceNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ChannelLister ¶ added in v0.8.0
type ChannelLister interface { // List lists all Channels in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Channel, err error) // Channels returns an object that can list and get Channels. Channels(namespace string) ChannelNamespaceLister ChannelListerExpansion }
ChannelLister helps list Channels.
func NewChannelLister ¶ added in v0.8.0
func NewChannelLister(indexer cache.Indexer) ChannelLister
NewChannelLister returns a new ChannelLister.
type ChannelListerExpansion ¶ added in v0.8.0
type ChannelListerExpansion interface{}
ChannelListerExpansion allows custom methods to be added to ChannelLister.
type ChannelNamespaceLister ¶ added in v0.8.0
type ChannelNamespaceLister interface { // List lists all Channels in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Channel, err error) // Get retrieves the Channel from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Channel, error) ChannelNamespaceListerExpansion }
ChannelNamespaceLister helps list and get Channels.
type ChannelNamespaceListerExpansion ¶ added in v0.8.0
type ChannelNamespaceListerExpansion interface{}
ChannelNamespaceListerExpansion allows custom methods to be added to ChannelNamespaceLister.
type ChoiceLister ¶ added in v0.8.0
type ChoiceLister interface { // List lists all Choices in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Choice, err error) // Choices returns an object that can list and get Choices. Choices(namespace string) ChoiceNamespaceLister ChoiceListerExpansion }
ChoiceLister helps list Choices.
func NewChoiceLister ¶ added in v0.8.0
func NewChoiceLister(indexer cache.Indexer) ChoiceLister
NewChoiceLister returns a new ChoiceLister.
type ChoiceListerExpansion ¶ added in v0.8.0
type ChoiceListerExpansion interface{}
ChoiceListerExpansion allows custom methods to be added to ChoiceLister.
type ChoiceNamespaceLister ¶ added in v0.8.0
type ChoiceNamespaceLister interface { // List lists all Choices in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Choice, err error) // Get retrieves the Choice from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Choice, error) ChoiceNamespaceListerExpansion }
ChoiceNamespaceLister helps list and get Choices.
type ChoiceNamespaceListerExpansion ¶ added in v0.8.0
type ChoiceNamespaceListerExpansion interface{}
ChoiceNamespaceListerExpansion allows custom methods to be added to ChoiceNamespaceLister.
type InMemoryChannelLister ¶
type InMemoryChannelLister interface { // List lists all InMemoryChannels in the indexer. List(selector labels.Selector) (ret []*v1alpha1.InMemoryChannel, err error) // InMemoryChannels returns an object that can list and get InMemoryChannels. InMemoryChannels(namespace string) InMemoryChannelNamespaceLister InMemoryChannelListerExpansion }
InMemoryChannelLister helps list InMemoryChannels.
func NewInMemoryChannelLister ¶
func NewInMemoryChannelLister(indexer cache.Indexer) InMemoryChannelLister
NewInMemoryChannelLister returns a new InMemoryChannelLister.
type InMemoryChannelListerExpansion ¶
type InMemoryChannelListerExpansion interface{}
InMemoryChannelListerExpansion allows custom methods to be added to InMemoryChannelLister.
type InMemoryChannelNamespaceLister ¶
type InMemoryChannelNamespaceLister interface { // List lists all InMemoryChannels in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.InMemoryChannel, err error) // Get retrieves the InMemoryChannel from the indexer for a given namespace and name. Get(name string) (*v1alpha1.InMemoryChannel, error) InMemoryChannelNamespaceListerExpansion }
InMemoryChannelNamespaceLister helps list and get InMemoryChannels.
type InMemoryChannelNamespaceListerExpansion ¶
type InMemoryChannelNamespaceListerExpansion interface{}
InMemoryChannelNamespaceListerExpansion allows custom methods to be added to InMemoryChannelNamespaceLister.
type SequenceLister ¶
type SequenceLister interface { // List lists all Sequences in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Sequence, err error) // Sequences returns an object that can list and get Sequences. Sequences(namespace string) SequenceNamespaceLister SequenceListerExpansion }
SequenceLister helps list Sequences.
func NewSequenceLister ¶
func NewSequenceLister(indexer cache.Indexer) SequenceLister
NewSequenceLister returns a new SequenceLister.
type SequenceListerExpansion ¶
type SequenceListerExpansion interface{}
SequenceListerExpansion allows custom methods to be added to SequenceLister.
type SequenceNamespaceLister ¶
type SequenceNamespaceLister interface { // List lists all Sequences in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Sequence, err error) // Get retrieves the Sequence from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Sequence, error) SequenceNamespaceListerExpansion }
SequenceNamespaceLister helps list and get Sequences.
type SequenceNamespaceListerExpansion ¶
type SequenceNamespaceListerExpansion interface{}
SequenceNamespaceListerExpansion allows custom methods to be added to SequenceNamespaceLister.