UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

40 lines (39 loc) 1.7 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 an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling. * @export * @interface IoK8sApiCoreV1NFSVolumeSource */ export interface IoK8sApiCoreV1NFSVolumeSource { /** * path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs * @type {string} * @memberof IoK8sApiCoreV1NFSVolumeSource */ path: string; /** * readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs * @type {boolean} * @memberof IoK8sApiCoreV1NFSVolumeSource */ readOnly?: boolean; /** * server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs * @type {string} * @memberof IoK8sApiCoreV1NFSVolumeSource */ server: string; } export declare function IoK8sApiCoreV1NFSVolumeSourceFromJSON(json: any): IoK8sApiCoreV1NFSVolumeSource; export declare function IoK8sApiCoreV1NFSVolumeSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1NFSVolumeSource; export declare function IoK8sApiCoreV1NFSVolumeSourceToJSON(value?: IoK8sApiCoreV1NFSVolumeSource | null): any;