Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions tdei-api-gateway.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"description": "Unauthenticated request. Check your access token."
},
"500": {
"description": "An Internal server error occured"
"description": "An Internal server error occurred"
}
},
"security": [
Expand Down Expand Up @@ -3207,7 +3207,7 @@
"Metrics"
],
"summary": "Gets the Service metrics",
"description": "This endpoint provides detailed metrics about datasets categorized by Project Group ID within the TDEI platform. It includes the total number of datasets and their cumulative size in megabytes for each type, such as osw, flex, and pathways.",
"description": "This endpoint provides detailed metrics about dataset categorized by Service within the chosen Project Group. It includes the total number of datasets and their cumulative size in megabytes.",
"operationId": "service-metrics",
"parameters": [
{
Expand Down Expand Up @@ -3237,6 +3237,9 @@
"401": {
"description": "Unauthenticated request"
},
"400": {
"description": "Invalid project group id."
},
"404": {
"description": "Not found error."
},
Expand Down Expand Up @@ -4290,6 +4293,22 @@
"ServiceMetrics": {
"type": "object",
"properties": {
"project_group": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"name"
]
},
"services": {
"type": "array",
"items": {
Expand Down Expand Up @@ -4321,6 +4340,7 @@
}
},
"required": [
"project_group",
"services"
]
}
Expand Down
Loading