Retrieves the ruleset by ID.
Retrieves a list of resources that are associated to the specified ruleset.
Path parameters
-
The mandatory ruleset ID.
Query parameters
-
include_associations boolean
Retrieves a list of resources that are associated to the specified ruleset.
Default value is
false
.
GET /deployments/traffic-filter/rulesets/{ruleset_id}
curl \
-X GET https://api.elastic-cloud.com/api/v1/deployments/traffic-filter/rulesets/{ruleset_id}
Response examples (200)
{
"id": "string",
"name": "string",
"description": "string",
"type": "string",
"include_by_default": true,
"region": "string",
"rules": [
{
"id": "string",
"remote_cluster_org_id": "string",
"remote_cluster_id": "string",
"description": "string",
"source": "string",
"azure_endpoint_name": "string",
"azure_endpoint_guid": "string",
"egress_rule": {
"target": "string",
"ports": [
42
],
"protocol": "all"
}
}
],
"associations": [
{
"entity_type": "string",
"id": "string"
}
],
"total_associations": 42
}
Response examples (404)
# Headers
x-cloud-error-codes: traffic_filter.not_found
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}
Response examples (500)
# Headers
x-cloud-error-codes: traffic_filter.request_execution_failed
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}