/**
* The ConfigureServerDetails model module.
* @module Ntnx/ConfigureServerDetails
* @version 4.3.1
* @class ConfigureServerDetails
*
* @param { string } nodeExtId External ID of the node
*/
export default class ConfigureServerDetails {
/**
* Constructs a ConfigureServerDetails 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/ConfigureServerDetails} obj Optional instance to populate.
* @param callFromChild {Boolean} Flag to recognise calling instance
* @return {module:Ntnx/ConfigureServerDetails} The populated ConfigureServerDetails 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 ConfigureServerDetails.
* Configuration details for setting up a server node in the hardware provider
* @alias module:Ntnx/ConfigureServerDetails
*
* @param { string } nodeExtId External ID of the node
*/
constructor(nodeExtId: string);
nodeExtId: string;
$objectType: string;
/** @type {object} */
$reserved: object;
/** @type {object} */
$unknownFields: object;
/**
* Returns External ID of the node
* @return {string}
*/
getNodeExtId(): string;
/**
* Sets External ID of the node
* @param {string} nodeExtId External ID of the node
*/
setNodeExtId(nodeExtId: string): void;
/**
* @return {ServerSettingsConfig}
*/
getServerSettingsConfig(): ServerSettingsConfig;
/**
* @param {ServerSettingsConfig} serverSettingsConfig
*/
setServerSettingsConfig(serverSettingsConfig: ServerSettingsConfig): void;
serverSettingsConfig: ServerSettingsConfig;
/**
* @return {PhysicalNetworkAdapterConfig}
*/
getPhysicalNetworkAdapterConfig(): PhysicalNetworkAdapterConfig;
/**
* @param {PhysicalNetworkAdapterConfig} physicalNetworkAdapterConfig
*/
setPhysicalNetworkAdapterConfig(physicalNetworkAdapterConfig: PhysicalNetworkAdapterConfig): void;
physicalNetworkAdapterConfig: PhysicalNetworkAdapterConfig;
/**
* Returns BMC IP addressing configuration for the node
* @return {InOutBandBmcIPConfig | UnifiedBmcIPConfig}
*/
getBmcIPAddressingConfig(): InOutBandBmcIPConfig | UnifiedBmcIPConfig;
/**
* Sets BMC IP addressing configuration for the node
* @param {InOutBandBmcIPConfig | UnifiedBmcIPConfig} bmcIPAddressingConfig BMC IP addressing configuration for the node
*/
setBmcIPAddressingConfig(bmcIPAddressingConfig: InOutBandBmcIPConfig | UnifiedBmcIPConfig): void;
bmcIPAddressingConfig: InOutBandBmcIPConfig | UnifiedBmcIPConfig;
/**
* Returns Identifier of the group (e.g., organization or tenant) to which the node belongs. This field is required for Cisco nodes
* @return {string}
*/
getGroupId(): string;
/**
* Sets Identifier of the group (e.g., organization or tenant) to which the node belongs. This field is required for Cisco nodes
* @param {string} groupId Identifier of the group (e.g., organization or tenant) to which the node belongs. This field is required for Cisco nodes
*/
setGroupId(groupId: string): void;
groupId: 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 ServerSettingsConfig from "./ServerSettingsConfig";
import PhysicalNetworkAdapterConfig from "./PhysicalNetworkAdapterConfig";
import InOutBandBmcIPConfig from "./InOutBandBmcIPConfig";
import UnifiedBmcIPConfig from "./UnifiedBmcIPConfig";
import ValidationError from "../../../validation/ValidationError";