Skip to content

updateSyslogExportRule

Update the specified syslog export rule Supported in v5.1+ Update the syslog export rule specified by the given id.

Arguments

Argument Type Description
input (required) UpdateSyslogExportRuleInput! Input for V1UpdateSyslogExportRule.

Returns

UpdateSyslogExportRuleReply!

Sample

mutation UpdateSyslogExportRule($input: UpdateSyslogExportRuleInput!) {
  updateSyslogExportRule(input: $input)
}
{
  "input": {
    "clusterUuid": "example-string",
    "id": "example-string"
  }
}
{
  "data": {
    "updateSyslogExportRule": {
      "output": {
        "id": "example-string"
      }
    }
  }
}