Skip to content

generateConfigProtectionRestoreForm

Generate restore form for the configuration backup file.

Arguments

Argument Type Description
input (required) GenerateConfigProtectionRestoreFormInput! Input for V1GenerateRestoreForm.

Returns

GenerateConfigProtectionRestoreFormReply!

Sample

mutation GenerateConfigProtectionRestoreForm($input: GenerateConfigProtectionRestoreFormInput!) {
  generateConfigProtectionRestoreForm(input: $input) {
    configurationTypes
  }
}
{
  "input": {
    "clusterUuid": "example-string",
    "restoreFormRequest": {
      "backupFileName": "example-string",
      "encryptionPassword": "example-string"
    }
  }
}
{
  "data": {
    "generateConfigProtectionRestoreForm": {
      "configurationTypes": [
        "CONFIGURATION_TYPES_ADAPTIVE_BACKUP"
      ],
      "configurations": {}
    }
  }
}