@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 883 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.
*/
/**
*
* @export
* @interface V1Filesystem
*/
export interface V1Filesystem {
/**
* Name is the device name
* @type {string}
* @memberof V1Filesystem
*/
name: string;
/**
*
* @type {object}
* @memberof V1Filesystem
*/
virtiofs: object;
}
export declare function V1FilesystemFromJSON(json: any): V1Filesystem;
export declare function V1FilesystemFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1Filesystem;
export declare function V1FilesystemToJSON(value?: V1Filesystem | null): any;