/** * The SiteParams model module. * @module Ntnx/SiteParams * @version 4.4.1 * @class SiteParams */ export default class SiteParams { /** * Constructs a SiteParams 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/SiteParams} obj Optional instance to populate. * @param callFromChild {Boolean} Flag to recognise calling instance * @return {module:Ntnx/SiteParams} The populated SiteParams 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; /** * Returns Prism Central cluster reference. * @return {string} */ getPcClusterReference(): string; /** * Sets Prism Central cluster reference. * @param {string} pcClusterReference Prism Central cluster reference. */ setPcClusterReference(pcClusterReference: string): void; pcClusterReference: string; /** * Returns Subnet reference. * @return {string} */ getStretchSubnetReference(): string; /** * Sets Subnet reference. * @param {string} stretchSubnetReference Subnet reference. */ setStretchSubnetReference(stretchSubnetReference: string): void; stretchSubnetReference: string; /** * Returns The VPN connection or network gateway with VTEP service used for this Layer2 stretch. * @return {string} */ getConnectionReference(): string; /** * Sets The VPN connection or network gateway with VTEP service used for this Layer2 stretch. * @param {string} connectionReference The VPN connection or network gateway with VTEP service used for this Layer2 stretch. */ setConnectionReference(connectionReference: string): void; connectionReference: string; /** * @return {IPAddress} */ getStretchInterfaceIpAddress(): IPAddress; /** * @param {IPAddress} stretchInterfaceIpAddress */ setStretchInterfaceIpAddress(stretchInterfaceIpAddress: IPAddress): void; stretchInterfaceIpAddress: IPAddress; /** * @return {IPAddress} */ getVpnInterfaceIPAddress(): IPAddress; /** * @param {IPAddress} vpnInterfaceIPAddress */ setVpnInterfaceIPAddress(vpnInterfaceIPAddress: IPAddress): void; vpnInterfaceIPAddress: IPAddress; /** * @return {IPAddress} */ getDefaultGatewayIPAddress(): IPAddress; /** * @param {IPAddress} defaultGatewayIPAddress */ setDefaultGatewayIPAddress(defaultGatewayIPAddress: IPAddress): void; defaultGatewayIPAddress: IPAddress; /** * @return {HighAvailabilityGroup} */ getHighAvailabilityGroup(): HighAvailabilityGroup; /** * @param {HighAvailabilityGroup} highAvailabilityGroup */ setHighAvailabilityGroup(highAvailabilityGroup: HighAvailabilityGroup): void; highAvailabilityGroup: HighAvailabilityGroup; 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 IPAddress from "../../../common/v1/config/IPAddress"; import HighAvailabilityGroup from "./HighAvailabilityGroup"; import ValidationError from "../../../validation/ValidationError";