{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConfigurationDataPlaneGroupAutoscaleAutopilot", "title": "Configuration Autoscale Autopilot", "description": "Object that describes the autopilot autoscaling strategy. For serverless.v1 kind of cloud gateways, this field should be omitted.", "type": "object", "properties": { "kind": { "type": "string", "enum": [ "autopilot" ] }, "base_rps": { "description": "Base number of requests per second that the deployment target should support.", "type": "integer", "example": 1 }, "max_rps": { "description": "Max number of requests per second that the deployment target should support. If not set, this defaults to 10x base_rps. This field is deprecated and shouldn't be used in new configurations as it will be removed in a future version. max_rps is now calculated as 10x base_rps.", "type": "integer", "example": 1000, "deprecated": true, "x-speakeasy-param-computed": true } }, "additionalProperties": false, "required": [ "kind", "base_rps" ] }