Documentation
¶
Index ¶
- type ApiCacheLister
- type ApiCacheListerExpansion
- type ApiCacheNamespaceLister
- type ApiCacheNamespaceListerExpansion
- type ApiKeyLister
- type ApiKeyListerExpansion
- type ApiKeyNamespaceLister
- type ApiKeyNamespaceListerExpansion
- type DatasourceLister
- type DatasourceListerExpansion
- type DatasourceNamespaceLister
- type DatasourceNamespaceListerExpansion
- type DomainNameAPIAssociationLister
- type DomainNameAPIAssociationListerExpansion
- type DomainNameAPIAssociationNamespaceLister
- type DomainNameAPIAssociationNamespaceListerExpansion
- type DomainNameLister
- type DomainNameListerExpansion
- type DomainNameNamespaceLister
- type DomainNameNamespaceListerExpansion
- type FunctionLister
- type FunctionListerExpansion
- type FunctionNamespaceLister
- type FunctionNamespaceListerExpansion
- type GraphqlAPILister
- type GraphqlAPIListerExpansion
- type GraphqlAPINamespaceLister
- type GraphqlAPINamespaceListerExpansion
- type ResolverLister
- type ResolverListerExpansion
- type ResolverNamespaceLister
- type ResolverNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApiCacheLister ¶ added in v0.5.0
type ApiCacheLister interface { // List lists all ApiCaches in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ApiCache, err error) // ApiCaches returns an object that can list and get ApiCaches. ApiCaches(namespace string) ApiCacheNamespaceLister ApiCacheListerExpansion }
ApiCacheLister helps list ApiCaches. All objects returned here must be treated as read-only.
func NewApiCacheLister ¶ added in v0.5.0
func NewApiCacheLister(indexer cache.Indexer) ApiCacheLister
NewApiCacheLister returns a new ApiCacheLister.
type ApiCacheListerExpansion ¶ added in v0.5.0
type ApiCacheListerExpansion interface{}
ApiCacheListerExpansion allows custom methods to be added to ApiCacheLister.
type ApiCacheNamespaceLister ¶ added in v0.5.0
type ApiCacheNamespaceLister interface { // List lists all ApiCaches in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ApiCache, err error) // Get retrieves the ApiCache from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ApiCache, error) ApiCacheNamespaceListerExpansion }
ApiCacheNamespaceLister helps list and get ApiCaches. All objects returned here must be treated as read-only.
type ApiCacheNamespaceListerExpansion ¶ added in v0.5.0
type ApiCacheNamespaceListerExpansion interface{}
ApiCacheNamespaceListerExpansion allows custom methods to be added to ApiCacheNamespaceLister.
type ApiKeyLister ¶
type ApiKeyLister interface { // List lists all ApiKeys in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ApiKey, err error) // ApiKeys returns an object that can list and get ApiKeys. ApiKeys(namespace string) ApiKeyNamespaceLister ApiKeyListerExpansion }
ApiKeyLister helps list ApiKeys. All objects returned here must be treated as read-only.
func NewApiKeyLister ¶
func NewApiKeyLister(indexer cache.Indexer) ApiKeyLister
NewApiKeyLister returns a new ApiKeyLister.
type ApiKeyListerExpansion ¶
type ApiKeyListerExpansion interface{}
ApiKeyListerExpansion allows custom methods to be added to ApiKeyLister.
type ApiKeyNamespaceLister ¶
type ApiKeyNamespaceLister interface { // List lists all ApiKeys in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ApiKey, err error) // Get retrieves the ApiKey from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ApiKey, error) ApiKeyNamespaceListerExpansion }
ApiKeyNamespaceLister helps list and get ApiKeys. All objects returned here must be treated as read-only.
type ApiKeyNamespaceListerExpansion ¶
type ApiKeyNamespaceListerExpansion interface{}
ApiKeyNamespaceListerExpansion allows custom methods to be added to ApiKeyNamespaceLister.
type DatasourceLister ¶
type DatasourceLister interface { // List lists all Datasources in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Datasource, err error) // Datasources returns an object that can list and get Datasources. Datasources(namespace string) DatasourceNamespaceLister DatasourceListerExpansion }
DatasourceLister helps list Datasources. All objects returned here must be treated as read-only.
func NewDatasourceLister ¶
func NewDatasourceLister(indexer cache.Indexer) DatasourceLister
NewDatasourceLister returns a new DatasourceLister.
type DatasourceListerExpansion ¶
type DatasourceListerExpansion interface{}
DatasourceListerExpansion allows custom methods to be added to DatasourceLister.
type DatasourceNamespaceLister ¶
type DatasourceNamespaceLister interface { // List lists all Datasources in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Datasource, err error) // Get retrieves the Datasource from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Datasource, error) DatasourceNamespaceListerExpansion }
DatasourceNamespaceLister helps list and get Datasources. All objects returned here must be treated as read-only.
type DatasourceNamespaceListerExpansion ¶
type DatasourceNamespaceListerExpansion interface{}
DatasourceNamespaceListerExpansion allows custom methods to be added to DatasourceNamespaceLister.
type DomainNameAPIAssociationLister ¶ added in v0.5.0
type DomainNameAPIAssociationLister interface { // List lists all DomainNameAPIAssociations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DomainNameAPIAssociation, err error) // DomainNameAPIAssociations returns an object that can list and get DomainNameAPIAssociations. DomainNameAPIAssociations(namespace string) DomainNameAPIAssociationNamespaceLister DomainNameAPIAssociationListerExpansion }
DomainNameAPIAssociationLister helps list DomainNameAPIAssociations. All objects returned here must be treated as read-only.
func NewDomainNameAPIAssociationLister ¶ added in v0.5.0
func NewDomainNameAPIAssociationLister(indexer cache.Indexer) DomainNameAPIAssociationLister
NewDomainNameAPIAssociationLister returns a new DomainNameAPIAssociationLister.
type DomainNameAPIAssociationListerExpansion ¶ added in v0.5.0
type DomainNameAPIAssociationListerExpansion interface{}
DomainNameAPIAssociationListerExpansion allows custom methods to be added to DomainNameAPIAssociationLister.
type DomainNameAPIAssociationNamespaceLister ¶ added in v0.5.0
type DomainNameAPIAssociationNamespaceLister interface { // List lists all DomainNameAPIAssociations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DomainNameAPIAssociation, err error) // Get retrieves the DomainNameAPIAssociation from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.DomainNameAPIAssociation, error) DomainNameAPIAssociationNamespaceListerExpansion }
DomainNameAPIAssociationNamespaceLister helps list and get DomainNameAPIAssociations. All objects returned here must be treated as read-only.
type DomainNameAPIAssociationNamespaceListerExpansion ¶ added in v0.5.0
type DomainNameAPIAssociationNamespaceListerExpansion interface{}
DomainNameAPIAssociationNamespaceListerExpansion allows custom methods to be added to DomainNameAPIAssociationNamespaceLister.
type DomainNameLister ¶ added in v0.5.0
type DomainNameLister interface { // List lists all DomainNames in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DomainName, err error) // DomainNames returns an object that can list and get DomainNames. DomainNames(namespace string) DomainNameNamespaceLister DomainNameListerExpansion }
DomainNameLister helps list DomainNames. All objects returned here must be treated as read-only.
func NewDomainNameLister ¶ added in v0.5.0
func NewDomainNameLister(indexer cache.Indexer) DomainNameLister
NewDomainNameLister returns a new DomainNameLister.
type DomainNameListerExpansion ¶ added in v0.5.0
type DomainNameListerExpansion interface{}
DomainNameListerExpansion allows custom methods to be added to DomainNameLister.
type DomainNameNamespaceLister ¶ added in v0.5.0
type DomainNameNamespaceLister interface { // List lists all DomainNames in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DomainName, err error) // Get retrieves the DomainName from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.DomainName, error) DomainNameNamespaceListerExpansion }
DomainNameNamespaceLister helps list and get DomainNames. All objects returned here must be treated as read-only.
type DomainNameNamespaceListerExpansion ¶ added in v0.5.0
type DomainNameNamespaceListerExpansion interface{}
DomainNameNamespaceListerExpansion allows custom methods to be added to DomainNameNamespaceLister.
type FunctionLister ¶
type FunctionLister interface { // List lists all Functions in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Function, err error) // Functions returns an object that can list and get Functions. Functions(namespace string) FunctionNamespaceLister FunctionListerExpansion }
FunctionLister helps list Functions. All objects returned here must be treated as read-only.
func NewFunctionLister ¶
func NewFunctionLister(indexer cache.Indexer) FunctionLister
NewFunctionLister returns a new FunctionLister.
type FunctionListerExpansion ¶
type FunctionListerExpansion interface{}
FunctionListerExpansion allows custom methods to be added to FunctionLister.
type FunctionNamespaceLister ¶
type FunctionNamespaceLister interface { // List lists all Functions in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Function, err error) // Get retrieves the Function from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Function, error) FunctionNamespaceListerExpansion }
FunctionNamespaceLister helps list and get Functions. All objects returned here must be treated as read-only.
type FunctionNamespaceListerExpansion ¶
type FunctionNamespaceListerExpansion interface{}
FunctionNamespaceListerExpansion allows custom methods to be added to FunctionNamespaceLister.
type GraphqlAPILister ¶
type GraphqlAPILister interface { // List lists all GraphqlAPIs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.GraphqlAPI, err error) // GraphqlAPIs returns an object that can list and get GraphqlAPIs. GraphqlAPIs(namespace string) GraphqlAPINamespaceLister GraphqlAPIListerExpansion }
GraphqlAPILister helps list GraphqlAPIs. All objects returned here must be treated as read-only.
func NewGraphqlAPILister ¶
func NewGraphqlAPILister(indexer cache.Indexer) GraphqlAPILister
NewGraphqlAPILister returns a new GraphqlAPILister.
type GraphqlAPIListerExpansion ¶
type GraphqlAPIListerExpansion interface{}
GraphqlAPIListerExpansion allows custom methods to be added to GraphqlAPILister.
type GraphqlAPINamespaceLister ¶
type GraphqlAPINamespaceLister interface { // List lists all GraphqlAPIs in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.GraphqlAPI, err error) // Get retrieves the GraphqlAPI from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.GraphqlAPI, error) GraphqlAPINamespaceListerExpansion }
GraphqlAPINamespaceLister helps list and get GraphqlAPIs. All objects returned here must be treated as read-only.
type GraphqlAPINamespaceListerExpansion ¶
type GraphqlAPINamespaceListerExpansion interface{}
GraphqlAPINamespaceListerExpansion allows custom methods to be added to GraphqlAPINamespaceLister.
type ResolverLister ¶
type ResolverLister interface { // List lists all Resolvers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Resolver, err error) // Resolvers returns an object that can list and get Resolvers. Resolvers(namespace string) ResolverNamespaceLister ResolverListerExpansion }
ResolverLister helps list Resolvers. All objects returned here must be treated as read-only.
func NewResolverLister ¶
func NewResolverLister(indexer cache.Indexer) ResolverLister
NewResolverLister returns a new ResolverLister.
type ResolverListerExpansion ¶
type ResolverListerExpansion interface{}
ResolverListerExpansion allows custom methods to be added to ResolverLister.
type ResolverNamespaceLister ¶
type ResolverNamespaceLister interface { // List lists all Resolvers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Resolver, err error) // Get retrieves the Resolver from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Resolver, error) ResolverNamespaceListerExpansion }
ResolverNamespaceLister helps list and get Resolvers. All objects returned here must be treated as read-only.
type ResolverNamespaceListerExpansion ¶
type ResolverNamespaceListerExpansion interface{}
ResolverNamespaceListerExpansion allows custom methods to be added to ResolverNamespaceLister.