{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateConfigurationDataPlaneGroup", "title": "CreateConfigurationDataPlaneGroup", "description": "Object that describes where to deploy a data-plane group, along with how many instances.", "type": "object", "properties": { "provider": { "$ref": "#/components/schemas/ProviderName" }, "region": { "$ref": "#/components/schemas/ProviderRegionId" }, "cloud_gateway_network_id": { "$ref": "#/components/schemas/NetworkId" }, "autoscale": { "$ref": "#/components/schemas/ConfigurationDataPlaneGroupAutoscale" }, "environment": { "$ref": "#/components/schemas/ConfigurationDataPlaneGroupEnvironment" } }, "additionalProperties": false, "required": [ "provider", "region" ] }