/**
* The NutanixStorageClass model module.
* @module Ntnx/NutanixStorageClass
* @version 4.3.1
* @class NutanixStorageClass
*
* @param { string } clusterRef Nutanix Cluster Reference.
*/
export default class NutanixStorageClass {
/**
* Constructs a NutanixStorageClass from a plain JavaScript object, optionally creating a new instance.
* Copies all relevant properties from data to obj if supplied or a new instance if not.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @param {module:Ntnx/NutanixStorageClass} obj Optional instance to populate.
* @param callFromChild {Boolean} Flag to recognise calling instance
* @return {module:Ntnx/NutanixStorageClass} The populated NutanixStorageClass instance.
*/
static constructFromObject(data: any, obj?: any, callFromChild?: boolean): any;
/**
* Converts a given snake_case string to camelCase.
* @param {string} snakeStr - The input string in snake_case format.
* @returns {string} - The converted string in camelCase format.
*/
static snakeToCamel(snakeStr: string): string;
/**
* Constructs a new NutanixStorageClass.
* @alias module:Ntnx/NutanixStorageClass
*
* @param { string } clusterRef Nutanix Cluster Reference.
*/
constructor(clusterRef: string);
clusterRef: string;
$objectType: string;
/** @type {object} */
$reserved: object;
/** @type {object} */
$unknownFields: object;
/**
* Returns Nutanix Cluster Reference.
* @return {string}
*/
getClusterRef(): string;
/**
* Sets Nutanix Cluster Reference.
* @param {string} clusterRef Nutanix Cluster Reference.
*/
setClusterRef(clusterRef: string): void;
/**
* @return {boolean}
*/
getIsFlashMode(): boolean;
/**
* @param {boolean} isFlashMode
*/
setIsFlashMode(isFlashMode: boolean): void;
isFlashMode: boolean;
/**
* Returns File system of the storage volume.
* @return {string}
*/
getFileSystem(): string;
/**
* Sets File system of the storage volume.
* @param {string} fileSystem File system of the storage volume.
*/
setFileSystem(fileSystem: string): void;
fileSystem: string;
/**
* Returns Name of the storage container to be used.
* @return {string}
*/
getStorageContainer(): string;
/**
* Sets Name of the storage container to be used.
* @param {string} storageContainer Name of the storage container to be used.
*/
setStorageContainer(storageContainer: string): void;
storageContainer: string;
/**
* Returns Indicates if the storage class uses hypervisor-attached mode in CSI 3.x.
* @return {boolean}
*/
getIsHypervisorAttached(): boolean;
/**
* Sets Indicates if the storage class uses hypervisor-attached mode in CSI 3.x.
* @param {boolean} isHypervisorAttached Indicates if the storage class uses hypervisor-attached mode in CSI 3.x.
*/
setIsHypervisorAttached(isHypervisorAttached: boolean): void;
isHypervisorAttached: boolean;
get$Reserved(): any;
get$ObjectType(): string;
get$UnknownFields(): any;
toJson(forMutation: any): any;
validate(scope: any, properties: any, ...args: any[]): Promise;
validateProperty(scope: any, property: any): ValidationError;
#private;
}
import ValidationError from "../../../validation/ValidationError";