Documentation
¶
Index ¶
- type DashboardLister
- type DashboardListerExpansion
- type DashboardNamespaceLister
- type DashboardNamespaceListerExpansion
- type JsonLister
- type JsonListerExpansion
- type JsonNamespaceLister
- type JsonNamespaceListerExpansion
- type ListLister
- type ListListerExpansion
- type ListNamespaceLister
- type ListNamespaceListerExpansion
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.
type JsonLister ¶
type JsonLister interface { // List lists all Jsons in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Json, err error) // Jsons returns an object that can list and get Jsons. Jsons(namespace string) JsonNamespaceLister JsonListerExpansion }
JsonLister helps list Jsons. All objects returned here must be treated as read-only.
func NewJsonLister ¶
func NewJsonLister(indexer cache.Indexer) JsonLister
NewJsonLister returns a new JsonLister.
type JsonListerExpansion ¶
type JsonListerExpansion interface{}
JsonListerExpansion allows custom methods to be added to JsonLister.
type JsonNamespaceLister ¶
type JsonNamespaceLister interface { // List lists all Jsons in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Json, err error) // Get retrieves the Json from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Json, error) JsonNamespaceListerExpansion }
JsonNamespaceLister helps list and get Jsons. All objects returned here must be treated as read-only.
type JsonNamespaceListerExpansion ¶
type JsonNamespaceListerExpansion interface{}
JsonNamespaceListerExpansion allows custom methods to be added to JsonNamespaceLister.
type ListLister ¶
type ListLister interface { // List lists all Lists in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.List, err error) // Lists returns an object that can list and get Lists. Lists(namespace string) ListNamespaceLister ListListerExpansion }
ListLister helps list Lists. All objects returned here must be treated as read-only.
func NewListLister ¶
func NewListLister(indexer cache.Indexer) ListLister
NewListLister returns a new ListLister.
type ListListerExpansion ¶
type ListListerExpansion interface{}
ListListerExpansion allows custom methods to be added to ListLister.
type ListNamespaceLister ¶
type ListNamespaceLister interface { // List lists all Lists in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.List, err error) // Get retrieves the List from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.List, error) ListNamespaceListerExpansion }
ListNamespaceLister helps list and get Lists. All objects returned here must be treated as read-only.
type ListNamespaceListerExpansion ¶
type ListNamespaceListerExpansion interface{}
ListNamespaceListerExpansion allows custom methods to be added to ListNamespaceLister.