Skip to content

vCenterHotAddNetwork

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

Arguments

Argument Type Description
input (required) GetHotAddNetworkInput! Input for V1GetHotAddNetwork.

Returns

HotAddNetworkConfigWithName!

Sample

query VCenterHotAddNetwork($input: GetHotAddNetworkInput!) {
  vCenterHotAddNetwork(input: $input) {
    networkName
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "vCenterHotAddNetwork": {
      "networkName": "example-string",
      "staticIpConfig": {
        "dnsServers": [
          "example-string"
        ],
        "gateway": "example-string",
        "ipAddresses": [
          "example-string"
        ],
        "subnetMask": "example-string"
      }
    }
  }
}