swagger-docs/storage.yml

108 lines
2.8 KiB
YAML
Raw Normal View History

2020-03-28 00:10:53 +01:00
swagger: "2.0"
2020-03-17 17:07:51 +01:00
info:
2020-03-28 00:10:53 +01:00
description: "This is the internal storage interface of the Birbnetes system."
2020-04-29 22:45:42 +02:00
version: "1.1.3"
2020-03-28 00:10:53 +01:00
title: "Storage Service"
contact:
email: "tormakristof@tormakristof.eu"
license:
name: "Apache 2.0"
url: "http://www.apache.org/licenses/LICENSE-2.0.html"
host: "dev.k8s.tcloud.enginner"
basePath: "/api/storage/v1"
tags:
- name: "storage"
description: "Storage Service definition"
schemes:
- "https"
- "http"
2020-03-17 17:07:51 +01:00
paths:
/object:
post:
2020-03-28 00:10:53 +01:00
tags:
- "storage"
2020-03-29 21:48:18 +02:00
summary: "Uploads an object into the service"
2020-03-28 00:10:53 +01:00
description: ""
operationId: "uploadFile"
consumes:
- "multipart/form-data"
produces:
- "application/json"
parameters:
2020-04-29 22:45:42 +02:00
- name: "description"
2020-03-28 00:10:53 +01:00
in: "formData"
2020-04-29 22:45:42 +02:00
description: "This is actually a SoundDescription but swagger 2.0 does not support that"
2020-03-28 00:10:53 +01:00
required: true
type: "string"
2020-04-29 22:45:42 +02:00
- name: "soundFile"
2020-03-28 00:10:53 +01:00
in: "formData"
description: "Wave file to upload"
required: true
type: "file"
2020-03-17 17:07:51 +01:00
responses:
2020-03-28 00:10:53 +01:00
200:
description: "Object successfully stored. This means that a get request for this object should be successful."
schema:
$ref: "#/definitions/ApiResponse"
409:
description: "An object with this Tag already exists"
schema:
$ref: "#/definitions/ApiResponse"
/object/{objectTag}:
get:
2020-03-28 00:10:53 +01:00
tags:
- "storage"
2020-03-29 21:48:18 +02:00
summary: "Download a wave file identified by Tag"
2020-03-28 00:10:53 +01:00
description: "Returns a single pet"
operationId: "getPetById"
produces:
- "application/json"
- "audio/wave"
parameters:
2020-03-28 00:10:53 +01:00
- name: "objectTag"
in: "path"
description: "Tag of wave file to return"
required: true
type: "string"
responses:
2020-03-28 00:10:53 +01:00
200:
description: "The requested audio file."
404:
description: "An object with this Tag does not exist."
schema:
$ref: "#/definitions/ApiResponse"
delete:
2020-03-28 00:10:53 +01:00
tags:
- "storage"
2020-03-29 21:48:18 +02:00
summary: "Deletes a wave file identified by Tag"
2020-03-28 00:10:53 +01:00
description: ""
operationId: "deleteWave"
produces:
- "application/json"
parameters:
2020-03-28 00:10:53 +01:00
- name: "objectTag"
in: "path"
description: "Tag of wave file to delete"
required: true
type: "string"
responses:
2020-03-28 00:10:53 +01:00
200:
description: "Successful deletion"
404:
description: "An object with this Tag does not exist."
schema:
$ref: "#/definitions/ApiResponse"
definitions:
ApiResponse:
type: "object"
properties:
status:
type: "string"
msg:
2020-04-29 22:45:42 +02:00
type: "string"
SoundDescription:
type: "object"
properties:
tag:
2020-03-28 00:10:53 +01:00
type: "string"