Module Values.DeleteBackupResponseSource

The response object for the DeleteBackup operation.

Sourcetype nonrec t = {
  1. backupId : BackupId.t option;
    (*

    The ID of the backup that was deleted.

    *)
  2. lifecycle : BackupLifecycle.t option;
    (*

    The lifecycle status of the backup. If the DeleteBackup operation is successful, the status is DELETED.

    *)
}
Sourcetype nonrec error = [
  1. | `BackupBeingCopied of BackupBeingCopied.t
  2. | `BackupInProgress of BackupInProgress.t
  3. | `BackupNotFound of BackupNotFound.t
  4. | `BackupRestoring of BackupRestoring.t
  5. | `BadRequest of BadRequest.t
  6. | `IncompatibleParameterError of IncompatibleParameterError.t
  7. | `InternalServerError of InternalServerError.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?backupId:??? -> ?lifecycle:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BackupBeingCopied of BackupBeingCopied.t | `BackupInProgress of BackupInProgress.t | `BackupNotFound of BackupNotFound.t | `BackupRestoring of BackupRestoring.t | `BadRequest of BadRequest.t | `IncompatibleParameterError of IncompatibleParameterError.t | `InternalServerError of InternalServerError.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BackupBeingCopied of BackupBeingCopied.t | `BackupInProgress of BackupInProgress.t | `BackupNotFound of BackupNotFound.t | `BackupRestoring of BackupRestoring.t | `BadRequest of BadRequest.t | `IncompatibleParameterError of IncompatibleParameterError.t | `InternalServerError of InternalServerError.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of BackupId.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