Skip to content

updateVcenter

Update vCenter Server Supported in v5.0+ Update the address, username and password of the specified vCenter Server object.

Arguments

Argument Type Description
input (required) UpdateVcenterInput! Input for V1UpdateVcenter.

Returns

UpdateVcenterReply!

Sample

mutation UpdateVcenter($input: UpdateVcenterInput!) {
  updateVcenter(input: $input)
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "updateVcenter": {
      "output": {
        "configuredSlaDomainPolarisManagedId": "example-string",
        "conflictResolutionAuthz": "VCENTER_SUMMARY_CONFLICT_RESOLUTION_AUTHZ_ALLOW_AUTO_CONFLICT_RESOLUTION",
        "hostname": "example-string",
        "isHotAddProxyEnabledForOnPremVcenter": true,
        "isIoFilterInstalled": true,
        "isVmc": true
      }
    }
  }
}