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