@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
29 lines (28 loc) • 999 B
TypeScript
/**
* 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 { V1CustomProfile } from './';
/**
*
* @export
* @interface V1VirtualMachineInstanceProfile
*/
export interface V1VirtualMachineInstanceProfile {
/**
*
* @type {V1CustomProfile}
* @memberof V1VirtualMachineInstanceProfile
*/
customProfile?: V1CustomProfile;
}
export declare function V1VirtualMachineInstanceProfileFromJSON(json: any): V1VirtualMachineInstanceProfile;
export declare function V1VirtualMachineInstanceProfileFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1VirtualMachineInstanceProfile;
export declare function V1VirtualMachineInstanceProfileToJSON(value?: V1VirtualMachineInstanceProfile | null): any;