Module Values.PutRestoreValidationResultInputSource

This request allows you to send your independent self-run restore test validation results. RestoreJobId and ValidationStatus are required. Optionally, you can input a ValidationStatusMessage.

Sourcetype nonrec t = {
  1. restoreJobId : RestoreJobId.t;
    (*

    This is a unique identifier of a restore job within Backup.

    *)
  2. validationStatus : RestoreValidationStatus.t;
    (*

    The status of your restore validation.

    *)
  3. validationStatusMessage : string option;
    (*

    This is an optional message string you can input to describe the validation status for the restore test validation.

    *)
}
Sourceval context_ : string
Sourceval make : ?validationStatusMessage:??? -> restoreJobId:RestoreJobId.t -> validationStatus:RestoreValidationStatus.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RestoreJobId.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