Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ServiceExportLister ¶
type ServiceExportLister interface { // List lists all ServiceExports in the indexer. List(selector labels.Selector) (ret []*v2alpha1.ServiceExport, err error) // ServiceExports returns an object that can list and get ServiceExports. ServiceExports(namespace string) ServiceExportNamespaceLister ServiceExportListerExpansion }
ServiceExportLister helps list ServiceExports.
func NewServiceExportLister ¶
func NewServiceExportLister(indexer cache.Indexer) ServiceExportLister
NewServiceExportLister returns a new ServiceExportLister.
type ServiceExportListerExpansion ¶
type ServiceExportListerExpansion interface{}
ServiceExportListerExpansion allows custom methods to be added to ServiceExportLister.
type ServiceExportNamespaceLister ¶
type ServiceExportNamespaceLister interface { // List lists all ServiceExports in the indexer for a given namespace. List(selector labels.Selector) (ret []*v2alpha1.ServiceExport, err error) // Get retrieves the ServiceExport from the indexer for a given namespace and name. Get(name string) (*v2alpha1.ServiceExport, error) ServiceExportNamespaceListerExpansion }
ServiceExportNamespaceLister helps list and get ServiceExports.
type ServiceExportNamespaceListerExpansion ¶
type ServiceExportNamespaceListerExpansion interface{}
ServiceExportNamespaceListerExpansion allows custom methods to be added to ServiceExportNamespaceLister.
type ServiceImportLister ¶ added in v0.5.0
type ServiceImportLister interface { // List lists all ServiceImports in the indexer. List(selector labels.Selector) (ret []*v2alpha1.ServiceImport, err error) // ServiceImports returns an object that can list and get ServiceImports. ServiceImports(namespace string) ServiceImportNamespaceLister ServiceImportListerExpansion }
ServiceImportLister helps list ServiceImports.
func NewServiceImportLister ¶ added in v0.5.0
func NewServiceImportLister(indexer cache.Indexer) ServiceImportLister
NewServiceImportLister returns a new ServiceImportLister.
type ServiceImportListerExpansion ¶ added in v0.5.0
type ServiceImportListerExpansion interface{}
ServiceImportListerExpansion allows custom methods to be added to ServiceImportLister.
type ServiceImportNamespaceLister ¶ added in v0.5.0
type ServiceImportNamespaceLister interface { // List lists all ServiceImports in the indexer for a given namespace. List(selector labels.Selector) (ret []*v2alpha1.ServiceImport, err error) // Get retrieves the ServiceImport from the indexer for a given namespace and name. Get(name string) (*v2alpha1.ServiceImport, error) ServiceImportNamespaceListerExpansion }
ServiceImportNamespaceLister helps list and get ServiceImports.
type ServiceImportNamespaceListerExpansion ¶ added in v0.5.0
type ServiceImportNamespaceListerExpansion interface{}
ServiceImportNamespaceListerExpansion allows custom methods to be added to ServiceImportNamespaceLister.