Skip to content

vappTemplateSnapshotExportOptions

Get Export information for a vApp template snapshot Supported in v5.1+ Retrieve the available choices vApp template storage profile and organization vDC choices in case of exporting to either original organization vDC defaults of the target catalog. In case advanced option of manually deciding org vdc is preferred, this also provides available storage profile choices.

Arguments

Argument Type Description
input (required) VappTemplateSnapshotExportOptionsInput! Input for V1GetVappTemplateSnapshotExportOptions.

Returns

VappTemplateExportOptionsUnion!

Sample

query VappTemplateSnapshotExportOptions($input: VappTemplateSnapshotExportOptionsInput!) {
  vappTemplateSnapshotExportOptions(input: $input)
}
{
  "input": {
    "catalogId": "example-string",
    "name": "example-string",
    "snapshotId": "example-string"
  }
}
{
  "data": {
    "vappTemplateSnapshotExportOptions": {
      "advancedExportOptions": {
        "orgVdcId": "example-string"
      },
      "defaultCatalogExportOptions": {
        "orgVdcId": "example-string"
      }
    }
  }
}