UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

46 lines (45 loc) 1.95 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. */ /** * Represents a vSphere volume resource. * @export * @interface IoK8sApiCoreV1VsphereVirtualDiskVolumeSource */ export interface IoK8sApiCoreV1VsphereVirtualDiskVolumeSource { /** * fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. * @type {string} * @memberof IoK8sApiCoreV1VsphereVirtualDiskVolumeSource */ fsType?: string; /** * storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. * @type {string} * @memberof IoK8sApiCoreV1VsphereVirtualDiskVolumeSource */ storagePolicyID?: string; /** * storagePolicyName is the storage Policy Based Management (SPBM) profile name. * @type {string} * @memberof IoK8sApiCoreV1VsphereVirtualDiskVolumeSource */ storagePolicyName?: string; /** * volumePath is the path that identifies vSphere volume vmdk * @type {string} * @memberof IoK8sApiCoreV1VsphereVirtualDiskVolumeSource */ volumePath: string; } export declare function IoK8sApiCoreV1VsphereVirtualDiskVolumeSourceFromJSON(json: any): IoK8sApiCoreV1VsphereVirtualDiskVolumeSource; export declare function IoK8sApiCoreV1VsphereVirtualDiskVolumeSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1VsphereVirtualDiskVolumeSource; export declare function IoK8sApiCoreV1VsphereVirtualDiskVolumeSourceToJSON(value?: IoK8sApiCoreV1VsphereVirtualDiskVolumeSource | null): any;