diff --git a/Writerside/topics/flyte/flyteapi/Guilds-Endpoint.md b/Writerside/topics/flyte/flyteapi/Guilds-Endpoint.md deleted file mode 100644 index 6ed56ee..0000000 --- a/Writerside/topics/flyte/flyteapi/Guilds-Endpoint.md +++ /dev/null @@ -1,2 +0,0 @@ -# Guilds Endpoint - diff --git a/Writerside/topics/flyte/flyteapi/Users-Endpoint.md b/Writerside/topics/flyte/flyteapi/Users-Endpoint.md deleted file mode 100644 index be78da8..0000000 --- a/Writerside/topics/flyte/flyteapi/Users-Endpoint.md +++ /dev/null @@ -1,3 +0,0 @@ -# Users Endpoint - -Start typing here... \ No newline at end of file diff --git a/Writerside/topics/flyte/flyteapi/endpoints/status/openapi.yaml b/Writerside/topics/flyte/flyteapi/endpoints/status/openapi.yaml index 4fcebf9..4661005 100644 --- a/Writerside/topics/flyte/flyteapi/endpoints/status/openapi.yaml +++ b/Writerside/topics/flyte/flyteapi/endpoints/status/openapi.yaml @@ -17,6 +17,8 @@ paths: application/json: schema: $ref: '#/components/schemas/StatusCheck' + '401': + description: Unauthorized post: summary: Update status of a Flyte service. @@ -31,6 +33,8 @@ paths: responses: '201': description: Created + '401': + description: Unauthorized components: schemas: @@ -54,12 +58,20 @@ components: items: type: object properties: - id: - type: string - name: - type: string - healthy: - type: boolean + id: + type: string + name: + type: string + healthy: + type: boolean + + UnauthorizedError: + type: object + properties: + message: + type: string + documentation_url: + type: string securitySchemes: @@ -69,6 +81,6 @@ components: bearerFormat: JWT security: - - bearerAuth: [] + - bearerAuth: [ ]