Cell-Version - Distributed Secure Internet GateWay API References (1.5.0)
Download OpenAPI specification:Download
Cell-Version is a version of Cell.
Get CellVersion
Get Cell-Version 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/cell-versions
https://api.ntt.com/dsigw-erg/v1/cell-versions
Response samples
- 200
- 400
- 401
- 500
Content type
application/json
Copy
Expand all Collapse all {- "cellVersions": [
- {
- "id": "12345678-1234-1234-1234-1234567890a1",
- "name": "v1.0",
- "updatableFrom": [ ],
- "status": "ACTIVE"
}, - {
- "id": "12345678-1234-1234-1234-1234567890a2",
- "name": "v1.1",
- "updatableFrom": [
- "12345678-1234-1234-1234-1234567890a1"
], - "status": "DEPRECATED"
}, - {
- "id": "12345678-1234-1234-1234-1234567890a3",
- "name": "v2.0",
- "updatableFrom": [
- "12345678-1234-1234-1234-1234567890a1",
- "12345678-1234-1234-1234-1234567890a2"
], - "status": "DEPRECATED"
}
]
}
Get CellVersion Details
Get a Cell-Version resource.
Authorizations:
path Parameters
cell-version_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/cell-versions/{cell-version_id}
https://api.ntt.com/dsigw-erg/v1/cell-versions/{cell-version_id}
Response samples
- 200
- 400
- 401
- 404
- 500
Content type
application/json
Copy
Expand all Collapse all {- "cellVersion": {
- "id": "12345678-1234-1234-1234-1234567890a3",
- "name": "v2.0",
- "updatableFrom": [
- "12345678-1234-1234-1234-1234567890a1",
- "12345678-1234-1234-1234-1234567890a2"
], - "status": "ACTIVE"
}
}