Documentation ¶
Index ¶
- type CertificateLister
- type CertificateListerExpansion
- type CertificateNamespaceLister
- type CertificateNamespaceListerExpansion
- type IngressLister
- type IngressListerExpansion
- type IngressNamespaceLister
- type IngressNamespaceListerExpansion
- 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 IngressLister ¶ added in v0.7.0
type IngressLister interface { // List lists all Ingresses in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Ingress, err error) // Ingresses returns an object that can list and get Ingresses. Ingresses(namespace string) IngressNamespaceLister IngressListerExpansion }
IngressLister helps list Ingresses.
func NewIngressLister ¶ added in v0.7.0
func NewIngressLister(indexer cache.Indexer) IngressLister
NewIngressLister returns a new IngressLister.
type IngressListerExpansion ¶ added in v0.7.0
type IngressListerExpansion interface{}
IngressListerExpansion allows custom methods to be added to IngressLister.
type IngressNamespaceLister ¶ added in v0.7.0
type IngressNamespaceLister interface { // List lists all Ingresses in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Ingress, err error) // Get retrieves the Ingress from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Ingress, error) IngressNamespaceListerExpansion }
IngressNamespaceLister helps list and get Ingresses.
type IngressNamespaceListerExpansion ¶ added in v0.7.0
type IngressNamespaceListerExpansion interface{}
IngressNamespaceListerExpansion allows custom methods to be added to IngressNamespaceLister.
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.