UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

28 lines (27 loc) 860 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. */ /** * * @export * @interface V1TPMDevice */ export interface V1TPMDevice { /** * Persistent indicates the state of the TPM device should be kept accross reboots Defaults to false * @type {boolean} * @memberof V1TPMDevice */ persistent?: boolean; } export declare function V1TPMDeviceFromJSON(json: any): V1TPMDevice; export declare function V1TPMDeviceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1TPMDevice; export declare function V1TPMDeviceToJSON(value?: V1TPMDevice | null): any;