Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RuleEndpointLister ¶
type RuleEndpointLister interface { // List lists all RuleEndpoints in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.RuleEndpoint, err error) // RuleEndpoints returns an object that can list and get RuleEndpoints. RuleEndpoints(namespace string) RuleEndpointNamespaceLister RuleEndpointListerExpansion }
RuleEndpointLister helps list RuleEndpoints. All objects returned here must be treated as read-only.
func NewRuleEndpointLister ¶
func NewRuleEndpointLister(indexer cache.Indexer) RuleEndpointLister
NewRuleEndpointLister returns a new RuleEndpointLister.
type RuleEndpointListerExpansion ¶
type RuleEndpointListerExpansion interface{}
RuleEndpointListerExpansion allows custom methods to be added to RuleEndpointLister.
type RuleEndpointNamespaceLister ¶
type RuleEndpointNamespaceLister interface { // List lists all RuleEndpoints in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.RuleEndpoint, err error) // Get retrieves the RuleEndpoint from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.RuleEndpoint, error) RuleEndpointNamespaceListerExpansion }
RuleEndpointNamespaceLister helps list and get RuleEndpoints. All objects returned here must be treated as read-only.
type RuleEndpointNamespaceListerExpansion ¶
type RuleEndpointNamespaceListerExpansion interface{}
RuleEndpointNamespaceListerExpansion allows custom methods to be added to RuleEndpointNamespaceLister.
type RuleLister ¶
type RuleLister interface { // List lists all Rules in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Rule, err error) // Rules returns an object that can list and get Rules. Rules(namespace string) RuleNamespaceLister RuleListerExpansion }
RuleLister helps list Rules. All objects returned here must be treated as read-only.
func NewRuleLister ¶
func NewRuleLister(indexer cache.Indexer) RuleLister
NewRuleLister returns a new RuleLister.
type RuleListerExpansion ¶
type RuleListerExpansion interface{}
RuleListerExpansion allows custom methods to be added to RuleLister.
type RuleNamespaceLister ¶
type RuleNamespaceLister interface { // List lists all Rules in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Rule, err error) // Get retrieves the Rule from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Rule, error) RuleNamespaceListerExpansion }
RuleNamespaceLister helps list and get Rules. All objects returned here must be treated as read-only.
type RuleNamespaceListerExpansion ¶
type RuleNamespaceListerExpansion interface{}
RuleNamespaceListerExpansion allows custom methods to be added to RuleNamespaceLister.