updateLimitConfig abstract method
- @POST.new('/admin/limit-config/update')
- @Body.new() required LimitConfigUpdateRequest body,
Update limit configuration.
Updates rate limit configuration including message throughput, upload sizes, and request throttles. Changes apply immediately to all new operations. Requires INSTANCE_LIMIT_CONFIG_UPDATE permission.
body - Name not received - field will be skipped.
Implementation
@POST('/admin/limit-config/update')
Future<LimitConfigGetResponse> updateLimitConfig({
@Body() required LimitConfigUpdateRequest body,
});