@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
29 lines (28 loc) • 1.22 kB
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 { V1VirtualMachineInstanceFileSystem } from './';
/**
* VirtualMachineInstanceFileSystemInfo represents information regarding single guest os filesystem
* @export
* @interface V1VirtualMachineInstanceFileSystemInfo
*/
export interface V1VirtualMachineInstanceFileSystemInfo {
/**
*
* @type {Array<V1VirtualMachineInstanceFileSystem>}
* @memberof V1VirtualMachineInstanceFileSystemInfo
*/
disks: Array<V1VirtualMachineInstanceFileSystem>;
}
export declare function V1VirtualMachineInstanceFileSystemInfoFromJSON(json: any): V1VirtualMachineInstanceFileSystemInfo;
export declare function V1VirtualMachineInstanceFileSystemInfoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1VirtualMachineInstanceFileSystemInfo;
export declare function V1VirtualMachineInstanceFileSystemInfoToJSON(value?: V1VirtualMachineInstanceFileSystemInfo | null): any;