Skip to content

createVappSnapshots

Create vApp Snapshots.

Arguments

Argument Type Description
input (required) CreateVappSnapshotsInput! List of vApps to create snapshots.

Returns

CreateVappSnapshotsReply!

Sample

mutation CreateVappSnapshots($input: CreateVappSnapshotsInput!) {
  createVappSnapshots(input: $input)
}
{
  "input": {
    "inputs": [
      {
        "config": {},
        "id": "00000000-0000-0000-0000-000000000000"
      }
    ]
  }
}
{
  "data": {
    "createVappSnapshots": {
      "responses": [
        {
          "errorMessage": "example-string",
          "id": "example-string"
        }
      ]
    }
  }
}