# BmcApi::OsConfigurationMapEsxi ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **root_password** | **String** | (Read-only) Password set for user root on an ESXi server which will only be returned in response to provisioning a server. | [optional][readonly] | | **management_ui_url** | **String** | (Read-only) The URL of the management UI which will only be returned in response to provisioning a server. | [optional][readonly] | | **management_access_allowed_ips** | **Array<String>** | List of IPs allowed to access the Management UI. Supported in single IP, CIDR and range format. When undefined, Management UI is disabled. This will only be returned in response to provisioning a server. | [optional] | ## Example ```ruby require 'pnap_bmc_api' instance = BmcApi::OsConfigurationMapEsxi.new( root_password: MyP@ssw0rd_01, management_ui_url: https://172.217.22.14, management_access_allowed_ips: ["172.217.22.14","10.111.14.40/29","10.111.14.66 - 10.111.14.71"] ) ```