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