/**
* The LoadBalancerNetworkConfig model module.
* @module Ntnx/LoadBalancerNetworkConfig
* @version 4.3.1
* @class LoadBalancerNetworkConfig
*
* @param { LoadBalancerAccessInterface[] } accessInterfaces
*/
export default class LoadBalancerNetworkConfig {
/**
* Constructs a LoadBalancerNetworkConfig 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/LoadBalancerNetworkConfig} obj Optional instance to populate.
* @param callFromChild {Boolean} Flag to recognise calling instance
* @return {module:Ntnx/LoadBalancerNetworkConfig} The populated LoadBalancerNetworkConfig 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 LoadBalancerNetworkConfig.
* Network configuration of the load balancer instance.
* @alias module:Ntnx/LoadBalancerNetworkConfig
*
* @param { LoadBalancerAccessInterface[] } accessInterfaces
*/
constructor(accessInterfaces: LoadBalancerAccessInterface[]);
accessInterfaces: LoadBalancerAccessInterface[];
$objectType: string;
/** @type {object} */
$reserved: object;
/** @type {object} */
$unknownFields: object;
/**
* @return {AhvNetworkResourceConfig | EsxNetworkResourceConfig}
*/
getVmNetworkConfig(): AhvNetworkResourceConfig | EsxNetworkResourceConfig;
/**
* @param {AhvNetworkResourceConfig | EsxNetworkResourceConfig} vmNetworkConfig
*/
setVmNetworkConfig(vmNetworkConfig: AhvNetworkResourceConfig | EsxNetworkResourceConfig): void;
vmNetworkConfig: AhvNetworkResourceConfig | EsxNetworkResourceConfig;
/**
* @return {LoadBalancerAccessInterface[]}
*/
getAccessInterfaces(): LoadBalancerAccessInterface[];
/**
* @param {LoadBalancerAccessInterface[]} accessInterfaces
*/
setAccessInterfaces(accessInterfaces: LoadBalancerAccessInterface[]): void;
/**
* Returns Name of the client configuration for the load balancer.
* @return {string}
*/
getClient(): string;
/**
* Sets Name of the client configuration for the load balancer.
* @param {string} client Name of the client configuration for the load balancer.
*/
setClient(client: string): void;
client: string;
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 LoadBalancerAccessInterface from "./LoadBalancerAccessInterface";
import AhvNetworkResourceConfig from "./AhvNetworkResourceConfig";
import EsxNetworkResourceConfig from "./EsxNetworkResourceConfig";
import ValidationError from "../../../validation/ValidationError";