Documentation ¶
Overview ¶
Copyright 2018 The Knative Authors
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 The Knative Authors ¶
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 The Knative Authors ¶
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 The Knative Authors ¶
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 The Knative Authors ¶
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 ¶
- type ConfigurationLister
- type ConfigurationListerExpansion
- type ConfigurationNamespaceLister
- type ConfigurationNamespaceListerExpansion
- type RevisionLister
- type RevisionListerExpansion
- type RevisionNamespaceLister
- type RevisionNamespaceListerExpansion
- type RouteLister
- type RouteListerExpansion
- type RouteNamespaceLister
- type RouteNamespaceListerExpansion
- type ServiceLister
- type ServiceListerExpansion
- type ServiceNamespaceLister
- type ServiceNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConfigurationLister ¶
type ConfigurationLister interface { // List lists all Configurations in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Configuration, err error) // Configurations returns an object that can list and get Configurations. Configurations(namespace string) ConfigurationNamespaceLister ConfigurationListerExpansion }
ConfigurationLister helps list Configurations.
func NewConfigurationLister ¶
func NewConfigurationLister(indexer cache.Indexer) ConfigurationLister
NewConfigurationLister returns a new ConfigurationLister.
type ConfigurationListerExpansion ¶
type ConfigurationListerExpansion interface{}
ConfigurationListerExpansion allows custom methods to be added to ConfigurationLister.
type ConfigurationNamespaceLister ¶
type ConfigurationNamespaceLister interface { // List lists all Configurations in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Configuration, err error) // Get retrieves the Configuration from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Configuration, error) ConfigurationNamespaceListerExpansion }
ConfigurationNamespaceLister helps list and get Configurations.
type ConfigurationNamespaceListerExpansion ¶
type ConfigurationNamespaceListerExpansion interface{}
ConfigurationNamespaceListerExpansion allows custom methods to be added to ConfigurationNamespaceLister.
type RevisionLister ¶
type RevisionLister interface { // List lists all Revisions in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Revision, err error) // Revisions returns an object that can list and get Revisions. Revisions(namespace string) RevisionNamespaceLister RevisionListerExpansion }
RevisionLister helps list Revisions.
func NewRevisionLister ¶
func NewRevisionLister(indexer cache.Indexer) RevisionLister
NewRevisionLister returns a new RevisionLister.
type RevisionListerExpansion ¶
type RevisionListerExpansion interface{}
RevisionListerExpansion allows custom methods to be added to RevisionLister.
type RevisionNamespaceLister ¶
type RevisionNamespaceLister interface { // List lists all Revisions in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Revision, err error) // Get retrieves the Revision from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Revision, error) RevisionNamespaceListerExpansion }
RevisionNamespaceLister helps list and get Revisions.
type RevisionNamespaceListerExpansion ¶
type RevisionNamespaceListerExpansion interface{}
RevisionNamespaceListerExpansion allows custom methods to be added to RevisionNamespaceLister.
type RouteLister ¶
type RouteLister interface { // List lists all Routes in the indexer. 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.
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. List(selector labels.Selector) (ret []*v1alpha1.Route, err error) // Get retrieves the Route from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Route, error) RouteNamespaceListerExpansion }
RouteNamespaceLister helps list and get Routes.
type RouteNamespaceListerExpansion ¶
type RouteNamespaceListerExpansion interface{}
RouteNamespaceListerExpansion allows custom methods to be added to RouteNamespaceLister.
type ServiceLister ¶
type ServiceLister interface { // List lists all Services in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Service, err error) // Services returns an object that can list and get Services. Services(namespace string) ServiceNamespaceLister ServiceListerExpansion }
ServiceLister helps list Services.
func NewServiceLister ¶
func NewServiceLister(indexer cache.Indexer) ServiceLister
NewServiceLister returns a new ServiceLister.
type ServiceListerExpansion ¶
type ServiceListerExpansion interface{}
ServiceListerExpansion allows custom methods to be added to ServiceLister.
type ServiceNamespaceLister ¶
type ServiceNamespaceLister interface { // List lists all Services in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Service, err error) // Get retrieves the Service from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Service, error) ServiceNamespaceListerExpansion }
ServiceNamespaceLister helps list and get Services.
type ServiceNamespaceListerExpansion ¶
type ServiceNamespaceListerExpansion interface{}
ServiceNamespaceListerExpansion allows custom methods to be added to ServiceNamespaceLister.