UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

40 lines (39 loc) 1.62 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. */ /** * PortworxVolumeSource represents a Portworx volume resource. * @export * @interface IoK8sApiCoreV1PortworxVolumeSource */ export interface IoK8sApiCoreV1PortworxVolumeSource { /** * fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. * @type {string} * @memberof IoK8sApiCoreV1PortworxVolumeSource */ fsType?: string; /** * readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. * @type {boolean} * @memberof IoK8sApiCoreV1PortworxVolumeSource */ readOnly?: boolean; /** * volumeID uniquely identifies a Portworx volume * @type {string} * @memberof IoK8sApiCoreV1PortworxVolumeSource */ volumeID: string; } export declare function IoK8sApiCoreV1PortworxVolumeSourceFromJSON(json: any): IoK8sApiCoreV1PortworxVolumeSource; export declare function IoK8sApiCoreV1PortworxVolumeSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1PortworxVolumeSource; export declare function IoK8sApiCoreV1PortworxVolumeSourceToJSON(value?: IoK8sApiCoreV1PortworxVolumeSource | null): any;