Documentation ¶
Index ¶
- type CertificateLister
- type CertificateListerExpansion
- type CertificateNamespaceLister
- type CertificateNamespaceListerExpansion
- type PasswordLister
- type PasswordListerExpansion
- type PasswordNamespaceLister
- type PasswordNamespaceListerExpansion
- type RSAKeyLister
- type RSAKeyListerExpansion
- type RSAKeyNamespaceLister
- type RSAKeyNamespaceListerExpansion
- type SSHKeyLister
- type SSHKeyListerExpansion
- type SSHKeyNamespaceLister
- type SSHKeyNamespaceListerExpansion
- type SecretExportLister
- type SecretExportListerExpansion
- type SecretExportNamespaceLister
- type SecretExportNamespaceListerExpansion
- type SecretRequestLister
- type SecretRequestListerExpansion
- type SecretRequestNamespaceLister
- type SecretRequestNamespaceListerExpansion
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 PasswordLister ¶
type PasswordLister interface { // List lists all Passwords in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Password, err error) // Passwords returns an object that can list and get Passwords. Passwords(namespace string) PasswordNamespaceLister PasswordListerExpansion }
PasswordLister helps list Passwords.
func NewPasswordLister ¶
func NewPasswordLister(indexer cache.Indexer) PasswordLister
NewPasswordLister returns a new PasswordLister.
type PasswordListerExpansion ¶
type PasswordListerExpansion interface{}
PasswordListerExpansion allows custom methods to be added to PasswordLister.
type PasswordNamespaceLister ¶
type PasswordNamespaceLister interface { // List lists all Passwords in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Password, err error) // Get retrieves the Password from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Password, error) PasswordNamespaceListerExpansion }
PasswordNamespaceLister helps list and get Passwords.
type PasswordNamespaceListerExpansion ¶
type PasswordNamespaceListerExpansion interface{}
PasswordNamespaceListerExpansion allows custom methods to be added to PasswordNamespaceLister.
type RSAKeyLister ¶
type RSAKeyLister interface { // List lists all RSAKeys in the indexer. List(selector labels.Selector) (ret []*v1alpha1.RSAKey, err error) // RSAKeys returns an object that can list and get RSAKeys. RSAKeys(namespace string) RSAKeyNamespaceLister RSAKeyListerExpansion }
RSAKeyLister helps list RSAKeys.
func NewRSAKeyLister ¶
func NewRSAKeyLister(indexer cache.Indexer) RSAKeyLister
NewRSAKeyLister returns a new RSAKeyLister.
type RSAKeyListerExpansion ¶
type RSAKeyListerExpansion interface{}
RSAKeyListerExpansion allows custom methods to be added to RSAKeyLister.
type RSAKeyNamespaceLister ¶
type RSAKeyNamespaceLister interface { // List lists all RSAKeys in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.RSAKey, err error) // Get retrieves the RSAKey from the indexer for a given namespace and name. Get(name string) (*v1alpha1.RSAKey, error) RSAKeyNamespaceListerExpansion }
RSAKeyNamespaceLister helps list and get RSAKeys.
type RSAKeyNamespaceListerExpansion ¶
type RSAKeyNamespaceListerExpansion interface{}
RSAKeyNamespaceListerExpansion allows custom methods to be added to RSAKeyNamespaceLister.
type SSHKeyLister ¶
type SSHKeyLister interface { // List lists all SSHKeys in the indexer. List(selector labels.Selector) (ret []*v1alpha1.SSHKey, err error) // SSHKeys returns an object that can list and get SSHKeys. SSHKeys(namespace string) SSHKeyNamespaceLister SSHKeyListerExpansion }
SSHKeyLister helps list SSHKeys.
func NewSSHKeyLister ¶
func NewSSHKeyLister(indexer cache.Indexer) SSHKeyLister
NewSSHKeyLister returns a new SSHKeyLister.
type SSHKeyListerExpansion ¶
type SSHKeyListerExpansion interface{}
SSHKeyListerExpansion allows custom methods to be added to SSHKeyLister.
type SSHKeyNamespaceLister ¶
type SSHKeyNamespaceLister interface { // List lists all SSHKeys in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.SSHKey, err error) // Get retrieves the SSHKey from the indexer for a given namespace and name. Get(name string) (*v1alpha1.SSHKey, error) SSHKeyNamespaceListerExpansion }
SSHKeyNamespaceLister helps list and get SSHKeys.
type SSHKeyNamespaceListerExpansion ¶
type SSHKeyNamespaceListerExpansion interface{}
SSHKeyNamespaceListerExpansion allows custom methods to be added to SSHKeyNamespaceLister.
type SecretExportLister ¶ added in v0.2.0
type SecretExportLister interface { // List lists all SecretExports in the indexer. List(selector labels.Selector) (ret []*v1alpha1.SecretExport, err error) // SecretExports returns an object that can list and get SecretExports. SecretExports(namespace string) SecretExportNamespaceLister SecretExportListerExpansion }
SecretExportLister helps list SecretExports.
func NewSecretExportLister ¶ added in v0.2.0
func NewSecretExportLister(indexer cache.Indexer) SecretExportLister
NewSecretExportLister returns a new SecretExportLister.
type SecretExportListerExpansion ¶ added in v0.2.0
type SecretExportListerExpansion interface{}
SecretExportListerExpansion allows custom methods to be added to SecretExportLister.
type SecretExportNamespaceLister ¶ added in v0.2.0
type SecretExportNamespaceLister interface { // List lists all SecretExports in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.SecretExport, err error) // Get retrieves the SecretExport from the indexer for a given namespace and name. Get(name string) (*v1alpha1.SecretExport, error) SecretExportNamespaceListerExpansion }
SecretExportNamespaceLister helps list and get SecretExports.
type SecretExportNamespaceListerExpansion ¶ added in v0.2.0
type SecretExportNamespaceListerExpansion interface{}
SecretExportNamespaceListerExpansion allows custom methods to be added to SecretExportNamespaceLister.
type SecretRequestLister ¶ added in v0.2.0
type SecretRequestLister interface { // List lists all SecretRequests in the indexer. List(selector labels.Selector) (ret []*v1alpha1.SecretRequest, err error) // SecretRequests returns an object that can list and get SecretRequests. SecretRequests(namespace string) SecretRequestNamespaceLister SecretRequestListerExpansion }
SecretRequestLister helps list SecretRequests.
func NewSecretRequestLister ¶ added in v0.2.0
func NewSecretRequestLister(indexer cache.Indexer) SecretRequestLister
NewSecretRequestLister returns a new SecretRequestLister.
type SecretRequestListerExpansion ¶ added in v0.2.0
type SecretRequestListerExpansion interface{}
SecretRequestListerExpansion allows custom methods to be added to SecretRequestLister.
type SecretRequestNamespaceLister ¶ added in v0.2.0
type SecretRequestNamespaceLister interface { // List lists all SecretRequests in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.SecretRequest, err error) // Get retrieves the SecretRequest from the indexer for a given namespace and name. Get(name string) (*v1alpha1.SecretRequest, error) SecretRequestNamespaceListerExpansion }
SecretRequestNamespaceLister helps list and get SecretRequests.
type SecretRequestNamespaceListerExpansion ¶ added in v0.2.0
type SecretRequestNamespaceListerExpansion interface{}
SecretRequestNamespaceListerExpansion allows custom methods to be added to SecretRequestNamespaceLister.