Get Service Connections for Tenant (v2.0)
GET/v2.0/api/tenants/:tenant_id/serviceconnections
List all service connections for a given tenant.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
count int32
The total number.
id string
The ID.
items ServiceConnection[]
description
The description of the service connection.
id string
The ID.
is_primary boolean
The service connection is primary or not. True or False.
name stringrequired
The name of the service connection.
pa_compute_region_id string
The prima access compute region ID.
pa_compute_region_oid stringrequired
The prima access compute region oid.
security_service_ep_id string
The security service ID.
service_endpoint_id string
The service endpoint ID.
site_id string
The site ID.
tags string[]
A information field that can be added to identify the service connection. Maximum 10 unique tags of length 1024 each are allowed.
tenant_id stringrequired
Tenant Id: NotNull Digits(fraction = 0, integer = 20, TENANT_ID_INVALID_0001)
type ServiceConnectionTyperequired
The service connection type value.
value string
Value
{
"count": 0,
"id": "string",
"items": [
{
"id": "string",
"is_primary": true,
"name": "string",
"pa_compute_region_id": "string",
"pa_compute_region_oid": "string",
"security_service_ep_id": "string",
"service_endpoint_id": "string",
"site_id": "string",
"tags": [
"string"
],
"tenant_id": "string",
"type": {
"value": "string"
}
}
]
}
Loading...