DDoS Protection
List DDoS protection profile templates
This endpoint returns a comprehensive list of pre-configured DDoS protection templates that can be used to create protection profiles. Each template contains predefined security rules, field configurations, and protection parameters optimized for different types of applications and attack vectors.
Templates include metadata such as name, description, and configurable fields with validation schemas. These templates serve as blueprints for creating customized DDoS protection profiles tailored to specific security requirements.
get/cloud/v1/ddos/profile-templates/{region_id}
Path parameters
region_idinteger required
Unique identifier of the cloud region where DDoS protection operations will be performed
Example:1
Unique identifier of the cloud region where DDoS protection operations will be performed
Response
OK
Example response
{
"count": 1,
"results": [
{
"description": "description",
"fields": [
{
"description": "ARK server ports. Valid port values are in range 1000-65535",
"id": 11,
"name": "ARK Ports",
"required": true,
"validation_schema": {
"items": {
"maximum": 65535,
"minimum": 1000,
"type": "integer"
},
"minItems": 1,
"type": "array"
}
}
],
"id": 123,
"name": "ICMP port"
}
]
}