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: developer-tools/scaleway-sdk/go-sdk.mdx
+2-2Lines changed: 2 additions & 2 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: This page explains how to install and use the Scaleway Go software development kit (SDK)
8
8
tags: devtools sdk go-sdk go golang
9
9
dates:
10
-
validation: 2024-05-23
10
+
validation: 2024-11-27
11
11
posted: 2023-11-14
12
12
categories:
13
13
- devtools
@@ -81,7 +81,7 @@ func main() {
81
81
82
82
## Example
83
83
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.
85
85
Below is a conceptual example of how you might use the Scaleway Go SDK to create a Kubernetes (Kapsule) cluster with 3 nodes:
Copy file name to clipboardExpand all lines: developer-tools/scaleway-sdk/js-sdk.mdx
+2-2Lines changed: 2 additions & 2 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: This page explains how to install and use the Scaleway JS software development kit (SDK)
8
8
tags: devtools sdk go-sdk scaleway-sdk go golang
9
9
dates:
10
-
validation: 2024-05-23
10
+
validation: 2024-11-27
11
11
posted: 2023-11-14
12
12
categories:
13
13
- devtools
@@ -41,7 +41,7 @@ const api = new Registry.v1.API(client)
41
41
42
42
## Using the SDK
43
43
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.
45
45
46
46
* For any product, its types are available under `Product.version`. For example, access the `Image` interface of Registry v1 using `Registry.v1.Image`.
Copy file name to clipboardExpand all lines: developer-tools/scaleway-sdk/python-sdk.mdx
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,32 +5,32 @@ meta:
5
5
content:
6
6
h1: Scaleway Python software development kit (SDK)
7
7
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
9
9
dates:
10
-
validation: 2024-05-23
10
+
validation: 2024-11-27
11
11
posted: 2023-11-14
12
12
categories:
13
13
- devtools
14
14
---
15
15
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.
19
19
This makes it easier to integrate Scaleway's cloud resources into applications or manage these resources directly from code.
20
20
21
21
## Installation of the Python SDK
22
22
23
23
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:
24
24
25
-
**For the synchronous version:**
26
-
```bash
27
-
pip install scaleway
28
-
```
25
+
-**Synchronous version**:
26
+
```bash
27
+
pip install scaleway
28
+
```
29
29
30
-
**For the asynchronous version:**
31
-
```bash
32
-
pip install scaleway-async
33
-
```
30
+
-**Asynchronous version**:
31
+
```bash
32
+
pip install scaleway-async
33
+
```
34
34
35
35
<Messagetype="note">
36
36
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
40
40
41
41
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/).
42
42
43
-
`scaleway` APIs must be initialized with a `scaleway.Client`.
43
+
`scaleway` APIs must be initialized with `scaleway.Client`.
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:
66
66
67
67
```python
68
68
import time
@@ -156,4 +156,4 @@ print(f"Node pool created with ID: {node_pool_id}")
156
156
157
157
## Further resources
158
158
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.
Copy file name to clipboardExpand all lines: storage/object/api-cli/combining-iam-and-object-storage.mdx
+1-3Lines changed: 1 addition & 3 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: Integrate IAM with Scaleway Object Storage for enhanced access control.
8
8
tags: object storage command bucket amazon-s3 iam permissions acl policy
9
9
dates:
10
-
validation: 2024-05-14
10
+
validation: 2024-11-27
11
11
posted: 2023-01-17
12
12
categories:
13
13
- storage
@@ -145,5 +145,3 @@ Consider an Organization in which a user and an application must perform specifi
145
145
<Messagetype="note">
146
146
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.
0 commit comments