Values.CreateComputerRequestSourceContains the inputs for the CreateComputer operation.
type nonrec t = {directoryId : DirectoryId.t;The identifier of the directory in which to create the computer account.
*)computerName : ComputerName.t;The name of the computer account.
*)password : ComputerPassword.t;A one-time password that is used to join the computer to the directory. You should generate a random, strong password to use for this parameter.
*)organizationalUnitDistinguishedName : OrganizationalUnitDN.t option;The fully-qualified distinguished name of the organizational unit to place the computer account in.
*)computerAttributes : Attributes.t option;An array of Attribute objects that contain any LDAP attributes to apply to the computer account.
*)}val make :
?organizationalUnitDistinguishedName:??? ->
?computerAttributes:??? ->
directoryId:DirectoryId.t ->
computerName:ComputerName.t ->
password:ComputerPassword.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of (string * [> `String of AttributeName.t ]) list ]
list
| `String of DirectoryId.t ])
list ]