Skip to content

Commit fd64c6e

Browse files
chore(gen): documentation review MTA-5379 (#4136)
1 parent 6261fa0 commit fd64c6e

11 files changed

+303
-112
lines changed

faq/objectstorage.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ Find out [how to restore an object from Glacier](/storage/object/how-to/restore-
232232

233233
## Can I upload an object directly to Glacier?
234234

235-
Yes, you can select the storage class (`STANDARD`, `One Zone IA`, or `GLACIER`) when uploading objects using the Scaleway console. It is also possible to do so using the API. For more information, refer to our [dedicated documentation](/storage/object/how-to/edit-storage-class/).
235+
Yes, you can select the storage class (`Standard`, `One Zone IA`, or `GLACIER`) when uploading objects using the Scaleway console. It is also possible to do so using the API. For more information, refer to our [dedicated documentation](/storage/object/how-to/edit-storage-class/).
236236

237237
## Why are Glacier objects stored in Paris DC4? Is it accessible from buckets in all locations?
238238

local_404.txt

Whitespace-only changes.

storage/object/api-cli/enable-sse-c.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,16 @@ The [AWS S3 CLI](https://awscli.amazonaws.com/v2/documentation/api/latest/refere
129129

130130
2. Run the command below to copy a local file to your Object Storage bucket. Make sure to replace the placeholders with the appropriate values.
131131
```sh
132-
aws s3 cp <path/to/your/file> s3://<your-bucket-name>/<your-object-key> --sse-c AES256 --sse-c-key fileb://ssec.key
132+
aws s3 cp <path/to/your/file> s3://<your-bucket-name>/<your-object-key> \
133+
--sse-c AES256 \
134+
--sse-c-key fileb://ssec.key
133135
```
134136

135137
3. Run the command below to download the file from your Object Storage bucket to your local file system. Make sure to replace the placeholders with the appropriate values.
136138
```sh
137-
aws s3 cp s3://<your-bucket-name>/<your-object-key> <path/to/your/file> --sse-c AES256 --sse-c-key fileb://ssec.key
139+
aws s3 cp s3://<your-bucket-name>/<your-object-key> <path/to/your/file> \
140+
--sse-c AES256 \
141+
--sse-c-key fileb://ssec.key
138142
```
139143

140144
<Message type="note">

0 commit comments

Comments
 (0)