Module Values.UpdateDirectorySetupRequestSource

Updates directory configuration for the specified update type.

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

    The identifier of the directory to update.

    *)
  2. updateType : UpdateType.t;
    (*

    The type of update to perform on the directory.

    *)
  3. oSUpdateSettings : OSUpdateSettings.t option;
    (*

    Operating system configuration to apply during the directory update operation.

    *)
  4. directorySizeUpdateSettings : DirectorySizeUpdateSettings.t option;
    (*

    Directory size configuration to apply during the update operation.

    *)
  5. networkUpdateSettings : NetworkUpdateSettings.t option;
    (*

    Network configuration to apply during the directory update operation.

    *)
  6. createSnapshotBeforeUpdate : CreateSnapshotBeforeUpdate.t option;
    (*

    Specifies whether to create a directory snapshot before performing the update.

    *)
}
Sourceval context_ : string
Sourceval make : ?oSUpdateSettings:??? -> ?directorySizeUpdateSettings:??? -> ?networkUpdateSettings:??? -> ?createSnapshotBeforeUpdate:??? -> directoryId:DirectoryId.t -> updateType:UpdateType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of CreateSnapshotBeforeUpdate.t | `Enum of string | `String of DirectoryId.t | `Structure of (string * [> `Enum of string | `List of [> `String of Ipv6Addr.t ] list ]) list ]) 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