/** * The IPConfig model module. * @module Ntnx/IPConfig * @version 4.4.1 * @class IPConfig */ export default class IPConfig { /** * Constructs a IPConfig 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/IPConfig} obj Optional instance to populate. * @param callFromChild {Boolean} Flag to recognise calling instance * @return {module:Ntnx/IPConfig} The populated IPConfig 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 {IPv4Config} */ getIpv4(): IPv4Config; /** * @param {IPv4Config} ipv4 */ setIpv4(ipv4: IPv4Config): void; ipv4: IPv4Config; /** * @return {IPv6Config} */ getIpv6(): IPv6Config; /** * @param {IPv6Config} ipv6 */ setIpv6(ipv6: IPv6Config): void; ipv6: IPv6Config; get$Reserved(): any; get$ObjectType(): string; get$UnknownFields(): any; hasIpv4(): boolean; hasIpv6(): boolean; isValid(): boolean; toJson(forMutation: any): any; validate(scope: any, properties: any, ...args: any[]): Promise; validateProperty(scope: any, property: any): ValidationError; #private; } import IPv4Config from "./IPv4Config"; import IPv6Config from "./IPv6Config"; import ValidationError from "../../../validation/ValidationError";