UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

55 lines (54 loc) 2.25 kB
/** * 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. */ import { IoK8sApiCoreV1SecretReference } from './'; /** * FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin. * @export * @interface IoK8sApiCoreV1FlexPersistentVolumeSource */ export interface IoK8sApiCoreV1FlexPersistentVolumeSource { /** * driver is the name of the driver to use for this volume. * @type {string} * @memberof IoK8sApiCoreV1FlexPersistentVolumeSource */ driver: string; /** * fsType is the Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. * @type {string} * @memberof IoK8sApiCoreV1FlexPersistentVolumeSource */ fsType?: string; /** * options is Optional: this field holds extra command options if any. * @type {{ [key: string]: string; }} * @memberof IoK8sApiCoreV1FlexPersistentVolumeSource */ options?: { [key: string]: string; }; /** * readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. * @type {boolean} * @memberof IoK8sApiCoreV1FlexPersistentVolumeSource */ readOnly?: boolean; /** * * @type {IoK8sApiCoreV1SecretReference} * @memberof IoK8sApiCoreV1FlexPersistentVolumeSource */ secretRef?: IoK8sApiCoreV1SecretReference; } export declare function IoK8sApiCoreV1FlexPersistentVolumeSourceFromJSON(json: any): IoK8sApiCoreV1FlexPersistentVolumeSource; export declare function IoK8sApiCoreV1FlexPersistentVolumeSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1FlexPersistentVolumeSource; export declare function IoK8sApiCoreV1FlexPersistentVolumeSourceToJSON(value?: IoK8sApiCoreV1FlexPersistentVolumeSource | null): any;