mirror of
https://github.com/minio/minio.git
synced 2025-11-10 14:09:48 -05:00
Add chinese translation docs. (#5224)
This commit is contained in:
committed by
Dee Koder
parent
8b4d7048f8
commit
135a6a7bb4
24
docs/zh_CN/backend/fs/README.md
Normal file
24
docs/zh_CN/backend/fs/README.md
Normal file
@@ -0,0 +1,24 @@
|
||||
### Backend format `fs.json`
|
||||
|
||||
```go
|
||||
// objectPartInfo Info of each part kept in the multipart metadata
|
||||
// file after CompleteMultipartUpload() is called.
|
||||
type objectPartInfo struct {
|
||||
Number int `json:"number"`
|
||||
Name string `json:"name"`
|
||||
ETag string `json:"etag"`
|
||||
Size int64 `json:"size"`
|
||||
}
|
||||
|
||||
// A fsMetaV1 represents a metadata header mapping keys to sets of values.
|
||||
type fsMetaV1 struct {
|
||||
Version string `json:"version"`
|
||||
Format string `json:"format"`
|
||||
Minio struct {
|
||||
Release string `json:"release"`
|
||||
} `json:"minio"`
|
||||
// Metadata map for current object `fs.json`.
|
||||
Meta map[string]string `json:"meta,omitempty"`
|
||||
Parts []objectPartInfo `json:"parts,omitempty"`
|
||||
}
|
||||
```
|
||||
Reference in New Issue
Block a user