Create Prisma Access Config with Remote Networks (v2.0)
Create a Prisma Access configuration with remote networks and the security processing node.
Path Parameters
- site_id string required
The ID of the site.
- application/json
Request Body
- id string
The 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 required
The site ID of the prisma access configs.
Responses
- 200
- 400
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- id string
The 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 required
The site ID of the prisma access configs.
{
"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": "INVALID_JSON_INPUT"
},
{
"code": "INVALID_JSON_EXTRA_ATTRIBUTE"
},
{
"code": "SITE_NOT_FOUND"
},
{
"code": "DEM_PA_CONFIG_EXISTS"
}
]
}
}
Loading...