/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: release-1.31 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * VolumeMountStatus shows status of volume mounts. */ export declare class V1VolumeMountStatus { /** * MountPath corresponds to the original VolumeMount. */ 'mountPath': string; /** * Name corresponds to the name of the original VolumeMount. */ 'name': string; /** * ReadOnly corresponds to the original VolumeMount. */ 'readOnly'?: boolean; /** * RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result. */ 'recursiveReadOnly'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }