Gets information about the specified network zone.
The request produces an application/json payload.
GET
GET /networkZones/{id} endpoint of the Cluster APITo execute this request, you need the Read network zones (networkZones.read) permission assigned to your API token. To learn how to obtain and use it, see Authentication.
| Parameter | Type | Description | In | Required |
|---|---|---|---|---|
| id | string | The ID of the required network zone. | path | Required |
| Code | Type | Description |
|---|---|---|
| 200 | Network | Success |
| 4XX | Error | Client side error. |
| 5XX | Error | Server side error. |
NetworkZone objectConfiguration of a network zone.
| Element | Type | Description |
|---|---|---|
| alternativeZones | string[] | A list of alternative network zones. |
| description | string | A short description of the network zone. |
| fallbackMode | string | The fallback mode of the network zone. The element can hold these values
|
| id | string | The ID of the network zone. |
| numOfConfiguredActiveGates | integer | The number of ActiveGates in the network zone. |
| numOfConfiguredOneAgents | integer | The number of OneAgents that are configured to use the network zone as primary. |
| numOfOneAgentsFromOtherZones | integer | The number of OneAgents from other network zones that are using ActiveGates in the network zone. This is a fraction of numOfOneAgentsUsing. One possible reason for switching to another zone is that a firewall is preventing a OneAgent from connecting to any ActiveGate in the preferred network zone. |
| numOfOneAgentsUsing | integer | The number of OneAgents that are using ActiveGates in the network zone. |
| overridesGlobal | boolean | Indicates if a global network zone is overridden (managed only). |
| scope | string | Specifies the scope of the network zone (managed only). |
ErrorEnvelope object| Element | Type | Description |
|---|---|---|
| error | Error | - |
Error object| Element | Type | Description |
|---|---|---|
| code | integer | The HTTP status code |
| constraintViolations | Constraint | A list of constraint violations |
| message | string | The error message |
ConstraintViolation objectA list of constraint violations
| Element | Type | Description |
|---|---|---|
| location | string | - |
| message | string | - |
| parameterLocation | string | -The element can hold these values
|
| path | string | - |
{"alternativeZones": ["string"],"description": "string","fallbackMode": "ANY_ACTIVE_GATE","id": "string","numOfConfiguredActiveGates": 1,"numOfConfiguredOneAgents": 1,"numOfOneAgentsFromOtherZones": 1,"numOfOneAgentsUsing": 1,"overridesGlobal": true,"scope": "string"}
{"error": {"code": 1,"constraintViolations": [{"location": "string","message": "string","parameterLocation": "HEADER","path": "string"}],"message": "string"}}