@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.53 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.
*/
/**
* Represents a Photon Controller persistent disk resource.
* @export
* @interface IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
*/
export interface IoK8sApiCoreV1PhotonPersistentDiskVolumeSource {
/**
* fsType is the 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 IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
*/
fsType?: string;
/**
* pdID is the ID that identifies Photon Controller persistent disk
* @type {string}
* @memberof IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
*/
pdID: string;
}
export declare function IoK8sApiCoreV1PhotonPersistentDiskVolumeSourceFromJSON(json: any): IoK8sApiCoreV1PhotonPersistentDiskVolumeSource;
export declare function IoK8sApiCoreV1PhotonPersistentDiskVolumeSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1PhotonPersistentDiskVolumeSource;
export declare function IoK8sApiCoreV1PhotonPersistentDiskVolumeSourceToJSON(value?: IoK8sApiCoreV1PhotonPersistentDiskVolumeSource | null): any;