Get Prisma Access Configs for a Site (v2.0)
List all all Prisma Access configurations for a site.
Path Parameters
- site_id string required
The ID of the site.
Responses
- 200
- 400
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- count int32
The count of the query list.
- deleted_count int64
The deleted number of queries.
- deleted_ids string[]
The deleted query IDs.
- description
Description of the query. Max size = 256.
- id string
The ID.
- next_query object
Details of the next query.
- total_count int64
Total number of queries.
items PrismaAccessConfig[]
Array [id stringThe ID of the prisma access configs.
remote_networks RemoteNetwork[]
The details of the prisma access configuration remote networks.
Array [remote_network_names string[]The names of the remote networks.
spn_name string requiredThe SPN (Security Processing Name) of the prisma access config.
]site_id string requiredThe site ID of the prisma access configs.
]
{
"count": 0,
"deleted_count": 0,
"deleted_ids": [
"string"
],
"id": "string",
"next_query": {},
"total_count": 0,
"items": [
{
"id": "string",
"remote_networks": [
{
"remote_network_names": [
"string"
],
"spn_name": "string"
}
],
"site_id": "string"
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
_error ErrorResponse[]
Array [code stringmessage string]
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "SITE_NOT_FOUND"
}
]
}
}
Loading...