Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DataSetLister ¶
type DataSetLister interface { // List lists all DataSets in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DataSet, err error) // DataSets returns an object that can list and get DataSets. DataSets(namespace string) DataSetNamespaceLister DataSetListerExpansion }
DataSetLister helps list DataSets. All objects returned here must be treated as read-only.
func NewDataSetLister ¶
func NewDataSetLister(indexer cache.Indexer) DataSetLister
NewDataSetLister returns a new DataSetLister.
type DataSetListerExpansion ¶
type DataSetListerExpansion interface{}
DataSetListerExpansion allows custom methods to be added to DataSetLister.
type DataSetNamespaceLister ¶
type DataSetNamespaceLister interface { // List lists all DataSets in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DataSet, err error) // Get retrieves the DataSet from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.DataSet, error) DataSetNamespaceListerExpansion }
DataSetNamespaceLister helps list and get DataSets. All objects returned here must be treated as read-only.
type DataSetNamespaceListerExpansion ¶
type DataSetNamespaceListerExpansion interface{}
DataSetNamespaceListerExpansion allows custom methods to be added to DataSetNamespaceLister.
type RevisionLister ¶
type RevisionLister interface { // List lists all Revisions in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Revision, err error) // Revisions returns an object that can list and get Revisions. Revisions(namespace string) RevisionNamespaceLister RevisionListerExpansion }
RevisionLister helps list Revisions. All objects returned here must be treated as read-only.
func NewRevisionLister ¶
func NewRevisionLister(indexer cache.Indexer) RevisionLister
NewRevisionLister returns a new RevisionLister.
type RevisionListerExpansion ¶
type RevisionListerExpansion interface{}
RevisionListerExpansion allows custom methods to be added to RevisionLister.
type RevisionNamespaceLister ¶
type RevisionNamespaceLister interface { // List lists all Revisions in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Revision, err error) // Get retrieves the Revision from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Revision, error) RevisionNamespaceListerExpansion }
RevisionNamespaceLister helps list and get Revisions. All objects returned here must be treated as read-only.
type RevisionNamespaceListerExpansion ¶
type RevisionNamespaceListerExpansion interface{}
RevisionNamespaceListerExpansion allows custom methods to be added to RevisionNamespaceLister.