Skip to content

Commit f05b0e6

Browse files
OAS Update
1 parent 4ded3f5 commit f05b0e6

File tree

1 file changed

+43
-2
lines changed

1 file changed

+43
-2
lines changed

services/auditlog/v2/auditlog.json

Lines changed: 43 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,24 @@
111111
},
112112
"description": "Resource was not found"
113113
},
114+
"TooManyRequests": {
115+
"content": {
116+
"application/json": {
117+
"examples": {
118+
"Too Many Requests Example": {
119+
"value": {
120+
"message": "Too many requests",
121+
"status": "429"
122+
}
123+
}
124+
},
125+
"schema": {
126+
"$ref": "#/components/schemas/gatewayError"
127+
}
128+
}
129+
},
130+
"description": "Too many requests"
131+
},
114132
"Unauthorized": {
115133
"content": {
116134
"application/json": {
@@ -310,7 +328,7 @@
310328
"error": {
311329
"properties": {
312330
"message": {
313-
"description": "Message describing the error that occured",
331+
"description": "Message describing the error that occurred",
314332
"type": "string"
315333
},
316334
"path": {
@@ -330,6 +348,20 @@
330348
"title": "error",
331349
"type": "object"
332350
},
351+
"gatewayError": {
352+
"properties": {
353+
"message": {
354+
"description": "Message describing the error that occurred",
355+
"type": "string"
356+
},
357+
"status": {
358+
"description": "Status Code in which the call resulted",
359+
"type": "string"
360+
}
361+
},
362+
"title": "gatewayError",
363+
"type": "object"
364+
},
333365
"initiator": {
334366
"description": "Information about who made the request.",
335367
"properties": {
@@ -405,7 +437,7 @@
405437
"name": "STACKIT Core Platform",
406438
"url": "https://support.stackit.cloud/servicedesk"
407439
},
408-
"description": "API Endpoints to retrieve recorded actions and resulting changes in the system.\n\n### Documentation\nThe user documentation with explanations how to use the api can be found \n[here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html).\n\n### Audit Logging\nChanges on organizations, folders and projects and respective cloud resources are logged and collected in the audit \nlog.\n\n### API Constraints\nThe audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at \nonce is 24 hours. Requests are rate limited - the current maximum is 1 request per second.",
440+
"description": "API Endpoints to retrieve recorded actions and resulting changes in the system.\n\n### Documentation\nThe user documentation with explanations how to use the api can be found \n[here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html).\n\n### Audit Logging\nChanges on organizations, folders and projects and respective cloud resources are logged and collected in the audit \nlog.\n\n### API Constraints\nThe audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at \nonce is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute.",
409441
"termsOfService": "https://www.stackit.de/en/general-terms-and-conditions/terms-of-use/",
410442
"title": "Audit Log API",
411443
"version": "2.0"
@@ -442,6 +474,9 @@
442474
},
443475
"404": {
444476
"$ref": "#/components/responses/NotFound"
477+
},
478+
"429": {
479+
"$ref": "#/components/responses/TooManyRequests"
445480
}
446481
},
447482
"summary": "Folder - Download audit log entries",
@@ -497,6 +532,9 @@
497532
},
498533
"404": {
499534
"$ref": "#/components/responses/NotFound"
535+
},
536+
"429": {
537+
"$ref": "#/components/responses/TooManyRequests"
500538
}
501539
},
502540
"summary": "Organization - Download audit log entries",
@@ -552,6 +590,9 @@
552590
},
553591
"404": {
554592
"$ref": "#/components/responses/NotFound"
593+
},
594+
"429": {
595+
"$ref": "#/components/responses/TooManyRequests"
555596
}
556597
},
557598
"summary": "Project - Download audit log entries",

0 commit comments

Comments
 (0)