mirror of
https://github.com/minio/minio.git
synced 2025-01-14 00:05:02 -05:00
855 B
855 B
Users Collection
minio: {
version: 1,
users: [{
secret-key: string,
access-key: string,
status: string // enum: ok, disabled, deleted
}],
hosts: [{
address: string,
uuid: string,
status: string, // enum: ok, disabled, deleted, busy, offline,
disks: [{
disk: string,
uuid: string,
status: string // ok, offline, disabled, busy
}]
}]
}
Bucket Collection
buckets: {
bucket: string, // index
permissions: string,
deleted: bool
}
Object Collection
objects: {
key: string, // index
createdAt: Date,
hosts[16]: [{
host: string,
disk: string,
}]
deleted: bool
}
meta: {
key: string, // index
type: string // content-type
// type speific meta
}