v1

package
v0.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 27, 2018 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AddressLister

type AddressLister interface {
	// List lists all Addresses in the indexer.
	List(selector labels.Selector) (ret []*v1.Address, err error)
	// Addresses returns an object that can list and get Addresses.
	Addresses(namespace string) AddressNamespaceLister
	AddressListerExpansion
}

AddressLister helps list Addresses.

func NewAddressLister

func NewAddressLister(indexer cache.Indexer) AddressLister

NewAddressLister returns a new AddressLister.

type AddressListerExpansion

type AddressListerExpansion interface{}

AddressListerExpansion allows custom methods to be added to AddressLister.

type AddressNamespaceLister

type AddressNamespaceLister interface {
	// List lists all Addresses in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1.Address, err error)
	// Get retrieves the Address from the indexer for a given namespace and name.
	Get(name string) (*v1.Address, error)
	AddressNamespaceListerExpansion
}

AddressNamespaceLister helps list and get Addresses.

type AddressNamespaceListerExpansion

type AddressNamespaceListerExpansion interface{}

AddressNamespaceListerExpansion allows custom methods to be added to AddressNamespaceLister.

type BuildLister

type BuildLister interface {
	// List lists all Builds in the indexer.
	List(selector labels.Selector) (ret []*v1.Build, err error)
	// Builds returns an object that can list and get Builds.
	Builds(namespace string) BuildNamespaceLister
	BuildListerExpansion
}

BuildLister helps list Builds.

func NewBuildLister

func NewBuildLister(indexer cache.Indexer) BuildLister

NewBuildLister returns a new BuildLister.

type BuildListerExpansion

type BuildListerExpansion interface{}

BuildListerExpansion allows custom methods to be added to BuildLister.

type BuildNamespaceLister

type BuildNamespaceLister interface {
	// List lists all Builds in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1.Build, err error)
	// Get retrieves the Build from the indexer for a given namespace and name.
	Get(name string) (*v1.Build, error)
	BuildNamespaceListerExpansion
}

BuildNamespaceLister helps list and get Builds.

type BuildNamespaceListerExpansion

type BuildNamespaceListerExpansion interface{}

BuildNamespaceListerExpansion allows custom methods to be added to BuildNamespaceLister.

type ConfigLister

type ConfigLister interface {
	// List lists all Configs in the indexer.
	List(selector labels.Selector) (ret []*v1.Config, err error)
	// Configs returns an object that can list and get Configs.
	Configs(namespace string) ConfigNamespaceLister
	ConfigListerExpansion
}

ConfigLister helps list Configs.

func NewConfigLister

func NewConfigLister(indexer cache.Indexer) ConfigLister

NewConfigLister returns a new ConfigLister.

type ConfigListerExpansion

type ConfigListerExpansion interface{}

ConfigListerExpansion allows custom methods to be added to ConfigLister.

type ConfigNamespaceLister

type ConfigNamespaceLister interface {
	// List lists all Configs in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1.Config, err error)
	// Get retrieves the Config from the indexer for a given namespace and name.
	Get(name string) (*v1.Config, error)
	ConfigNamespaceListerExpansion
}

ConfigNamespaceLister helps list and get Configs.

type ConfigNamespaceListerExpansion

type ConfigNamespaceListerExpansion interface{}

ConfigNamespaceListerExpansion allows custom methods to be added to ConfigNamespaceLister.

type ContainerBuildLister

type ContainerBuildLister interface {
	// List lists all ContainerBuilds in the indexer.
	List(selector labels.Selector) (ret []*v1.ContainerBuild, err error)
	// ContainerBuilds returns an object that can list and get ContainerBuilds.
	ContainerBuilds(namespace string) ContainerBuildNamespaceLister
	ContainerBuildListerExpansion
}

ContainerBuildLister helps list ContainerBuilds.

func NewContainerBuildLister

func NewContainerBuildLister(indexer cache.Indexer) ContainerBuildLister

NewContainerBuildLister returns a new ContainerBuildLister.

type ContainerBuildListerExpansion

type ContainerBuildListerExpansion interface{}

ContainerBuildListerExpansion allows custom methods to be added to ContainerBuildLister.

type ContainerBuildNamespaceLister

type ContainerBuildNamespaceLister interface {
	// List lists all ContainerBuilds in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1.ContainerBuild, err error)
	// Get retrieves the ContainerBuild from the indexer for a given namespace and name.
	Get(name string) (*v1.ContainerBuild, error)
	ContainerBuildNamespaceListerExpansion
}

ContainerBuildNamespaceLister helps list and get ContainerBuilds.

type ContainerBuildNamespaceListerExpansion

type ContainerBuildNamespaceListerExpansion interface{}

ContainerBuildNamespaceListerExpansion allows custom methods to be added to ContainerBuildNamespaceLister.

type DeployLister

type DeployLister interface {
	// List lists all Deploys in the indexer.
	List(selector labels.Selector) (ret []*v1.Deploy, err error)
	// Deploys returns an object that can list and get Deploys.
	Deploys(namespace string) DeployNamespaceLister
	DeployListerExpansion
}

