@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.5 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: unversioned
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Local represents directly-attached storage with node affinity
* @export
* @interface IoK8sApiCoreV1LocalVolumeSource
*/
export interface IoK8sApiCoreV1LocalVolumeSource {
/**
* fsType is the filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default value is to auto-select a filesystem if unspecified.
* @type {string}
* @memberof IoK8sApiCoreV1LocalVolumeSource
*/
fsType?: string;
/**
* path of the full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).
* @type {string}
* @memberof IoK8sApiCoreV1LocalVolumeSource
*/
path: string;
}
export declare function IoK8sApiCoreV1LocalVolumeSourceFromJSON(json: any): IoK8sApiCoreV1LocalVolumeSource;
export declare function IoK8sApiCoreV1LocalVolumeSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1LocalVolumeSource;
export declare function IoK8sApiCoreV1LocalVolumeSourceToJSON(value?: IoK8sApiCoreV1LocalVolumeSource | null): any;