UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

28 lines (27 loc) 990 B
/** * 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. */ /** * SleepAction describes a "sleep" action. * @export * @interface IoK8sApiCoreV1SleepAction */ export interface IoK8sApiCoreV1SleepAction { /** * Seconds is the number of seconds to sleep. * @type {number} * @memberof IoK8sApiCoreV1SleepAction */ seconds: number; } export declare function IoK8sApiCoreV1SleepActionFromJSON(json: any): IoK8sApiCoreV1SleepAction; export declare function IoK8sApiCoreV1SleepActionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1SleepAction; export declare function IoK8sApiCoreV1SleepActionToJSON(value?: IoK8sApiCoreV1SleepAction | null): any;