Module Values.StartSchemaExtensionRequestSource

Applies a schema extension to a Microsoft AD directory.

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

    The identifier of the directory for which the schema extension will be applied to.

    *)
  2. createSnapshotBeforeSchemaExtension : CreateSnapshotBeforeSchemaExtension.t;
    (*

    If true, creates a snapshot of the directory before applying the schema extension.

    *)
  3. ldifContent : LdifContent.t;
    (*

    The LDIF file represented as a string. To construct the LdifContent string, precede each line as it would be formatted in an ldif file with \n. See the example request below for more details. The file size can be no larger than 1MB.

    *)
  4. description : Description.t;
    (*

    A description of the schema extension.

    *)
}
Sourceval context_ : string
Sourceval make : directoryId:DirectoryId.t -> createSnapshotBeforeSchemaExtension:CreateSnapshotBeforeSchemaExtension.t -> ldifContent:LdifContent.t -> description:Description.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of CreateSnapshotBeforeSchemaExtension.t | `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