/** * The Route model module. * @module Ntnx/Route * @version 4.3.1 * @class Route * * @param { string } ip Destination IP address. * * @param { string } prefix Prefix of the route. */ export default class Route { /** * Constructs a Route 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/Route} obj Optional instance to populate. * @param callFromChild {Boolean} Flag to recognise calling instance * @return {module:Ntnx/Route} The populated Route 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 Route. * Route configuration for the network. * @alias module:Ntnx/Route * * @param { string } ip Destination IP address. * * @param { string } prefix Prefix of the route. */ constructor(ip: string, prefix: string); ip: string; prefix: string; $objectType: string; /** @type {object} */ $reserved: object; /** @type {object} */ $unknownFields: object; /** * Returns Destination IP address. * @return {string} */ getIp(): string; /** * Sets Destination IP address. * @param {string} ip Destination IP address. */ setIp(ip: string): void; /** * Returns Gateway of the route. * @return {string} */ getGateway(): string; /** * Sets Gateway of the route. * @param {string} gateway Gateway of the route. */ setGateway(gateway: string): void; gateway: string; /** * Returns Prefix of the route. * @return {string} */ getPrefix(): string; /** * Sets Prefix of the route. * @param {string} prefix Prefix of the route. */ setPrefix(prefix: string): 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 ValidationError from "../../../validation/ValidationError";