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