UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

34 lines (33 loc) 918 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 V1CustomProfile */ export interface V1CustomProfile { /** * * @type {string} * @memberof V1CustomProfile */ localhostProfile?: string; /** * * @type {boolean} * @memberof V1CustomProfile */ runtimeDefaultProfile?: boolean; } export declare function V1CustomProfileFromJSON(json: any): V1CustomProfile; export declare function V1CustomProfileFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1CustomProfile; export declare function V1CustomProfileToJSON(value?: V1CustomProfile | null): any;