@kubernetes/client-node
Version:
NodeJS client for kubernetes
50 lines (49 loc) • 1.45 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: v1.32.0
*
*
* 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 readonly discriminator: string | undefined;
static readonly mapping: {
[]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}