Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DataDownloadLister ¶
type DataDownloadLister interface { // List lists all DataDownloads in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v2alpha1.DataDownload, err error) // DataDownloads returns an object that can list and get DataDownloads. DataDownloads(namespace string) DataDownloadNamespaceLister DataDownloadListerExpansion }
DataDownloadLister helps list DataDownloads. All objects returned here must be treated as read-only.
func NewDataDownloadLister ¶
func NewDataDownloadLister(indexer cache.Indexer) DataDownloadLister
NewDataDownloadLister returns a new DataDownloadLister.
type DataDownloadListerExpansion ¶
type DataDownloadListerExpansion interface{}
DataDownloadListerExpansion allows custom methods to be added to DataDownloadLister.
type DataDownloadNamespaceLister ¶
type DataDownloadNamespaceLister interface { // List lists all DataDownloads in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v2alpha1.DataDownload, err error) // Get retrieves the DataDownload from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v2alpha1.DataDownload, error) DataDownloadNamespaceListerExpansion }
DataDownloadNamespaceLister helps list and get DataDownloads. All objects returned here must be treated as read-only.
type DataDownloadNamespaceListerExpansion ¶
type DataDownloadNamespaceListerExpansion interface{}
DataDownloadNamespaceListerExpansion allows custom methods to be added to DataDownloadNamespaceLister.
type DataUploadLister ¶
type DataUploadLister interface { // List lists all DataUploads in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v2alpha1.DataUpload, err error) // DataUploads returns an object that can list and get DataUploads. DataUploads(namespace string) DataUploadNamespaceLister DataUploadListerExpansion }
DataUploadLister helps list DataUploads. All objects returned here must be treated as read-only.
func NewDataUploadLister ¶
func NewDataUploadLister(indexer cache.Indexer) DataUploadLister
NewDataUploadLister returns a new DataUploadLister.
type DataUploadListerExpansion ¶
type DataUploadListerExpansion interface{}
DataUploadListerExpansion allows custom methods to be added to DataUploadLister.
type DataUploadNamespaceLister ¶
type DataUploadNamespaceLister interface { // List lists all DataUploads in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v2alpha1.DataUpload, err error) // Get retrieves the DataUpload from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v2alpha1.DataUpload, error) DataUploadNamespaceListerExpansion }
DataUploadNamespaceLister helps list and get DataUploads. All objects returned here must be treated as read-only.
type DataUploadNamespaceListerExpansion ¶
type DataUploadNamespaceListerExpansion interface{}
DataUploadNamespaceListerExpansion allows custom methods to be added to DataUploadNamespaceLister.