@kubernetes/client-node
Version:
NodeJS client for kubernetes
54 lines (53 loc) • 1.73 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.
*/
import { V1SecretReference } from '../models/V1SecretReference.js';
/**
* FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.
*/
export declare class V1FlexPersistentVolumeSource {
/**
* driver is the name of the driver to use for this volume.
*/
'driver': string;
/**
* fsType is the Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.
*/
'fsType'?: string;
/**
* options is Optional: this field holds extra command options if any.
*/
'options'?: {
[]: string;
};
/**
* readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
*/
'readOnly'?: boolean;
'secretRef'?: V1SecretReference;
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();
}