You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: faq/objectstorage.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -232,7 +232,7 @@ Find out [how to restore an object from Glacier](/storage/object/how-to/restore-
232
232
233
233
## Can I upload an object directly to Glacier?
234
234
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/).
236
236
237
237
## Why are Glacier objects stored in Paris DC4? Is it accessible from buckets in all locations?
Copy file name to clipboardExpand all lines: storage/object/how-to/create-a-bucket.mdx
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ content:
7
7
paragraph: Create a new bucket in Scaleway Object Storage.
8
8
tags: object storage bucket object-storage
9
9
dates:
10
-
validation: 2024-06-13
10
+
validation: 2024-12-18
11
11
posted: 2021-05-27
12
12
categories:
13
13
- storage
@@ -21,12 +21,11 @@ Object Storage allows you to store different types of objects (documents, images
21
21
- A Scaleway account logged into the [console](https://console.scaleway.com)
22
22
-[Owner](/identity-and-access-management/iam/concepts/#owner) status or [IAM permissions](/identity-and-access-management/iam/concepts/#permission) allowing you to perform actions in the intended Organization
23
23
24
-
25
24
To get started with Object Storage, you must first create a bucket. Objects are gathered into buckets. Each bucket represents a space where objects are stored.
26
25
27
26
1. Click **Object Storage** on the left side menu of the console. The Object Storage dashboard displays.
28
27
2. Click **+ Create bucket**. The bucket creation page displays.
29
-
3. Select the geographical location in which to create your bucket. Scaleway Object Storage is currently available in three Regions.
28
+
3. Select the [region](/storage/object/concepts/#region-and-availability-zone)in which to create your bucket:
30
29
- Amsterdam, The Netherlands:
31
30
- Region: `nl-ams`
32
31
- Paris, France:
@@ -42,8 +41,8 @@ To get started with Object Storage, you must first create a bucket. Objects are
42
41
5. Select a use case for your bucket.
43
42
6. Enable [bucket versioning](/storage/object/how-to/use-bucket-versioning/) if you want to store multiple versions of your objects (this may lead to higher storage costs).
44
43
7. If applicable, you can tick the **Activate 90-day free trial** to benefit from 750 GB of free [Multi-AZ class storage](/faq/objectstorage/#what-are-the-object-storage-classes-offered-by-scaleway) for buckets in your Organization, across all regions. Refer to our [dedicated FAQ](/faq/objectstorage/#how-can-i-benefit-from-the-object-storage-free-trial) for more information.
45
-
8. Enter a name for your bucket.
44
+
8. Enter a name for your bucket.
46
45
9. Optionally, you can use the cost estimator to simulate your Object Storage costs.
47
46
10. Click **Create bucket** to confirm. A list of your buckets displays, showing the newly created bucket.
48
47
49
-
You can find more information about your bucket by clicking on its name in the **Buckets** list and then on the **Bucket settings** tab.
48
+
You can find more information about your bucket by clicking on its name in the **Buckets** list, and then on the **Bucket settings** tab.
Copy file name to clipboardExpand all lines: storage/object/how-to/manage-object-visibility.mdx
+27-7Lines changed: 27 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,14 @@ content:
7
7
paragraph: Control visibility settings for objects in Object Storage.
8
8
tags: object storage object-storage visibility
9
9
dates:
10
-
validation: 2024-06-13
10
+
validation: 2024-12-19
11
11
posted: 2021-05-27
12
12
categories:
13
13
- storage
14
14
- object-storage
15
15
---
16
16
17
-
Visibility specifies whether your object is visible to others or not.
17
+
Object visibility specifies whether your object is visible to others or not, independently from [bucket visibility](/storage/object/concepts/#visibility).
18
18
19
19
<Macroid="requirements" />
20
20
@@ -26,19 +26,39 @@ Visibility specifies whether your object is visible to others or not.
26
26
All objects are private by default, even if they are in a public bucket. A private file in a public bucket cannot be accessed publicly.
27
27
</Message>
28
28
29
+
## Manage the visibility of a single object
30
+
29
31
1. Click **Object Storage** in the **Storage** section of the side menu. The list of your buckets displays.
30
32
2. Click the name of your bucket. A list of your objects displays.
31
33
3. Click <Iconname="more" /> next to the selected object name.
32
34
4. Click **Visibility**. A pop-up appears.
33
35
5. Check **Public** or **Private** according to your preference.
34
36
6. Click **Update object visibility** to confirm.
35
37
36
-
<Messagetype="important">
37
-
You can only configure the visibility (public or private) of one object at a time. It is not possible to perform this action on an entire bucket, on which visibility is defined by default as private. Allowing public visibility of a bucket only allows the viewing of a list of objects that are stored in the bucket.
38
-
</Message>
39
-
40
38
<Messagetype="tip">
41
-
If you upload a file using the CLI, you can make it public by using the `--acl public-read` parameter.
39
+
If you upload a file using the CLI, you can make it public by using the `--acl public-read` parameter. However, [bucket policies](/storage/object/api-cli/bucket-policy/) take precedence over ACLs.
42
40
</Message>
43
41
42
+
## Manage the visibility of multiple objects
43
+
44
+
You can manage the visibility of multiple ojects at a time using a [bucket policy](/storage/object/api-cli/bucket-policy/) as shown below. By allowing [GetObject](/storage/object/api-cli/object-operations/#getobject) operations to everyone, the desired objects can be accessed by any person with the link to the object.
Copy file name to clipboardExpand all lines: storage/object/how-to/restore-an-object-from-glacier.mdx
+8-12Lines changed: 8 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ content:
7
7
paragraph: Retrieve objects from Glacier in Object Storage.
8
8
tags: object-storage object storage glacier
9
9
dates:
10
-
validation: 2024-06-13
10
+
validation: 2024-12-19
11
11
posted: 2021-05-27
12
12
categories:
13
13
- storage
@@ -22,28 +22,26 @@ categories:
22
22
- An object in [Glacier storage class](/storage/object/how-to/edit-storage-class/)
23
23
24
24
<Messagetype="important">
25
-
Objects in `Glacier` can only be restored to `Standard` class.
25
+
Objects in Glacier can only be restored to `Standard` class.
26
26
</Message>
27
27
28
28
<Messagetype="tip">
29
-
To facilitate the steps of restoration and ensure fast restitution of your data, we recommend you store average-sized files (larger than 1 MB) in `Glacier`, as opposed to several small files.
29
+
To facilitate the steps of restoration and ensure fast restitution of your data, we recommend you store average-sized files (larger than 1 MB) in Glacier, as opposed to several small files.
30
30
</Message>
31
31
32
32
## How to restore an object
33
33
34
34
1. Click **Object Storage** in the **Storage** section of the side menu. The list of your buckets displays.
35
35
36
-
2. Click the bucket name that contains the objects you want to restore to `STANDARD` class. The list of objects displays.
36
+
2. Click the bucket name that contains the objects you want to restore to `Standard` class. The list of objects displays.
37
37
38
-
3. Click <Iconname="more" />, then select **Restore** from the drop-down menu.
38
+
3. Click <Iconname="more" />, then select **Restore** from the drop-down menu. A pop-up appears.
39
39
40
-
A pop-up appears.
41
-
42
-
4. Enter the number of days after which the object will be transferred back to `Glacier`, or click the toggle to permanently restore the object.
40
+
4. Enter the number of days after which the object will be transferred back to Glacier, or click the toggle to permanently restore the object.
43
41
44
42
5. Click **Restore object from Glacier**.
45
43
46
-
Your object remains available in `Standard` class for the duration you specified. It will be transferred automatically back to `Glacier` once the configured period is over.
44
+
Your object remains available in `Standard` class for the duration you specified. It will be transferred automatically back to Glacier once the configured period is over.
47
45
48
46
49
47
## How to restore all objects in a bucket
@@ -77,7 +75,7 @@ The time it takes to restore an object depends on the size of the object and if
77
75
78
76
For multipart objects, each part is equivalent to one object. Consequently, the more parts your object has, the longer the restore time will be.
79
77
80
-
To determine how many parts a multipart object has, you can run the following `aws-cli` command:
78
+
To determine how many parts a multipart object has, run the following `aws-cli` command:
81
79
82
80
```
83
81
aws s3api <object-name> --bucket <bucket-name> --key b
@@ -96,5 +94,3 @@ For a multipart object, the `Etag` includes a suffix that indicates the number o
96
94
}
97
95
```
98
96
Therefore, in this example, the time it takes to restore the object (that has 14 parts) is equivalent to the time it takes to restore 14 objects.
@@ -33,7 +33,7 @@ Versioning allows you to easily recover your objects in case of unintended user
33
33
5. Type **ENABLE** to confirm your action, then click **Enable bucket versioning** to proceed.
34
34
35
35
<Messagetype="note">
36
-
Once versioning is enabled, uploading an object with the same name as an existing object will create a new version of it, and will consume more storage, which may lead to higher costs.
36
+
Once versioning is enabled, uploading an object with the same name as an existing object will create a new version of it. This new version will consume more storage, which may lead to higher costs.
37
37
</Message>
38
38
39
39
## How to manage object versions
@@ -42,7 +42,7 @@ Once versioning is enabled, uploading an object with the same name as an existin
42
42
2. Click the name of your selected bucket. A list of the objects it contains appears.
43
43
3. Click <Iconname="more" /> next to the object you want to manage, then click **Versioning**. A list of the object versions displays.
44
44
45
-
4. Click <Iconname="more" /> next to a non-current object version to download or permanently delete it.
45
+
4. Click <Iconname="more" /> next to a non-current object version to download it, or permanently delete it.
46
46
47
47
<Messagetype="note">
48
48
To restore an object to a previous version, download the desired non-current version and upload it again. This action will replace the current version with the uploaded one.
@@ -59,5 +59,3 @@ To restore an object to a previous version, download the desired non-current ver
59
59
<Messagetype="important">
60
60
Once versioning is suspended, no new object versions will be created. Versions created up until this point will remain stored and billable. Uploading an object with the same name as an existing object will overwrite it.
0 commit comments