Documentation ¶
Index ¶
- type ApiLister
- type ApiListerExpansion
- type ApiMappingLister
- type ApiMappingListerExpansion
- type ApiMappingNamespaceLister
- type ApiMappingNamespaceListerExpansion
- type ApiNamespaceLister
- type ApiNamespaceListerExpansion
- type AuthorizerLister
- type AuthorizerListerExpansion
- type AuthorizerNamespaceLister
- type AuthorizerNamespaceListerExpansion
- type DeploymentLister
- type DeploymentListerExpansion
- type DeploymentNamespaceLister
- type DeploymentNamespaceListerExpansion
- type DomainNameLister
- type DomainNameListerExpansion
- type DomainNameNamespaceLister
- type DomainNameNamespaceListerExpansion
- type IntegrationLister
- type IntegrationListerExpansion
- type IntegrationNamespaceLister
- type IntegrationNamespaceListerExpansion
- type IntegrationResponseLister
- type IntegrationResponseListerExpansion
- type IntegrationResponseNamespaceLister
- type IntegrationResponseNamespaceListerExpansion
- type ModelLister
- type ModelListerExpansion
- type ModelNamespaceLister
- type ModelNamespaceListerExpansion
- type RouteLister
- type RouteListerExpansion
- type RouteNamespaceLister
- type RouteNamespaceListerExpansion
- type RouteResponseLister
- type RouteResponseListerExpansion
- type RouteResponseNamespaceLister
- type RouteResponseNamespaceListerExpansion
- type StageLister
- type StageListerExpansion
- type StageNamespaceLister
- type StageNamespaceListerExpansion
- type VpcLinkLister
- type VpcLinkListerExpansion
- type VpcLinkNamespaceLister
- type VpcLinkNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApiLister ¶
type ApiLister interface { // List lists all Apis in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Api, err error) // Apis returns an object that can list and get Apis. Apis(namespace string) ApiNamespaceLister ApiListerExpansion }
ApiLister helps list Apis. All objects returned here must be treated as read-only.
func NewApiLister ¶
NewApiLister returns a new ApiLister.
type ApiListerExpansion ¶
type ApiListerExpansion interface{}
ApiListerExpansion allows custom methods to be added to ApiLister.
type ApiMappingLister ¶
type ApiMappingLister interface { // List lists all ApiMappings in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ApiMapping, err error) // ApiMappings returns an object that can list and get ApiMappings. ApiMappings(namespace string) ApiMappingNamespaceLister ApiMappingListerExpansion }
ApiMappingLister helps list ApiMappings. All objects returned here must be treated as read-only.
func NewApiMappingLister ¶
func NewApiMappingLister(indexer cache.Indexer) ApiMappingLister
NewApiMappingLister returns a new ApiMappingLister.
type ApiMappingListerExpansion ¶
type ApiMappingListerExpansion interface{}
ApiMappingListerExpansion allows custom methods to be added to ApiMappingLister.
type ApiMappingNamespaceLister ¶
type ApiMappingNamespaceLister interface { // List lists all ApiMappings in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ApiMapping, err error) // Get retrieves the ApiMapping from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ApiMapping, error) ApiMappingNamespaceListerExpansion }
ApiMappingNamespaceLister helps list and get ApiMappings. All objects returned here must be treated as read-only.
type ApiMappingNamespaceListerExpansion ¶
type ApiMappingNamespaceListerExpansion interface{}
ApiMappingNamespaceListerExpansion allows custom methods to be added to ApiMappingNamespaceLister.
type ApiNamespaceLister ¶
type ApiNamespaceLister interface { // List lists all Apis in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Api, err error) // Get retrieves the Api from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Api, error) ApiNamespaceListerExpansion }
ApiNamespaceLister helps list and get Apis. All objects returned here must be treated as read-only.
type ApiNamespaceListerExpansion ¶
type ApiNamespaceListerExpansion interface{}
ApiNamespaceListerExpansion allows custom methods to be added to ApiNamespaceLister.
type AuthorizerLister ¶
type AuthorizerLister interface { // List lists all Authorizers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Authorizer, err error) // Authorizers returns an object that can list and get Authorizers. Authorizers(namespace string) AuthorizerNamespaceLister AuthorizerListerExpansion }
AuthorizerLister helps list Authorizers. All objects returned here must be treated as read-only.
func NewAuthorizerLister ¶
func NewAuthorizerLister(indexer cache.Indexer) AuthorizerLister
NewAuthorizerLister returns a new AuthorizerLister.
type AuthorizerListerExpansion ¶
type AuthorizerListerExpansion interface{}
AuthorizerListerExpansion allows custom methods to be added to AuthorizerLister.
type AuthorizerNamespaceLister ¶
type AuthorizerNamespaceLister interface { // List lists all Authorizers in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Authorizer, err error) // Get retrieves the Authorizer from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Authorizer, error) AuthorizerNamespaceListerExpansion }
AuthorizerNamespaceLister helps list and get Authorizers. All objects returned here must be treated as read-only.
type AuthorizerNamespaceListerExpansion ¶
type AuthorizerNamespaceListerExpansion interface{}
AuthorizerNamespaceListerExpansion allows custom methods to be added to AuthorizerNamespaceLister.
type DeploymentLister ¶
type DeploymentLister interface { // List lists all Deployments in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Deployment, err error) // Deployments returns an object that can list and get Deployments. Deployments(namespace string) DeploymentNamespaceLister DeploymentListerExpansion }
DeploymentLister helps list Deployments. All objects returned here must be treated as read-only.
func NewDeploymentLister ¶
func NewDeploymentLister(indexer cache.Indexer) DeploymentLister
NewDeploymentLister returns a new DeploymentLister.
type DeploymentListerExpansion ¶
type DeploymentListerExpansion interface{}
DeploymentListerExpansion allows custom methods to be added to DeploymentLister.
type DeploymentNamespaceLister ¶
type DeploymentNamespaceLister interface { // List lists all Deployments in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Deployment, err error) // Get retrieves the Deployment from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Deployment, error) DeploymentNamespaceListerExpansion }
DeploymentNamespaceLister helps list and get Deployments. All objects returned here must be treated as read-only.
type DeploymentNamespaceListerExpansion ¶
type DeploymentNamespaceListerExpansion interface{}
DeploymentNamespaceListerExpansion allows custom methods to be added to DeploymentNamespaceLister.
type DomainNameLister ¶
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 ¶
func NewDomainNameLister(indexer cache.Indexer) DomainNameLister
NewDomainNameLister returns a new DomainNameLister.
type DomainNameListerExpansion ¶
type DomainNameListerExpansion interface{}
DomainNameListerExpansion allows custom methods to be added to DomainNameLister.
type DomainNameNamespaceLister ¶
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 ¶
type DomainNameNamespaceListerExpansion interface{}
DomainNameNamespaceListerExpansion allows custom methods to be added to DomainNameNamespaceLister.
type IntegrationLister ¶
type IntegrationLister interface { // List lists all Integrations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Integration, err error) // Integrations returns an object that can list and get Integrations. Integrations(namespace string) IntegrationNamespaceLister IntegrationListerExpansion }
IntegrationLister helps list Integrations. All objects returned here must be treated as read-only.
func NewIntegrationLister ¶
func NewIntegrationLister(indexer cache.Indexer) IntegrationLister
NewIntegrationLister returns a new IntegrationLister.
type IntegrationListerExpansion ¶
type IntegrationListerExpansion interface{}
IntegrationListerExpansion allows custom methods to be added to IntegrationLister.
type IntegrationNamespaceLister ¶
type IntegrationNamespaceLister interface { // List lists all Integrations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Integration, err error) // Get retrieves the Integration from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Integration, error) IntegrationNamespaceListerExpansion }
IntegrationNamespaceLister helps list and get Integrations. All objects returned here must be treated as read-only.
type IntegrationNamespaceListerExpansion ¶
type IntegrationNamespaceListerExpansion interface{}
IntegrationNamespaceListerExpansion allows custom methods to be added to IntegrationNamespaceLister.
type IntegrationResponseLister ¶
type IntegrationResponseLister interface { // List lists all IntegrationResponses in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.IntegrationResponse, err error) // IntegrationResponses returns an object that can list and get IntegrationResponses. IntegrationResponses(namespace string) IntegrationResponseNamespaceLister IntegrationResponseListerExpansion }
IntegrationResponseLister helps list IntegrationResponses. All objects returned here must be treated as read-only.
func NewIntegrationResponseLister ¶
func NewIntegrationResponseLister(indexer cache.Indexer) IntegrationResponseLister
NewIntegrationResponseLister returns a new IntegrationResponseLister.
type IntegrationResponseListerExpansion ¶
type IntegrationResponseListerExpansion interface{}
IntegrationResponseListerExpansion allows custom methods to be added to IntegrationResponseLister.
type IntegrationResponseNamespaceLister ¶
type IntegrationResponseNamespaceLister interface { // List lists all IntegrationResponses in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.IntegrationResponse, err error) // Get retrieves the IntegrationResponse from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.IntegrationResponse, error) IntegrationResponseNamespaceListerExpansion }
IntegrationResponseNamespaceLister helps list and get IntegrationResponses. All objects returned here must be treated as read-only.
type IntegrationResponseNamespaceListerExpansion ¶
type IntegrationResponseNamespaceListerExpansion interface{}
IntegrationResponseNamespaceListerExpansion allows custom methods to be added to IntegrationResponseNamespaceLister.
type ModelLister ¶
type ModelLister interface { // List lists all Models in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Model, err error) // Models returns an object that can list and get Models. Models(namespace string) ModelNamespaceLister ModelListerExpansion }
ModelLister helps list Models. All objects returned here must be treated as read-only.
func NewModelLister ¶
func NewModelLister(indexer cache.Indexer) ModelLister
NewModelLister returns a new ModelLister.
type ModelListerExpansion ¶
type ModelListerExpansion interface{}
ModelListerExpansion allows custom methods to be added to ModelLister.
type ModelNamespaceLister ¶
type ModelNamespaceLister interface { // List lists all Models in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Model, err error) // Get retrieves the Model from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Model, error) ModelNamespaceListerExpansion }
ModelNamespaceLister helps list and get Models. All objects returned here must be treated as read-only.
type ModelNamespaceListerExpansion ¶
type ModelNamespaceListerExpansion interface{}
ModelNamespaceListerExpansion allows custom methods to be added to ModelNamespaceLister.
type RouteLister ¶
type RouteLister interface { // List lists all Routes in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Route, err error) // Routes returns an object that can list and get Routes. Routes(namespace string) RouteNamespaceLister RouteListerExpansion }
RouteLister helps list Routes. All objects returned here must be treated as read-only.
func NewRouteLister ¶
func NewRouteLister(indexer cache.Indexer) RouteLister
NewRouteLister returns a new RouteLister.
type RouteListerExpansion ¶
type RouteListerExpansion interface{}
RouteListerExpansion allows custom methods to be added to RouteLister.
type RouteNamespaceLister ¶
type RouteNamespaceLister interface { // List lists all Routes in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Route, err error) // Get retrieves the Route from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Route, error) RouteNamespaceListerExpansion }
RouteNamespaceLister helps list and get Routes. All objects returned here must be treated as read-only.
type RouteNamespaceListerExpansion ¶
type RouteNamespaceListerExpansion interface{}
RouteNamespaceListerExpansion allows custom methods to be added to RouteNamespaceLister.
type RouteResponseLister ¶
type RouteResponseLister interface { // List lists all RouteResponses in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.RouteResponse, err error) // RouteResponses returns an object that can list and get RouteResponses. RouteResponses(namespace string) RouteResponseNamespaceLister RouteResponseListerExpansion }
RouteResponseLister helps list RouteResponses. All objects returned here must be treated as read-only.
func NewRouteResponseLister ¶
func NewRouteResponseLister(indexer cache.Indexer) RouteResponseLister
NewRouteResponseLister returns a new RouteResponseLister.
type RouteResponseListerExpansion ¶
type RouteResponseListerExpansion interface{}
RouteResponseListerExpansion allows custom methods to be added to RouteResponseLister.
type RouteResponseNamespaceLister ¶
type RouteResponseNamespaceLister interface { // List lists all RouteResponses in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.RouteResponse, err error) // Get retrieves the RouteResponse from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.RouteResponse, error) RouteResponseNamespaceListerExpansion }
RouteResponseNamespaceLister helps list and get RouteResponses. All objects returned here must be treated as read-only.
type RouteResponseNamespaceListerExpansion ¶
type RouteResponseNamespaceListerExpansion interface{}
RouteResponseNamespaceListerExpansion allows custom methods to be added to RouteResponseNamespaceLister.
type StageLister ¶
type StageLister interface { // List lists all Stages in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Stage, err error) // Stages returns an object that can list and get Stages. Stages(namespace string) StageNamespaceLister StageListerExpansion }
StageLister helps list Stages. All objects returned here must be treated as read-only.
func NewStageLister ¶
func NewStageLister(indexer cache.Indexer) StageLister
NewStageLister returns a new StageLister.
type StageListerExpansion ¶
type StageListerExpansion interface{}
StageListerExpansion allows custom methods to be added to StageLister.
type StageNamespaceLister ¶
type StageNamespaceLister interface { // List lists all Stages in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Stage, err error) // Get retrieves the Stage from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Stage, error) StageNamespaceListerExpansion }
StageNamespaceLister helps list and get Stages. All objects returned here must be treated as read-only.
type StageNamespaceListerExpansion ¶
type StageNamespaceListerExpansion interface{}
StageNamespaceListerExpansion allows custom methods to be added to StageNamespaceLister.
type VpcLinkLister ¶
type VpcLinkLister interface { // List lists all VpcLinks in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.VpcLink, err error) // VpcLinks returns an object that can list and get VpcLinks. VpcLinks(namespace string) VpcLinkNamespaceLister VpcLinkListerExpansion }
VpcLinkLister helps list VpcLinks. All objects returned here must be treated as read-only.
func NewVpcLinkLister ¶
func NewVpcLinkLister(indexer cache.Indexer) VpcLinkLister
NewVpcLinkLister returns a new VpcLinkLister.
type VpcLinkListerExpansion ¶
type VpcLinkListerExpansion interface{}
VpcLinkListerExpansion allows custom methods to be added to VpcLinkLister.
type VpcLinkNamespaceLister ¶
type VpcLinkNamespaceLister interface { // List lists all VpcLinks in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.VpcLink, err error) // Get retrieves the VpcLink from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.VpcLink, error) VpcLinkNamespaceListerExpansion }
VpcLinkNamespaceLister helps list and get VpcLinks. All objects returned here must be treated as read-only.
type VpcLinkNamespaceListerExpansion ¶
type VpcLinkNamespaceListerExpansion interface{}
VpcLinkNamespaceListerExpansion allows custom methods to be added to VpcLinkNamespaceLister.