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
65
node_modules/@kubernetes/client-node/dist/gen/model/v1ScaleIOVolumeSource.d.ts
generated
vendored
Normal file
65
node_modules/@kubernetes/client-node/dist/gen/model/v1ScaleIOVolumeSource.d.ts
generated
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
/**
|
||||
* 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';
|
||||
/**
|
||||
* ScaleIOVolumeSource represents a persistent ScaleIO volume
|
||||
*/
|
||||
export declare class V1ScaleIOVolumeSource {
|
||||
/**
|
||||
* Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".
|
||||
*/
|
||||
'fsType'?: string;
|
||||
/**
|
||||
* The host address of the ScaleIO API Gateway.
|
||||
*/
|
||||
'gateway': string;
|
||||
/**
|
||||
* The name of the ScaleIO Protection Domain for the configured storage.
|
||||
*/
|
||||
'protectionDomain'?: string;
|
||||
/**
|
||||
* Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
|
||||
*/
|
||||
'readOnly'?: boolean;
|
||||
'secretRef': V1LocalObjectReference;
|
||||
/**
|
||||
* Flag to enable/disable SSL communication with Gateway, default false
|
||||
*/
|
||||
'sslEnabled'?: boolean;
|
||||
/**
|
||||
* Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.
|
||||
*/
|
||||
'storageMode'?: string;
|
||||
/**
|
||||
* The ScaleIO Storage Pool associated with the protection domain.
|
||||
*/
|
||||
'storagePool'?: string;
|
||||
/**
|
||||
* The name of the storage system as configured in ScaleIO.
|
||||
*/
|
||||
'system': string;
|
||||
/**
|
||||
* The name of a volume already created in the ScaleIO system that is associated with this volume source.
|
||||
*/
|
||||
'volumeName'?: 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