mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
126 lines
2.6 KiB
JSON
126 lines
2.6 KiB
JSON
{
|
|
"create": [
|
|
{
|
|
"title": "Create an object",
|
|
"run_check": false,
|
|
"request": {
|
|
"object": "<file bytes>",
|
|
"name": "images/file.jpg",
|
|
"visibility": "public"
|
|
},
|
|
"response": {
|
|
"url": "https://example.com/foo/bar/file.jpg"
|
|
}
|
|
}
|
|
],
|
|
"update": [
|
|
{
|
|
"title": "Update an object",
|
|
"run_check": false,
|
|
"request": {
|
|
"object": "<file bytes>",
|
|
"name": "images/file.jpg",
|
|
"visibility": "public"
|
|
},
|
|
"response": {
|
|
"url": "https://example.com/foo/bar/images/file.jpg"
|
|
}
|
|
}
|
|
],
|
|
"delete": [
|
|
{
|
|
"title": "Delete an object",
|
|
"run_check": false,
|
|
"request": {
|
|
"name": "images/file.jpg"
|
|
},
|
|
"response": {
|
|
}
|
|
}
|
|
],
|
|
"list": [
|
|
{
|
|
"title": "List objects with prefix",
|
|
"run_check": false,
|
|
"request": {
|
|
"prefix": "images/"
|
|
},
|
|
"response": {
|
|
"objects": [
|
|
{
|
|
"name": "images/file.jpg",
|
|
"modified": 1638549232,
|
|
"url": "https://example.com/foo/bar/images/file.jpg"
|
|
},
|
|
{
|
|
"name": "images/file2.jpg",
|
|
"modified": 1638547232,
|
|
"url": "https://example.com/foo/bar/images/file2.jpg"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
],
|
|
"head": [
|
|
{
|
|
"title": "Head an object",
|
|
"run_check": false,
|
|
"request": {
|
|
"name": "images/file.jpg"
|
|
},
|
|
"response": {
|
|
"object": {
|
|
"name": "images/file.jpg",
|
|
"modified": 1638549232,
|
|
"created": 1638546232,
|
|
"url": "https://example.com/foo/bar/images/file.jpg",
|
|
"visibility": "public"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"read": [
|
|
{
|
|
"title": "Read an object",
|
|
"run_check": false,
|
|
"request": {
|
|
"name": "images/file.jpg"
|
|
},
|
|
"response": {
|
|
"object": {
|
|
"name": "images/file.jpg",
|
|
"modified": 1638549232,
|
|
"created": 1638546232,
|
|
"url": "https://example.com/foo/bar/images/file.jpg",
|
|
"visibility": "public",
|
|
"data": "<file bytes>"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"download": [
|
|
{
|
|
"title": "Download an object",
|
|
"run_check": false,
|
|
"request": {
|
|
"name": "images/file.jpg"
|
|
},
|
|
"response": {
|
|
"url": "https://example.com/foo/bar/images/file.jpg"
|
|
}
|
|
}
|
|
],
|
|
"upload": [
|
|
{
|
|
"title": "Upload an object",
|
|
"run_check": false,
|
|
"request": {
|
|
"name": "images/file.jpg"
|
|
},
|
|
"response": {
|
|
"url": "https://example.com/foo/bar/images/file.jpg"
|
|
}
|
|
}
|
|
]
|
|
}
|