Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(gen): documentation review MTA-5379 #4136

Merged
merged 5 commits into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion faq/objectstorage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ Find out [how to restore an object from Glacier](/storage/object/how-to/restore-

## Can I upload an object directly to Glacier?

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/).
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/).

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

Expand Down
Empty file removed local_404.txt
Empty file.
8 changes: 6 additions & 2 deletions storage/object/api-cli/enable-sse-c.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,16 @@ The [AWS S3 CLI](https://awscli.amazonaws.com/v2/documentation/api/latest/refere

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.
```sh
aws s3 cp <path/to/your/file> s3://<your-bucket-name>/<your-object-key> --sse-c AES256 --sse-c-key fileb://ssec.key
aws s3 cp <path/to/your/file> s3://<your-bucket-name>/<your-object-key> \
--sse-c AES256 \
--sse-c-key fileb://ssec.key
```

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.
```sh
aws s3 cp s3://<your-bucket-name>/<your-object-key> <path/to/your/file> --sse-c AES256 --sse-c-key fileb://ssec.key
aws s3 cp s3://<your-bucket-name>/<your-object-key> <path/to/your/file> \
--sse-c AES256 \
--sse-c-key fileb://ssec.key
```

<Message type="note">
Expand Down
Loading
Loading