Documentation ¶
Index ¶
- type CertificateLister
- type CertificateListerExpansion
- type CertificateNamespaceLister
- type CertificateNamespaceListerExpansion
- type CertificateRequestLister
- type CertificateRequestListerExpansion
- type CertificateRequestNamespaceLister
- type CertificateRequestNamespaceListerExpansion
- type ClusterIssuerLister
- type ClusterIssuerListerExpansion
- type IssuerLister
- type IssuerListerExpansion
- type IssuerNamespaceLister
- type IssuerNamespaceListerExpansion
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 []*v1.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 []*v1.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) (*v1.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 CertificateRequestLister ¶
type CertificateRequestLister interface { // List lists all CertificateRequests in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.CertificateRequest, err error) // CertificateRequests returns an object that can list and get CertificateRequests. CertificateRequests(namespace string) CertificateRequestNamespaceLister CertificateRequestListerExpansion }
CertificateRequestLister helps list CertificateRequests. All objects returned here must be treated as read-only.
func NewCertificateRequestLister ¶
func NewCertificateRequestLister(indexer cache.Indexer) CertificateRequestLister
NewCertificateRequestLister returns a new CertificateRequestLister.
type CertificateRequestListerExpansion ¶
type CertificateRequestListerExpansion interface{}
CertificateRequestListerExpansion allows custom methods to be added to CertificateRequestLister.
type CertificateRequestNamespaceLister ¶
type CertificateRequestNamespaceLister interface { // List lists all CertificateRequests in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.CertificateRequest, err error) // Get retrieves the CertificateRequest from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.CertificateRequest, error) CertificateRequestNamespaceListerExpansion }
CertificateRequestNamespaceLister helps list and get CertificateRequests. All objects returned here must be treated as read-only.
type CertificateRequestNamespaceListerExpansion ¶
type CertificateRequestNamespaceListerExpansion interface{}
CertificateRequestNamespaceListerExpansion allows custom methods to be added to CertificateRequestNamespaceLister.
type ClusterIssuerLister ¶
type ClusterIssuerLister interface { // List lists all ClusterIssuers in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.ClusterIssuer, err error) // Get retrieves the ClusterIssuer from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1.ClusterIssuer, error) ClusterIssuerListerExpansion }
ClusterIssuerLister helps list ClusterIssuers. All objects returned here must be treated as read-only.
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. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Issuer, err error) // Issuers returns an object that can list and get Issuers. Issuers(namespace string) IssuerNamespaceLister IssuerListerExpansion }
IssuerLister helps list Issuers. All objects returned here must be treated as read-only.
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. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Issuer, err error) // Get retrieves the Issuer from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Issuer, error) IssuerNamespaceListerExpansion }
IssuerNamespaceLister helps list and get Issuers. All objects returned here must be treated as read-only.
type IssuerNamespaceListerExpansion ¶
type IssuerNamespaceListerExpansion interface{}
IssuerNamespaceListerExpansion allows custom methods to be added to IssuerNamespaceLister.