Values.PutRestoreValidationResultInputSourceThis request allows you to send your independent self-run restore test validation results. RestoreJobId and ValidationStatus are required. Optionally, you can input a ValidationStatusMessage.
type nonrec t = {restoreJobId : RestoreJobId.t;This is a unique identifier of a restore job within Backup.
*)validationStatus : RestoreValidationStatus.t;The status of your restore validation.
*)validationStatusMessage : string option;This is an optional message string you can input to describe the validation status for the restore test validation.
*)}val make :
?validationStatusMessage:??? ->
restoreJobId:RestoreJobId.t ->
validationStatus:RestoreValidationStatus.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of RestoreJobId.t ]) list ]