/** * The IPv6Pool model module. * @module Ntnx/IPv6Pool * @version 4.4.1 * @class IPv6Pool * * @param { IPv6Address } startIp * * @param { IPv6Address } endIp */ export default class IPv6Pool { /** * Constructs a IPv6Pool 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/IPv6Pool} obj Optional instance to populate. * @param callFromChild {Boolean} Flag to recognise calling instance * @return {module:Ntnx/IPv6Pool} The populated IPv6Pool 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 IPv6Pool. * Start/end IP address range. * @alias module:Ntnx/IPv6Pool * * @param { IPv6Address } startIp * * @param { IPv6Address } endIp */ constructor(startIp: IPv6Address, endIp: IPv6Address); startIp: IPv6Address; endIp: IPv6Address; $objectType: string; /** @type {object} */ $reserved: object; /** @type {object} */ $unknownFields: object; /** * @return {IPv6Address} */ getStartIp(): IPv6Address; /** * @param {IPv6Address} startIp */ setStartIp(startIp: IPv6Address): void; /** * @return {IPv6Address} */ getEndIp(): IPv6Address; /** * @param {IPv6Address} endIp */ setEndIp(endIp: IPv6Address): void; 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 IPv6Address from "../../../common/v1/config/IPv6Address"; import ValidationError from "../../../validation/ValidationError";