Add node modules and compiled JavaScript from main (#54)
Co-authored-by: Oliver King <oking3@uncc.edu>
This commit is contained in:
committed by
GitHub
parent
4a983766a0
commit
52d71d28bd
47
node_modules/@kubernetes/client-node/dist/gen/model/v1CSIVolumeSource.d.ts
generated
vendored
Normal file
47
node_modules/@kubernetes/client-node/dist/gen/model/v1CSIVolumeSource.d.ts
generated
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
/**
|
||||
* Kubernetes
|
||||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
||||
*
|
||||
* The version of the OpenAPI document: v1.22.2
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { V1LocalObjectReference } from './v1LocalObjectReference';
|
||||
/**
|
||||
* Represents a source location of a volume to mount, managed by an external CSI driver
|
||||
*/
|
||||
export declare class V1CSIVolumeSource {
|
||||
/**
|
||||
* Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.
|
||||
*/
|
||||
'driver': string;
|
||||
/**
|
||||
* Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.
|
||||
*/
|
||||
'fsType'?: string;
|
||||
'nodePublishSecretRef'?: V1LocalObjectReference;
|
||||
/**
|
||||
* Specifies a read-only configuration for the volume. Defaults to false (read/write).
|
||||
*/
|
||||
'readOnly'?: boolean;
|
||||
/**
|
||||
* VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver\'s documentation for supported values.
|
||||
*/
|
||||
'volumeAttributes'?: {
|
||||
[key: string]: string;
|
||||
};
|
||||
static discriminator: string | undefined;
|
||||
static attributeTypeMap: Array<{
|
||||
name: string;
|
||||
baseName: string;
|
||||
type: string;
|
||||
}>;
|
||||
static getAttributeTypeMap(): {
|
||||
name: string;
|
||||
baseName: string;
|
||||
type: string;
|
||||
}[];
|
||||
}
|
Reference in New Issue
Block a user