/** * The IPv6Config model module. * @module Ntnx/IPv6Config * @version 4.4.1 * @class IPv6Config * * @param { IPv6Subnet } ipSubnet */ export default class IPv6Config { /** * Constructs a IPv6Config 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/IPv6Config} obj Optional instance to populate. * @param callFromChild {Boolean} Flag to recognise calling instance * @return {module:Ntnx/IPv6Config} The populated IPv6Config 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 IPv6Config. * IP V6 configuration. * @alias module:Ntnx/IPv6Config * * @param { IPv6Subnet } ipSubnet */ constructor(ipSubnet: IPv6Subnet); ipSubnet: IPv6Subnet; $objectType: string; /** @type {object} */ $reserved: object; /** @type {object} */ $unknownFields: object; /** * @return {IPv6Subnet} */ getIpSubnet(): IPv6Subnet; /** * @param {IPv6Subnet} ipSubnet */ setIpSubnet(ipSubnet: IPv6Subnet): void; /** * @return {IPv6Address} */ getDefaultGatewayIp(): IPv6Address; /** * @param {IPv6Address} defaultGatewayIp */ setDefaultGatewayIp(defaultGatewayIp: IPv6Address): void; defaultGatewayIp: IPv6Address; /** * @return {IPv6Address} */ getDhcpServerAddress(): IPv6Address; /** * @param {IPv6Address} dhcpServerAddress */ setDhcpServerAddress(dhcpServerAddress: IPv6Address): void; dhcpServerAddress: IPv6Address; /** * Returns Pool of IP addresses from where IPs are allocated. * @return {IPv6Pool[]} */ getPoolList(): IPv6Pool[]; /** * Sets Pool of IP addresses from where IPs are allocated. * @param {IPv6Pool[]} poolList Pool of IP addresses from where IPs are allocated. */ setPoolList(poolList: IPv6Pool[]): void; poolList: IPv6Pool[]; 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 IPv6Subnet from "./IPv6Subnet"; import IPv6Address from "../../../common/v1/config/IPv6Address"; import IPv6Pool from "./IPv6Pool"; import ValidationError from "../../../validation/ValidationError";