mirror of
https://github.com/OpenMaxIO/openmaxio-object-browser
synced 2026-07-01 07:41:18 -07:00
Pod Events (#807)
* Pod Events * restoring files * restoring files * make assets Co-authored-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com> Co-authored-by: Adam Stafford <adam@minio.io> Co-authored-by: Alex <33497058+bexsoft@users.noreply.github.com>
This commit is contained in:
50
swagger.yml
50
swagger.yml
@@ -2505,6 +2505,35 @@ paths:
|
||||
tags:
|
||||
- AdminAPI
|
||||
|
||||
/namespaces/{namespace}/tenants/{tenant}/pods/{podName}/events:
|
||||
get:
|
||||
summary: Get Events for Pod
|
||||
operationId: GetPodEvents
|
||||
parameters:
|
||||
- name: namespace
|
||||
in: path
|
||||
required: true
|
||||
type: string
|
||||
- name: tenant
|
||||
in: path
|
||||
required: true
|
||||
type: string
|
||||
- name: podName
|
||||
in: path
|
||||
required: true
|
||||
type: string
|
||||
responses:
|
||||
200:
|
||||
description: A successful response.
|
||||
schema:
|
||||
$ref: "#/definitions/eventListWrapper"
|
||||
default:
|
||||
description: Generic error response.
|
||||
schema:
|
||||
$ref: "#/definitions/error"
|
||||
tags:
|
||||
- AdminAPI
|
||||
|
||||
/namespaces/{namespace}/tenants/{tenant}/certificates:
|
||||
put:
|
||||
summary: Tenant Update Certificates
|
||||
@@ -5311,3 +5340,24 @@ definitions:
|
||||
name:
|
||||
type: string
|
||||
|
||||
eventListWrapper:
|
||||
type: array
|
||||
items:
|
||||
$ref: "#/definitions/eventListElement"
|
||||
|
||||
eventListElement:
|
||||
type: object
|
||||
properties:
|
||||
namespace:
|
||||
type: string
|
||||
last_seen:
|
||||
type: integer
|
||||
format: int64
|
||||
event_type:
|
||||
type: string
|
||||
reason:
|
||||
type: string
|
||||
object:
|
||||
type: string
|
||||
message:
|
||||
type: string
|
||||
|
||||
Reference in New Issue
Block a user