pulumiverse-scaleway 1.17.0__py3-none-any.whl → 1.18.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumiverse-scaleway might be problematic. Click here for more details.
- pulumiverse_scaleway/__init__.py +9 -0
- pulumiverse_scaleway/_inputs.py +133 -107
- pulumiverse_scaleway/account_project.py +17 -17
- pulumiverse_scaleway/account_ssh_key.py +8 -4
- pulumiverse_scaleway/container.py +146 -160
- pulumiverse_scaleway/container_cron.py +42 -77
- pulumiverse_scaleway/container_domain.py +30 -24
- pulumiverse_scaleway/container_namespace.py +42 -42
- pulumiverse_scaleway/container_token.py +36 -38
- pulumiverse_scaleway/container_trigger.py +45 -43
- pulumiverse_scaleway/function.py +112 -154
- pulumiverse_scaleway/function_cron.py +42 -60
- pulumiverse_scaleway/function_domain.py +56 -47
- pulumiverse_scaleway/function_namespace.py +49 -49
- pulumiverse_scaleway/function_token.py +36 -38
- pulumiverse_scaleway/function_trigger.py +45 -43
- pulumiverse_scaleway/get_account_project.py +14 -8
- pulumiverse_scaleway/get_account_ssh_key.py +14 -10
- pulumiverse_scaleway/get_availability_zones.py +17 -9
- pulumiverse_scaleway/get_container.py +50 -30
- pulumiverse_scaleway/get_container_namespace.py +26 -16
- pulumiverse_scaleway/get_function.py +20 -12
- pulumiverse_scaleway/get_function_namespace.py +14 -14
- pulumiverse_scaleway/get_object_bucket.py +22 -10
- pulumiverse_scaleway/get_object_bucket_policy.py +15 -9
- pulumiverse_scaleway/get_tem_domain.py +12 -1
- pulumiverse_scaleway/instance_server.py +32 -0
- pulumiverse_scaleway/object_bucket.py +67 -81
- pulumiverse_scaleway/object_bucket_acl.py +21 -17
- pulumiverse_scaleway/object_bucket_lock_configuration.py +21 -19
- pulumiverse_scaleway/object_bucket_policy.py +10 -8
- pulumiverse_scaleway/object_bucket_website_configuration.py +24 -22
- pulumiverse_scaleway/object_item.py +78 -62
- pulumiverse_scaleway/outputs.py +102 -73
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/sdb_database.py +26 -22
- pulumiverse_scaleway/tem_domain.py +75 -0
- pulumiverse_scaleway/vpc_private_network.py +2 -2
- pulumiverse_scaleway/vpc_route.py +577 -0
- {pulumiverse_scaleway-1.17.0.dist-info → pulumiverse_scaleway-1.18.0.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.17.0.dist-info → pulumiverse_scaleway-1.18.0.dist-info}/RECORD +43 -42
- {pulumiverse_scaleway-1.17.0.dist-info → pulumiverse_scaleway-1.18.0.dist-info}/WHEEL +1 -1
- {pulumiverse_scaleway-1.17.0.dist-info → pulumiverse_scaleway-1.18.0.dist-info}/top_level.txt +0 -0
|
@@ -107,7 +107,7 @@ class GetContainerNamespaceResult:
|
|
|
107
107
|
@pulumi.getter(name="organizationId")
|
|
108
108
|
def organization_id(self) -> str:
|
|
109
109
|
"""
|
|
110
|
-
The organization
|
|
110
|
+
The unique identifier of the organization with which the namespace is associated.
|
|
111
111
|
"""
|
|
112
112
|
return pulumi.get(self, "organization_id")
|
|
113
113
|
|
|
@@ -133,7 +133,7 @@ class GetContainerNamespaceResult:
|
|
|
133
133
|
@pulumi.getter(name="registryNamespaceId")
|
|
134
134
|
def registry_namespace_id(self) -> str:
|
|
135
135
|
"""
|
|
136
|
-
The registry namespace
|
|
136
|
+
The unique identifier of the registry namespace of the Serverless Containers namespace.
|
|
137
137
|
"""
|
|
138
138
|
return pulumi.get(self, "registry_namespace_id")
|
|
139
139
|
|
|
@@ -169,9 +169,16 @@ def get_container_namespace(name: Optional[str] = None,
|
|
|
169
169
|
region: Optional[str] = None,
|
|
170
170
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetContainerNamespaceResult:
|
|
171
171
|
"""
|
|
172
|
-
|
|
172
|
+
The `ContainerNamespace` data source is used to retrieve information about a Serverless Containers namespace.
|
|
173
173
|
|
|
174
|
-
|
|
174
|
+
Refer to the Serverless Containers [product documentation](https://www.scaleway.com/en/docs/serverless/containers/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-containers/) for more information.
|
|
175
|
+
|
|
176
|
+
## Retrieve a Serverless Containers namespace
|
|
177
|
+
|
|
178
|
+
The following commands allow you to:
|
|
179
|
+
|
|
180
|
+
- retrieve a namespace by its name
|
|
181
|
+
- retrieve a namespace by its ID
|
|
175
182
|
|
|
176
183
|
```python
|
|
177
184
|
import pulumi
|
|
@@ -184,11 +191,9 @@ def get_container_namespace(name: Optional[str] = None,
|
|
|
184
191
|
```
|
|
185
192
|
|
|
186
193
|
|
|
187
|
-
:param str name: The namespace name.
|
|
188
|
-
|
|
189
|
-
:param str
|
|
190
|
-
Only one of `name` and `namespace_id` should be specified.
|
|
191
|
-
:param str project_id: `project_id`) The ID of the project the namespace is associated with.
|
|
194
|
+
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
195
|
+
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
196
|
+
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
|
192
197
|
:param str region: `region`) The region in which the namespace exists.
|
|
193
198
|
"""
|
|
194
199
|
__args__ = dict()
|
|
@@ -218,9 +223,16 @@ def get_container_namespace_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
|
218
223
|
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
219
224
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetContainerNamespaceResult]:
|
|
220
225
|
"""
|
|
221
|
-
|
|
226
|
+
The `ContainerNamespace` data source is used to retrieve information about a Serverless Containers namespace.
|
|
227
|
+
|
|
228
|
+
Refer to the Serverless Containers [product documentation](https://www.scaleway.com/en/docs/serverless/containers/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-containers/) for more information.
|
|
229
|
+
|
|
230
|
+
## Retrieve a Serverless Containers namespace
|
|
231
|
+
|
|
232
|
+
The following commands allow you to:
|
|
222
233
|
|
|
223
|
-
|
|
234
|
+
- retrieve a namespace by its name
|
|
235
|
+
- retrieve a namespace by its ID
|
|
224
236
|
|
|
225
237
|
```python
|
|
226
238
|
import pulumi
|
|
@@ -233,11 +245,9 @@ def get_container_namespace_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
|
233
245
|
```
|
|
234
246
|
|
|
235
247
|
|
|
236
|
-
:param str name: The namespace name.
|
|
237
|
-
|
|
238
|
-
:param str
|
|
239
|
-
Only one of `name` and `namespace_id` should be specified.
|
|
240
|
-
:param str project_id: `project_id`) The ID of the project the namespace is associated with.
|
|
248
|
+
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
249
|
+
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
250
|
+
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
|
241
251
|
:param str region: `region`) The region in which the namespace exists.
|
|
242
252
|
"""
|
|
243
253
|
__args__ = dict()
|
|
@@ -263,14 +263,18 @@ def get_function(function_id: Optional[str] = None,
|
|
|
263
263
|
region: Optional[str] = None,
|
|
264
264
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFunctionResult:
|
|
265
265
|
"""
|
|
266
|
-
|
|
266
|
+
The `Function` data source is used to retrieve information about a Serverless Function.
|
|
267
267
|
|
|
268
|
+
Refer to the Serverless Functions [product documentation](https://www.scaleway.com/en/docs/serverless/functions/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-functions/) for more information.
|
|
268
269
|
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
:param str
|
|
273
|
-
:param str
|
|
270
|
+
For more information on the limitations of Serverless Functions, refer to the [dedicated documentation](https://www.scaleway.com/en/docs/compute/functions/reference-content/functions-limitations/).
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
:param str function_id: The unique identifier of the function. Only one of `name` and `function_id` should be specified.
|
|
274
|
+
:param str name: The name of the function. Only one of `name` and `namespace_id` should be specified.
|
|
275
|
+
:param str namespace_id: The namespace ID associated with this function.
|
|
276
|
+
:param str project_id: The unique identifier of the project with which the function is associated.
|
|
277
|
+
:param str region: `region`) The region in which the container exists.
|
|
274
278
|
"""
|
|
275
279
|
__args__ = dict()
|
|
276
280
|
__args__['functionId'] = function_id
|
|
@@ -313,14 +317,18 @@ def get_function_output(function_id: Optional[pulumi.Input[Optional[str]]] = Non
|
|
|
313
317
|
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
314
318
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFunctionResult]:
|
|
315
319
|
"""
|
|
316
|
-
|
|
320
|
+
The `Function` data source is used to retrieve information about a Serverless Function.
|
|
321
|
+
|
|
322
|
+
Refer to the Serverless Functions [product documentation](https://www.scaleway.com/en/docs/serverless/functions/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-functions/) for more information.
|
|
323
|
+
|
|
324
|
+
For more information on the limitations of Serverless Functions, refer to the [dedicated documentation](https://www.scaleway.com/en/docs/compute/functions/reference-content/functions-limitations/).
|
|
317
325
|
|
|
318
326
|
|
|
319
|
-
:param str function_id: The function
|
|
320
|
-
:param str name: The function
|
|
321
|
-
:param str namespace_id: The namespace
|
|
322
|
-
:param str project_id: The
|
|
323
|
-
:param str region: `region`) The region in which the
|
|
327
|
+
:param str function_id: The unique identifier of the function. Only one of `name` and `function_id` should be specified.
|
|
328
|
+
:param str name: The name of the function. Only one of `name` and `namespace_id` should be specified.
|
|
329
|
+
:param str namespace_id: The namespace ID associated with this function.
|
|
330
|
+
:param str project_id: The unique identifier of the project with which the function is associated.
|
|
331
|
+
:param str region: `region`) The region in which the container exists.
|
|
324
332
|
"""
|
|
325
333
|
__args__ = dict()
|
|
326
334
|
__args__['functionId'] = function_id
|
|
@@ -99,7 +99,7 @@ class GetFunctionNamespaceResult:
|
|
|
99
99
|
@pulumi.getter(name="organizationId")
|
|
100
100
|
def organization_id(self) -> str:
|
|
101
101
|
"""
|
|
102
|
-
The organization
|
|
102
|
+
The unique identifier of the organization with which the namespace is associated.
|
|
103
103
|
"""
|
|
104
104
|
return pulumi.get(self, "organization_id")
|
|
105
105
|
|
|
@@ -125,7 +125,7 @@ class GetFunctionNamespaceResult:
|
|
|
125
125
|
@pulumi.getter(name="registryNamespaceId")
|
|
126
126
|
def registry_namespace_id(self) -> str:
|
|
127
127
|
"""
|
|
128
|
-
The registry namespace
|
|
128
|
+
The unique identifier of the registry namespace of the Serverless Functions namespace.
|
|
129
129
|
"""
|
|
130
130
|
return pulumi.get(self, "registry_namespace_id")
|
|
131
131
|
|
|
@@ -160,14 +160,14 @@ def get_function_namespace(name: Optional[str] = None,
|
|
|
160
160
|
region: Optional[str] = None,
|
|
161
161
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFunctionNamespaceResult:
|
|
162
162
|
"""
|
|
163
|
-
|
|
163
|
+
The `FunctionNamespace` data source is used to retrieve information about a Serverless Functions namespace.
|
|
164
164
|
|
|
165
|
+
Refer to the Serverless Functions [product documentation](https://www.scaleway.com/en/docs/serverless/functions/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-functions/) for more information.
|
|
165
166
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
:param str namespace_id: The namespace
|
|
169
|
-
|
|
170
|
-
:param str project_id: `project_id`) The ID of the project the namespace is associated with.
|
|
167
|
+
|
|
168
|
+
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
169
|
+
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
170
|
+
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
|
171
171
|
:param str region: `region`) The region in which the namespace exists.
|
|
172
172
|
"""
|
|
173
173
|
__args__ = dict()
|
|
@@ -196,14 +196,14 @@ def get_function_namespace_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
|
196
196
|
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
197
197
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFunctionNamespaceResult]:
|
|
198
198
|
"""
|
|
199
|
-
|
|
199
|
+
The `FunctionNamespace` data source is used to retrieve information about a Serverless Functions namespace.
|
|
200
|
+
|
|
201
|
+
Refer to the Serverless Functions [product documentation](https://www.scaleway.com/en/docs/serverless/functions/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-functions/) for more information.
|
|
200
202
|
|
|
201
203
|
|
|
202
|
-
:param str name: The namespace name.
|
|
203
|
-
|
|
204
|
-
:param str
|
|
205
|
-
Only one of `name` and `namespace_id` should be specified.
|
|
206
|
-
:param str project_id: `project_id`) The ID of the project the namespace is associated with.
|
|
204
|
+
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
205
|
+
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
206
|
+
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
|
207
207
|
:param str region: `region`) The region in which the namespace exists.
|
|
208
208
|
"""
|
|
209
209
|
__args__ = dict()
|
|
@@ -166,10 +166,16 @@ def get_object_bucket(name: Optional[str] = None,
|
|
|
166
166
|
region: Optional[str] = None,
|
|
167
167
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetObjectBucketResult:
|
|
168
168
|
"""
|
|
169
|
-
|
|
170
|
-
For more information, see [the documentation](https://www.scaleway.com/en/docs/object-storage-feature/).
|
|
169
|
+
The `ObjectBucket` data source is used to retrieve information about an Object Storage bucket.
|
|
171
170
|
|
|
172
|
-
|
|
171
|
+
Refer to the Object Storage [documentation](https://www.scaleway.com/en/docs/storage/object/how-to/create-a-bucket/) for more information.
|
|
172
|
+
|
|
173
|
+
## Retrieve an Object Storage bucket
|
|
174
|
+
|
|
175
|
+
The following commands allow you to:
|
|
176
|
+
|
|
177
|
+
- retrieve a bucket by its name
|
|
178
|
+
- retrieve a bucket by its ID
|
|
173
179
|
|
|
174
180
|
```python
|
|
175
181
|
import pulumi
|
|
@@ -184,7 +190,7 @@ def get_object_bucket(name: Optional[str] = None,
|
|
|
184
190
|
selected = scaleway.get_object_bucket_output(name=main.id)
|
|
185
191
|
```
|
|
186
192
|
|
|
187
|
-
|
|
193
|
+
## Retrieve a bucket from a specific project
|
|
188
194
|
|
|
189
195
|
```python
|
|
190
196
|
import pulumi
|
|
@@ -195,7 +201,7 @@ def get_object_bucket(name: Optional[str] = None,
|
|
|
195
201
|
```
|
|
196
202
|
|
|
197
203
|
|
|
198
|
-
:param str project_id: `project_id`) The ID of the project the bucket is associated
|
|
204
|
+
:param str project_id: `project_id`) The ID of the project with which the bucket is associated.
|
|
199
205
|
:param str region: `region`) The region in which the bucket exists.
|
|
200
206
|
"""
|
|
201
207
|
__args__ = dict()
|
|
@@ -224,10 +230,16 @@ def get_object_bucket_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
224
230
|
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
225
231
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetObjectBucketResult]:
|
|
226
232
|
"""
|
|
227
|
-
|
|
228
|
-
|
|
233
|
+
The `ObjectBucket` data source is used to retrieve information about an Object Storage bucket.
|
|
234
|
+
|
|
235
|
+
Refer to the Object Storage [documentation](https://www.scaleway.com/en/docs/storage/object/how-to/create-a-bucket/) for more information.
|
|
236
|
+
|
|
237
|
+
## Retrieve an Object Storage bucket
|
|
238
|
+
|
|
239
|
+
The following commands allow you to:
|
|
229
240
|
|
|
230
|
-
|
|
241
|
+
- retrieve a bucket by its name
|
|
242
|
+
- retrieve a bucket by its ID
|
|
231
243
|
|
|
232
244
|
```python
|
|
233
245
|
import pulumi
|
|
@@ -242,7 +254,7 @@ def get_object_bucket_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
242
254
|
selected = scaleway.get_object_bucket_output(name=main.id)
|
|
243
255
|
```
|
|
244
256
|
|
|
245
|
-
|
|
257
|
+
## Retrieve a bucket from a specific project
|
|
246
258
|
|
|
247
259
|
```python
|
|
248
260
|
import pulumi
|
|
@@ -253,7 +265,7 @@ def get_object_bucket_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
253
265
|
```
|
|
254
266
|
|
|
255
267
|
|
|
256
|
-
:param str project_id: `project_id`) The ID of the project the bucket is associated
|
|
268
|
+
:param str project_id: `project_id`) The ID of the project with which the bucket is associated.
|
|
257
269
|
:param str region: `region`) The region in which the bucket exists.
|
|
258
270
|
"""
|
|
259
271
|
__args__ = dict()
|
|
@@ -60,7 +60,7 @@ class GetObjectBucketPolicyResult:
|
|
|
60
60
|
@pulumi.getter
|
|
61
61
|
def policy(self) -> str:
|
|
62
62
|
"""
|
|
63
|
-
The bucket
|
|
63
|
+
The content of the bucket policy in JSON format.
|
|
64
64
|
"""
|
|
65
65
|
return pulumi.get(self, "policy")
|
|
66
66
|
|
|
@@ -93,10 +93,13 @@ def get_object_bucket_policy(bucket: Optional[str] = None,
|
|
|
93
93
|
region: Optional[str] = None,
|
|
94
94
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetObjectBucketPolicyResult:
|
|
95
95
|
"""
|
|
96
|
-
|
|
97
|
-
For more information, see [the documentation](https://www.scaleway.com/en/docs/object-storage-feature/).
|
|
96
|
+
The `ObjectBucketPolicy` data source is used to retrieve information about the bucket policy of an Object Storage bucket.
|
|
98
97
|
|
|
99
|
-
|
|
98
|
+
Refer to the Object Storage [documentation](https://www.scaleway.com/en/docs/storage/object/api-cli/bucket-policy/) for more information.
|
|
99
|
+
|
|
100
|
+
## Retrieve the bucket policy of a bucket
|
|
101
|
+
|
|
102
|
+
The following command allows you to retrieve a bucket policy by its bucket.
|
|
100
103
|
|
|
101
104
|
```python
|
|
102
105
|
import pulumi
|
|
@@ -106,7 +109,7 @@ def get_object_bucket_policy(bucket: Optional[str] = None,
|
|
|
106
109
|
```
|
|
107
110
|
|
|
108
111
|
|
|
109
|
-
:param str bucket: The bucket
|
|
112
|
+
:param str bucket: The name of the bucket.
|
|
110
113
|
:param str region: `region`) The region in which the Object Storage exists.
|
|
111
114
|
"""
|
|
112
115
|
__args__ = dict()
|
|
@@ -127,10 +130,13 @@ def get_object_bucket_policy_output(bucket: Optional[pulumi.Input[str]] = None,
|
|
|
127
130
|
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
128
131
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetObjectBucketPolicyResult]:
|
|
129
132
|
"""
|
|
130
|
-
|
|
131
|
-
|
|
133
|
+
The `ObjectBucketPolicy` data source is used to retrieve information about the bucket policy of an Object Storage bucket.
|
|
134
|
+
|
|
135
|
+
Refer to the Object Storage [documentation](https://www.scaleway.com/en/docs/storage/object/api-cli/bucket-policy/) for more information.
|
|
136
|
+
|
|
137
|
+
## Retrieve the bucket policy of a bucket
|
|
132
138
|
|
|
133
|
-
|
|
139
|
+
The following command allows you to retrieve a bucket policy by its bucket.
|
|
134
140
|
|
|
135
141
|
```python
|
|
136
142
|
import pulumi
|
|
@@ -140,7 +146,7 @@ def get_object_bucket_policy_output(bucket: Optional[pulumi.Input[str]] = None,
|
|
|
140
146
|
```
|
|
141
147
|
|
|
142
148
|
|
|
143
|
-
:param str bucket: The bucket
|
|
149
|
+
:param str bucket: The name of the bucket.
|
|
144
150
|
:param str region: `region`) The region in which the Object Storage exists.
|
|
145
151
|
"""
|
|
146
152
|
__args__ = dict()
|
|
@@ -27,10 +27,13 @@ class GetTemDomainResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getTemDomain.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, accept_tos=None, created_at=None, dkim_config=None, dmarc_config=None, dmarc_name=None, domain_id=None, id=None, last_error=None, last_valid_at=None, mx_blackhole=None, name=None, next_check_at=None, project_id=None, region=None, reputations=None, revoked_at=None, smtp_host=None, smtp_port=None, smtp_port_alternative=None, smtp_port_unsecure=None, smtps_auth_user=None, smtps_port=None, smtps_port_alternative=None, spf_config=None, status=None):
|
|
30
|
+
def __init__(__self__, accept_tos=None, autoconfig=None, created_at=None, dkim_config=None, dmarc_config=None, dmarc_name=None, domain_id=None, id=None, last_error=None, last_valid_at=None, mx_blackhole=None, name=None, next_check_at=None, project_id=None, region=None, reputations=None, revoked_at=None, smtp_host=None, smtp_port=None, smtp_port_alternative=None, smtp_port_unsecure=None, smtps_auth_user=None, smtps_port=None, smtps_port_alternative=None, spf_config=None, status=None):
|
|
31
31
|
if accept_tos and not isinstance(accept_tos, bool):
|
|
32
32
|
raise TypeError("Expected argument 'accept_tos' to be a bool")
|
|
33
33
|
pulumi.set(__self__, "accept_tos", accept_tos)
|
|
34
|
+
if autoconfig and not isinstance(autoconfig, bool):
|
|
35
|
+
raise TypeError("Expected argument 'autoconfig' to be a bool")
|
|
36
|
+
pulumi.set(__self__, "autoconfig", autoconfig)
|
|
34
37
|
if created_at and not isinstance(created_at, str):
|
|
35
38
|
raise TypeError("Expected argument 'created_at' to be a str")
|
|
36
39
|
pulumi.set(__self__, "created_at", created_at)
|
|
@@ -109,6 +112,11 @@ class GetTemDomainResult:
|
|
|
109
112
|
def accept_tos(self) -> bool:
|
|
110
113
|
return pulumi.get(self, "accept_tos")
|
|
111
114
|
|
|
115
|
+
@property
|
|
116
|
+
@pulumi.getter
|
|
117
|
+
def autoconfig(self) -> bool:
|
|
118
|
+
return pulumi.get(self, "autoconfig")
|
|
119
|
+
|
|
112
120
|
@property
|
|
113
121
|
@pulumi.getter(name="createdAt")
|
|
114
122
|
def created_at(self) -> str:
|
|
@@ -240,6 +248,7 @@ class AwaitableGetTemDomainResult(GetTemDomainResult):
|
|
|
240
248
|
yield self
|
|
241
249
|
return GetTemDomainResult(
|
|
242
250
|
accept_tos=self.accept_tos,
|
|
251
|
+
autoconfig=self.autoconfig,
|
|
243
252
|
created_at=self.created_at,
|
|
244
253
|
dkim_config=self.dkim_config,
|
|
245
254
|
dmarc_config=self.dmarc_config,
|
|
@@ -292,6 +301,7 @@ def get_tem_domain(domain_id: Optional[str] = None,
|
|
|
292
301
|
|
|
293
302
|
return AwaitableGetTemDomainResult(
|
|
294
303
|
accept_tos=pulumi.get(__ret__, 'accept_tos'),
|
|
304
|
+
autoconfig=pulumi.get(__ret__, 'autoconfig'),
|
|
295
305
|
created_at=pulumi.get(__ret__, 'created_at'),
|
|
296
306
|
dkim_config=pulumi.get(__ret__, 'dkim_config'),
|
|
297
307
|
dmarc_config=pulumi.get(__ret__, 'dmarc_config'),
|
|
@@ -341,6 +351,7 @@ def get_tem_domain_output(domain_id: Optional[pulumi.Input[Optional[str]]] = Non
|
|
|
341
351
|
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getTemDomain:getTemDomain', __args__, opts=opts, typ=GetTemDomainResult)
|
|
342
352
|
return __ret__.apply(lambda __response__: GetTemDomainResult(
|
|
343
353
|
accept_tos=pulumi.get(__response__, 'accept_tos'),
|
|
354
|
+
autoconfig=pulumi.get(__response__, 'autoconfig'),
|
|
344
355
|
created_at=pulumi.get(__response__, 'created_at'),
|
|
345
356
|
dkim_config=pulumi.get(__response__, 'dkim_config'),
|
|
346
357
|
dmarc_config=pulumi.get(__response__, 'dmarc_config'),
|
|
@@ -1203,6 +1203,22 @@ class InstanceServer(pulumi.CustomResource):
|
|
|
1203
1203
|
})
|
|
1204
1204
|
```
|
|
1205
1205
|
|
|
1206
|
+
### Using Scaleway Block Storage (SBS) volume
|
|
1207
|
+
|
|
1208
|
+
```python
|
|
1209
|
+
import pulumi
|
|
1210
|
+
import pulumiverse_scaleway as scaleway
|
|
1211
|
+
|
|
1212
|
+
server = scaleway.InstanceServer("server",
|
|
1213
|
+
type="PLAY2-MICRO",
|
|
1214
|
+
image="ubuntu_jammy",
|
|
1215
|
+
root_volume={
|
|
1216
|
+
"volume_type": "sbs_volume",
|
|
1217
|
+
"sbs_iops": 15000,
|
|
1218
|
+
"size_in_gb": 50,
|
|
1219
|
+
})
|
|
1220
|
+
```
|
|
1221
|
+
|
|
1206
1222
|
## Private Network
|
|
1207
1223
|
|
|
1208
1224
|
> **Important:** Updates to `private_network` will recreate a new private network interface.
|
|
@@ -1431,6 +1447,22 @@ class InstanceServer(pulumi.CustomResource):
|
|
|
1431
1447
|
})
|
|
1432
1448
|
```
|
|
1433
1449
|
|
|
1450
|
+
### Using Scaleway Block Storage (SBS) volume
|
|
1451
|
+
|
|
1452
|
+
```python
|
|
1453
|
+
import pulumi
|
|
1454
|
+
import pulumiverse_scaleway as scaleway
|
|
1455
|
+
|
|
1456
|
+
server = scaleway.InstanceServer("server",
|
|
1457
|
+
type="PLAY2-MICRO",
|
|
1458
|
+
image="ubuntu_jammy",
|
|
1459
|
+
root_volume={
|
|
1460
|
+
"volume_type": "sbs_volume",
|
|
1461
|
+
"sbs_iops": 15000,
|
|
1462
|
+
"size_in_gb": 50,
|
|
1463
|
+
})
|
|
1464
|
+
```
|
|
1465
|
+
|
|
1434
1466
|
## Private Network
|
|
1435
1467
|
|
|
1436
1468
|
> **Important:** Updates to `private_network` will recreate a new private network interface.
|