|
18 | 18 | - [Multiple Buckets or Namespaced Single Bucket](#multiple-buckets-or-namespaced-single-bucket) |
19 | 19 | - [Features](#features) |
20 | 20 | - [Methods](#methods) |
21 | | -- [Contributing](#contributing) |
22 | 21 | - [Testing](#testing) |
23 | 22 | - [License](#license) |
24 | 23 |
|
@@ -79,9 +78,15 @@ This adapter can also be used on top on AWS' popular S3 service. To do so, simpl |
79 | 78 | in the `url` provided to the adapter to point to `s3`: |
80 | 79 |
|
81 | 80 | ```js |
82 | | -minio({ url : 'https://accessKey:[email protected]', bucketPrefix : 'uniquePrefix' }) |
| 81 | +minio({ |
| 82 | + url : 'https://accessKey:[email protected]', |
| 83 | + region: 'us-east-2', |
| 84 | + bucketPrefix: 'uniquePrefix', |
| 85 | +}) |
83 | 86 | ``` |
84 | 87 |
|
| 88 | +> `region` defaults to `us-east-1` |
| 89 | +
|
85 | 90 | ## Multiple Buckets or Namespaced Single Bucket |
86 | 91 |
|
87 | 92 | This adapter can be configured to either create a bucket, in the underying S3 or MinIO, per hyper |
@@ -120,26 +125,21 @@ hyper Storage services `foo` and `bar`, the structure of the bucket would look l |
120 | 125 |
|
121 | 126 | ## Features |
122 | 127 |
|
123 | | -- Create an `s3` bucket |
124 | | -- Remove an `s3` bucket |
125 | | -- List `s3` buckets |
126 | | -- Put an object into an `s3` bucket |
127 | | -- Remove an object from an `s3` bucket |
128 | | -- Get an object from an `s3` bucket |
129 | | -- List objects in an `s3` bucket |
| 128 | +- Create an `s3` compatible bucket |
| 129 | +- Remove an `s3` compatible bucket |
| 130 | +- List `s3` compatible buckets |
| 131 | +- Put an object into an `s3` compatible bucket |
| 132 | +- Remove an object from an `s3` compatible bucket |
| 133 | +- Get an object from an `s3` compatible bucket |
| 134 | +- List objects in an `s3` compatible bucket |
130 | 135 |
|
131 | 136 | ## Methods |
132 | 137 |
|
133 | 138 | This adapter fully implements the Storage port and can be used as the |
134 | | -[hyper Storage service](https://docs.hyper.io/storage-api) adapter |
| 139 | +[hyper Storage service](https://docs.hyper.io/docs/api-reference/rest/storage.html) adapter |
135 | 140 |
|
136 | 141 | See the full port [here](https://github.com/hyper63/hyper/tree/main/packages/port-storage) |
137 | 142 |
|
138 | | -## Contributing |
139 | | - |
140 | | -Contributions are welcome! See the hyper |
141 | | -[contribution guide](https://docs.hyper.io/oss/contributing-to-hyper) |
142 | | - |
143 | 143 | ## Testing |
144 | 144 |
|
145 | 145 | ``` |
|
0 commit comments