Area - Distributed Secure Internet GateWay API References (1.5.0)
Download OpenAPI specification:Download
Area/Zone are the resource accommodation units. The Area belongs specific Area/Zone.
Get Area
Get Area resources.
Authorizations:
query Parameters
id | string ^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$ The ID of the resource. |
name | string ^[a-zA-Z0-9-_]{1,255}$ A name of the resource. |
Responses
200
OK
400
Bad Request
401
Unauthorized
500
Internal Server Error
get/v1/areas
https://api.ntt.com/dsigw-erg/v1/areas
Response samples
- 200
- 400
- 401
- 500
Content type
application/json
Copy
Expand all Collapse all {- "areas": [
- {
- "id": "12345678-1234-1234-1234-1234567890a1",
- "name": "JPEAST",
- "description": "japan-east",
- "zones": [
- {
- "name": "jp7-zone1-groupa",
- "description": "jp7-zone1-groupa",
- "cloudType": "ECL"
}, - {
- "name": "jp7-zone1-groupb",
- "description": "jp7-zone1-groupb",
- "cloudType": "ECL"
}, - {
- "name": "jp7-zone1-groupc",
- "description": "jp7-zone1-groupc",
- "cloudType": "ECL"
}
]
}, - {
- "id": "12345678-1234-1234-1234-1234567890a2",
- "name": "JPWEST",
- "description": "japan-west",
- "zones": [
- {
- "name": "jp6-zone1-groupa",
- "description": "jp6-zone1-groupa",
- "cloudType": "ECL"
}, - {
- "name": "jp6-zone1-groupb",
- "description": "jp6-zone1-groupb",
- "cloudType": "ECL"
}, - {
- "name": "jp6-zone1-groupc",
- "description": "jp6-zone1-groupc",
- "cloudType": "ECL"
}
]
}
]
}
Get Area Details
Get a Area resource.
Authorizations:
path Parameters
area_id required | string ^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$ |
header Parameters
X-Auth-Token required | string The keystone token. |
Responses
200
OK
400
Bad Request
401
Unauthorized
404
Not Found
500
Internal Server Error
get/v1/areas/{area_id}
https://api.ntt.com/dsigw-erg/v1/areas/{area_id}
Response samples
- 200
- 400
- 401
- 404
- 500
Content type
application/json
Copy
Expand all Collapse all {- "area": {
- "id": "12345678-1234-1234-1234-1234567890a1",
- "name": "JPEAST",
- "description": "japan-east",
- "zones": [
- {
- "name": "jp7-zone1-groupa",
- "cloudType": "ECL",
- "description": "jp7-zone1-groupa"
}, - {
- "name": "jp7-zone1-groupb",
- "cloudType": "ECL",
- "description": "jp7-zone1-groupb"
}, - {
- "name": "jp7-zone1-groupc",
- "cloudType": "ECL",
- "description": "jp7-zone1-groupc"
}
]
}
}