DeployLister helps list Deploys.

func NewDeployLister

func NewDeployLister(indexer cache.Indexer) DeployLister

NewDeployLister returns a new DeployLister.

type DeployListerExpansion

type DeployListerExpansion interface{}

DeployListerExpansion allows custom methods to be added to DeployLister.

type DeployNamespaceLister

type DeployNamespaceLister interface {
	// List lists all Deploys in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1.Deploy, err error)
	// Get retrieves the Deploy from the indexer for a given namespace and name.
	Get(name string) (*v1.Deploy, error)
	DeployNamespaceListerExpansion
}

DeployNamespaceLister helps list and get Deploys.

type DeployNamespaceListerExpansion

type DeployNamespaceListerExpansion interface{}

DeployNamespaceListerExpansion allows custom methods to be added to DeployNamespaceLister.

type GitTemplateLister

type GitTemplateLister interface {
	// List lists all GitTemplates in the indexer.
	List(selector labels.Selector) (ret []*v1.GitTemplate, err error)
	// GitTemplates returns an object that can list and get GitTemplates.
	GitTemplates(namespace string) GitTemplateNamespaceLister
	GitTemplateListerExpansion
}

GitTemplateLister helps list GitTemplates.

func NewGitTemplateLister

func NewGitTemplateLister(indexer cache.Indexer) GitTemplateLister

NewGitTemplateLister returns a new GitTemplateLister.

type GitTemplateListerExpansion

type GitTemplateListerExpansion interface{}

GitTemplateListerExpansion allows custom methods to be added to GitTemplateLister.

type GitTemplateNamespaceLister

type GitTemplateNamespaceLister interface {
	// List lists all GitTemplates in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1.GitTemplate, err error)
	// Get retrieves the GitTemplate from the indexer for a given namespace and name.
	Get(name string) (*v1.GitTemplate, error)
	GitTemplateNamespaceListerExpansion
}

GitTemplateNamespaceLister helps list and get GitTemplates.

type GitTemplateNamespaceListerExpansion

type GitTemplateNamespaceListerExpansion interface{}

GitTemplateNamespaceListerExpansion allows custom methods to be added to GitTemplateNamespaceLister.

type JobLister

type JobLister interface {
	// List lists all Jobs in the indexer.
	List(selector labels.Selector) (ret []*v1.Job, err error)
	// Jobs returns an object that can list and get Jobs.
	Jobs(namespace string) JobNamespaceLister
	JobListerExpansion
}

JobLister helps list Jobs.

func NewJobLister

func NewJobLister(indexer cache.Indexer) JobLister

NewJobLister returns a new JobLister.

type JobListerExpansion

type JobListerExpansion interface{}

JobListerExpansion allows custom methods to be added to JobLister.

type JobNamespaceLister

type JobNamespaceLister interface {
	// List lists all Jobs in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1.Job, err error)
	// Get retrieves the Job from the indexer for a given namespace and name.
	Get(name string) (*v1.Job, error)
	JobNamespaceListerExpansion
}

JobNamespaceLister helps list and get Jobs.

type JobNamespaceListerExpansion

type JobNamespaceListerExpansion interface{}

JobNamespaceListerExpansion allows custom methods to be added to JobNamespaceLister.

type JobRunLister

type JobRunLister interface {
	// List lists all JobRuns in the indexer.
	List(selector labels.Selector) (ret []*v1.JobRun, err error)
	// JobRuns returns an object that can list and get JobRuns.
	JobRuns(namespace string) JobRunNamespaceLister
	JobRunListerExpansion
}

JobRunLister helps list JobRuns.

func NewJobRunLister

func NewJobRunLister(indexer cache.Indexer) JobRunLister

NewJobRunLister returns a new JobRunLister.

type JobRunListerExpansion

type JobRunListerExpansion interface{}

JobRunListerExpansion allows custom methods to be added to JobRunLister.

type JobRunNamespaceLister

type JobRunNamespaceLister interface {
	// List lists all JobRuns in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1.JobRun, err error)
	// Get retrieves the JobRun from the indexer for a given namespace and name.
	Get(name string) (*v1.JobRun, error)
	JobRunNamespaceListerExpansion
}

JobRunNamespaceLister helps list and get JobRuns.

type JobRunNamespaceListerExpansion

type JobRunNamespaceListerExpansion interface{}

JobRunNamespaceListerExpansion allows custom methods to be added to JobRunNamespaceLister.

type NodePoolLister

type NodePoolLister interface {
	// List lists all NodePools in the indexer.
	List(selector labels.Selector) (ret []*v1.NodePool, err error)
	// NodePools returns an object that can list and get NodePools.
	NodePools(namespace string) NodePoolNamespaceLister
	NodePoolListerExpansion
}

NodePoolLister helps list NodePools.

func NewNodePoolLister

func NewNodePoolLister(indexer cache.Indexer) NodePoolLister

NewNodePoolLister returns a new NodePoolLister.

type NodePoolListerExpansion

type NodePoolListerExpansion interface{}

NodePoolListerExpansion allows custom methods to be added to NodePoolLister.

