Documentation
¶
Index ¶
- type AccountLister
- type AccountListerExpansion
- type AccountNamespaceLister
- type AccountNamespaceListerExpansion
- type BackupPolicyLister
- type BackupPolicyListerExpansion
- type BackupPolicyNamespaceLister
- type BackupPolicyNamespaceListerExpansion
- type ClusterLister
- type ClusterListerExpansion
- type ClusterNamespaceLister
- type ClusterNamespaceListerExpansion
- type ConnectionLister
- type ConnectionListerExpansion
- type ConnectionNamespaceLister
- type ConnectionNamespaceListerExpansion
- type DbClusterLister
- type DbClusterListerExpansion
- type DbClusterNamespaceLister
- type DbClusterNamespaceListerExpansion
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 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 ClusterLister ¶
type ClusterLister interface { // List lists all Clusters in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Cluster, err error) // Clusters returns an object that can list and get Clusters. Clusters(namespace string) ClusterNamespaceLister ClusterListerExpansion }
ClusterLister helps list Clusters. All objects returned here must be treated as read-only.
func NewClusterLister ¶
func NewClusterLister(indexer cache.Indexer) ClusterLister
NewClusterLister returns a new ClusterLister.
type ClusterListerExpansion ¶
type ClusterListerExpansion interface{}
ClusterListerExpansion allows custom methods to be added to ClusterLister.
type ClusterNamespaceLister ¶
type ClusterNamespaceLister interface { // List lists all Clusters in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Cluster, err error) // Get retrieves the Cluster from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Cluster, error) ClusterNamespaceListerExpansion }
ClusterNamespaceLister helps list and get Clusters. All objects returned here must be treated as read-only.
type ClusterNamespaceListerExpansion ¶
type ClusterNamespaceListerExpansion interface{}
ClusterNamespaceListerExpansion allows custom methods to be added to ClusterNamespaceLister.
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 DbClusterLister ¶
type DbClusterLister interface { // List lists all DbClusters in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DbCluster, err error) // DbClusters returns an object that can list and get DbClusters. DbClusters(namespace string) DbClusterNamespaceLister DbClusterListerExpansion }
DbClusterLister helps list DbClusters. All objects returned here must be treated as read-only.
func NewDbClusterLister ¶
func NewDbClusterLister(indexer cache.Indexer) DbClusterLister
NewDbClusterLister returns a new DbClusterLister.
type DbClusterListerExpansion ¶
type DbClusterListerExpansion interface{}
DbClusterListerExpansion allows custom methods to be added to DbClusterLister.
type DbClusterNamespaceLister ¶
type DbClusterNamespaceLister interface { // List lists all DbClusters in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DbCluster, err error) // Get retrieves the DbCluster from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.DbCluster, error) DbClusterNamespaceListerExpansion }
DbClusterNamespaceLister helps list and get DbClusters. All objects returned here must be treated as read-only.
type DbClusterNamespaceListerExpansion ¶
type DbClusterNamespaceListerExpansion interface{}
DbClusterNamespaceListerExpansion allows custom methods to be added to DbClusterNamespaceLister.