API Stability Short-Term

The disableLogCollectorInstanceDebugLogging() GraphQL mutation may be used to do disable logging of debugging information related a Log Collector Instance.

Syntax

Below is the syntax for the disableLogCollectorInstanceDebugLogging() mutation field:

graphql
disableLogCollectorInstanceDebugLogging(
      id: string!
   ): boolean!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  disableLogCollectorInstanceDebugLogging(
    id: "a3jamAsTnMXfRxT8Fpecx3fX" )
}
Example Responses
Show:
json
{
  "data": {
    "disableLogCollectorInstanceDebugLogging": true
  }
}