Documentation ¶
Overview ¶
Copyright 2018 Jetstack Ltd.
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 Jetstack Ltd.
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 Jetstack Ltd.
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 Jetstack Ltd.
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 CertificateLister ¶
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 ¶
func NewCertificateLister(indexer cache.Indexer) CertificateLister
NewCertificateLister returns a new CertificateLister.
type CertificateListerExpansion ¶
type CertificateListerExpansion interface{}
CertificateListerExpansion allows custom methods to be added to CertificateLister.
type CertificateNamespaceLister ¶
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 ¶
type CertificateNamespaceListerExpansion interface{}
CertificateNamespaceListerExpansion allows custom methods to be added to CertificateNamespaceLister.
type ClusterIssuerLister ¶
type ClusterIssuerLister interface { // List lists all ClusterIssuers in the indexer. List(selector labels.Selector) (ret []*v1alpha1.ClusterIssuer, err error) // Get retrieves the ClusterIssuer from the index for a given name. Get(name string) (*v1alpha1.ClusterIssuer, error) ClusterIssuerListerExpansion }
ClusterIssuerLister helps list ClusterIssuers.
func NewClusterIssuerLister ¶
func NewClusterIssuerLister(indexer cache.Indexer) ClusterIssuerLister
NewClusterIssuerLister returns a new ClusterIssuerLister.
type ClusterIssuerListerExpansion ¶
type ClusterIssuerListerExpansion interface{}
ClusterIssuerListerExpansion allows custom methods to be added to ClusterIssuerLister.
type IssuerLister ¶
type IssuerLister interface { // List lists all Issuers in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Issuer, err error) // Issuers returns an object that can list and get Issuers. Issuers(namespace string) IssuerNamespaceLister IssuerListerExpansion }
IssuerLister helps list Issuers.
func NewIssuerLister ¶
func NewIssuerLister(indexer cache.Indexer) IssuerLister
NewIssuerLister returns a new IssuerLister.
type IssuerListerExpansion ¶
type IssuerListerExpansion interface{}
IssuerListerExpansion allows custom methods to be added to IssuerLister.
type IssuerNamespaceLister ¶
type IssuerNamespaceLister interface { // List lists all Issuers in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Issuer, err error) // Get retrieves the Issuer from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Issuer, error) IssuerNamespaceListerExpansion }
IssuerNamespaceLister helps list and get Issuers.
type IssuerNamespaceListerExpansion ¶
type IssuerNamespaceListerExpansion interface{}
IssuerNamespaceListerExpansion allows custom methods to be added to IssuerNamespaceLister.