@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.55 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: unversioned
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time. How often to update the EventSeries is up to the event reporters. The default event reporter in "k8s.io/client-go/tools/events/event_broadcaster.go" shows how this struct is updated on heartbeats and can guide customized reporter implementations.
* @export
* @interface IoK8sApiEventsV1EventSeries
*/
export interface IoK8sApiEventsV1EventSeries {
/**
* count is the number of occurrences in this series up to the last heartbeat time.
* @type {number}
* @memberof IoK8sApiEventsV1EventSeries
*/
count: number;
/**
* MicroTime is version of Time with microsecond level precision.
* @type {string}
* @memberof IoK8sApiEventsV1EventSeries
*/
lastObservedTime: string;
}
export declare function IoK8sApiEventsV1EventSeriesFromJSON(json: any): IoK8sApiEventsV1EventSeries;
export declare function IoK8sApiEventsV1EventSeriesFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiEventsV1EventSeries;
export declare function IoK8sApiEventsV1EventSeriesToJSON(value?: IoK8sApiEventsV1EventSeries | null): any;