Skip to content

removeProxyConfig

Delete existing proxy configuration Supported in v5.0+ Delete an existing proxy that was configured.

Arguments

Argument Type Description
input (required) RemoveProxyConfigInput! Input for InternalDeleteProxyConfig.

Returns

ResponseSuccess!

Sample

mutation RemoveProxyConfig($input: RemoveProxyConfigInput!) {
  removeProxyConfig(input: $input) {
    success
  }
}
{
  "input": {
    "clusterUuid": "example-string"
  }
}
{
  "data": {
    "removeProxyConfig": {
      "success": true
    }
  }
}