Sha256: 0e4d23114a7c11b7770ce304551d6171e48853a0f3c7c87d68dd9e0ee4167b85
Contents?: true
Size: 824 Bytes
Versions: 1
Compression:
Stored size: 824 Bytes
Contents
# BmcApi::ServerPrivateNetwork ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **id** | **String** | The network identifier. | | | **ips** | **Array<String>** | IPs to configure/configured on the server. Should be null or empty list if DHCP is true. | [optional] | | **dhcp** | **Boolean** | Determines whether DHCP is enabled for this server. Should be false if ips is not an empty list. Not supported for proxmox OS. | [optional][default to false] | | **status_description** | **String** | The status of the network. | [optional][readonly] | ## Example ```ruby require 'pnap_bmc_api' instance = BmcApi::ServerPrivateNetwork.new( id: 603f3b2cfcaf050643b89a4b, ips: ["10.1.1.1","10.1.1.2"], dhcp: false, status_description: assigned ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pnap_bmc_api-1.0.0 | docs/ServerPrivateNetwork.md |