CreateSessionMachineModel

Details for creating one or more session machines.

Properties

NameDescription Additional information
DataCenterId

The ID of the datacenter where the session machine(s) reside. If not specified, the default datacenter will be assumed.

Type: String

DomainId

The ID of the domain where the session machine(s) reside. If not specified, the shared resource domain will be assumed.

Type: String

Servers

A list of server host names (without the domain part). IP addresses cannot be used. At least one server is required.

Type: Array of String

NetworkName

The name of the management network to which the session machine is connected. This can be any value; however, if the name does not match either the shared delivery group management network name, or the private network name of one or more tenants, the machine will never be allocated. If not specified, the shared delivery group management network name is assumed.

Type: String

Tags

See Tags and Custom Properties.

Type: Array of String

CustomProperties

See Tags and Custom Properties.

Type: Array of CustomPropertyModel

Sample

application/json

Sample:
{
  "DataCenterId": "af1fc9c4-dee5-4b0d-836c-9e1c5b57a88a",
  "DomainId": "241b45cc-261d-47d0-81d7-a0a41c54c760",
  "Servers": [
    "vda1",
    "vda2"
  ],
  "NetworkName": "Shared Delivery Group Management Network",
  "Tags": [
    "tag"
  ],
  "CustomProperties": [
    {
      "Name": "myProperty",
      "Value": "myValue"
    }
  ]
}