Skip to content

decryptExportUrl

Decrypts an encrypted Export URL Specs blob.

Arguments

Argument Type Description
workloadFid (required) UUID! The FID of the workload.
exportUrlSpecsEnc (required) String! Encrypted string of Export URL Specs containing arbitrary characters.

Returns

ExportUrlSpecs!

Sample

query DecryptExportUrl($workloadFid: UUID!, $exportUrlSpecsEnc: String!) {
  decryptExportUrl(
    workloadFid: $workloadFid
    exportUrlSpecsEnc: $exportUrlSpecsEnc
  ) {
    actionType
    blobName
    blobSasUri
    polarisAccount
  }
}
{
  "workloadFid": "00000000-0000-0000-0000-000000000000",
  "exportUrlSpecsEnc": "example-string"
}
{
  "data": {
    "decryptExportUrl": {
      "actionType": "DOWNLOAD_ANOMALY_FORENSICS",
      "blobName": "example-string",
      "blobSasUri": "example-string",
      "polarisAccount": "example-string"
    }
  }
}