Reference for RimuHosting's Data Structures (as used in our REST-ful APIs)

Name: AllocatedIPs

Read only information about the IPs allocated to a server.

XML Example:
<AllocatedIPs>
  <primary_ip>xsd:string</primary_ip>
  zero or N[<secondary_ips>xsd:string</secondary_ips>]
</AllocatedIPs>
JSON Example:
{"AllocatedIPs":
 {
   "primary_ip": String,
   "secondary_ips": [String],
 }
}

Elements
NameTypeRequiredNillableDefault ValueDescription
primary_ipxsd:stringfalsefalseThere is nothing that special about the 'primary' IP.  But our scripts will typically bind it to your eth0 interface.  And is is the one most peopel use to access their server.
secondary_ipszero or N[xsd:string]falsefalseOther ips, if any, allocated to your server.