Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddLister ¶
type AddLister interface { // List lists all Adds in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Add, err error) // Adds returns an object that can list and get Adds. Adds(namespace string) AddNamespaceLister AddListerExpansion }
AddLister helps list Adds. All objects returned here must be treated as read-only.
func NewAddLister ¶
NewAddLister returns a new AddLister.
type AddListerExpansion ¶
type AddListerExpansion interface{}
AddListerExpansion allows custom methods to be added to AddLister.
type AddNamespaceLister ¶
type AddNamespaceLister interface { // List lists all Adds in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Add, err error) // Get retrieves the Add from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Add, error) AddNamespaceListerExpansion }
AddNamespaceLister helps list and get Adds. All objects returned here must be treated as read-only.
type AddNamespaceListerExpansion ¶
type AddNamespaceListerExpansion interface{}
AddNamespaceListerExpansion allows custom methods to be added to AddNamespaceLister.
type SubtractLister ¶
type SubtractLister interface { // List lists all Subtracts in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Subtract, err error) // Subtracts returns an object that can list and get Subtracts. Subtracts(namespace string) SubtractNamespaceLister SubtractListerExpansion }
SubtractLister helps list Subtracts. All objects returned here must be treated as read-only.
func NewSubtractLister ¶
func NewSubtractLister(indexer cache.Indexer) SubtractLister
NewSubtractLister returns a new SubtractLister.
type SubtractListerExpansion ¶
type SubtractListerExpansion interface{}
SubtractListerExpansion allows custom methods to be added to SubtractLister.
type SubtractNamespaceLister ¶
type SubtractNamespaceLister interface { // List lists all Subtracts in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Subtract, err error) // Get retrieves the Subtract from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Subtract, error) SubtractNamespaceListerExpansion }
SubtractNamespaceLister helps list and get Subtracts. All objects returned here must be treated as read-only.
type SubtractNamespaceListerExpansion ¶
type SubtractNamespaceListerExpansion interface{}
SubtractNamespaceListerExpansion allows custom methods to be added to SubtractNamespaceLister.