mirror of
https://github.com/minio/minio.git
synced 2025-11-12 23:01:39 -05:00
Add chinese translation docs. (#5224)
This commit is contained in:
committed by
Dee Koder
parent
8b4d7048f8
commit
135a6a7bb4
131
docs/zh_CN/admin-api/README.md
Normal file
131
docs/zh_CN/admin-api/README.md
Normal file
@@ -0,0 +1,131 @@
|
||||
# 管理REST API
|
||||
|
||||
## 认证
|
||||
- AWS signatureV4
|
||||
- 我们使用`minio`作为区域。 这里区域仅用于签名计算。
|
||||
|
||||
##管理接口
|
||||
- Service
|
||||
- Restart
|
||||
- Status
|
||||
- SetCredentials
|
||||
|
||||
- Locks
|
||||
- List
|
||||
- Clear
|
||||
|
||||
- Healing
|
||||
|
||||
### 服务管理接口
|
||||
* Restart
|
||||
- POST /?service
|
||||
- x-minio-operation: restart
|
||||
- Response: On success 200
|
||||
|
||||
* Status
|
||||
- GET /?service
|
||||
- x-minio-operation: status
|
||||
- Response: On success 200, return json formatted object which contains StorageInfo and ServerVersion structures
|
||||
|
||||
* SetCredentials
|
||||
- GET /?service
|
||||
- x-minio-operation: set-credentials
|
||||
- Response: Success 200
|
||||
- Possible error responses
|
||||
- ErrMethodNotAllowed
|
||||
```xml
|
||||
<Error>
|
||||
<Code>MethodNotAllowed</Code>
|
||||
<Message>The specified method is not allowed against this resource.</Message>
|
||||
<Key></Key>
|
||||
<BucketName></BucketName>
|
||||
<Resource>/</Resource>
|
||||
<RequestId>3L137</RequestId>
|
||||
<HostId>3L137</HostId>
|
||||
</Error>
|
||||
```
|
||||
- ErrAdminBadCred
|
||||
```xml
|
||||
<Error>
|
||||
<Code>XMinioBadCred</Code>
|
||||
<Message>XMinioBadCred</Message>
|
||||
<Key></Key>
|
||||
<BucketName></BucketName>
|
||||
<Resource>/</Resource>
|
||||
<RequestId>3L137</RequestId>
|
||||
<HostId>3L137</HostId>
|
||||
</Error>
|
||||
```
|
||||
- ErrInternalError
|
||||
```xml
|
||||
<Error>
|
||||
<Code>InternalError</Code>
|
||||
<Message>We encountered an internal error, please try again.</Message>
|
||||
<Key></Key>
|
||||
<BucketName></BucketName>
|
||||
<Resource>/</Resource>
|
||||
<RequestId>3L137</RequestId>
|
||||
<HostId>3L137</HostId>
|
||||
</Error>
|
||||
```
|
||||
|
||||
|
||||
### 锁管理API
|
||||
* ListLocks
|
||||
- GET /?lock&bucket=mybucket&prefix=myprefix&duration=duration
|
||||
- x-minio-operation: list
|
||||
- Response: On success 200, json encoded response containing all locks held, for longer than duration.
|
||||
- Possible error responses
|
||||
- ErrInvalidBucketName
|
||||
```xml
|
||||
<Error>
|
||||
<Code>InvalidBucketName</Code>
|
||||
<Message>The specified bucket is not valid.</Message>
|
||||
<Key></Key>
|
||||
<BucketName></BucketName>
|
||||
<Resource>/</Resource>
|
||||
<RequestId>3L137</RequestId>
|
||||
<HostId>3L137</HostId>
|
||||
</Error>
|
||||
```
|
||||
- ErrInvalidObjectName
|
||||
```xml
|
||||
<Error>
|
||||
<Code>XMinioInvalidObjectName</Code>
|
||||
<Message>Object name contains unsupported characters. Unsupported characters are `^*|\"</Message>
|
||||
<Key></Key>
|
||||
<BucketName></BucketName>
|
||||
<Resource>/</Resource>
|
||||
<RequestId>3L137</RequestId>
|
||||
<HostId>3L137</HostId>
|
||||
</Error>
|
||||
```
|
||||
|
||||
- ErrInvalidDuration
|
||||
```xml
|
||||
<Error>
|
||||
<Code>InvalidDuration</Code>
|
||||
<Message>Duration provided in the request is invalid.</Message>
|
||||
<Key></Key>
|
||||
<BucketName></BucketName>
|
||||
<Resource>/</Resource>
|
||||
<RequestId>3L137</RequestId>
|
||||
<HostId>3L137</HostId>
|
||||
</Error>
|
||||
```
|
||||
|
||||
|
||||
* ClearLocks
|
||||
- POST /?lock&bucket=mybucket&prefix=myprefix&duration=duration
|
||||
- x-minio-operation: clear
|
||||
- Response: On success 200, json encoded response containing all locks cleared, for longer than duration.
|
||||
- Possible error responses, similar to errors listed in ListLocks.
|
||||
- ErrInvalidBucketName
|
||||
- ErrInvalidObjectName
|
||||
- ErrInvalidDuration
|
||||
|
||||
### 修复
|
||||
|
||||
* ListBucketsHeal
|
||||
- GET /?heal
|
||||
- x-minio-operation: list-buckets
|
||||
Reference in New Issue
Block a user