Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClusterGroupLister ¶
type ClusterGroupLister interface { // List lists all ClusterGroups in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha3.ClusterGroup, err error) // Get retrieves the ClusterGroup from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha3.ClusterGroup, error) ClusterGroupListerExpansion }
ClusterGroupLister helps list ClusterGroups. All objects returned here must be treated as read-only.
func NewClusterGroupLister ¶
func NewClusterGroupLister(indexer cache.Indexer) ClusterGroupLister
NewClusterGroupLister returns a new ClusterGroupLister.
type ClusterGroupListerExpansion ¶
type ClusterGroupListerExpansion interface{}
ClusterGroupListerExpansion allows custom methods to be added to ClusterGroupLister.
type GroupLister ¶ added in v1.8.0
type GroupLister interface { // List lists all Groups in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha3.Group, err error) // Groups returns an object that can list and get Groups. Groups(namespace string) GroupNamespaceLister GroupListerExpansion }
GroupLister helps list Groups. All objects returned here must be treated as read-only.
func NewGroupLister ¶ added in v1.8.0
func NewGroupLister(indexer cache.Indexer) GroupLister
NewGroupLister returns a new GroupLister.
type GroupListerExpansion ¶ added in v1.8.0
type GroupListerExpansion interface{}
GroupListerExpansion allows custom methods to be added to GroupLister.
type GroupNamespaceLister ¶ added in v1.8.0
type GroupNamespaceLister interface { // List lists all Groups in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha3.Group, err error) // Get retrieves the Group from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha3.Group, error) GroupNamespaceListerExpansion }
GroupNamespaceLister helps list and get Groups. All objects returned here must be treated as read-only.
type GroupNamespaceListerExpansion ¶ added in v1.8.0
type GroupNamespaceListerExpansion interface{}
GroupNamespaceListerExpansion allows custom methods to be added to GroupNamespaceLister.