Documentation
¶
Index ¶
- type ApplicationLister
- type ApplicationListerExpansion
- type ApplicationNamespaceLister
- type ApplicationNamespaceListerExpansion
- type ClusterLister
- type ClusterListerExpansion
- type DistributionLister
- type DistributionListerExpansion
- type DistributionNamespaceLister
- type DistributionNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApplicationLister ¶
type ApplicationLister interface { // List lists all Applications in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Application, err error) // Applications returns an object that can list and get Applications. Applications(namespace string) ApplicationNamespaceLister ApplicationListerExpansion }
ApplicationLister helps list Applications. All objects returned here must be treated as read-only.
func NewApplicationLister ¶
func NewApplicationLister(indexer cache.Indexer) ApplicationLister
NewApplicationLister returns a new ApplicationLister.
type ApplicationListerExpansion ¶
type ApplicationListerExpansion interface{}
ApplicationListerExpansion allows custom methods to be added to ApplicationLister.
type ApplicationNamespaceLister ¶
type ApplicationNamespaceLister interface { // List lists all Applications in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Application, err error) // Get retrieves the Application from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Application, error) ApplicationNamespaceListerExpansion }
ApplicationNamespaceLister helps list and get Applications. All objects returned here must be treated as read-only.
type ApplicationNamespaceListerExpansion ¶
type ApplicationNamespaceListerExpansion interface{}
ApplicationNamespaceListerExpansion allows custom methods to be added to ApplicationNamespaceLister.
type ClusterLister ¶
type ClusterLister interface { // List lists all Clusters in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Cluster, err error) // Get retrieves the Cluster from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Cluster, error) ClusterListerExpansion }
ClusterLister helps list Clusters. All objects returned here must be treated as read-only.
func NewClusterLister ¶
func NewClusterLister(indexer cache.Indexer) ClusterLister
NewClusterLister returns a new ClusterLister.
type ClusterListerExpansion ¶
type ClusterListerExpansion interface{}
ClusterListerExpansion allows custom methods to be added to ClusterLister.
type DistributionLister ¶
type DistributionLister interface { // List lists all Distributions in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Distribution, err error) // Distributions returns an object that can list and get Distributions. Distributions(namespace string) DistributionNamespaceLister DistributionListerExpansion }
DistributionLister helps list Distributions. All objects returned here must be treated as read-only.
func NewDistributionLister ¶
func NewDistributionLister(indexer cache.Indexer) DistributionLister
NewDistributionLister returns a new DistributionLister.
type DistributionListerExpansion ¶
type DistributionListerExpansion interface{}
DistributionListerExpansion allows custom methods to be added to DistributionLister.
type DistributionNamespaceLister ¶
type DistributionNamespaceLister interface { // List lists all Distributions in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Distribution, err error) // Get retrieves the Distribution from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Distribution, error) DistributionNamespaceListerExpansion }
DistributionNamespaceLister helps list and get Distributions. All objects returned here must be treated as read-only.
type DistributionNamespaceListerExpansion ¶
type DistributionNamespaceListerExpansion interface{}
DistributionNamespaceListerExpansion allows custom methods to be added to DistributionNamespaceLister.