BaseVMDataModel
Data used for acquiring and connecting to the ip address of the base VM.
Properties
| Name | Description | Additional information |
|---|---|---|
| BaseVMTemplate | The Base VM Template name. |
Type: String |
| ConnectingBaseVMIP | ip address of the current base VM. |
Type: BaseVMIPAddressModel |
| ConnectingBaseVMIPIteration | number of times that a connection attempt has been made. |
Type: String |
| BaseVMIPAddressList | List of all the ip addresses the base VM has. |
Type: Array of BaseVMIPAddressModel |
Sample
application/json
Sample:
{
"BaseVMTemplate": "sample string 1",
"ConnectingBaseVMIP": {
"IPAddress": "sample string 1",
"State": "sample string 2"
},
"ConnectingBaseVMIPIteration": "sample string 2",
"BaseVMIPAddressList": [
{
"IPAddress": "sample string 1",
"State": "sample string 2"
},
{
"IPAddress": "sample string 1",
"State": "sample string 2"
},
{
"IPAddress": "sample string 1",
"State": "sample string 2"
}
]
}