API Stability Short-Term

The unsetDynamicConfig() GraphQL mutation may be used to unset certain configurations in LogScale. Requires ManageCluster permission.

For more information, see the Dynamic Configuration Parameters reference page where this topic is elaborated.

Syntax

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

graphql
unsetDynamicConfig(
      input: UnsetDynamicConfigInputObject!
   ): boolean!

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

Show:
graphql
mutation {
  unsetDynamicConfig( input:
    { config: EnableDemoData }
  )
}
Example Responses
Show:
json
{
  "data": {
    "unsetDynamicConfig": true
  }
}

Given Datatypes

For the given datatype, UnsetDynamicConfigInputObject, there is one parameters that may be given. Below is a description of it with its datatypes and a description of each:

Table: UnsetDynamicConfigInputObject

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Sep 23, 2024
configDynamicConfigyes Short-TermUnset dynamic configuration. See DynamicConfig.