Module Values.CreateComputerRequestSource

Contains the inputs for the CreateComputer operation.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t;
    (*

    The identifier of the directory in which to create the computer account.

    *)
  2. computerName : ComputerName.t;
    (*

    The name of the computer account.

    *)
  3. 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.

    *)
  4. organizationalUnitDistinguishedName : OrganizationalUnitDN.t option;
    (*

    The fully-qualified distinguished name of the organizational unit to place the computer account in.

    *)
  5. computerAttributes : Attributes.t option;
    (*

    An array of Attribute objects that contain any LDAP attributes to apply to the computer account.

    *)
}
Sourceval context_ : string
Sourceval make : ?organizationalUnitDistinguishedName:??? -> ?computerAttributes:??? -> directoryId:DirectoryId.t -> computerName:ComputerName.t -> password:ComputerPassword.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of AttributeName.t ]) list ] list | `String of DirectoryId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t