Documentation ¶
Index ¶
- type ConfigMapLister
- type ConfigMapListerExpansion
- type MultiClusterRoleBindingLister
- type MultiClusterRoleBindingListerExpansion
- type MultiClusterRoleBindingNamespaceLister
- type MultiClusterRoleBindingNamespaceListerExpansion
- type PolicyLister
- type PolicyListerExpansion
- type PolicyNamespaceLister
- type PolicyNamespaceListerExpansion
- type RoleLister
- type RoleListerExpansion
- type RoleNamespaceLister
- type RoleNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConfigMapLister ¶
type ConfigMapLister interface { // List lists all ConfigMaps in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.ConfigMap, err error) // Get retrieves the ConfigMap from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1.ConfigMap, error) ConfigMapListerExpansion }
ConfigMapLister helps list ConfigMaps. All objects returned here must be treated as read-only.
func NewConfigMapLister ¶
func NewConfigMapLister(indexer cache.Indexer) ConfigMapLister
NewConfigMapLister returns a new ConfigMapLister.
type ConfigMapListerExpansion ¶
type ConfigMapListerExpansion interface{}
ConfigMapListerExpansion allows custom methods to be added to ConfigMapLister.
type MultiClusterRoleBindingLister ¶
type MultiClusterRoleBindingLister interface { // List lists all MultiClusterRoleBindings in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.MultiClusterRoleBinding, err error) // MultiClusterRoleBindings returns an object that can list and get MultiClusterRoleBindings. MultiClusterRoleBindings(namespace string) MultiClusterRoleBindingNamespaceLister MultiClusterRoleBindingListerExpansion }
MultiClusterRoleBindingLister helps list MultiClusterRoleBindings. All objects returned here must be treated as read-only.
func NewMultiClusterRoleBindingLister ¶
func NewMultiClusterRoleBindingLister(indexer cache.Indexer) MultiClusterRoleBindingLister
NewMultiClusterRoleBindingLister returns a new MultiClusterRoleBindingLister.
type MultiClusterRoleBindingListerExpansion ¶
type MultiClusterRoleBindingListerExpansion interface{}
MultiClusterRoleBindingListerExpansion allows custom methods to be added to MultiClusterRoleBindingLister.
type MultiClusterRoleBindingNamespaceLister ¶
type MultiClusterRoleBindingNamespaceLister interface { // List lists all MultiClusterRoleBindings in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.MultiClusterRoleBinding, err error) // Get retrieves the MultiClusterRoleBinding from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.MultiClusterRoleBinding, error) MultiClusterRoleBindingNamespaceListerExpansion }
MultiClusterRoleBindingNamespaceLister helps list and get MultiClusterRoleBindings. All objects returned here must be treated as read-only.
type MultiClusterRoleBindingNamespaceListerExpansion ¶
type MultiClusterRoleBindingNamespaceListerExpansion interface{}
MultiClusterRoleBindingNamespaceListerExpansion allows custom methods to be added to MultiClusterRoleBindingNamespaceLister.
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 []*v1.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 []*v1.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) (*v1.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.
type RoleLister ¶
type RoleLister interface { // List lists all Roles in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Role, err error) // Roles returns an object that can list and get Roles. Roles(namespace string) RoleNamespaceLister RoleListerExpansion }
RoleLister helps list Roles. All objects returned here must be treated as read-only.
func NewRoleLister ¶
func NewRoleLister(indexer cache.Indexer) RoleLister
NewRoleLister returns a new RoleLister.
type RoleListerExpansion ¶
type RoleListerExpansion interface{}
RoleListerExpansion allows custom methods to be added to RoleLister.
type RoleNamespaceLister ¶
type RoleNamespaceLister interface { // List lists all Roles in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Role, err error) // Get retrieves the Role from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Role, error) RoleNamespaceListerExpansion }
RoleNamespaceLister helps list and get Roles. All objects returned here must be treated as read-only.
type RoleNamespaceListerExpansion ¶
type RoleNamespaceListerExpansion interface{}
RoleNamespaceListerExpansion allows custom methods to be added to RoleNamespaceLister.