/**
* The ExportScope model module.
* @module Ntnx/ExportScope
* @version 4.4.1
* @class ExportScope
*/
export default class ExportScope {
/**
* Constructs a ExportScope 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/ExportScope} obj Optional instance to populate.
* @param callFromChild {Boolean} Flag to recognise calling instance
* @return {module:Ntnx/ExportScope} The populated ExportScope 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;
$objectType: string;
/** @type {object} */
$reserved: object;
/** @type {object} */
$unknownFields: object;
/**
* Returns UUID of the PE or PC cluster.
* @return {string}
*/
getUuid(): string;
/**
* Sets UUID of the PE or PC cluster.
* @param {string} uuid UUID of the PE or PC cluster.
*/
setUuid(uuid: string): void;
uuid: string;
/**
* @return {ScopeType}
*/
getScopeType(): ScopeType;
/**
* @param {ScopeType} scopeType
*/
setScopeType(scopeType: ScopeType): void;
scopeType: string;
/**
* @return {IpFamily}
*/
getIpFamily(): IpFamily;
/**
* @param {IpFamily} ipFamily
*/
setIpFamily(ipFamily: IpFamily): void;
ipFamily: string;
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 ScopeType from "./ScopeType";
import IpFamily from "./IpFamily";
import ValidationError from "../../../validation/ValidationError";