{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConfigurationDataPlaneGroupAutoscaleStatic", "title": "Configuration Autoscale Static", "description": "Object that describes the static autoscaling strategy. Deprecated in favor of the autopilot autoscaling strategy. Static autoscaling will be removed in a future version. For serverless.v1 kind of cloud gateways, this field should be omitted.", "type": "object", "properties": { "kind": { "type": "string", "enum": [ "static" ] }, "instance_type": { "$ref": "#/components/schemas/InstanceTypeName" }, "requested_instances": { "description": "Number of data-planes the deployment target will contain.", "type": "integer", "example": 3 } }, "additionalProperties": false, "deprecated": true, "required": [ "kind", "instance_type", "requested_instances" ] }