UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

29 lines (28 loc) 824 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. */ import { V1SEV } from './'; /** * * @export * @interface V1LaunchSecurity */ export interface V1LaunchSecurity { /** * * @type {V1SEV} * @memberof V1LaunchSecurity */ sev?: V1SEV; } export declare function V1LaunchSecurityFromJSON(json: any): V1LaunchSecurity; export declare function V1LaunchSecurityFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1LaunchSecurity; export declare function V1LaunchSecurityToJSON(value?: V1LaunchSecurity | null): any;