Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type StackLister ¶
type StackLister interface { // List lists all Stacks in the indexer. List(selector labels.Selector) ([]*v1beta2.Stack, error) // Stacks returns an object that can list and get Stacks. Stacks(namespace string) StackNamespaceLister StackListerExpansion }
StackLister helps list Stacks.
func NewStackLister ¶
func NewStackLister(indexer cache.Indexer) StackLister
NewStackLister returns a new StackLister.
type StackListerExpansion ¶
type StackListerExpansion interface{}
StackListerExpansion allows custom methods to be added to StackLister.
type StackNamespaceLister ¶
type StackNamespaceLister interface { // List lists all Stacks in the indexer for a given namespace. List(selector labels.Selector) ([]*v1beta2.Stack, error) // Get retrieves the Stack from the indexer for a given namespace and name. Get(name string) (*v1beta2.Stack, error) StackNamespaceListerExpansion }
StackNamespaceLister helps list and get Stacks.
type StackNamespaceListerExpansion ¶
type StackNamespaceListerExpansion interface{}
StackNamespaceListerExpansion allows custom methods to be added to StackNamespaceLister.
Click to show internal directories.
Click to hide internal directories.