pulumiverse-scaleway 1.32.0a1753169810__py3-none-any.whl → 1.32.0a1754042138__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.
- pulumiverse_scaleway/__init__.py +9 -0
- pulumiverse_scaleway/_inputs.py +142 -36
- pulumiverse_scaleway/apple_silicon_server.py +46 -8
- pulumiverse_scaleway/applesilicon/_inputs.py +18 -18
- pulumiverse_scaleway/applesilicon/outputs.py +12 -12
- pulumiverse_scaleway/applesilicon/server.py +46 -8
- pulumiverse_scaleway/block/_inputs.py +58 -6
- pulumiverse_scaleway/block/get_snapshot.py +12 -1
- pulumiverse_scaleway/block/outputs.py +60 -0
- pulumiverse_scaleway/block/snapshot.py +54 -7
- pulumiverse_scaleway/block/volume.py +14 -14
- pulumiverse_scaleway/block_snapshot.py +54 -7
- pulumiverse_scaleway/block_volume.py +14 -14
- pulumiverse_scaleway/domain/get_record.py +1 -12
- pulumiverse_scaleway/domain/record.py +0 -47
- pulumiverse_scaleway/domain_record.py +0 -47
- pulumiverse_scaleway/get_block_snapshot.py +12 -1
- pulumiverse_scaleway/get_domain_record.py +1 -12
- pulumiverse_scaleway/get_iam_user.py +2 -2
- pulumiverse_scaleway/get_lb_frontend.py +37 -4
- pulumiverse_scaleway/get_mongo_db_instance.py +12 -1
- pulumiverse_scaleway/iam/get_user.py +2 -2
- pulumiverse_scaleway/key_manager_key.py +831 -0
- pulumiverse_scaleway/kubernetes/cluster.py +6 -6
- pulumiverse_scaleway/kubernetes_cluster.py +6 -6
- pulumiverse_scaleway/loadbalancer_frontend.py +105 -2
- pulumiverse_scaleway/loadbalancers/_inputs.py +12 -12
- pulumiverse_scaleway/loadbalancers/frontend.py +105 -2
- pulumiverse_scaleway/loadbalancers/get_frontend.py +37 -4
- pulumiverse_scaleway/loadbalancers/outputs.py +32 -10
- pulumiverse_scaleway/mongo_db_instance.py +28 -0
- pulumiverse_scaleway/mongodb/get_instance.py +12 -1
- pulumiverse_scaleway/mongodb/instance.py +28 -0
- pulumiverse_scaleway/network/acl.py +35 -37
- pulumiverse_scaleway/outputs.py +159 -26
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- {pulumiverse_scaleway-1.32.0a1753169810.dist-info → pulumiverse_scaleway-1.32.0a1754042138.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.32.0a1753169810.dist-info → pulumiverse_scaleway-1.32.0a1754042138.dist-info}/RECORD +40 -39
- {pulumiverse_scaleway-1.32.0a1753169810.dist-info → pulumiverse_scaleway-1.32.0a1754042138.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.32.0a1753169810.dist-info → pulumiverse_scaleway-1.32.0a1754042138.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,6 @@ class DomainRecordArgs:
|
|
27
27
|
type: pulumi.Input[builtins.str],
|
28
28
|
geo_ip: Optional[pulumi.Input['DomainRecordGeoIpArgs']] = None,
|
29
29
|
http_service: Optional[pulumi.Input['DomainRecordHttpServiceArgs']] = None,
|
30
|
-
keep_empty_zone: Optional[pulumi.Input[builtins.bool]] = None,
|
31
30
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
32
31
|
priority: Optional[pulumi.Input[builtins.int]] = None,
|
33
32
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -41,7 +40,6 @@ class DomainRecordArgs:
|
|
41
40
|
:param pulumi.Input[builtins.str] type: The type of the record (`A`, `AAAA`, `MX`, `CNAME`, `DNAME`, `ALIAS`, `NS`, `PTR`, `SRV`, `TXT`, `TLSA`, or `CAA`).
|
42
41
|
:param pulumi.Input['DomainRecordGeoIpArgs'] geo_ip: Return record based on client localisation
|
43
42
|
:param pulumi.Input['DomainRecordHttpServiceArgs'] http_service: Return record based on client localisation
|
44
|
-
:param pulumi.Input[builtins.bool] keep_empty_zone: When destroying a resource, if only NS records remain and this is set to `false`, the zone will be deleted. Note that each zone not deleted will [be billed](https://www.scaleway.com/en/dns/).
|
45
43
|
:param pulumi.Input[builtins.str] name: The name of the record (can be an empty string for a root record).
|
46
44
|
:param pulumi.Input[builtins.int] priority: The priority of the record (mostly used with an `MX` record).
|
47
45
|
:param pulumi.Input[builtins.str] project_id: The project_id you want to attach the resource to
|
@@ -56,8 +54,6 @@ class DomainRecordArgs:
|
|
56
54
|
pulumi.set(__self__, "geo_ip", geo_ip)
|
57
55
|
if http_service is not None:
|
58
56
|
pulumi.set(__self__, "http_service", http_service)
|
59
|
-
if keep_empty_zone is not None:
|
60
|
-
pulumi.set(__self__, "keep_empty_zone", keep_empty_zone)
|
61
57
|
if name is not None:
|
62
58
|
pulumi.set(__self__, "name", name)
|
63
59
|
if priority is not None:
|
@@ -131,18 +127,6 @@ class DomainRecordArgs:
|
|
131
127
|
def http_service(self, value: Optional[pulumi.Input['DomainRecordHttpServiceArgs']]):
|
132
128
|
pulumi.set(self, "http_service", value)
|
133
129
|
|
134
|
-
@property
|
135
|
-
@pulumi.getter(name="keepEmptyZone")
|
136
|
-
def keep_empty_zone(self) -> Optional[pulumi.Input[builtins.bool]]:
|
137
|
-
"""
|
138
|
-
When destroying a resource, if only NS records remain and this is set to `false`, the zone will be deleted. Note that each zone not deleted will [be billed](https://www.scaleway.com/en/dns/).
|
139
|
-
"""
|
140
|
-
return pulumi.get(self, "keep_empty_zone")
|
141
|
-
|
142
|
-
@keep_empty_zone.setter
|
143
|
-
def keep_empty_zone(self, value: Optional[pulumi.Input[builtins.bool]]):
|
144
|
-
pulumi.set(self, "keep_empty_zone", value)
|
145
|
-
|
146
130
|
@property
|
147
131
|
@pulumi.getter
|
148
132
|
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -224,7 +208,6 @@ class _DomainRecordState:
|
|
224
208
|
fqdn: Optional[pulumi.Input[builtins.str]] = None,
|
225
209
|
geo_ip: Optional[pulumi.Input['DomainRecordGeoIpArgs']] = None,
|
226
210
|
http_service: Optional[pulumi.Input['DomainRecordHttpServiceArgs']] = None,
|
227
|
-
keep_empty_zone: Optional[pulumi.Input[builtins.bool]] = None,
|
228
211
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
229
212
|
priority: Optional[pulumi.Input[builtins.int]] = None,
|
230
213
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -240,7 +223,6 @@ class _DomainRecordState:
|
|
240
223
|
:param pulumi.Input[builtins.str] fqdn: The FQDN of the record.
|
241
224
|
:param pulumi.Input['DomainRecordGeoIpArgs'] geo_ip: Return record based on client localisation
|
242
225
|
:param pulumi.Input['DomainRecordHttpServiceArgs'] http_service: Return record based on client localisation
|
243
|
-
:param pulumi.Input[builtins.bool] keep_empty_zone: When destroying a resource, if only NS records remain and this is set to `false`, the zone will be deleted. Note that each zone not deleted will [be billed](https://www.scaleway.com/en/dns/).
|
244
226
|
:param pulumi.Input[builtins.str] name: The name of the record (can be an empty string for a root record).
|
245
227
|
:param pulumi.Input[builtins.int] priority: The priority of the record (mostly used with an `MX` record).
|
246
228
|
:param pulumi.Input[builtins.str] project_id: The project_id you want to attach the resource to
|
@@ -260,8 +242,6 @@ class _DomainRecordState:
|
|
260
242
|
pulumi.set(__self__, "geo_ip", geo_ip)
|
261
243
|
if http_service is not None:
|
262
244
|
pulumi.set(__self__, "http_service", http_service)
|
263
|
-
if keep_empty_zone is not None:
|
264
|
-
pulumi.set(__self__, "keep_empty_zone", keep_empty_zone)
|
265
245
|
if name is not None:
|
266
246
|
pulumi.set(__self__, "name", name)
|
267
247
|
if priority is not None:
|
@@ -339,18 +319,6 @@ class _DomainRecordState:
|
|
339
319
|
def http_service(self, value: Optional[pulumi.Input['DomainRecordHttpServiceArgs']]):
|
340
320
|
pulumi.set(self, "http_service", value)
|
341
321
|
|
342
|
-
@property
|
343
|
-
@pulumi.getter(name="keepEmptyZone")
|
344
|
-
def keep_empty_zone(self) -> Optional[pulumi.Input[builtins.bool]]:
|
345
|
-
"""
|
346
|
-
When destroying a resource, if only NS records remain and this is set to `false`, the zone will be deleted. Note that each zone not deleted will [be billed](https://www.scaleway.com/en/dns/).
|
347
|
-
"""
|
348
|
-
return pulumi.get(self, "keep_empty_zone")
|
349
|
-
|
350
|
-
@keep_empty_zone.setter
|
351
|
-
def keep_empty_zone(self, value: Optional[pulumi.Input[builtins.bool]]):
|
352
|
-
pulumi.set(self, "keep_empty_zone", value)
|
353
|
-
|
354
322
|
@property
|
355
323
|
@pulumi.getter
|
356
324
|
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -463,7 +431,6 @@ class DomainRecord(pulumi.CustomResource):
|
|
463
431
|
dns_zone: Optional[pulumi.Input[builtins.str]] = None,
|
464
432
|
geo_ip: Optional[pulumi.Input[Union['DomainRecordGeoIpArgs', 'DomainRecordGeoIpArgsDict']]] = None,
|
465
433
|
http_service: Optional[pulumi.Input[Union['DomainRecordHttpServiceArgs', 'DomainRecordHttpServiceArgsDict']]] = None,
|
466
|
-
keep_empty_zone: Optional[pulumi.Input[builtins.bool]] = None,
|
467
434
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
468
435
|
priority: Optional[pulumi.Input[builtins.int]] = None,
|
469
436
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -675,7 +642,6 @@ class DomainRecord(pulumi.CustomResource):
|
|
675
642
|
:param pulumi.Input[builtins.str] dns_zone: The DNS zone of the domain. If the domain has no DNS zone, one will be automatically created.
|
676
643
|
:param pulumi.Input[Union['DomainRecordGeoIpArgs', 'DomainRecordGeoIpArgsDict']] geo_ip: Return record based on client localisation
|
677
644
|
:param pulumi.Input[Union['DomainRecordHttpServiceArgs', 'DomainRecordHttpServiceArgsDict']] http_service: Return record based on client localisation
|
678
|
-
:param pulumi.Input[builtins.bool] keep_empty_zone: When destroying a resource, if only NS records remain and this is set to `false`, the zone will be deleted. Note that each zone not deleted will [be billed](https://www.scaleway.com/en/dns/).
|
679
645
|
:param pulumi.Input[builtins.str] name: The name of the record (can be an empty string for a root record).
|
680
646
|
:param pulumi.Input[builtins.int] priority: The priority of the record (mostly used with an `MX` record).
|
681
647
|
:param pulumi.Input[builtins.str] project_id: The project_id you want to attach the resource to
|
@@ -906,7 +872,6 @@ class DomainRecord(pulumi.CustomResource):
|
|
906
872
|
dns_zone: Optional[pulumi.Input[builtins.str]] = None,
|
907
873
|
geo_ip: Optional[pulumi.Input[Union['DomainRecordGeoIpArgs', 'DomainRecordGeoIpArgsDict']]] = None,
|
908
874
|
http_service: Optional[pulumi.Input[Union['DomainRecordHttpServiceArgs', 'DomainRecordHttpServiceArgsDict']]] = None,
|
909
|
-
keep_empty_zone: Optional[pulumi.Input[builtins.bool]] = None,
|
910
875
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
911
876
|
priority: Optional[pulumi.Input[builtins.int]] = None,
|
912
877
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -932,7 +897,6 @@ class DomainRecord(pulumi.CustomResource):
|
|
932
897
|
__props__.__dict__["dns_zone"] = dns_zone
|
933
898
|
__props__.__dict__["geo_ip"] = geo_ip
|
934
899
|
__props__.__dict__["http_service"] = http_service
|
935
|
-
__props__.__dict__["keep_empty_zone"] = keep_empty_zone
|
936
900
|
__props__.__dict__["name"] = name
|
937
901
|
__props__.__dict__["priority"] = priority
|
938
902
|
__props__.__dict__["project_id"] = project_id
|
@@ -959,7 +923,6 @@ class DomainRecord(pulumi.CustomResource):
|
|
959
923
|
fqdn: Optional[pulumi.Input[builtins.str]] = None,
|
960
924
|
geo_ip: Optional[pulumi.Input[Union['DomainRecordGeoIpArgs', 'DomainRecordGeoIpArgsDict']]] = None,
|
961
925
|
http_service: Optional[pulumi.Input[Union['DomainRecordHttpServiceArgs', 'DomainRecordHttpServiceArgsDict']]] = None,
|
962
|
-
keep_empty_zone: Optional[pulumi.Input[builtins.bool]] = None,
|
963
926
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
964
927
|
priority: Optional[pulumi.Input[builtins.int]] = None,
|
965
928
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -980,7 +943,6 @@ class DomainRecord(pulumi.CustomResource):
|
|
980
943
|
:param pulumi.Input[builtins.str] fqdn: The FQDN of the record.
|
981
944
|
:param pulumi.Input[Union['DomainRecordGeoIpArgs', 'DomainRecordGeoIpArgsDict']] geo_ip: Return record based on client localisation
|
982
945
|
:param pulumi.Input[Union['DomainRecordHttpServiceArgs', 'DomainRecordHttpServiceArgsDict']] http_service: Return record based on client localisation
|
983
|
-
:param pulumi.Input[builtins.bool] keep_empty_zone: When destroying a resource, if only NS records remain and this is set to `false`, the zone will be deleted. Note that each zone not deleted will [be billed](https://www.scaleway.com/en/dns/).
|
984
946
|
:param pulumi.Input[builtins.str] name: The name of the record (can be an empty string for a root record).
|
985
947
|
:param pulumi.Input[builtins.int] priority: The priority of the record (mostly used with an `MX` record).
|
986
948
|
:param pulumi.Input[builtins.str] project_id: The project_id you want to attach the resource to
|
@@ -999,7 +961,6 @@ class DomainRecord(pulumi.CustomResource):
|
|
999
961
|
__props__.__dict__["fqdn"] = fqdn
|
1000
962
|
__props__.__dict__["geo_ip"] = geo_ip
|
1001
963
|
__props__.__dict__["http_service"] = http_service
|
1002
|
-
__props__.__dict__["keep_empty_zone"] = keep_empty_zone
|
1003
964
|
__props__.__dict__["name"] = name
|
1004
965
|
__props__.__dict__["priority"] = priority
|
1005
966
|
__props__.__dict__["project_id"] = project_id
|
@@ -1050,14 +1011,6 @@ class DomainRecord(pulumi.CustomResource):
|
|
1050
1011
|
"""
|
1051
1012
|
return pulumi.get(self, "http_service")
|
1052
1013
|
|
1053
|
-
@property
|
1054
|
-
@pulumi.getter(name="keepEmptyZone")
|
1055
|
-
def keep_empty_zone(self) -> pulumi.Output[Optional[builtins.bool]]:
|
1056
|
-
"""
|
1057
|
-
When destroying a resource, if only NS records remain and this is set to `false`, the zone will be deleted. Note that each zone not deleted will [be billed](https://www.scaleway.com/en/dns/).
|
1058
|
-
"""
|
1059
|
-
return pulumi.get(self, "keep_empty_zone")
|
1060
|
-
|
1061
1014
|
@property
|
1062
1015
|
@pulumi.getter
|
1063
1016
|
def name(self) -> pulumi.Output[builtins.str]:
|
@@ -30,7 +30,10 @@ class GetBlockSnapshotResult:
|
|
30
30
|
"""
|
31
31
|
A collection of values returned by getBlockSnapshot.
|
32
32
|
"""
|
33
|
-
def __init__(__self__, id=None, imports=None, name=None, project_id=None, snapshot_id=None, tags=None, volume_id=None, zone=None):
|
33
|
+
def __init__(__self__, exports=None, id=None, imports=None, name=None, project_id=None, snapshot_id=None, tags=None, volume_id=None, zone=None):
|
34
|
+
if exports and not isinstance(exports, list):
|
35
|
+
raise TypeError("Expected argument 'exports' to be a list")
|
36
|
+
pulumi.set(__self__, "exports", exports)
|
34
37
|
if id and not isinstance(id, str):
|
35
38
|
raise TypeError("Expected argument 'id' to be a str")
|
36
39
|
pulumi.set(__self__, "id", id)
|
@@ -56,6 +59,11 @@ class GetBlockSnapshotResult:
|
|
56
59
|
raise TypeError("Expected argument 'zone' to be a str")
|
57
60
|
pulumi.set(__self__, "zone", zone)
|
58
61
|
|
62
|
+
@property
|
63
|
+
@pulumi.getter
|
64
|
+
def exports(self) -> Sequence['outputs.GetBlockSnapshotExportResult']:
|
65
|
+
return pulumi.get(self, "exports")
|
66
|
+
|
59
67
|
@property
|
60
68
|
@pulumi.getter
|
61
69
|
def id(self) -> builtins.str:
|
@@ -106,6 +114,7 @@ class AwaitableGetBlockSnapshotResult(GetBlockSnapshotResult):
|
|
106
114
|
if False:
|
107
115
|
yield self
|
108
116
|
return GetBlockSnapshotResult(
|
117
|
+
exports=self.exports,
|
109
118
|
id=self.id,
|
110
119
|
imports=self.imports,
|
111
120
|
name=self.name,
|
@@ -145,6 +154,7 @@ def get_block_snapshot(name: Optional[builtins.str] = None,
|
|
145
154
|
__ret__ = pulumi.runtime.invoke('scaleway:index/getBlockSnapshot:getBlockSnapshot', __args__, opts=opts, typ=GetBlockSnapshotResult).value
|
146
155
|
|
147
156
|
return AwaitableGetBlockSnapshotResult(
|
157
|
+
exports=pulumi.get(__ret__, 'exports'),
|
148
158
|
id=pulumi.get(__ret__, 'id'),
|
149
159
|
imports=pulumi.get(__ret__, 'imports'),
|
150
160
|
name=pulumi.get(__ret__, 'name'),
|
@@ -181,6 +191,7 @@ def get_block_snapshot_output(name: Optional[pulumi.Input[Optional[builtins.str]
|
|
181
191
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
182
192
|
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getBlockSnapshot:getBlockSnapshot', __args__, opts=opts, typ=GetBlockSnapshotResult)
|
183
193
|
return __ret__.apply(lambda __response__: GetBlockSnapshotResult(
|
194
|
+
exports=pulumi.get(__response__, 'exports'),
|
184
195
|
id=pulumi.get(__response__, 'id'),
|
185
196
|
imports=pulumi.get(__response__, 'imports'),
|
186
197
|
name=pulumi.get(__response__, 'name'),
|
@@ -30,7 +30,7 @@ class GetDomainRecordResult:
|
|
30
30
|
"""
|
31
31
|
A collection of values returned by getDomainRecord.
|
32
32
|
"""
|
33
|
-
def __init__(__self__, data=None, dns_zone=None, fqdn=None, geo_ips=None, http_services=None, id=None,
|
33
|
+
def __init__(__self__, data=None, dns_zone=None, fqdn=None, geo_ips=None, http_services=None, id=None, name=None, priority=None, project_id=None, record_id=None, root_zone=None, ttl=None, type=None, views=None, weighteds=None):
|
34
34
|
if data and not isinstance(data, str):
|
35
35
|
raise TypeError("Expected argument 'data' to be a str")
|
36
36
|
pulumi.set(__self__, "data", data)
|
@@ -49,9 +49,6 @@ class GetDomainRecordResult:
|
|
49
49
|
if id and not isinstance(id, str):
|
50
50
|
raise TypeError("Expected argument 'id' to be a str")
|
51
51
|
pulumi.set(__self__, "id", id)
|
52
|
-
if keep_empty_zone and not isinstance(keep_empty_zone, bool):
|
53
|
-
raise TypeError("Expected argument 'keep_empty_zone' to be a bool")
|
54
|
-
pulumi.set(__self__, "keep_empty_zone", keep_empty_zone)
|
55
52
|
if name and not isinstance(name, str):
|
56
53
|
raise TypeError("Expected argument 'name' to be a str")
|
57
54
|
pulumi.set(__self__, "name", name)
|
@@ -119,11 +116,6 @@ class GetDomainRecordResult:
|
|
119
116
|
"""
|
120
117
|
return pulumi.get(self, "id")
|
121
118
|
|
122
|
-
@property
|
123
|
-
@pulumi.getter(name="keepEmptyZone")
|
124
|
-
def keep_empty_zone(self) -> builtins.bool:
|
125
|
-
return pulumi.get(self, "keep_empty_zone")
|
126
|
-
|
127
119
|
@property
|
128
120
|
@pulumi.getter
|
129
121
|
def name(self) -> Optional[builtins.str]:
|
@@ -194,7 +186,6 @@ class AwaitableGetDomainRecordResult(GetDomainRecordResult):
|
|
194
186
|
geo_ips=self.geo_ips,
|
195
187
|
http_services=self.http_services,
|
196
188
|
id=self.id,
|
197
|
-
keep_empty_zone=self.keep_empty_zone,
|
198
189
|
name=self.name,
|
199
190
|
priority=self.priority,
|
200
191
|
project_id=self.project_id,
|
@@ -265,7 +256,6 @@ def get_domain_record(data: Optional[builtins.str] = None,
|
|
265
256
|
geo_ips=pulumi.get(__ret__, 'geo_ips'),
|
266
257
|
http_services=pulumi.get(__ret__, 'http_services'),
|
267
258
|
id=pulumi.get(__ret__, 'id'),
|
268
|
-
keep_empty_zone=pulumi.get(__ret__, 'keep_empty_zone'),
|
269
259
|
name=pulumi.get(__ret__, 'name'),
|
270
260
|
priority=pulumi.get(__ret__, 'priority'),
|
271
261
|
project_id=pulumi.get(__ret__, 'project_id'),
|
@@ -333,7 +323,6 @@ def get_domain_record_output(data: Optional[pulumi.Input[Optional[builtins.str]]
|
|
333
323
|
geo_ips=pulumi.get(__response__, 'geo_ips'),
|
334
324
|
http_services=pulumi.get(__response__, 'http_services'),
|
335
325
|
id=pulumi.get(__response__, 'id'),
|
336
|
-
keep_empty_zone=pulumi.get(__response__, 'keep_empty_zone'),
|
337
326
|
name=pulumi.get(__response__, 'name'),
|
338
327
|
priority=pulumi.get(__response__, 'priority'),
|
339
328
|
project_id=pulumi.get(__response__, 'project_id'),
|
@@ -119,7 +119,7 @@ def get_iam_user(email: Optional[builtins.str] = None,
|
|
119
119
|
:param Sequence[builtins.str] tags: The tags associated with the user.
|
120
120
|
:param builtins.str user_id: The ID of the IAM user.
|
121
121
|
|
122
|
-
> **Note** You must specify at least one: `
|
122
|
+
> **Note** You must specify at least one: `email` and/or `user_id`.
|
123
123
|
"""
|
124
124
|
pulumi.log.warn("""get_iam_user is deprecated: scaleway.index/getiamuser.getIamUser has been deprecated in favor of scaleway.iam/getuser.getUser""")
|
125
125
|
__args__ = dict()
|
@@ -164,7 +164,7 @@ def get_iam_user_output(email: Optional[pulumi.Input[Optional[builtins.str]]] =
|
|
164
164
|
:param Sequence[builtins.str] tags: The tags associated with the user.
|
165
165
|
:param builtins.str user_id: The ID of the IAM user.
|
166
166
|
|
167
|
-
> **Note** You must specify at least one: `
|
167
|
+
> **Note** You must specify at least one: `email` and/or `user_id`.
|
168
168
|
"""
|
169
169
|
pulumi.log.warn("""get_iam_user is deprecated: scaleway.index/getiamuser.getIamUser has been deprecated in favor of scaleway.iam/getuser.getUser""")
|
170
170
|
__args__ = dict()
|
@@ -30,7 +30,7 @@ class GetLbFrontendResult:
|
|
30
30
|
"""
|
31
31
|
A collection of values returned by getLbFrontend.
|
32
32
|
"""
|
33
|
-
def __init__(__self__, acls=None, backend_id=None, certificate_id=None, certificate_ids=None, connection_rate_limit=None, enable_http3=None, external_acls=None, frontend_id=None, id=None, inbound_port=None, lb_id=None, name=None, timeout_client=None):
|
33
|
+
def __init__(__self__, acls=None, backend_id=None, certificate_id=None, certificate_ids=None, connection_rate_limit=None, created_at=None, enable_access_logs=None, enable_http3=None, external_acls=None, frontend_id=None, id=None, inbound_port=None, lb_id=None, name=None, timeout_client=None, updated_at=None):
|
34
34
|
if acls and not isinstance(acls, list):
|
35
35
|
raise TypeError("Expected argument 'acls' to be a list")
|
36
36
|
pulumi.set(__self__, "acls", acls)
|
@@ -46,6 +46,12 @@ class GetLbFrontendResult:
|
|
46
46
|
if connection_rate_limit and not isinstance(connection_rate_limit, int):
|
47
47
|
raise TypeError("Expected argument 'connection_rate_limit' to be a int")
|
48
48
|
pulumi.set(__self__, "connection_rate_limit", connection_rate_limit)
|
49
|
+
if created_at and not isinstance(created_at, str):
|
50
|
+
raise TypeError("Expected argument 'created_at' to be a str")
|
51
|
+
pulumi.set(__self__, "created_at", created_at)
|
52
|
+
if enable_access_logs and not isinstance(enable_access_logs, bool):
|
53
|
+
raise TypeError("Expected argument 'enable_access_logs' to be a bool")
|
54
|
+
pulumi.set(__self__, "enable_access_logs", enable_access_logs)
|
49
55
|
if enable_http3 and not isinstance(enable_http3, bool):
|
50
56
|
raise TypeError("Expected argument 'enable_http3' to be a bool")
|
51
57
|
pulumi.set(__self__, "enable_http3", enable_http3)
|
@@ -70,6 +76,9 @@ class GetLbFrontendResult:
|
|
70
76
|
if timeout_client and not isinstance(timeout_client, str):
|
71
77
|
raise TypeError("Expected argument 'timeout_client' to be a str")
|
72
78
|
pulumi.set(__self__, "timeout_client", timeout_client)
|
79
|
+
if updated_at and not isinstance(updated_at, str):
|
80
|
+
raise TypeError("Expected argument 'updated_at' to be a str")
|
81
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
73
82
|
|
74
83
|
@property
|
75
84
|
@pulumi.getter
|
@@ -96,6 +105,16 @@ class GetLbFrontendResult:
|
|
96
105
|
def connection_rate_limit(self) -> builtins.int:
|
97
106
|
return pulumi.get(self, "connection_rate_limit")
|
98
107
|
|
108
|
+
@property
|
109
|
+
@pulumi.getter(name="createdAt")
|
110
|
+
def created_at(self) -> builtins.str:
|
111
|
+
return pulumi.get(self, "created_at")
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="enableAccessLogs")
|
115
|
+
def enable_access_logs(self) -> builtins.bool:
|
116
|
+
return pulumi.get(self, "enable_access_logs")
|
117
|
+
|
99
118
|
@property
|
100
119
|
@pulumi.getter(name="enableHttp3")
|
101
120
|
def enable_http3(self) -> builtins.bool:
|
@@ -139,6 +158,11 @@ class GetLbFrontendResult:
|
|
139
158
|
def timeout_client(self) -> builtins.str:
|
140
159
|
return pulumi.get(self, "timeout_client")
|
141
160
|
|
161
|
+
@property
|
162
|
+
@pulumi.getter(name="updatedAt")
|
163
|
+
def updated_at(self) -> builtins.str:
|
164
|
+
return pulumi.get(self, "updated_at")
|
165
|
+
|
142
166
|
|
143
167
|
class AwaitableGetLbFrontendResult(GetLbFrontendResult):
|
144
168
|
# pylint: disable=using-constant-test
|
@@ -151,6 +175,8 @@ class AwaitableGetLbFrontendResult(GetLbFrontendResult):
|
|
151
175
|
certificate_id=self.certificate_id,
|
152
176
|
certificate_ids=self.certificate_ids,
|
153
177
|
connection_rate_limit=self.connection_rate_limit,
|
178
|
+
created_at=self.created_at,
|
179
|
+
enable_access_logs=self.enable_access_logs,
|
154
180
|
enable_http3=self.enable_http3,
|
155
181
|
external_acls=self.external_acls,
|
156
182
|
frontend_id=self.frontend_id,
|
@@ -158,7 +184,8 @@ class AwaitableGetLbFrontendResult(GetLbFrontendResult):
|
|
158
184
|
inbound_port=self.inbound_port,
|
159
185
|
lb_id=self.lb_id,
|
160
186
|
name=self.name,
|
161
|
-
timeout_client=self.timeout_client
|
187
|
+
timeout_client=self.timeout_client,
|
188
|
+
updated_at=self.updated_at)
|
162
189
|
|
163
190
|
|
164
191
|
def get_lb_frontend(frontend_id: Optional[builtins.str] = None,
|
@@ -217,6 +244,8 @@ def get_lb_frontend(frontend_id: Optional[builtins.str] = None,
|
|
217
244
|
certificate_id=pulumi.get(__ret__, 'certificate_id'),
|
218
245
|
certificate_ids=pulumi.get(__ret__, 'certificate_ids'),
|
219
246
|
connection_rate_limit=pulumi.get(__ret__, 'connection_rate_limit'),
|
247
|
+
created_at=pulumi.get(__ret__, 'created_at'),
|
248
|
+
enable_access_logs=pulumi.get(__ret__, 'enable_access_logs'),
|
220
249
|
enable_http3=pulumi.get(__ret__, 'enable_http3'),
|
221
250
|
external_acls=pulumi.get(__ret__, 'external_acls'),
|
222
251
|
frontend_id=pulumi.get(__ret__, 'frontend_id'),
|
@@ -224,7 +253,8 @@ def get_lb_frontend(frontend_id: Optional[builtins.str] = None,
|
|
224
253
|
inbound_port=pulumi.get(__ret__, 'inbound_port'),
|
225
254
|
lb_id=pulumi.get(__ret__, 'lb_id'),
|
226
255
|
name=pulumi.get(__ret__, 'name'),
|
227
|
-
timeout_client=pulumi.get(__ret__, 'timeout_client')
|
256
|
+
timeout_client=pulumi.get(__ret__, 'timeout_client'),
|
257
|
+
updated_at=pulumi.get(__ret__, 'updated_at'))
|
228
258
|
def get_lb_frontend_output(frontend_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
229
259
|
lb_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
230
260
|
name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
@@ -280,6 +310,8 @@ def get_lb_frontend_output(frontend_id: Optional[pulumi.Input[Optional[builtins.
|
|
280
310
|
certificate_id=pulumi.get(__response__, 'certificate_id'),
|
281
311
|
certificate_ids=pulumi.get(__response__, 'certificate_ids'),
|
282
312
|
connection_rate_limit=pulumi.get(__response__, 'connection_rate_limit'),
|
313
|
+
created_at=pulumi.get(__response__, 'created_at'),
|
314
|
+
enable_access_logs=pulumi.get(__response__, 'enable_access_logs'),
|
283
315
|
enable_http3=pulumi.get(__response__, 'enable_http3'),
|
284
316
|
external_acls=pulumi.get(__response__, 'external_acls'),
|
285
317
|
frontend_id=pulumi.get(__response__, 'frontend_id'),
|
@@ -287,4 +319,5 @@ def get_lb_frontend_output(frontend_id: Optional[pulumi.Input[Optional[builtins.
|
|
287
319
|
inbound_port=pulumi.get(__response__, 'inbound_port'),
|
288
320
|
lb_id=pulumi.get(__response__, 'lb_id'),
|
289
321
|
name=pulumi.get(__response__, 'name'),
|
290
|
-
timeout_client=pulumi.get(__response__, 'timeout_client')
|
322
|
+
timeout_client=pulumi.get(__response__, 'timeout_client'),
|
323
|
+
updated_at=pulumi.get(__response__, 'updated_at')))
|
@@ -30,7 +30,7 @@ class GetMongoDbInstanceResult:
|
|
30
30
|
"""
|
31
31
|
A collection of values returned by getMongoDbInstance.
|
32
32
|
"""
|
33
|
-
def __init__(__self__, created_at=None, id=None, instance_id=None, name=None, node_number=None, node_type=None, password=None, private_ips=None, private_networks=None, project_id=None, public_networks=None, region=None, settings=None, snapshot_id=None, tags=None, updated_at=None, user_name=None, version=None, volume_size_in_gb=None, volume_type=None):
|
33
|
+
def __init__(__self__, created_at=None, id=None, instance_id=None, name=None, node_number=None, node_type=None, password=None, private_ips=None, private_networks=None, project_id=None, public_networks=None, region=None, settings=None, snapshot_id=None, tags=None, tls_certificate=None, updated_at=None, user_name=None, version=None, volume_size_in_gb=None, volume_type=None):
|
34
34
|
if created_at and not isinstance(created_at, str):
|
35
35
|
raise TypeError("Expected argument 'created_at' to be a str")
|
36
36
|
pulumi.set(__self__, "created_at", created_at)
|
@@ -76,6 +76,9 @@ class GetMongoDbInstanceResult:
|
|
76
76
|
if tags and not isinstance(tags, list):
|
77
77
|
raise TypeError("Expected argument 'tags' to be a list")
|
78
78
|
pulumi.set(__self__, "tags", tags)
|
79
|
+
if tls_certificate and not isinstance(tls_certificate, str):
|
80
|
+
raise TypeError("Expected argument 'tls_certificate' to be a str")
|
81
|
+
pulumi.set(__self__, "tls_certificate", tls_certificate)
|
79
82
|
if updated_at and not isinstance(updated_at, str):
|
80
83
|
raise TypeError("Expected argument 'updated_at' to be a str")
|
81
84
|
pulumi.set(__self__, "updated_at", updated_at)
|
@@ -191,6 +194,11 @@ class GetMongoDbInstanceResult:
|
|
191
194
|
"""
|
192
195
|
return pulumi.get(self, "tags")
|
193
196
|
|
197
|
+
@property
|
198
|
+
@pulumi.getter(name="tlsCertificate")
|
199
|
+
def tls_certificate(self) -> builtins.str:
|
200
|
+
return pulumi.get(self, "tls_certificate")
|
201
|
+
|
194
202
|
@property
|
195
203
|
@pulumi.getter(name="updatedAt")
|
196
204
|
def updated_at(self) -> builtins.str:
|
@@ -247,6 +255,7 @@ class AwaitableGetMongoDbInstanceResult(GetMongoDbInstanceResult):
|
|
247
255
|
settings=self.settings,
|
248
256
|
snapshot_id=self.snapshot_id,
|
249
257
|
tags=self.tags,
|
258
|
+
tls_certificate=self.tls_certificate,
|
250
259
|
updated_at=self.updated_at,
|
251
260
|
user_name=self.user_name,
|
252
261
|
version=self.version,
|
@@ -297,6 +306,7 @@ def get_mongo_db_instance(instance_id: Optional[builtins.str] = None,
|
|
297
306
|
settings=pulumi.get(__ret__, 'settings'),
|
298
307
|
snapshot_id=pulumi.get(__ret__, 'snapshot_id'),
|
299
308
|
tags=pulumi.get(__ret__, 'tags'),
|
309
|
+
tls_certificate=pulumi.get(__ret__, 'tls_certificate'),
|
300
310
|
updated_at=pulumi.get(__ret__, 'updated_at'),
|
301
311
|
user_name=pulumi.get(__ret__, 'user_name'),
|
302
312
|
version=pulumi.get(__ret__, 'version'),
|
@@ -344,6 +354,7 @@ def get_mongo_db_instance_output(instance_id: Optional[pulumi.Input[Optional[bui
|
|
344
354
|
settings=pulumi.get(__response__, 'settings'),
|
345
355
|
snapshot_id=pulumi.get(__response__, 'snapshot_id'),
|
346
356
|
tags=pulumi.get(__response__, 'tags'),
|
357
|
+
tls_certificate=pulumi.get(__response__, 'tls_certificate'),
|
347
358
|
updated_at=pulumi.get(__response__, 'updated_at'),
|
348
359
|
user_name=pulumi.get(__response__, 'user_name'),
|
349
360
|
version=pulumi.get(__response__, 'version'),
|
@@ -117,7 +117,7 @@ def get_user(email: Optional[builtins.str] = None,
|
|
117
117
|
:param Sequence[builtins.str] tags: The tags associated with the user.
|
118
118
|
:param builtins.str user_id: The ID of the IAM user.
|
119
119
|
|
120
|
-
> **Note** You must specify at least one: `
|
120
|
+
> **Note** You must specify at least one: `email` and/or `user_id`.
|
121
121
|
"""
|
122
122
|
__args__ = dict()
|
123
123
|
__args__['email'] = email
|
@@ -161,7 +161,7 @@ def get_user_output(email: Optional[pulumi.Input[Optional[builtins.str]]] = None
|
|
161
161
|
:param Sequence[builtins.str] tags: The tags associated with the user.
|
162
162
|
:param builtins.str user_id: The ID of the IAM user.
|
163
163
|
|
164
|
-
> **Note** You must specify at least one: `
|
164
|
+
> **Note** You must specify at least one: `email` and/or `user_id`.
|
165
165
|
"""
|
166
166
|
__args__ = dict()
|
167
167
|
__args__['email'] = email
|