Skip to content

updateVcenterHotAddNetwork

Set the user-configured network for HotAdd backup and recovery Supported in v5.3+ Set the user-configured network for HotAdd backup and recovery operations on VMware on AWS.

Arguments

Argument Type Description
input (required) UpdateVcenterHotAddNetworkInput! Input for V1SetHotAddNetwork.

Returns

RequestSuccess!

Sample

mutation UpdateVcenterHotAddNetwork($input: UpdateVcenterHotAddNetworkInput!) {
  updateVcenterHotAddNetwork(input: $input) {
    success
  }
}
{
  "input": {
    "hotAddNetworkInfo": {
      "networkId": "example-string"
    },
    "id": "example-string"
  }
}
{
  "data": {
    "updateVcenterHotAddNetwork": {
      "success": true
    }
  }
}