Get installed components in edge gateway
GET/organizations/:organizationId/edge-gateways/:edgeGatewayId/installed-components
Get installed components in edge gateway
Request
Path Parameters
organizationId stringrequired
The ID of organization.
edgeGatewayId stringrequired
Edge Gateway ID
Responses
- 200
- 401
- 403
- 422
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
data object[]required
Data of the edge gateway.
componentName stringrequired
componentVersion stringrequired
isRoot booleanrequired
lastInstallationSource stringrequired
lastReportedTimestamp required
lastStatusChangeTimestamp required
lifecycleState stringrequired
lifecycleStateDetails stringrequired
lifecycleStatusCodes string[]required
{
"data": [
{
"componentName": "string",
"componentVersion": "string",
"isRoot": true,
"lastInstallationSource": "string",
"lastReportedTimestamp": {},
"lastStatusChangeTimestamp": {},
"lifecycleState": "string",
"lifecycleStateDetails": "string",
"lifecycleStatusCodes": [
"string"
]
}
]
}
{
"data": [
{
"componentName": "com.example.ComponentA",
"componentVersion": "1.0.0",
"isRoot": false,
"lastInstallationSource": "https://example.com/components/componentA/1.0.0",
"lastReportedTimestamp": 1700000000000,
"lastStatusChangeTimestamp": 1704067200000,
"lifecycleState": "RUNNING",
"lifecycleStateDetails": "The component is currently running.",
"lifecycleStatusCodes": [
"NORMAL"
]
}
]
}
The request has not permission.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The request has not permission.
message stringrequired
The request has not permission message.
{
"error": "string",
"message": "string"
}
{
"error": "Unauthenticated",
"message": "Authentication is required and has failed or has not yet been provided."
}
The request has not permission.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The request has not permission.
message stringrequired
The request has not permission message.
{
"error": "string",
"message": "string"
}
{
"error": "Forbidden",
"message": "Access to the requested resource is forbidden."
}
The input data has invalid.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The input data has invalid.
message stringrequired
The input data has invalid message.
{
"error": "string",
"message": "string"
}
{
"error": "ValidationError",
"message": "Input data validation failed."
}
Loading...