Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AdminAccountLister ¶
type AdminAccountLister interface { // List lists all AdminAccounts in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.AdminAccount, err error) // AdminAccounts returns an object that can list and get AdminAccounts. AdminAccounts(namespace string) AdminAccountNamespaceLister AdminAccountListerExpansion }
AdminAccountLister helps list AdminAccounts. All objects returned here must be treated as read-only.
func NewAdminAccountLister ¶
func NewAdminAccountLister(indexer cache.Indexer) AdminAccountLister
NewAdminAccountLister returns a new AdminAccountLister.
type AdminAccountListerExpansion ¶
type AdminAccountListerExpansion interface{}
AdminAccountListerExpansion allows custom methods to be added to AdminAccountLister.
type AdminAccountNamespaceLister ¶
type AdminAccountNamespaceLister interface { // List lists all AdminAccounts in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.AdminAccount, err error) // Get retrieves the AdminAccount from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.AdminAccount, error) AdminAccountNamespaceListerExpansion }
AdminAccountNamespaceLister helps list and get AdminAccounts. All objects returned here must be treated as read-only.
type AdminAccountNamespaceListerExpansion ¶
type AdminAccountNamespaceListerExpansion interface{}
AdminAccountNamespaceListerExpansion allows custom methods to be added to AdminAccountNamespaceLister.
type PolicyLister ¶
type PolicyLister interface { // List lists all Policies in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Policy, err error) // Policies returns an object that can list and get Policies. Policies(namespace string) PolicyNamespaceLister PolicyListerExpansion }
PolicyLister helps list Policies. All objects returned here must be treated as read-only.
func NewPolicyLister ¶
func NewPolicyLister(indexer cache.Indexer) PolicyLister
NewPolicyLister returns a new PolicyLister.
type PolicyListerExpansion ¶
type PolicyListerExpansion interface{}
PolicyListerExpansion allows custom methods to be added to PolicyLister.
type PolicyNamespaceLister ¶
type PolicyNamespaceLister interface { // List lists all Policies in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Policy, err error) // Get retrieves the Policy from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Policy, error) PolicyNamespaceListerExpansion }
PolicyNamespaceLister helps list and get Policies. All objects returned here must be treated as read-only.
type PolicyNamespaceListerExpansion ¶
type PolicyNamespaceListerExpansion interface{}
PolicyNamespaceListerExpansion allows custom methods to be added to PolicyNamespaceLister.