Guest_Domain
The Domain structure specifies the information needed to join a workgroup or domain. This structure maps to the Identification key in the sysprep.xml answer file. These values are transferred into the sysprep.xml file that VirtualCenter stores on the target virtual disk. For more information about performing unattended installation, check https://technet.microsoft.com/en-us/library/cc771830(v=ws.10).aspx
{
"type": "string",
"workgroup": "string",
"domain": "string",
"domain_username": "string",
"domain_password": "string"
}
The Domain.Type enumerated type defines the types of network the virtual machine should join to after the customization is completed.
WORKGROUP : The virtual machine should be be joined to a workgroup.
DOMAIN : The virtual machine should be be joined to a domain.
The workgroup that the virtual machine should join. This field is optional and it is only relevant when the value of Domain.type is WORKGROUP.
The domain to which the virtual machine should be joined. This field is optional and it is only relevant when the value of Domain.type is DOMAIN.
The domain user that has permission to join the domain after virtual machine is joined. This field is optional and it is only relevant when the value of Domain.type is DOMAIN.
The domain user password that has permission to join the Domain.domain-username after customization. This field is optional and it is only relevant when the value of Domain.type is DOMAIN.