Documentation ¶
Overview ¶
Copyright 2019 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 2019 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 2019 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 2019 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 CertificateLister
- type CertificateListerExpansion
- type CertificateNamespaceLister
- type CertificateNamespaceListerExpansion
- type ClusterIngressLister
- type ClusterIngressListerExpansion
- type ServerlessServiceLister
- type ServerlessServiceListerExpansion
- type ServerlessServiceNamespaceLister
- type ServerlessServiceNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CertificateLister ¶ added in v0.5.0
type CertificateLister interface { // List lists all Certificates in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Certificate, err error) // Certificates returns an object that can list and get Certificates. Certificates(namespace string) CertificateNamespaceLister CertificateListerExpansion }
CertificateLister helps list Certificates.
func NewCertificateLister ¶ added in v0.5.0
func NewCertificateLister(indexer cache.Indexer) CertificateLister
NewCertificateLister returns a new CertificateLister.
type CertificateListerExpansion ¶ added in v0.5.0
type CertificateListerExpansion interface{}
CertificateListerExpansion allows custom methods to be added to CertificateLister.
type CertificateNamespaceLister ¶ added in v0.5.0
type CertificateNamespaceLister interface { // List lists all Certificates in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Certificate, err error) // Get retrieves the Certificate from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Certificate, error) CertificateNamespaceListerExpansion }
CertificateNamespaceLister helps list and get Certificates.
type CertificateNamespaceListerExpansion ¶ added in v0.5.0
type CertificateNamespaceListerExpansion interface{}
CertificateNamespaceListerExpansion allows custom methods to be added to CertificateNamespaceLister.
type ClusterIngressLister ¶
type ClusterIngressLister interface { // List lists all ClusterIngresses in the indexer. List(selector labels.Selector) (ret []*v1alpha1.ClusterIngress, err error) // Get retrieves the ClusterIngress from the index for a given name. Get(name string) (*v1alpha1.ClusterIngress, error) ClusterIngressListerExpansion }
ClusterIngressLister helps list ClusterIngresses.
func NewClusterIngressLister ¶
func NewClusterIngressLister(indexer cache.Indexer) ClusterIngressLister
NewClusterIngressLister returns a new ClusterIngressLister.
type ClusterIngressListerExpansion ¶
type ClusterIngressListerExpansion interface{}
ClusterIngressListerExpansion allows custom methods to be added to ClusterIngressLister.
type ServerlessServiceLister ¶ added in v0.5.0
type ServerlessServiceLister interface { // List lists all ServerlessServices in the indexer. List(selector labels.Selector) (ret []*v1alpha1.ServerlessService, err error) // ServerlessServices returns an object that can list and get ServerlessServices. ServerlessServices(namespace string) ServerlessServiceNamespaceLister ServerlessServiceListerExpansion }
ServerlessServiceLister helps list ServerlessServices.
func NewServerlessServiceLister ¶ added in v0.5.0
func NewServerlessServiceLister(indexer cache.Indexer) ServerlessServiceLister
NewServerlessServiceLister returns a new ServerlessServiceLister.
type ServerlessServiceListerExpansion ¶ added in v0.5.0
type ServerlessServiceListerExpansion interface{}
ServerlessServiceListerExpansion allows custom methods to be added to ServerlessServiceLister.
type ServerlessServiceNamespaceLister ¶ added in v0.5.0
type ServerlessServiceNamespaceLister interface { // List lists all ServerlessServices in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.ServerlessService, err error) // Get retrieves the ServerlessService from the indexer for a given namespace and name. Get(name string) (*v1alpha1.ServerlessService, error) ServerlessServiceNamespaceListerExpansion }
ServerlessServiceNamespaceLister helps list and get ServerlessServices.
type ServerlessServiceNamespaceListerExpansion ¶ added in v0.5.0
type ServerlessServiceNamespaceListerExpansion interface{}
ServerlessServiceNamespaceListerExpansion allows custom methods to be added to ServerlessServiceNamespaceLister.