/** * The FlowGatewayKeepAliveRequestSpec model module. * @module Ntnx/FlowGatewayKeepAliveRequestSpec * @version 4.4.1 * @class FlowGatewayKeepAliveRequestSpec * * @param { string } chassisUuid Chassis UUID of the Atlas Flow Gateway. */ export default class FlowGatewayKeepAliveRequestSpec { /** * Constructs a FlowGatewayKeepAliveRequestSpec 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/FlowGatewayKeepAliveRequestSpec} obj Optional instance to populate. * @param callFromChild {Boolean} Flag to recognise calling instance * @return {module:Ntnx/FlowGatewayKeepAliveRequestSpec} The populated FlowGatewayKeepAliveRequestSpec 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 FlowGatewayKeepAliveRequestSpec. * Request model for Flow Gateway Keepalive. * @alias module:Ntnx/FlowGatewayKeepAliveRequestSpec * * @param { string } chassisUuid Chassis UUID of the Atlas Flow Gateway. */ constructor(chassisUuid: string); chassisUuid: string; $objectType: string; /** @type {object} */ $reserved: object; /** @type {object} */ $unknownFields: object; /** * Returns Chassis UUID of the Atlas Flow Gateway. * @return {string} */ getChassisUuid(): string; /** * Sets Chassis UUID of the Atlas Flow Gateway. * @param {string} chassisUuid Chassis UUID of the Atlas Flow Gateway. */ setChassisUuid(chassisUuid: string): void; /** * @return {FlowGatewayStatus} */ getGatewayStatus(): FlowGatewayStatus; /** * @param {FlowGatewayStatus} gatewayStatus */ setGatewayStatus(gatewayStatus: FlowGatewayStatus): void; gatewayStatus: FlowGatewayStatus; /** * Returns Version of the OVN controller * @return {string} */ getOvnControllerVersion(): string; /** * Sets Version of the OVN controller * @param {string} ovnControllerVersion Version of the OVN controller */ setOvnControllerVersion(ovnControllerVersion: string): void; ovnControllerVersion: string; /** * Returns List of external network interface's primary IP addresses corresponding to the external subnet bindings in the flow gateway. * @return {IPAddress[]} */ getEniPrimaryIpList(): IPAddress[]; /** * Sets List of external network interface's primary IP addresses corresponding to the external subnet bindings in the flow gateway. * @param {IPAddress[]} eniPrimaryIpList List of external network interface's primary IP addresses corresponding to the external subnet bindings in the flow gateway. */ setEniPrimaryIpList(eniPrimaryIpList: IPAddress[]): void; eniPrimaryIpList: IPAddress[]; 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 FlowGatewayStatus from "./FlowGatewayStatus"; import IPAddress from "../../../common/v1/config/IPAddress"; import ValidationError from "../../../validation/ValidationError";