Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TeamLister ¶
type TeamLister interface { // List lists all Teams in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Team, err error) // Teams returns an object that can list and get Teams. Teams(namespace string) TeamNamespaceLister TeamListerExpansion }
TeamLister helps list Teams. All objects returned here must be treated as read-only.
func NewTeamLister ¶
func NewTeamLister(indexer cache.Indexer) TeamLister
NewTeamLister returns a new TeamLister.
type TeamListerExpansion ¶
type TeamListerExpansion interface{}
TeamListerExpansion allows custom methods to be added to TeamLister.
type TeamNamespaceLister ¶
type TeamNamespaceLister interface { // List lists all Teams in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Team, err error) // Get retrieves the Team from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Team, error) TeamNamespaceListerExpansion }
TeamNamespaceLister helps list and get Teams. All objects returned here must be treated as read-only.
type TeamNamespaceListerExpansion ¶
type TeamNamespaceListerExpansion interface{}
TeamNamespaceListerExpansion allows custom methods to be added to TeamNamespaceLister.
Click to show internal directories.
Click to hide internal directories.