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