Skip to content

Commit 2673705

Browse files
committed
chore(gen): fix 200s with missing anchors
1 parent 4bb3cda commit 2673705

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

compute/gpu/how-to/use-gpu-with-docker.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ In the above example, everything in the `/root/mydata` directory on the Instance
7575

7676
### How to map Block Storage volumes
7777

78-
You can also map [Block Storage](https://www.scaleway.com/en/block-storage/) volumes into your containers. Block Storage is fully backed by SSDs. These three-time replicated, high-speed drives allow up to 5,000 IOPS. Once [attached](/storage/block/how-to/attach-a-volume/) and [mounted](/storage/block/api-cli/managing-a-volume/#mounting-and-using-a-volume) in the host OS of the GPU Instance, you can map the volume like a local volume, as we did above.
78+
You can also map [Block Storage](https://www.scaleway.com/en/block-storage/) volumes into your containers. Block Storage is fully backed by SSDs. These three-time replicated, high-speed drives allow up to 5,000 IOPS. Once [attached](/storage/block/how-to/attach-a-volume/) and [mounted](/storage/block/api-cli/managing-a-volume/#mounting-and-using-a-block-storage-volume) in the host OS of the GPU Instance, you can map the volume like a local volume, as we did above.
7979

8080
<Message type="tip">
8181
[Block Storage](/storage/block/quickstart/) volumes are independent of your GPU Instance and provide three-time replicated storage. It is recommended to use Block Storage for storing your datasets, training logs, model source code, etc.

compute/instances/how-to/manage-volumes.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ categories:
3232
5. Click **Attach volume to Instance**.
3333

3434
<Message type="tip">
35-
Find out [how to mount a Block Storage volume to your Instance](/storage/block/api-cli/managing-a-volume/#mounting-and-using-a-volume).
35+
Find out [how to mount a Block Storage volume to your Instance](/storage/block/api-cli/managing-a-volume/#mounting-and-using-a-block-storage-volume).
3636
</Message>
3737
<Message type="note">
3838
To use **[Block Storage Low Latency](/storage/block/) 15k**, your Instance must have at least **3 GiB/s of block bandwidth**.

storage/block/concepts.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ A Storage Area Network (SAN) consists of interconnected machines, network infras
3636

3737
## Volumes
3838

39-
A volume is a storage space used by your Instances. Several volumes can be [attached to an Instance](/storage/block/how-to/attach-a-volume/). In addition, they can be [snapshotted](/storage/block/how-to/create-a-snapshot/), [mounted](/storage/block/api-cli/managing-a-volume/#mounting-and-using-a-volume) or [unmounted](/storage/block/api-cli/unmounting-a-volume/).
39+
A volume is a storage space used by your Instances. Several volumes can be [attached to an Instance](/storage/block/how-to/attach-a-volume/). In addition, they can be [snapshotted](/storage/block/how-to/create-a-snapshot/), [mounted](/storage/block/api-cli/managing-a-volume/#mounting-and-using-a-block-storage-volume) or [unmounted](/storage/block/api-cli/unmounting-a-volume/).

storage/block/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ categories:
1616

1717
Scaleway [Block Storage](/storage/block/concepts/#block-device) provides network-attached storage that can be plugged in and out of [Instances](/compute/instances/concepts/#instance) like a virtual hard-drive. Block Storage devices are independent of the Local Storage of Instances, and the fact that they are accessed over a network connection makes it easy to move them between Instances in the same [Availability Zone](/compute/instances/concepts/#availability-zone).
1818

19-
From the user's point of view, once [mounted](/storage/block/api-cli/managing-a-volume/#mounting-and-using-a-volume), the block device behaves like a regular disk.
19+
From the user's point of view, once [mounted](/storage/block/api-cli/managing-a-volume/#mounting-and-using-a-block-storage-volume), the block device behaves like a regular disk.
2020

2121
<Macro id="requirements" />
2222

storage/object/api-cli/bucket-policy.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Bucket policies use a JSON-based access policy language and are composed of stri
7676
```
7777

7878
<Message type="note">
79-
Refer to the [documentation on bucket policy versions](/storage/object/api-cli/combining-iam-and-object-storage/#note-on-bucket-policy-versions) for more information.
79+
Refer to the [documentation on bucket policy versions](/storage/object/api-cli/bucket-policy/#bucket-policies-versions) for more information.
8080
</Message>
8181

8282
### Id

storage/object/api-cli/bucket-website-api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ If you want your website to be accessible, you need to set up a bucket policy.
172172

173173
- `"<BUCKET_NAME>/*"` - Grants access to all objects inside a bucket, but not to the bucket itself.
174174
- `"<BUCKET_NAME>/<PREFIX>/*"` - Grants access only to objects with the specified prefix inside a bucket, but not to the bucket itself. For example, if you apply a bucket policy that specifies `"my_files/movie/*"` under **Resource**, you would grant access to all objects with the `movie/` prefix, but not to other objects in `my_files/` bucket.
175-
3. Use [PutBucketPolicy](/storage/object/api-cli/bucket-operations/#put-bucket-policy) or run the following command to implement the policy via the AWS-CLI:
175+
3. Use [PutBucketPolicy](/storage/object/api-cli/bucket-operations/#putbucketpolicy) or run the following command to implement the policy via the AWS-CLI:
176176
```
177177
aws s3api put-bucket-policy --bucket <BUCKET_NAME> --policy file://bucket-policy.json
178178
```

storage/object/api-cli/create-bucket-policy.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ To create and apply a bucket policy from the [Scaleway console](https://console/
5858
4. Replace the `<BUCKET_NAME>` placeholders with the name of the concerned bucket. Refer to the [resource documentation](/storage/object/api-cli/bucket-policy/#resource) for more information.
5959

6060
<Message type="note">
61-
Refer to the [Bucket policies description](/storage/object/api-cli/bucket-policy/#bucket-policy-description) for more details on each string.
61+
Refer to the [Bucket policies description](/storage/object/api-cli/bucket-policy/#bucket-policies-description) for more details on each string.
6262
</Message>
6363

6464
## How to apply a bucket policy

storage/object/api-cli/lifecycle-rules-api.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ The lifecycle configuration above translates to the following effective rules:
194194
- `mytagvalue2` is set to expire after one day.
195195

196196
<Message type="note">
197-
To see examples of lifecycle rules API requests, refer to the Bucket Operations [documentation page](/storage/object/api-cli/bucket-operations/#put-bucket-lifecycle).
197+
To see examples of lifecycle rules API requests, refer to the Bucket Operations [documentation page](/storage/object/api-cli/bucket-operations/#putbucketlifecycle).
198198
</Message>
199199

200200
## Setting rules for incomplete multipart uploads
@@ -203,7 +203,7 @@ When using the `awscli` to perform a [multipart upload](/storage/object/api-cli/
203203

204204
You can automate the removal of incomplete multipart uploads by adding or uploading a lifecycle configuration to your bucket. The setup can be done via an API call or an [AWS-CLI](/storage/object/api-cli/object-storage-aws-cli/) command.
205205

206-
Send a [PutBucketLifecycle](/storage/object/api-cli/bucket-operations/#get-bucket-lifecycle) request with the following XML payload:
206+
Send a [PutBucketLifecycle](/storage/object/api-cli/bucket-operations/#getbucketlifecycle) request with the following XML payload:
207207

208208
```xml no-copy
209209
<?xml version="1.0" encoding="UTF-8"?>

storage/object/api-cli/object-lock.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ When this mode is set, all users with [permission](/identity-and-access-manageme
246246
<Message type="note">
247247
The **Governance** mode ensures extra protection before any alterations can be completed. An object can be permanently deleted only if:
248248
- A retention rule is applied, the governance retention date must be anterior to the present time
249-
- The object does not have a legal hold in place. If it does, the legal hold [status token](/storage/object/api-cli/object-lock/#-XML-Legal-Hold-Configuration-Token) must be set to OFF before deletion.
249+
- The object does not have a legal hold in place. If it does, the legal hold [status token](/storage/object/api-cli/object-lock/#xml-legal-hold-configuration-token) must be set to OFF before deletion.
250250
When the above criteria are met, you will be able to use `delete-object --version-id` to permanently delete an object.
251251
</Message>
252252

storage/object/api-cli/share-buckets-read-only.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ Specify which resources they can access under **Resource**:
6060
]
6161
}
6262
```
63-
Apply the policy using the [PutBucketPolicy](/storage/object/api-cli/bucket-operations/#put-bucket-policy) API call or run the following aws-cli command:
63+
Apply the policy using the [PutBucketPolicy](/storage/object/api-cli/bucket-operations/#putbucketpolicy) API call or run the following aws-cli command:
6464

6565
```
6666
aws s3api put-bucket-policy --bucket <SOURCE_BUCKET> --profile default_project --policy file://bucket-policy.json
6767
```
68-
You can provide the user in Organization B with the name of your bucket. If the policy is correctly applied, they will be able to see bucket A1 included in their bucket list when running `List_Buckets`. If they know the name of an object, they can view their details by running [`Get_Object`](/storage/object/api-cli/object-operations/#get-object).
68+
You can provide the user in Organization B with the name of your bucket. If the policy is correctly applied, they will be able to see bucket A1 included in their bucket list when running `List_Buckets`. If they know the name of an object, they can view their details by running [`Get_Object`](/storage/object/api-cli/object-operations/#getobject).

0 commit comments

Comments
 (0)