Query DB for Tenant Level Probe Configs (v2.0)
POST/v2.0/api/tenants/:tenant_id/probeconfigs/query
Query the DB for the limit number of tenant level probe configs that match query parameters.
Request
Path Parameters
The tenant ID.
- application/json
Body
Query Details for ProbeConfig
- Array [
- ]
aggregate Aggregate
The aggregate number of probe configs that match the query parameters.
data AggregateData[]
The details of the aggregate data.
Value of the aggregate data.
View the aggregate date.
Field
The name of the query response.
Possible values: [max
, count
, min
, avg
, sum
]
Operator
QoS application aggregate statistics.
The unit.
The destination page.
The number probe configs deleted for a time frame.
Group the probe configs for the query.
List the probe configs by ID.
Return the ID of a specified query in the current session.
The query limit.
The limit.
Retrieve information from a field.
List the fields to query.
The total number of query parameters.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
The actual count.
The deleted number.
The deleted IDs.
Description of the query. Max size = 256.
The ID.
Details of the next query.
The tenant ID.
Total number.
items ProbeConfigQueryFilter[]
The description of the probe configuration. Max size = 256.
The probe configuration based on rules that are enabled.
endpoints ProbeEndpoint[]required
Info on the probe endpoint configurations.
Allow insecure HTTPS connections. True or False.
The DNS server IP address.
The FQDN for the probe configuration.
The HTTP response codes.
The HTTP response string.
The IPv4 address for the probe configuration.
Possible values: [vpn
, direct
, servicelink
, all
]
The probe path type selected = Direct, Prisma SD-WAN VPN, and Direct VPN.
The probe count value which is a multiple of the probe cycle duration; multiples of 1, 2, and 3.
Probe cycle duration in minutes or seconds.
Possible values: [http
, https
, icmp
, dns
]
The selected protocol = HTTP, HTTPS, DNS, and ICMP.
The probe config ID.
The probe config name. Max size = 128.
An information field that can be added to identify the probe config. Maximum 10 unique tags of length 1024 each are allowed.
{
"count": 0,
"deleted_count": 0,
"deleted_ids": [
"string"
],
"id": "string",
"next_query": {},
"tenant_id": "string",
"total_count": 0,
"items": [
{
"enabled": true,
"endpoints": [
{
"allow_insecure_https_connection": true,
"dns_server_ip": "string",
"fqdn": "string",
"http_response_codes": [
0
],
"http_response_string": "string",
"ipv4_address": "string",
"path_types": [
"vpn"
],
"probe_count": 0,
"probe_cycle_duration": 0,
"protocol": "http"
}
],
"id": "string",
"name": "string",
"tags": [
"string"
]
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
The error code.
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "BAD_QUERY_REQUEST"
}
]
}
}