Documentation ¶
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. // Objects returned here must be treated as read-only. 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. All objects returned here must be treated as read-only.
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. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Certificate, err error) // Get retrieves the Certificate from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Certificate, error) CertificateNamespaceListerExpansion }
CertificateNamespaceLister helps list and get Certificates. All objects returned here must be treated as read-only.
type CertificateNamespaceListerExpansion ¶
type CertificateNamespaceListerExpansion interface{}
CertificateNamespaceListerExpansion allows custom methods to be added to CertificateNamespaceLister.
type CertificateValidationLister ¶
type CertificateValidationLister interface { // List lists all CertificateValidations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.CertificateValidation, err error) // CertificateValidations returns an object that can list and get CertificateValidations. CertificateValidations(namespace string) CertificateValidationNamespaceLister CertificateValidationListerExpansion }
CertificateValidationLister helps list CertificateValidations. All objects returned here must be treated as read-only.
func NewCertificateValidationLister ¶
func NewCertificateValidationLister(indexer cache.Indexer) CertificateValidationLister
NewCertificateValidationLister returns a new CertificateValidationLister.
type CertificateValidationListerExpansion ¶
type CertificateValidationListerExpansion interface{}
CertificateValidationListerExpansion allows custom methods to be added to CertificateValidationLister.
type CertificateValidationNamespaceLister ¶
type CertificateValidationNamespaceLister interface { // List lists all CertificateValidations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.CertificateValidation, err error) // Get retrieves the CertificateValidation from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.CertificateValidation, error) CertificateValidationNamespaceListerExpansion }
CertificateValidationNamespaceLister helps list and get CertificateValidations. All objects returned here must be treated as read-only.
type CertificateValidationNamespaceListerExpansion ¶
type CertificateValidationNamespaceListerExpansion interface{}
CertificateValidationNamespaceListerExpansion allows custom methods to be added to CertificateValidationNamespaceLister.