Module Values.DomainMaintenanceDetailsSource

Container for the domain maintenance details.

Sourcetype nonrec t = {
  1. maintenanceId : RequestId.t option;
    (*

    The ID of the requested action.

    *)
  2. domainName : DomainName.t option;
    (*

    The name of the domain.

    *)
  3. action : MaintenanceType.t option;
    (*

    The name of the action.

    *)
  4. nodeId : NodeId.t option;
    (*

    The ID of the data node.

    *)
  5. status : MaintenanceStatus.t option;
    (*

    The status of the action.

    *)
  6. statusMessage : MaintenanceStatusMessage.t option;
    (*

    The status message for the action.

    *)
  7. createdAt : UpdateTimestamp.t option;
    (*

    The time at which the action was created.

    *)
  8. updatedAt : UpdateTimestamp.t option;
    (*

    The time at which the action was updated.

    *)
}
Sourceval make : ?maintenanceId:??? -> ?domainName:??? -> ?action:??? -> ?nodeId:??? -> ?status:??? -> ?statusMessage:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RequestId.t | `Timestamp of UpdateTimestamp.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