Module Values.GetDomainMaintenanceStatusResponseSource

The result of a GetDomainMaintenanceStatus request that information about the requested action.

Sourcetype nonrec t = {
  1. status : MaintenanceStatus.t option;
    (*

    The status of the maintenance action.

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

    The status message of the maintenance action.

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

    The node ID of the maintenance action.

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

    The action name.

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

    The time at which the action was created.

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

    The time at which the action was updated.

    *)
}
Sourcetype nonrec error = [
  1. | `BaseException of BaseException.t
  2. | `DisabledOperationException of DisabledOperationException.t
  3. | `InternalException of InternalException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?status:??? -> ?statusMessage:??? -> ?nodeId:??? -> ?action:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BaseException of BaseException.t | `DisabledOperationException of unit | `InternalException of unit | `ResourceNotFoundException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BaseException of BaseException.t | `DisabledOperationException of unit | `InternalException of unit | `ResourceNotFoundException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of MaintenanceStatusMessage.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