Documentation ¶
Index ¶
- type AccountLister
- type AccountListerExpansion
- type AccountNamespaceLister
- type AccountNamespaceListerExpansion
- type AuditLogConfigLister
- type AuditLogConfigListerExpansion
- type AuditLogConfigNamespaceLister
- type AuditLogConfigNamespaceListerExpansion
- type BackupPolicyLister
- type BackupPolicyListerExpansion
- type BackupPolicyNamespaceLister
- type BackupPolicyNamespaceListerExpansion
- type ConnectionLister
- type ConnectionListerExpansion
- type ConnectionNamespaceLister
- type ConnectionNamespaceListerExpansion
- type InstanceLister
- type InstanceListerExpansion
- type InstanceNamespaceLister
- type InstanceNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccountLister ¶
type AccountLister interface { // List lists all Accounts in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Account, err error) // Accounts returns an object that can list and get Accounts. Accounts(namespace string) AccountNamespaceLister AccountListerExpansion }
AccountLister helps list Accounts. All objects returned here must be treated as read-only.
func NewAccountLister ¶
func NewAccountLister(indexer cache.Indexer) AccountLister
NewAccountLister returns a new AccountLister.
type AccountListerExpansion ¶
type AccountListerExpansion interface{}
AccountListerExpansion allows custom methods to be added to AccountLister.
type AccountNamespaceLister ¶
type AccountNamespaceLister interface { // List lists all Accounts in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Account, err error) // Get retrieves the Account from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Account, error) AccountNamespaceListerExpansion }
AccountNamespaceLister helps list and get Accounts. All objects returned here must be treated as read-only.
type AccountNamespaceListerExpansion ¶
type AccountNamespaceListerExpansion interface{}
AccountNamespaceListerExpansion allows custom methods to be added to AccountNamespaceLister.
type AuditLogConfigLister ¶ added in v0.4.0
type AuditLogConfigLister interface { // List lists all AuditLogConfigs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.AuditLogConfig, err error) // AuditLogConfigs returns an object that can list and get AuditLogConfigs. AuditLogConfigs(namespace string) AuditLogConfigNamespaceLister AuditLogConfigListerExpansion }
AuditLogConfigLister helps list AuditLogConfigs. All objects returned here must be treated as read-only.
func NewAuditLogConfigLister ¶ added in v0.4.0
func NewAuditLogConfigLister(indexer cache.Indexer) AuditLogConfigLister
NewAuditLogConfigLister returns a new AuditLogConfigLister.
type AuditLogConfigListerExpansion ¶ added in v0.4.0
type AuditLogConfigListerExpansion interface{}
AuditLogConfigListerExpansion allows custom methods to be added to AuditLogConfigLister.
type AuditLogConfigNamespaceLister ¶ added in v0.4.0
type AuditLogConfigNamespaceLister interface { // List lists all AuditLogConfigs in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.AuditLogConfig, err error) // Get retrieves the AuditLogConfig from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.AuditLogConfig, error) AuditLogConfigNamespaceListerExpansion }
AuditLogConfigNamespaceLister helps list and get AuditLogConfigs. All objects returned here must be treated as read-only.
type AuditLogConfigNamespaceListerExpansion ¶ added in v0.4.0
type AuditLogConfigNamespaceListerExpansion interface{}
AuditLogConfigNamespaceListerExpansion allows custom methods to be added to AuditLogConfigNamespaceLister.
type BackupPolicyLister ¶
type BackupPolicyLister interface { // List lists all BackupPolicies in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.BackupPolicy, err error) // BackupPolicies returns an object that can list and get BackupPolicies. BackupPolicies(namespace string) BackupPolicyNamespaceLister BackupPolicyListerExpansion }
BackupPolicyLister helps list BackupPolicies. All objects returned here must be treated as read-only.
func NewBackupPolicyLister ¶
func NewBackupPolicyLister(indexer cache.Indexer) BackupPolicyLister
NewBackupPolicyLister returns a new BackupPolicyLister.
type BackupPolicyListerExpansion ¶
type BackupPolicyListerExpansion interface{}
BackupPolicyListerExpansion allows custom methods to be added to BackupPolicyLister.
type BackupPolicyNamespaceLister ¶
type BackupPolicyNamespaceLister interface { // List lists all BackupPolicies in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.BackupPolicy, err error) // Get retrieves the BackupPolicy from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.BackupPolicy, error) BackupPolicyNamespaceListerExpansion }
BackupPolicyNamespaceLister helps list and get BackupPolicies. All objects returned here must be treated as read-only.
type BackupPolicyNamespaceListerExpansion ¶
type BackupPolicyNamespaceListerExpansion interface{}
BackupPolicyNamespaceListerExpansion allows custom methods to be added to BackupPolicyNamespaceLister.
type ConnectionLister ¶
type ConnectionLister interface { // List lists all Connections in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Connection, err error) // Connections returns an object that can list and get Connections. Connections(namespace string) ConnectionNamespaceLister ConnectionListerExpansion }
ConnectionLister helps list Connections. All objects returned here must be treated as read-only.
func NewConnectionLister ¶
func NewConnectionLister(indexer cache.Indexer) ConnectionLister
NewConnectionLister returns a new ConnectionLister.
type ConnectionListerExpansion ¶
type ConnectionListerExpansion interface{}
ConnectionListerExpansion allows custom methods to be added to ConnectionLister.
type ConnectionNamespaceLister ¶
type ConnectionNamespaceLister interface { // List lists all Connections in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Connection, err error) // Get retrieves the Connection from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Connection, error) ConnectionNamespaceListerExpansion }
ConnectionNamespaceLister helps list and get Connections. All objects returned here must be treated as read-only.
type ConnectionNamespaceListerExpansion ¶
type ConnectionNamespaceListerExpansion interface{}
ConnectionNamespaceListerExpansion allows custom methods to be added to ConnectionNamespaceLister.
type InstanceLister ¶
type InstanceLister interface { // List lists all Instances in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Instance, err error) // Instances returns an object that can list and get Instances. Instances(namespace string) InstanceNamespaceLister InstanceListerExpansion }
InstanceLister helps list Instances. All objects returned here must be treated as read-only.
func NewInstanceLister ¶
func NewInstanceLister(indexer cache.Indexer) InstanceLister
NewInstanceLister returns a new InstanceLister.
type InstanceListerExpansion ¶
type InstanceListerExpansion interface{}
InstanceListerExpansion allows custom methods to be added to InstanceLister.
type InstanceNamespaceLister ¶
type InstanceNamespaceLister interface { // List lists all Instances in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Instance, err error) // Get retrieves the Instance from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Instance, error) InstanceNamespaceListerExpansion }
InstanceNamespaceLister helps list and get Instances. All objects returned here must be treated as read-only.
type InstanceNamespaceListerExpansion ¶
type InstanceNamespaceListerExpansion interface{}
InstanceNamespaceListerExpansion allows custom methods to be added to InstanceNamespaceLister.