Delete Bucket
DELETE/api/v2/instance/:instanceId/minio
The delete endpoint only removes the bucket connection information from the API database.
Request
Path Parameters
instanceId stringrequired
ID of the instance.
Responses
- 200
- 400
- 401
- 403
- 404
Success - status: 200
- application/json
- Schema
- Example (from schema)
Schema
bucketId stringrequired
enabled booleanrequired
bucketName stringrequired
accessId stringrequired
secretKey stringrequired
endPoint stringrequired
region stringrequired
port numberrequired
useSSL booleanrequired
ssl object
certificate Certificate
Certificate for your domain
privateKey Private Key
Private key for your domain
instanceInstanceId stringrequired
{
"bucketId": "string",
"enabled": true,
"bucketName": "string",
"accessId": "string",
"secretKey": "string",
"endPoint": "string",
"region": "string",
"port": 0,
"useSSL": true,
"ssl": {
"certificate": "string",
"privateKey": "string"
},
"instanceInstanceId": "string"
}
BadRequestException
- application/json
- Schema
- Example (from schema)
Schema
message string[]required
Default value: string,[object Object]
error stringrequired
statusCode numberrequired
{
"message": [
"string"
],
"error": "string",
"statusCode": 0
}
UnauthorizedException
- application/json
- Schema
- Example (from schema)
Schema
message string[]required
Default value: string,[object Object]
error stringrequired
statusCode numberrequired
{
"message": [
"string"
],
"error": "string",
"statusCode": 0
}
ForbiddenException
- application/json
- Schema
- Example (from schema)
Schema
message string[]required
Default value: string,[object Object]
error stringrequired
statusCode numberrequired
{
"message": [
"string"
],
"error": "string",
"statusCode": 0
}
NotFoundException
- application/json
- Schema
- Example (from schema)
Schema
message string[]required
Default value: string,[object Object]
error stringrequired
statusCode numberrequired
{
"message": [
"string"
],
"error": "string",
"statusCode": 0
}
Loading...