2021-12-07 13:18:08 -05:00

66 lines
2.0 KiB
TypeScript

/**
* 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;
}[];
}