package v1alpha3
import "github.com/docker/compose-on-kubernetes/api/client/listers/compose/v1alpha3"
Index ¶
- type StackLister
- type StackListerExpansion
- type StackNamespaceLister
- type StackNamespaceListerExpansion
Types ¶
type StackLister ¶
type StackLister interface { // List lists all Stacks in the indexer. List(selector labels.Selector) ([]*v1alpha3.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) ([]*v1alpha3.Stack, error) // Get retrieves the Stack from the indexer for a given namespace and name. Get(name string) (*v1alpha3.Stack, error) StackNamespaceListerExpansion }
StackNamespaceLister helps list and get Stacks.
type StackNamespaceListerExpansion ¶
type StackNamespaceListerExpansion interface{}
StackNamespaceListerExpansion allows custom methods to be added to StackNamespaceLister.
Source Files ¶
expansion_generated.go stack.go
- Version
- v0.5.0 (latest)
- Published
- Jan 28, 2022
- Platform
- linux/amd64
- Imports
- 4 packages
- Last checked
- 3 hours ago –
Tools for package owners.