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