type NodePoolNamespaceLister

type NodePoolNamespaceLister interface {
	// List lists all NodePools in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1.NodePool, err error)
	// Get retrieves the NodePool from the indexer for a given namespace and name.
	Get(name string) (*v1.NodePool, error)
	NodePoolNamespaceListerExpansion
}

NodePoolNamespaceLister helps list and get NodePools.

type NodePoolNamespaceListerExpansion

type NodePoolNamespaceListerExpansion interface{}

NodePoolNamespaceListerExpansion allows custom methods to be added to NodePoolNamespaceLister.

type ServiceLister

type ServiceLister interface {
	// List lists all Services in the indexer.
	List(selector labels.Selector) (ret []*v1.Service, err error)
	// Services returns an object that can list and get Services.
	Services(namespace string) ServiceNamespaceLister
	ServiceListerExpansion
}

ServiceLister helps list Services.

func NewServiceLister

func NewServiceLister(indexer cache.Indexer) ServiceLister

NewServiceLister returns a new ServiceLister.

type ServiceListerExpansion

type ServiceListerExpansion interface{}

ServiceListerExpansion allows custom methods to be added to ServiceLister.

type ServiceNamespaceLister

type ServiceNamespaceLister interface {
	// List lists all Services in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1.Service, err error)
	// Get retrieves the Service from the indexer for a given namespace and name.
	Get(name string) (*v1.Service, error)
	ServiceNamespaceListerExpansion
}

ServiceNamespaceLister helps list and get Services.

type ServiceNamespaceListerExpansion

type ServiceNamespaceListerExpansion interface{}

ServiceNamespaceListerExpansion allows custom methods to be added to ServiceNamespaceLister.

type SystemLister

type SystemLister interface {
	// List lists all Systems in the indexer.
	List(selector labels.Selector) (ret []*v1.System, err error)
	// Systems returns an object that can list and get Systems.
	Systems(namespace string) SystemNamespaceLister
	SystemListerExpansion
}

SystemLister helps list Systems.

func NewSystemLister

func NewSystemLister(indexer cache.Indexer) SystemLister

NewSystemLister returns a new SystemLister.

type SystemListerExpansion

type SystemListerExpansion interface{}

SystemListerExpansion allows custom methods to be added to SystemLister.

type SystemNamespaceLister

type SystemNamespaceLister interface {
	// List lists all Systems in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1.System, err error)
	// Get retrieves the System from the indexer for a given namespace and name.
	Get(name string) (*v1.System, error)
	SystemNamespaceListerExpansion
}

SystemNamespaceLister helps list and get Systems.

type SystemNamespaceListerExpansion

type SystemNamespaceListerExpansion interface{}

SystemNamespaceListerExpansion allows custom methods to be added to SystemNamespaceLister.

type TeardownLister

type TeardownLister interface {
	// List lists all Teardowns in the indexer.
	List(selector labels.Selector) (ret []*v1.Teardown, err error)
	// Teardowns returns an object that can list and get Teardowns.
	Teardowns(namespace string) TeardownNamespaceLister
	TeardownListerExpansion
}

TeardownLister helps list Teardowns.

func NewTeardownLister

func NewTeardownLister(indexer cache.Indexer) TeardownLister

NewTeardownLister returns a new TeardownLister.

type TeardownListerExpansion

type TeardownListerExpansion interface{}

TeardownListerExpansion allows custom methods to be added to TeardownLister.

type TeardownNamespaceLister

type TeardownNamespaceLister interface {
	// List lists all Teardowns in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1.Teardown, err error)
	// Get retrieves the Teardown from the indexer for a given namespace and name.
	Get(name string) (*v1.Teardown, error)
	TeardownNamespaceListerExpansion
}

TeardownNamespaceLister helps list and get Teardowns.

type TeardownNamespaceListerExpansion

type TeardownNamespaceListerExpansion interface{}

TeardownNamespaceListerExpansion allows custom methods to be added to TeardownNamespaceLister.

type TemplateLister

type TemplateLister interface {
	// List lists all Templates in the indexer.
	List(selector labels.Selector) (ret []*v1.Template, err error)
	// Templates returns an object that can list and get Templates.
	Templates(namespace string) TemplateNamespaceLister
	TemplateListerExpansion
}

TemplateLister helps list Templates.

func NewTemplateLister

func NewTemplateLister(indexer cache.Indexer) TemplateLister

NewTemplateLister returns a new TemplateLister.

type TemplateListerExpansion

type TemplateListerExpansion interface{}

TemplateListerExpansion allows custom methods to be added to TemplateLister.

type TemplateNamespaceLister

type TemplateNamespaceLister interface {
	// List lists all Templates in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1.Template, err error)
	// Get retrieves the Template from the indexer for a given namespace and name.
	Get(name string) (*v1.Template, error)
	TemplateNamespaceListerExpansion
}

TemplateNamespaceLister helps list and get Templates.

type TemplateNamespaceListerExpansion

type TemplateNamespaceListerExpansion interface{}

TemplateNamespaceListerExpansion allows custom methods to be added to TemplateNamespaceLister.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL