/**
* The ClusterManagementIps model module.
* @module Ntnx/ClusterManagementIps
* @version 4.3.1
* @class ClusterManagementIps
*/
export default class ClusterManagementIps {
/**
* Constructs a ClusterManagementIps 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/ClusterManagementIps} obj Optional instance to populate.
* @param callFromChild {Boolean} Flag to recognise calling instance
* @return {module:Ntnx/ClusterManagementIps} The populated ClusterManagementIps 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;
/**
* @return {IPv4Address}
*/
getMasterVip(): IPv4Address;
/**
* @param {IPv4Address} masterVip
*/
setMasterVip(masterVip: IPv4Address): void;
masterVip: IPv4Address;
/**
* @return {IPv4Address}
*/
getMspDnsIp(): IPv4Address;
/**
* @param {IPv4Address} mspDnsIp
*/
setMspDnsIp(mspDnsIp: IPv4Address): void;
mspDnsIp: IPv4Address;
/**
* Returns IPAM Name to be used for fetching static IPs that are not provided in the payload.
* @return {string}
*/
getNetwork(): string;
/**
* Sets IPAM Name to be used for fetching static IPs that are not provided in the payload.
* @param {string} network IPAM Name to be used for fetching static IPs that are not provided in the payload.
*/
setNetwork(network: string): void;
network: 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 IPv4Address from "../../../common/v1/config/IPv4Address";
import ValidationError from "../../../validation/ValidationError";