Documentation ¶
Index ¶
- type AccountLister
- type AccountListerExpansion
- type AccountNamespaceLister
- type AccountNamespaceListerExpansion
- type ConnectionLister
- type ConnectionListerExpansion
- type ConnectionNamespaceLister
- type ConnectionNamespaceListerExpansion
- type ElasticInstanceLister
- type ElasticInstanceListerExpansion
- type ElasticInstanceNamespaceLister
- type ElasticInstanceNamespaceListerExpansion
- 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 ¶ added in v0.5.0
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 ¶ added in v0.5.0
func NewAccountLister(indexer cache.Indexer) AccountLister
NewAccountLister returns a new AccountLister.
type AccountListerExpansion ¶ added in v0.5.0
type AccountListerExpansion interface{}
AccountListerExpansion allows custom methods to be added to AccountLister.
type AccountNamespaceLister ¶ added in v0.5.0
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 ¶ added in v0.5.0
type AccountNamespaceListerExpansion interface{}
AccountNamespaceListerExpansion allows custom methods to be added to AccountNamespaceLister.
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 ElasticInstanceLister ¶
type ElasticInstanceLister interface { // List lists all ElasticInstances in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ElasticInstance, err error) // ElasticInstances returns an object that can list and get ElasticInstances. ElasticInstances(namespace string) ElasticInstanceNamespaceLister ElasticInstanceListerExpansion }
ElasticInstanceLister helps list ElasticInstances. All objects returned here must be treated as read-only.
func NewElasticInstanceLister ¶
func NewElasticInstanceLister(indexer cache.Indexer) ElasticInstanceLister
NewElasticInstanceLister returns a new ElasticInstanceLister.
type ElasticInstanceListerExpansion ¶
type ElasticInstanceListerExpansion interface{}
ElasticInstanceListerExpansion allows custom methods to be added to ElasticInstanceLister.
type ElasticInstanceNamespaceLister ¶
type ElasticInstanceNamespaceLister interface { // List lists all ElasticInstances in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ElasticInstance, err error) // Get retrieves the ElasticInstance from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ElasticInstance, error) ElasticInstanceNamespaceListerExpansion }
ElasticInstanceNamespaceLister helps list and get ElasticInstances. All objects returned here must be treated as read-only.
type ElasticInstanceNamespaceListerExpansion ¶
type ElasticInstanceNamespaceListerExpansion interface{}
ElasticInstanceNamespaceListerExpansion allows custom methods to be added to ElasticInstanceNamespaceLister.
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.