Skip to content

Commit 82ff91c

Browse files
committed
chore(gen): update
1 parent 71e14fa commit 82ff91c

File tree

13 files changed

+81
-58
lines changed

13 files changed

+81
-58
lines changed

developer-tools/scaleway-sdk/go-sdk.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: This page explains how to install and use the Scaleway Go software development kit (SDK)
88
tags: devtools sdk go-sdk go golang
99
dates:
10-
validation: 2024-05-23
10+
validation: 2024-11-27
1111
posted: 2023-11-14
1212
categories:
1313
- devtools
@@ -81,7 +81,7 @@ func main() {
8181

8282
## Example
8383

84-
To create a Kubernetes cluster on Scaleway using the Go SDK, you would typically interact with the `scaleway` SDK package. The specific details can change, so you should always refer to the latest documentation.
84+
To create a Kubernetes cluster on Scaleway using the Go SDK, you would typically interact with the `scaleway` SDK package. The specific details can change, so you should always refer to the latest documentation.
8585
Below is a conceptual example of how you might use the Scaleway Go SDK to create a Kubernetes (Kapsule) cluster with 3 nodes:
8686

8787
```go

developer-tools/scaleway-sdk/js-sdk.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: This page explains how to install and use the Scaleway JS software development kit (SDK)
88
tags: devtools sdk go-sdk scaleway-sdk go golang
99
dates:
10-
validation: 2024-05-23
10+
validation: 2024-11-27
1111
posted: 2023-11-14
1212
categories:
1313
- devtools
@@ -41,7 +41,7 @@ const api = new Registry.v1.API(client)
4141

4242
## Using the SDK
4343

44-
The SDK is written in TypeScript, offering the full benefits of this language.
44+
The SDK is written in TypeScript, offering the full benefits of this language.
4545

4646
* For any product, its types are available under `Product.version`. For example, access the `Image` interface of Registry v1 using `Registry.v1.Image`.
4747

developer-tools/scaleway-sdk/python-sdk.mdx

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,32 @@ meta:
55
content:
66
h1: Scaleway Python software development kit (SDK)
77
paragraph: This page explains how to install and use the Scaleway Python software development kit (SDK)
8-
tags: devtools sdk python-sdkscaleway-sdk
8+
tags: devtools sdk python-sdkscaleway-sdk
99
dates:
10-
validation: 2024-05-23
10+
validation: 2024-11-27
1111
posted: 2023-11-14
1212
categories:
1313
- devtools
1414
---
1515

16-
The Scaleway Python SDK offers an efficient way for developers to interact with Scaleway's cloud services programmatically.
17-
This powerful tool simplifies the automation of various tasks, including server management, storage operations, and networking setup.
18-
It encapsulates these functions into user-friendly Python method invocations by taking care of the complexity of direct API calls and authentication.
16+
The Scaleway Python SDK offers an efficient way for developers to interact with Scaleway's cloud services programmatically.
17+
This powerful tool simplifies the automation of various tasks, including server management, storage operations, and networking setup.
18+
It encapsulates these functions into user-friendly Python method invocations by taking care of the complexity of direct API calls and authentication.
1919
This makes it easier to integrate Scaleway's cloud resources into applications or manage these resources directly from code.
2020

2121
## Installation of the Python SDK
2222

2323
The SDK caters to different programming needs by offering both synchronous and asynchronous versions. You can easily install the version that suits your project's requirements:
2424

25-
**For the synchronous version:**
26-
```bash
27-
pip install scaleway
28-
```
25+
- **Synchronous version**:
26+
```bash
27+
pip install scaleway
28+
```
2929

30-
**For the asynchronous version:**
31-
```bash
32-
pip install scaleway-async
33-
```
30+
- **Asynchronous version**:
31+
```bash
32+
pip install scaleway-async
33+
```
3434

3535
<Message type="note">
3636
While this library is optimized for Python 3.8, it maintains compatibility with newer Python versions, ensuring a broad scope of applicability.
@@ -40,7 +40,7 @@ pip install scaleway-async
4040

4141
You need a pair of access and secret keys to connect to Scaleway API. Check out the documentation to find out [how to retrieve them](/identity-and-access-management/iam/how-to/create-api-keys/).
4242

43-
`scaleway` APIs must be initialized with a `scaleway.Client`.
43+
`scaleway` APIs must be initialized with `scaleway.Client`.
4444

4545
A minimal setup would look like this:
4646

@@ -61,8 +61,8 @@ registry_api = RegistryV1API(client)
6161

6262
## Example
6363

64-
To create a Kubernetes cluster on Scaleway using the Python SDK, you would typically interact with the `scaleway` SDK package. The specific details can change, so you should always refer to the latest documentation.
65-
Below is a conceptual example of how you might use the Scaleway Python SDK to create a Kubernetes (Kapsule) cluster with 3 nodes:
64+
To create a Kubernetes cluster on Scaleway using the Python SDK, you would typically interact with the `scaleway` SDK package. The specific details can change, so you should always refer to the latest documentation.
65+
Below is an example of how you can use the Scaleway Python SDK to create a Kubernetes (Kapsule) cluster with 3 nodes:
6666

6767
```python
6868
import time
@@ -156,4 +156,4 @@ print(f"Node pool created with ID: {node_pool_id}")
156156

157157
## Further resources
158158

159-
For further information about the Scaleway Python SDK, refer to the [official SDK repository](https://github.com/scaleway/scaleway-sdk-python) on GitHub.
159+
For further information about the Scaleway Python SDK, refer to the [official SDK repository](https://github.com/scaleway/scaleway-sdk-python) on GitHub.

developer-tools/terraform/quickstart.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ meta:
55
content:
66
h1: Terraform for Scaleway - Quickstart
77
paragraph: This page explains how to install and configure Terraform with Scaleway as a provider
8-
tags: devtools terraform tf scaleway-provider scaleway-terraform
8+
tags: devtools terraform tf scaleway-provider scaleway-terraform
99
dates:
10-
validation: 2024-05-14
10+
validation: 2024-11-27
1111
posted: 2023-10-24
1212
categories:
1313
- devtools

serverless/containers/reference-content/use-cases.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ content:
77
paragraph: Explore use cases for Scaleway Serverless Containers.
88
tags: Containers serverless use-cases
99
dates:
10-
validation: 2024-05-14
10+
validation: 2024-11-27
1111
posted: 2023-04-24
1212
categories:
1313
- serverless
1414
---
1515

16-
Scaleway Serverless Containers can be used in endless use cases:
16+
Scaleway Serverless Containers can be used in many use cases:
1717
- Push directly your containers to production hosting
1818
- Automation
1919
- Integration with your ecosystem

serverless/functions/reference-content/use-cases.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ content:
77
paragraph: Explore use cases for Scaleway Serverless Functions in various scenarios.
88
tags: functions serverless use-cases
99
dates:
10-
validation: 2024-05-14
10+
validation: 2024-11-27
1111
posted: 2023-04-24
1212
categories:
1313
- serverless
1414
---
1515

16-
Scaleway Serverless Functions can be used in endless use cases:
16+
Scaleway Serverless Functions can be used in many use cases:
1717
* Automation for specific tasks
1818
* Integration with your ecosystem to help scale specific routes of your code
1919
* CI/CD integration

serverless/jobs/how-to/run-job.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Learn how to run jobs in Scaleway Serverless platform efficiently.
88
tags: run execute start serverless job scaleway contextual-options parameters
99
dates:
10-
validation: 2024-05-23
10+
validation: 2024-11-27
1111
posted: 2023-11-14
1212
categories:
1313
- serverless

serverless/jobs/how-to/stop-job.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Discover methods to stop jobs running on Scaleway Serverless.
88
tags: stop execute abort start serverless job scaleway
99
dates:
10-
validation: 2024-05-23
10+
validation: 2024-11-27
1111
posted: 2023-12-12
1212
categories:
1313
- serverless

serverless/jobs/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Get started with Scaleway Serverless Jobs quickly and easily.
88
tags: jobs serverless namespace
99
dates:
10-
validation: 2024-05-16
10+
validation: 2024-11-27
1111
posted: 2023-11-07
1212
categories:
1313
- serverless

storage/object/api-cli/combining-iam-and-object-storage.mdx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Integrate IAM with Scaleway Object Storage for enhanced access control.
88
tags: object storage command bucket amazon-s3 iam permissions acl policy
99
dates:
10-
validation: 2024-05-14
10+
validation: 2024-11-27
1111
posted: 2023-01-17
1212
categories:
1313
- storage
@@ -145,5 +145,3 @@ Consider an Organization in which a user and an application must perform specifi
145145
<Message type="note">
146146
Refer to the [Bucket policies overview](/storage/object/api-cli/bucket-policy/#bucket-policies-description) for more information on the different elements of a bucket policy.
147147
</Message>
148-
149-

0 commit comments

Comments
 (0)