package v1beta2

import "github.com/docker/compose-on-kubernetes/api/client/listers/compose/v1beta2"

Index

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.

Source Files

expansion_generated.go stack.go

Version
v0.5.0 (latest)
Published
Jan 28, 2022
Platform
linux/amd64
Imports
4 packages
Last checked
6 minutes ago

Tools for package owners.