UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

28 lines (27 loc) 995 B
/** * 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. */ /** * UTC sets the guest clock to UTC on each boot. * @export * @interface V1ClockOffsetUTC */ export interface V1ClockOffsetUTC { /** * OffsetSeconds specifies an offset in seconds, relative to UTC. If set, guest changes to the clock will be kept during reboots and not reset. * @type {number} * @memberof V1ClockOffsetUTC */ offsetSeconds?: number; } export declare function V1ClockOffsetUTCFromJSON(json: any): V1ClockOffsetUTC; export declare function V1ClockOffsetUTCFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1ClockOffsetUTC; export declare function V1ClockOffsetUTCToJSON(value?: V1ClockOffsetUTC | null): any;