Skip to content

batchReleaseFromQuarantineSnapshot

Release snapshots from quarantine.

Arguments

Argument Type Description
input (required) BatchReleaseFromQuarantineSnapshotInput! Config to batch release from quarantine snapshot.

Returns

BatchReleaseFromQuarantineSnapshotReply!

Sample

mutation BatchReleaseFromQuarantineSnapshot($input: BatchReleaseFromQuarantineSnapshotInput!) {
  batchReleaseFromQuarantineSnapshot(input: $input) {
    isBatchReleaseFromQuarantineSuccessful
  }
}
{
  "input": {
    "quarantineSpecs": [
      {
        "filesDetails": [
          {
            "fileName": "example-string"
          }
        ],
        "snapshotId": "example-string"
      }
    ]
  }
}
{
  "data": {
    "batchReleaseFromQuarantineSnapshot": {
      "isBatchReleaseFromQuarantineSuccessful": true
    }
  }
}