mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
feat: add flag to disaable all rate limits (#5570)
This commit is contained in:
@ -2325,9 +2325,6 @@ const docTemplate = `{
|
||||
"agent_stat_refresh_interval": {
|
||||
"$ref": "#/definitions/codersdk.DeploymentConfigField-time_Duration"
|
||||
},
|
||||
"api_rate_limit": {
|
||||
"$ref": "#/definitions/codersdk.DeploymentConfigField-int"
|
||||
},
|
||||
"audit_logging": {
|
||||
"$ref": "#/definitions/codersdk.DeploymentConfigField-bool"
|
||||
},
|
||||
@ -2385,6 +2382,9 @@ const docTemplate = `{
|
||||
"proxy_trusted_origins": {
|
||||
"$ref": "#/definitions/codersdk.DeploymentConfigField-array_string"
|
||||
},
|
||||
"rate_limit": {
|
||||
"$ref": "#/definitions/codersdk.RateLimitConfig"
|
||||
},
|
||||
"scim_api_key": {
|
||||
"$ref": "#/definitions/codersdk.DeploymentConfigField-string"
|
||||
},
|
||||
@ -2950,6 +2950,17 @@ const docTemplate = `{
|
||||
}
|
||||
}
|
||||
},
|
||||
"codersdk.RateLimitConfig": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"api": {
|
||||
"$ref": "#/definitions/codersdk.DeploymentConfigField-int"
|
||||
},
|
||||
"disable_all": {
|
||||
"$ref": "#/definitions/codersdk.DeploymentConfigField-bool"
|
||||
}
|
||||
}
|
||||
},
|
||||
"codersdk.Response": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
Reference in New Issue
Block a user