Sha256: 01d63710f84805ba335517355c430bc443a282702de3f8f8c598c022661b83da
Contents?: true
Size: 1004 Bytes
Versions: 3
Compression:
Stored size: 1004 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. If the network contains a membership of type 'storage', the first twelve IPs are already reserved by BMC and not usable. These will return a Bad Request (400) if selected. | [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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pnap_bmc_api-1.2.0 | docs/ServerPrivateNetwork.md |
pnap_bmc_api-1.1.1 | docs/ServerPrivateNetwork.md |
pnap_bmc_api-1.1.0 | docs/ServerPrivateNetwork.md |