pulumiverse-scaleway 1.17.0a1730194779__py3-none-any.whl → 1.18.0a1730280133__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.0a1730194779.dist-info → pulumiverse_scaleway-1.18.0a1730280133.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.17.0a1730194779.dist-info → pulumiverse_scaleway-1.18.0a1730280133.dist-info}/RECORD +43 -42
- {pulumiverse_scaleway-1.17.0a1730194779.dist-info → pulumiverse_scaleway-1.18.0a1730280133.dist-info}/WHEEL +1 -1
- {pulumiverse_scaleway-1.17.0a1730194779.dist-info → pulumiverse_scaleway-1.18.0a1730280133.dist-info}/top_level.txt +0 -0
|
@@ -28,9 +28,9 @@ class SdbDatabaseArgs:
|
|
|
28
28
|
The set of arguments for constructing a SdbDatabase resource.
|
|
29
29
|
:param pulumi.Input[int] max_cpu: The maximum number of CPU units for your database. Defaults to 15.
|
|
30
30
|
:param pulumi.Input[int] min_cpu: The minimum number of CPU units for your database. Defaults to 0.
|
|
31
|
-
:param pulumi.Input[str] name:
|
|
31
|
+
:param pulumi.Input[str] name: The name of the database (e.g. `my-new-database`).
|
|
32
32
|
|
|
33
|
-
> **Important:** Updates to `name` will recreate the database.
|
|
33
|
+
> **Important:** Updates to the `name` argument will recreate the database.
|
|
34
34
|
:param pulumi.Input[str] project_id: The project_id you want to attach the resource to
|
|
35
35
|
:param pulumi.Input[str] region: `region`) The region in which the resource exists.
|
|
36
36
|
"""
|
|
@@ -73,9 +73,9 @@ class SdbDatabaseArgs:
|
|
|
73
73
|
@pulumi.getter
|
|
74
74
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
75
75
|
"""
|
|
76
|
-
|
|
76
|
+
The name of the database (e.g. `my-new-database`).
|
|
77
77
|
|
|
78
|
-
> **Important:** Updates to `name` will recreate the database.
|
|
78
|
+
> **Important:** Updates to the `name` argument will recreate the database.
|
|
79
79
|
"""
|
|
80
80
|
return pulumi.get(self, "name")
|
|
81
81
|
|
|
@@ -119,12 +119,12 @@ class _SdbDatabaseState:
|
|
|
119
119
|
region: Optional[pulumi.Input[str]] = None):
|
|
120
120
|
"""
|
|
121
121
|
Input properties used for looking up and filtering SdbDatabase resources.
|
|
122
|
-
:param pulumi.Input[str] endpoint:
|
|
122
|
+
:param pulumi.Input[str] endpoint: The endpoint of the database.
|
|
123
123
|
:param pulumi.Input[int] max_cpu: The maximum number of CPU units for your database. Defaults to 15.
|
|
124
124
|
:param pulumi.Input[int] min_cpu: The minimum number of CPU units for your database. Defaults to 0.
|
|
125
|
-
:param pulumi.Input[str] name:
|
|
125
|
+
:param pulumi.Input[str] name: The name of the database (e.g. `my-new-database`).
|
|
126
126
|
|
|
127
|
-
> **Important:** Updates to `name` will recreate the database.
|
|
127
|
+
> **Important:** Updates to the `name` argument will recreate the database.
|
|
128
128
|
:param pulumi.Input[str] project_id: The project_id you want to attach the resource to
|
|
129
129
|
:param pulumi.Input[str] region: `region`) The region in which the resource exists.
|
|
130
130
|
"""
|
|
@@ -145,7 +145,7 @@ class _SdbDatabaseState:
|
|
|
145
145
|
@pulumi.getter
|
|
146
146
|
def endpoint(self) -> Optional[pulumi.Input[str]]:
|
|
147
147
|
"""
|
|
148
|
-
|
|
148
|
+
The endpoint of the database.
|
|
149
149
|
"""
|
|
150
150
|
return pulumi.get(self, "endpoint")
|
|
151
151
|
|
|
@@ -181,9 +181,9 @@ class _SdbDatabaseState:
|
|
|
181
181
|
@pulumi.getter
|
|
182
182
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
183
183
|
"""
|
|
184
|
-
|
|
184
|
+
The name of the database (e.g. `my-new-database`).
|
|
185
185
|
|
|
186
|
-
> **Important:** Updates to `name` will recreate the database.
|
|
186
|
+
> **Important:** Updates to the `name` argument will recreate the database.
|
|
187
187
|
"""
|
|
188
188
|
return pulumi.get(self, "name")
|
|
189
189
|
|
|
@@ -228,7 +228,9 @@ class SdbDatabase(pulumi.CustomResource):
|
|
|
228
228
|
region: Optional[pulumi.Input[str]] = None,
|
|
229
229
|
__props__=None):
|
|
230
230
|
"""
|
|
231
|
-
|
|
231
|
+
The `SdbDatabase` resource allows you to create and manage databases for Scaleway Serverless SQL Databases.
|
|
232
|
+
|
|
233
|
+
Refer to the Serverless SQL Databases [documentation](https://www.scaleway.com/en/docs/serverless/sql-databases/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-databases/) for more information.
|
|
232
234
|
|
|
233
235
|
## Example Usage
|
|
234
236
|
|
|
@@ -246,7 +248,7 @@ class SdbDatabase(pulumi.CustomResource):
|
|
|
246
248
|
|
|
247
249
|
## Import
|
|
248
250
|
|
|
249
|
-
Serverless SQL
|
|
251
|
+
Serverless SQL Databases can be imported using the `{region}/{id}`, as shown below:
|
|
250
252
|
|
|
251
253
|
bash
|
|
252
254
|
|
|
@@ -258,9 +260,9 @@ class SdbDatabase(pulumi.CustomResource):
|
|
|
258
260
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
259
261
|
:param pulumi.Input[int] max_cpu: The maximum number of CPU units for your database. Defaults to 15.
|
|
260
262
|
:param pulumi.Input[int] min_cpu: The minimum number of CPU units for your database. Defaults to 0.
|
|
261
|
-
:param pulumi.Input[str] name:
|
|
263
|
+
:param pulumi.Input[str] name: The name of the database (e.g. `my-new-database`).
|
|
262
264
|
|
|
263
|
-
> **Important:** Updates to `name` will recreate the database.
|
|
265
|
+
> **Important:** Updates to the `name` argument will recreate the database.
|
|
264
266
|
:param pulumi.Input[str] project_id: The project_id you want to attach the resource to
|
|
265
267
|
:param pulumi.Input[str] region: `region`) The region in which the resource exists.
|
|
266
268
|
"""
|
|
@@ -271,7 +273,9 @@ class SdbDatabase(pulumi.CustomResource):
|
|
|
271
273
|
args: Optional[SdbDatabaseArgs] = None,
|
|
272
274
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
273
275
|
"""
|
|
274
|
-
|
|
276
|
+
The `SdbDatabase` resource allows you to create and manage databases for Scaleway Serverless SQL Databases.
|
|
277
|
+
|
|
278
|
+
Refer to the Serverless SQL Databases [documentation](https://www.scaleway.com/en/docs/serverless/sql-databases/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-databases/) for more information.
|
|
275
279
|
|
|
276
280
|
## Example Usage
|
|
277
281
|
|
|
@@ -289,7 +293,7 @@ class SdbDatabase(pulumi.CustomResource):
|
|
|
289
293
|
|
|
290
294
|
## Import
|
|
291
295
|
|
|
292
|
-
Serverless SQL
|
|
296
|
+
Serverless SQL Databases can be imported using the `{region}/{id}`, as shown below:
|
|
293
297
|
|
|
294
298
|
bash
|
|
295
299
|
|
|
@@ -355,12 +359,12 @@ class SdbDatabase(pulumi.CustomResource):
|
|
|
355
359
|
:param str resource_name: The unique name of the resulting resource.
|
|
356
360
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
357
361
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
358
|
-
:param pulumi.Input[str] endpoint:
|
|
362
|
+
:param pulumi.Input[str] endpoint: The endpoint of the database.
|
|
359
363
|
:param pulumi.Input[int] max_cpu: The maximum number of CPU units for your database. Defaults to 15.
|
|
360
364
|
:param pulumi.Input[int] min_cpu: The minimum number of CPU units for your database. Defaults to 0.
|
|
361
|
-
:param pulumi.Input[str] name:
|
|
365
|
+
:param pulumi.Input[str] name: The name of the database (e.g. `my-new-database`).
|
|
362
366
|
|
|
363
|
-
> **Important:** Updates to `name` will recreate the database.
|
|
367
|
+
> **Important:** Updates to the `name` argument will recreate the database.
|
|
364
368
|
:param pulumi.Input[str] project_id: The project_id you want to attach the resource to
|
|
365
369
|
:param pulumi.Input[str] region: `region`) The region in which the resource exists.
|
|
366
370
|
"""
|
|
@@ -380,7 +384,7 @@ class SdbDatabase(pulumi.CustomResource):
|
|
|
380
384
|
@pulumi.getter
|
|
381
385
|
def endpoint(self) -> pulumi.Output[str]:
|
|
382
386
|
"""
|
|
383
|
-
|
|
387
|
+
The endpoint of the database.
|
|
384
388
|
"""
|
|
385
389
|
return pulumi.get(self, "endpoint")
|
|
386
390
|
|
|
@@ -404,9 +408,9 @@ class SdbDatabase(pulumi.CustomResource):
|
|
|
404
408
|
@pulumi.getter
|
|
405
409
|
def name(self) -> pulumi.Output[str]:
|
|
406
410
|
"""
|
|
407
|
-
|
|
411
|
+
The name of the database (e.g. `my-new-database`).
|
|
408
412
|
|
|
409
|
-
> **Important:** Updates to `name` will recreate the database.
|
|
413
|
+
> **Important:** Updates to the `name` argument will recreate the database.
|
|
410
414
|
"""
|
|
411
415
|
return pulumi.get(self, "name")
|
|
412
416
|
|
|
@@ -22,6 +22,7 @@ __all__ = ['TemDomainArgs', 'TemDomain']
|
|
|
22
22
|
class TemDomainArgs:
|
|
23
23
|
def __init__(__self__, *,
|
|
24
24
|
accept_tos: pulumi.Input[bool],
|
|
25
|
+
autoconfig: Optional[pulumi.Input[bool]] = None,
|
|
25
26
|
name: Optional[pulumi.Input[str]] = None,
|
|
26
27
|
project_id: Optional[pulumi.Input[str]] = None,
|
|
27
28
|
region: Optional[pulumi.Input[str]] = None):
|
|
@@ -29,12 +30,15 @@ class TemDomainArgs:
|
|
|
29
30
|
The set of arguments for constructing a TemDomain resource.
|
|
30
31
|
:param pulumi.Input[bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
|
|
31
32
|
> **Important:** This attribute must be set to `true`.
|
|
33
|
+
:param pulumi.Input[bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
|
|
32
34
|
:param pulumi.Input[str] name: The domain name, must not be used in another Transactional Email Domain.
|
|
33
35
|
> **Important:** Updates to `name` will recreate the domain.
|
|
34
36
|
:param pulumi.Input[str] project_id: `project_id`) The ID of the project the domain is associated with.
|
|
35
37
|
:param pulumi.Input[str] region: `region`). The region in which the domain should be created.
|
|
36
38
|
"""
|
|
37
39
|
pulumi.set(__self__, "accept_tos", accept_tos)
|
|
40
|
+
if autoconfig is not None:
|
|
41
|
+
pulumi.set(__self__, "autoconfig", autoconfig)
|
|
38
42
|
if name is not None:
|
|
39
43
|
pulumi.set(__self__, "name", name)
|
|
40
44
|
if project_id is not None:
|
|
@@ -55,6 +59,18 @@ class TemDomainArgs:
|
|
|
55
59
|
def accept_tos(self, value: pulumi.Input[bool]):
|
|
56
60
|
pulumi.set(self, "accept_tos", value)
|
|
57
61
|
|
|
62
|
+
@property
|
|
63
|
+
@pulumi.getter
|
|
64
|
+
def autoconfig(self) -> Optional[pulumi.Input[bool]]:
|
|
65
|
+
"""
|
|
66
|
+
Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "autoconfig")
|
|
69
|
+
|
|
70
|
+
@autoconfig.setter
|
|
71
|
+
def autoconfig(self, value: Optional[pulumi.Input[bool]]):
|
|
72
|
+
pulumi.set(self, "autoconfig", value)
|
|
73
|
+
|
|
58
74
|
@property
|
|
59
75
|
@pulumi.getter
|
|
60
76
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -97,6 +113,7 @@ class TemDomainArgs:
|
|
|
97
113
|
class _TemDomainState:
|
|
98
114
|
def __init__(__self__, *,
|
|
99
115
|
accept_tos: Optional[pulumi.Input[bool]] = None,
|
|
116
|
+
autoconfig: Optional[pulumi.Input[bool]] = None,
|
|
100
117
|
created_at: Optional[pulumi.Input[str]] = None,
|
|
101
118
|
dkim_config: Optional[pulumi.Input[str]] = None,
|
|
102
119
|
dmarc_config: Optional[pulumi.Input[str]] = None,
|
|
@@ -123,6 +140,7 @@ class _TemDomainState:
|
|
|
123
140
|
Input properties used for looking up and filtering TemDomain resources.
|
|
124
141
|
:param pulumi.Input[bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
|
|
125
142
|
> **Important:** This attribute must be set to `true`.
|
|
143
|
+
:param pulumi.Input[bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
|
|
126
144
|
:param pulumi.Input[str] created_at: The date and time of the Transaction Email Domain's creation (RFC 3339 format).
|
|
127
145
|
:param pulumi.Input[str] dkim_config: The DKIM public key, as should be recorded in the DNS zone.
|
|
128
146
|
:param pulumi.Input[str] dmarc_config: DMARC record for the domain, as should be recorded in the DNS zone.
|
|
@@ -149,6 +167,8 @@ class _TemDomainState:
|
|
|
149
167
|
"""
|
|
150
168
|
if accept_tos is not None:
|
|
151
169
|
pulumi.set(__self__, "accept_tos", accept_tos)
|
|
170
|
+
if autoconfig is not None:
|
|
171
|
+
pulumi.set(__self__, "autoconfig", autoconfig)
|
|
152
172
|
if created_at is not None:
|
|
153
173
|
pulumi.set(__self__, "created_at", created_at)
|
|
154
174
|
if dkim_config is not None:
|
|
@@ -210,6 +230,18 @@ class _TemDomainState:
|
|
|
210
230
|
def accept_tos(self, value: Optional[pulumi.Input[bool]]):
|
|
211
231
|
pulumi.set(self, "accept_tos", value)
|
|
212
232
|
|
|
233
|
+
@property
|
|
234
|
+
@pulumi.getter
|
|
235
|
+
def autoconfig(self) -> Optional[pulumi.Input[bool]]:
|
|
236
|
+
"""
|
|
237
|
+
Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
|
|
238
|
+
"""
|
|
239
|
+
return pulumi.get(self, "autoconfig")
|
|
240
|
+
|
|
241
|
+
@autoconfig.setter
|
|
242
|
+
def autoconfig(self, value: Optional[pulumi.Input[bool]]):
|
|
243
|
+
pulumi.set(self, "autoconfig", value)
|
|
244
|
+
|
|
213
245
|
@property
|
|
214
246
|
@pulumi.getter(name="createdAt")
|
|
215
247
|
def created_at(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -483,6 +515,7 @@ class TemDomain(pulumi.CustomResource):
|
|
|
483
515
|
resource_name: str,
|
|
484
516
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
485
517
|
accept_tos: Optional[pulumi.Input[bool]] = None,
|
|
518
|
+
autoconfig: Optional[pulumi.Input[bool]] = None,
|
|
486
519
|
name: Optional[pulumi.Input[str]] = None,
|
|
487
520
|
project_id: Optional[pulumi.Input[str]] = None,
|
|
488
521
|
region: Optional[pulumi.Input[str]] = None,
|
|
@@ -535,6 +568,20 @@ class TemDomain(pulumi.CustomResource):
|
|
|
535
568
|
data=main.dmarc_config)
|
|
536
569
|
```
|
|
537
570
|
|
|
571
|
+
### Automatically Configure DNS Settings for Your Domain
|
|
572
|
+
|
|
573
|
+
```python
|
|
574
|
+
import pulumi
|
|
575
|
+
import pulumiverse_scaleway as scaleway
|
|
576
|
+
|
|
577
|
+
config = pulumi.Config()
|
|
578
|
+
domain_name = config.require("domainName")
|
|
579
|
+
main = scaleway.TemDomain("main",
|
|
580
|
+
name=domain_name,
|
|
581
|
+
accept_tos=True,
|
|
582
|
+
autoconfig=True)
|
|
583
|
+
```
|
|
584
|
+
|
|
538
585
|
## Import
|
|
539
586
|
|
|
540
587
|
Domains can be imported using the `{region}/{id}`, e.g.
|
|
@@ -549,6 +596,7 @@ class TemDomain(pulumi.CustomResource):
|
|
|
549
596
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
550
597
|
:param pulumi.Input[bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
|
|
551
598
|
> **Important:** This attribute must be set to `true`.
|
|
599
|
+
:param pulumi.Input[bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
|
|
552
600
|
:param pulumi.Input[str] name: The domain name, must not be used in another Transactional Email Domain.
|
|
553
601
|
> **Important:** Updates to `name` will recreate the domain.
|
|
554
602
|
:param pulumi.Input[str] project_id: `project_id`) The ID of the project the domain is associated with.
|
|
@@ -608,6 +656,20 @@ class TemDomain(pulumi.CustomResource):
|
|
|
608
656
|
data=main.dmarc_config)
|
|
609
657
|
```
|
|
610
658
|
|
|
659
|
+
### Automatically Configure DNS Settings for Your Domain
|
|
660
|
+
|
|
661
|
+
```python
|
|
662
|
+
import pulumi
|
|
663
|
+
import pulumiverse_scaleway as scaleway
|
|
664
|
+
|
|
665
|
+
config = pulumi.Config()
|
|
666
|
+
domain_name = config.require("domainName")
|
|
667
|
+
main = scaleway.TemDomain("main",
|
|
668
|
+
name=domain_name,
|
|
669
|
+
accept_tos=True,
|
|
670
|
+
autoconfig=True)
|
|
671
|
+
```
|
|
672
|
+
|
|
611
673
|
## Import
|
|
612
674
|
|
|
613
675
|
Domains can be imported using the `{region}/{id}`, e.g.
|
|
@@ -634,6 +696,7 @@ class TemDomain(pulumi.CustomResource):
|
|
|
634
696
|
resource_name: str,
|
|
635
697
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
636
698
|
accept_tos: Optional[pulumi.Input[bool]] = None,
|
|
699
|
+
autoconfig: Optional[pulumi.Input[bool]] = None,
|
|
637
700
|
name: Optional[pulumi.Input[str]] = None,
|
|
638
701
|
project_id: Optional[pulumi.Input[str]] = None,
|
|
639
702
|
region: Optional[pulumi.Input[str]] = None,
|
|
@@ -649,6 +712,7 @@ class TemDomain(pulumi.CustomResource):
|
|
|
649
712
|
if accept_tos is None and not opts.urn:
|
|
650
713
|
raise TypeError("Missing required property 'accept_tos'")
|
|
651
714
|
__props__.__dict__["accept_tos"] = accept_tos
|
|
715
|
+
__props__.__dict__["autoconfig"] = autoconfig
|
|
652
716
|
__props__.__dict__["name"] = name
|
|
653
717
|
__props__.__dict__["project_id"] = project_id
|
|
654
718
|
__props__.__dict__["region"] = region
|
|
@@ -682,6 +746,7 @@ class TemDomain(pulumi.CustomResource):
|
|
|
682
746
|
id: pulumi.Input[str],
|
|
683
747
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
684
748
|
accept_tos: Optional[pulumi.Input[bool]] = None,
|
|
749
|
+
autoconfig: Optional[pulumi.Input[bool]] = None,
|
|
685
750
|
created_at: Optional[pulumi.Input[str]] = None,
|
|
686
751
|
dkim_config: Optional[pulumi.Input[str]] = None,
|
|
687
752
|
dmarc_config: Optional[pulumi.Input[str]] = None,
|
|
@@ -713,6 +778,7 @@ class TemDomain(pulumi.CustomResource):
|
|
|
713
778
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
714
779
|
:param pulumi.Input[bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
|
|
715
780
|
> **Important:** This attribute must be set to `true`.
|
|
781
|
+
:param pulumi.Input[bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
|
|
716
782
|
:param pulumi.Input[str] created_at: The date and time of the Transaction Email Domain's creation (RFC 3339 format).
|
|
717
783
|
:param pulumi.Input[str] dkim_config: The DKIM public key, as should be recorded in the DNS zone.
|
|
718
784
|
:param pulumi.Input[str] dmarc_config: DMARC record for the domain, as should be recorded in the DNS zone.
|
|
@@ -742,6 +808,7 @@ class TemDomain(pulumi.CustomResource):
|
|
|
742
808
|
__props__ = _TemDomainState.__new__(_TemDomainState)
|
|
743
809
|
|
|
744
810
|
__props__.__dict__["accept_tos"] = accept_tos
|
|
811
|
+
__props__.__dict__["autoconfig"] = autoconfig
|
|
745
812
|
__props__.__dict__["created_at"] = created_at
|
|
746
813
|
__props__.__dict__["dkim_config"] = dkim_config
|
|
747
814
|
__props__.__dict__["dmarc_config"] = dmarc_config
|
|
@@ -775,6 +842,14 @@ class TemDomain(pulumi.CustomResource):
|
|
|
775
842
|
"""
|
|
776
843
|
return pulumi.get(self, "accept_tos")
|
|
777
844
|
|
|
845
|
+
@property
|
|
846
|
+
@pulumi.getter
|
|
847
|
+
def autoconfig(self) -> pulumi.Output[Optional[bool]]:
|
|
848
|
+
"""
|
|
849
|
+
Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
|
|
850
|
+
"""
|
|
851
|
+
return pulumi.get(self, "autoconfig")
|
|
852
|
+
|
|
778
853
|
@property
|
|
779
854
|
@pulumi.getter(name="createdAt")
|
|
780
855
|
def created_at(self) -> pulumi.Output[str]:
|
|
@@ -453,7 +453,7 @@ class VpcPrivateNetwork(pulumi.CustomResource):
|
|
|
453
453
|
bash
|
|
454
454
|
|
|
455
455
|
```sh
|
|
456
|
-
$ pulumi import scaleway:index/vpcPrivateNetwork:VpcPrivateNetwork
|
|
456
|
+
$ pulumi import scaleway:index/vpcPrivateNetwork:VpcPrivateNetwork main fr-par/11111111-1111-1111-1111-111111111111
|
|
457
457
|
```
|
|
458
458
|
|
|
459
459
|
:param str resource_name: The name of the resource.
|
|
@@ -526,7 +526,7 @@ class VpcPrivateNetwork(pulumi.CustomResource):
|
|
|
526
526
|
bash
|
|
527
527
|
|
|
528
528
|
```sh
|
|
529
|
-
$ pulumi import scaleway:index/vpcPrivateNetwork:VpcPrivateNetwork
|
|
529
|
+
$ pulumi import scaleway:index/vpcPrivateNetwork:VpcPrivateNetwork main fr-par/11111111-1111-1111-1111-111111111111
|
|
530
530
|
```
|
|
531
531
|
|
|
532
532
|
:param str resource_name: The name of the resource.
|