Create SASE Config (v2.1)
POST/v2.1/api/tenants/:tenant_id/prismasase_connections/configs
Create a new SASE connection config.
Request
Path Parameters
tenant_id stringrequired
ID of the tenant.
- application/json
Body
id string
The SASE connection global configuration ID.
prisma_sdwan_bgp_as_number integerrequired
The Prisma SD-WAN BGP AS number.
security_zone_id string
The security zone ID.
tunnel_cidr stringrequired
The service link inner IP pool.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
id string
The SASE connection global configuration ID.
prisma_sdwan_bgp_as_number integerrequired
The Prisma SD-WAN BGP AS number.
security_zone_id string
The security zone ID.
tunnel_cidr stringrequired
The service link inner IP pool.
{
"id": "string",
"prisma_sdwan_bgp_as_number": 0,
"security_zone_id": "string",
"tunnel_cidr": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "INVALID_JSON_EXTRA_ATTRIBUTE"
},
{
"code": "PRISMA_ACCESS_BGP_NUMBER_MISSING"
},
{
"code": "PRISMA_ACCESS_BGP_NUMBER_INVALID"
},
{
"code": "SERVICE_LINK_INNER_IP_POOL_MISSING"
},
{
"code": "SERVICE_LINK_INNER_IP_POOL_INVALID"
},
{
"code": "IPSECCONFIG_INVALID_DPD_DELAY"
},
{
"code": "IPSECCONFIG_INVALID_IKE_LIFETIME"
},
{
"code": "IPSECCONFIG_INVALID_DHGROUPS"
},
{
"code": "IPSECCONFIG_INVALID_ENCRYPTION"
},
{
"code": "IPSECCONFIG_INVALID_HASH"
}
]
}
}
Loading...