updateDefensiveModeConfig
Update defensive mode configuration.
updateDefensiveModeConfig(
input: AppEnvironmentDefensiveModeConfigInput
): AppEnvironmentDefensiveModeOperationResultPayload!
Example
- Query
- Variables
- Response
mutation ($input: AppEnvironmentDefensiveModeConfigInput) {
updateDefensiveModeConfig(input: $input) {
message
success
}
}
{
"input": {
"challengeType": 42,
"connectionThresholdAbsolute": 42,
"connectionThresholdPercentage": 42,
"enabled": true,
"environmentId": 42,
"id": 42
}
}
{
"data": {
"updateDefensiveModeConfig": {
"message": "message",
"success": true
}
}
}
Arguments
updateDefensiveModeConfig.input ● AppEnvironmentDefensiveModeConfigInput input common
The defensive mode configuration to store.
Type
AppEnvironmentDefensiveModeOperationResultPayload object common
The result of a defensive mode operation.