Skip to content

deleteSapHanaDbSnapshot

Delete a particular full snapshot of a SAP HANA database Supported in v5.3+ Initiates a request to delete a particular full snapshot of a SAP HANA database. If the log retention period for the database is still in effect, the snapshot will be deleted when the log retention period ends.

Arguments

Argument Type Description
input (required) DeleteSapHanaDbSnapshotInput! Input for V1DeleteSapHanaDbSnapshot.

Returns

ResponseSuccess!

Sample

mutation DeleteSapHanaDbSnapshot($input: DeleteSapHanaDbSnapshotInput!) {
  deleteSapHanaDbSnapshot(input: $input) {
    success
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "deleteSapHanaDbSnapshot": {
      "success": true
    }
  }
}