Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClusterDomainLister ¶
type ClusterDomainLister interface {
// List lists all ClusterDomains in the indexer.
List(selector labels.Selector) (ret []*v1.ClusterDomain, err error)
// ClusterDomains returns an object that can list and get ClusterDomains.
ClusterDomains(namespace string) ClusterDomainNamespaceLister
ClusterDomainListerExpansion
}
ClusterDomainLister helps list ClusterDomains.
func NewClusterDomainLister ¶
func NewClusterDomainLister(indexer cache.Indexer) ClusterDomainLister
NewClusterDomainLister returns a new ClusterDomainLister.
type ClusterDomainListerExpansion ¶
type ClusterDomainListerExpansion interface{}
ClusterDomainListerExpansion allows custom methods to be added to ClusterDomainLister.
type ClusterDomainNamespaceLister ¶
type ClusterDomainNamespaceLister interface {
// List lists all ClusterDomains in the indexer for a given namespace.
List(selector labels.Selector) (ret []*v1.ClusterDomain, err error)
// Get retrieves the ClusterDomain from the indexer for a given namespace and name.
Get(name string) (*v1.ClusterDomain, error)
ClusterDomainNamespaceListerExpansion
}
ClusterDomainNamespaceLister helps list and get ClusterDomains.
type ClusterDomainNamespaceListerExpansion ¶
type ClusterDomainNamespaceListerExpansion interface{}
ClusterDomainNamespaceListerExpansion allows custom methods to be added to ClusterDomainNamespaceLister.
type FeatureLister ¶
type FeatureLister interface {
// List lists all Features in the indexer.
List(selector labels.Selector) (ret []*v1.Feature, err error)
// Features returns an object that can list and get Features.
Features(namespace string) FeatureNamespaceLister
FeatureListerExpansion
}
FeatureLister helps list Features.
func NewFeatureLister ¶
func NewFeatureLister(indexer cache.Indexer) FeatureLister
NewFeatureLister returns a new FeatureLister.
type FeatureListerExpansion ¶
type FeatureListerExpansion interface{}
FeatureListerExpansion allows custom methods to be added to FeatureLister.
type FeatureNamespaceLister ¶
type FeatureNamespaceLister interface {
// List lists all Features in the indexer for a given namespace.
List(selector labels.Selector) (ret []*v1.Feature, err error)
// Get retrieves the Feature from the indexer for a given namespace and name.
Get(name string) (*v1.Feature, error)
FeatureNamespaceListerExpansion
}
FeatureNamespaceLister helps list and get Features.
type FeatureNamespaceListerExpansion ¶
type FeatureNamespaceListerExpansion interface{}
FeatureNamespaceListerExpansion allows custom methods to be added to FeatureNamespaceLister.
Source Files
¶
- clusterdomain.go
- expansion_generated.go
- feature.go