Skip to content

updateProxyConfig

Update proxy config Supported in v5.0+ Update proxy config.

Arguments

Argument Type Description
input (required) UpdateProxyConfigInput! Input for InternalUpdateProxyConfig.

Returns

UpdateProxyConfigReply!

Sample

mutation UpdateProxyConfig($input: UpdateProxyConfigInput!) {
  updateProxyConfig(input: $input) {
    host
    port
    protocol
    username
  }
}
{
  "input": {
    "clusterUuid": "example-string",
    "proxy": {
      "host": "example-string",
      "protocol": "example-string"
    }
  }
}
{
  "data": {
    "updateProxyConfig": {
      "host": "example-string",
      "port": 0,
      "protocol": "example-string",
      "username": "example-string"
    }
  }
}