Documentation ¶
Overview ¶
Copyright 2018 Google LLC
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Copyright 2018 Google LLC ¶
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RouteRuleLister ¶
type RouteRuleLister interface { // List lists all RouteRules in the indexer. List(selector labels.Selector) (ret []*v1alpha2.RouteRule, err error) // RouteRules returns an object that can list and get RouteRules. RouteRules(namespace string) RouteRuleNamespaceLister RouteRuleListerExpansion }
RouteRuleLister helps list RouteRules.
func NewRouteRuleLister ¶
func NewRouteRuleLister(indexer cache.Indexer) RouteRuleLister
NewRouteRuleLister returns a new RouteRuleLister.
type RouteRuleListerExpansion ¶
type RouteRuleListerExpansion interface{}
RouteRuleListerExpansion allows custom methods to be added to RouteRuleLister.
type RouteRuleNamespaceLister ¶
type RouteRuleNamespaceLister interface { // List lists all RouteRules in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha2.RouteRule, err error) // Get retrieves the RouteRule from the indexer for a given namespace and name. Get(name string) (*v1alpha2.RouteRule, error) RouteRuleNamespaceListerExpansion }
RouteRuleNamespaceLister helps list and get RouteRules.
type RouteRuleNamespaceListerExpansion ¶
type RouteRuleNamespaceListerExpansion interface{}
RouteRuleNamespaceListerExpansion allows custom methods to be added to RouteRuleNamespaceLister.