Documentation ¶
Index ¶
- type AccountGroupLister
- type AccountGroupListerExpansion
- type AccountGroupNamespaceLister
- type AccountGroupNamespaceListerExpansion
- type AccountLister
- type AccountListerExpansion
- type AccountNamespaceLister
- type AccountNamespaceListerExpansion
- type EnterpriseLister
- type EnterpriseListerExpansion
- type EnterpriseNamespaceLister
- type EnterpriseNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccountGroupLister ¶
type AccountGroupLister interface { // List lists all AccountGroups in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.AccountGroup, err error) // AccountGroups returns an object that can list and get AccountGroups. AccountGroups(namespace string) AccountGroupNamespaceLister AccountGroupListerExpansion }
AccountGroupLister helps list AccountGroups. All objects returned here must be treated as read-only.
func NewAccountGroupLister ¶
func NewAccountGroupLister(indexer cache.Indexer) AccountGroupLister
NewAccountGroupLister returns a new AccountGroupLister.
type AccountGroupListerExpansion ¶
type AccountGroupListerExpansion interface{}
AccountGroupListerExpansion allows custom methods to be added to AccountGroupLister.
type AccountGroupNamespaceLister ¶
type AccountGroupNamespaceLister interface { // List lists all AccountGroups in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.AccountGroup, err error) // Get retrieves the AccountGroup from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.AccountGroup, error) AccountGroupNamespaceListerExpansion }
AccountGroupNamespaceLister helps list and get AccountGroups. All objects returned here must be treated as read-only.
type AccountGroupNamespaceListerExpansion ¶
type AccountGroupNamespaceListerExpansion interface{}
AccountGroupNamespaceListerExpansion allows custom methods to be added to AccountGroupNamespaceLister.
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 EnterpriseLister ¶
type EnterpriseLister interface { // List lists all Enterprises in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Enterprise, err error) // Enterprises returns an object that can list and get Enterprises. Enterprises(namespace string) EnterpriseNamespaceLister EnterpriseListerExpansion }
EnterpriseLister helps list Enterprises. All objects returned here must be treated as read-only.
func NewEnterpriseLister ¶
func NewEnterpriseLister(indexer cache.Indexer) EnterpriseLister
NewEnterpriseLister returns a new EnterpriseLister.
type EnterpriseListerExpansion ¶
type EnterpriseListerExpansion interface{}
EnterpriseListerExpansion allows custom methods to be added to EnterpriseLister.
type EnterpriseNamespaceLister ¶
type EnterpriseNamespaceLister interface { // List lists all Enterprises in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Enterprise, err error) // Get retrieves the Enterprise from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Enterprise, error) EnterpriseNamespaceListerExpansion }
EnterpriseNamespaceLister helps list and get Enterprises. All objects returned here must be treated as read-only.
type EnterpriseNamespaceListerExpansion ¶
type EnterpriseNamespaceListerExpansion interface{}
EnterpriseNamespaceListerExpansion allows custom methods to be added to EnterpriseNamespaceLister.