forked from TrueCloudLab/xk6-frostfs
parent
0cafcd2375
commit
a983980951
1 changed files with 7 additions and 4 deletions
11
README.md
11
README.md
|
@ -47,8 +47,9 @@ const neofsCli = native.connect("s01.neofs.devenv:8080", "")
|
||||||
|
|
||||||
#### Methods
|
#### Methods
|
||||||
- `put(container_id, headers, payload)`. Returns dictionary with `success`
|
- `put(container_id, headers, payload)`. Returns dictionary with `success`
|
||||||
boolean flag and `container_id` string.
|
boolean flag, `object_id` string, and `error` string.
|
||||||
- `get(container_id, object_id)`. Returns boolean flag.
|
- `get(container_id, object_id)`. Returns dictionary with `success` boolean
|
||||||
|
flag, and `error` string.
|
||||||
|
|
||||||
### S3
|
### S3
|
||||||
|
|
||||||
|
@ -63,8 +64,10 @@ const s3cli = s3.connect("http://s3.neofs.devenv:8080")
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Methods
|
#### Methods
|
||||||
- `put(bucket, key, payload)`. Returns boolean flag.
|
- `put(bucket, key, payload)`. Returns dictionary with `success` boolean flag
|
||||||
- `get(bucket, key)`. Returns boolean flag.
|
and `error` string.
|
||||||
|
- `get(bucket, key)`. Returns dictionary with `success` boolean flag and `error`
|
||||||
|
string.
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue