UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

34 lines (33 loc) 1.02 kB
/** * 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. */ /** * List of commands that QEMU guest agent supports * @export * @interface V1GuestAgentCommandInfo */ export interface V1GuestAgentCommandInfo { /** * * @type {boolean} * @memberof V1GuestAgentCommandInfo */ enabled?: boolean; /** * * @type {string} * @memberof V1GuestAgentCommandInfo */ name: string; } export declare function V1GuestAgentCommandInfoFromJSON(json: any): V1GuestAgentCommandInfo; export declare function V1GuestAgentCommandInfoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1GuestAgentCommandInfo; export declare function V1GuestAgentCommandInfoToJSON(value?: V1GuestAgentCommandInfo | null): any;