Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FloatingIPLister ¶
type FloatingIPLister interface { // List lists all FloatingIPs in the indexer. List(selector labels.Selector) (ret []*v1alpha1.FloatingIP, err error) // Get retrieves the FloatingIP from the index for a given name. Get(name string) (*v1alpha1.FloatingIP, error) FloatingIPListerExpansion }
FloatingIPLister helps list FloatingIPs.
func NewFloatingIPLister ¶
func NewFloatingIPLister(indexer cache.Indexer) FloatingIPLister
NewFloatingIPLister returns a new FloatingIPLister.
type FloatingIPListerExpansion ¶
type FloatingIPListerExpansion interface{}
FloatingIPListerExpansion allows custom methods to be added to FloatingIPLister.
type PoolLister ¶
type PoolLister interface { // List lists all Pools in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Pool, err error) // Pools returns an object that can list and get Pools. Pools(namespace string) PoolNamespaceLister PoolListerExpansion }
PoolLister helps list Pools.
func NewPoolLister ¶
func NewPoolLister(indexer cache.Indexer) PoolLister
NewPoolLister returns a new PoolLister.
type PoolListerExpansion ¶
type PoolListerExpansion interface{}
PoolListerExpansion allows custom methods to be added to PoolLister.
type PoolNamespaceLister ¶
type PoolNamespaceLister interface { // List lists all Pools in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Pool, err error) // Get retrieves the Pool from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Pool, error) PoolNamespaceListerExpansion }
PoolNamespaceLister helps list and get Pools.
type PoolNamespaceListerExpansion ¶
type PoolNamespaceListerExpansion interface{}
PoolNamespaceListerExpansion allows custom methods to be added to PoolNamespaceLister.
Click to show internal directories.
Click to hide internal directories.