UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

41 lines (40 loc) 1.15 kB
/** * KubeVirt API * This is KubeVirt API an add-on for Kubernetes. * * The version of the OpenAPI document: 1.0.0 * Contact: kubevirt-dev@googlegroups.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { V1ClockOffsetUTC, V1Timer } from './'; /** * Represents the clock and timers of a vmi. * @export * @interface V1Clock */ export interface V1Clock { /** * * @type {V1Timer} * @memberof V1Clock */ timer?: V1Timer; /** * Timezone sets the guest clock to the specified timezone. Zone name follows the TZ environment variable format (e.g. 'America/New_York'). * @type {string} * @memberof V1Clock */ timezone?: string; /** * * @type {V1ClockOffsetUTC} * @memberof V1Clock */ utc?: V1ClockOffsetUTC; } export declare function V1ClockFromJSON(json: any): V1Clock; export declare function V1ClockFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1Clock; export declare function V1ClockToJSON(value?: V1Clock | null): any;