pulumiverse-scaleway 1.32.0a1753171981__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.
Files changed (40) hide show
  1. pulumiverse_scaleway/__init__.py +9 -0
  2. pulumiverse_scaleway/_inputs.py +142 -36
  3. pulumiverse_scaleway/apple_silicon_server.py +46 -8
  4. pulumiverse_scaleway/applesilicon/_inputs.py +18 -18
  5. pulumiverse_scaleway/applesilicon/outputs.py +12 -12
  6. pulumiverse_scaleway/applesilicon/server.py +46 -8
  7. pulumiverse_scaleway/block/_inputs.py +58 -6
  8. pulumiverse_scaleway/block/get_snapshot.py +12 -1
  9. pulumiverse_scaleway/block/outputs.py +60 -0
  10. pulumiverse_scaleway/block/snapshot.py +54 -7
  11. pulumiverse_scaleway/block/volume.py +14 -14
  12. pulumiverse_scaleway/block_snapshot.py +54 -7
  13. pulumiverse_scaleway/block_volume.py +14 -14
  14. pulumiverse_scaleway/domain/get_record.py +1 -12
  15. pulumiverse_scaleway/domain/record.py +0 -47
  16. pulumiverse_scaleway/domain_record.py +0 -47
  17. pulumiverse_scaleway/get_block_snapshot.py +12 -1
  18. pulumiverse_scaleway/get_domain_record.py +1 -12
  19. pulumiverse_scaleway/get_iam_user.py +2 -2
  20. pulumiverse_scaleway/get_lb_frontend.py +37 -4
  21. pulumiverse_scaleway/get_mongo_db_instance.py +12 -1
  22. pulumiverse_scaleway/iam/get_user.py +2 -2
  23. pulumiverse_scaleway/key_manager_key.py +831 -0
  24. pulumiverse_scaleway/kubernetes/cluster.py +6 -6
  25. pulumiverse_scaleway/kubernetes_cluster.py +6 -6
  26. pulumiverse_scaleway/loadbalancer_frontend.py +105 -2
  27. pulumiverse_scaleway/loadbalancers/_inputs.py +12 -12
  28. pulumiverse_scaleway/loadbalancers/frontend.py +105 -2
  29. pulumiverse_scaleway/loadbalancers/get_frontend.py +37 -4
  30. pulumiverse_scaleway/loadbalancers/outputs.py +32 -10
  31. pulumiverse_scaleway/mongo_db_instance.py +28 -0
  32. pulumiverse_scaleway/mongodb/get_instance.py +12 -1
  33. pulumiverse_scaleway/mongodb/instance.py +28 -0
  34. pulumiverse_scaleway/network/acl.py +35 -37
  35. pulumiverse_scaleway/outputs.py +159 -26
  36. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  37. {pulumiverse_scaleway-1.32.0a1753171981.dist-info → pulumiverse_scaleway-1.32.0a1754042138.dist-info}/METADATA +1 -1
  38. {pulumiverse_scaleway-1.32.0a1753171981.dist-info → pulumiverse_scaleway-1.32.0a1754042138.dist-info}/RECORD +40 -39
  39. {pulumiverse_scaleway-1.32.0a1753171981.dist-info → pulumiverse_scaleway-1.32.0a1754042138.dist-info}/WHEEL +0 -0
  40. {pulumiverse_scaleway-1.32.0a1753171981.dist-info → pulumiverse_scaleway-1.32.0a1754042138.dist-info}/top_level.txt +0 -0
@@ -299,6 +299,7 @@ class _InstanceState:
299
299
  settings: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
300
300
  snapshot_id: Optional[pulumi.Input[builtins.str]] = None,
301
301
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
302
+ tls_certificate: Optional[pulumi.Input[builtins.str]] = None,
302
303
  updated_at: Optional[pulumi.Input[builtins.str]] = None,
303
304
  user_name: Optional[pulumi.Input[builtins.str]] = None,
304
305
  version: Optional[pulumi.Input[builtins.str]] = None,
@@ -320,6 +321,7 @@ class _InstanceState:
320
321
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] settings: Map of settings to define for the instance.
321
322
  :param pulumi.Input[builtins.str] snapshot_id: Snapshot ID to restore the MongoDB® instance from.
322
323
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: List of tags attached to the MongoDB® instance.
324
+ :param pulumi.Input[builtins.str] tls_certificate: The PEM-encoded TLS certificate for the MongoDB® instance, if available.
323
325
  :param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the MongoDB® instance.
324
326
  :param pulumi.Input[builtins.str] user_name: Name of the user created when the intance is created.
325
327
  :param pulumi.Input[builtins.str] version: MongoDB® version of the instance.
@@ -352,6 +354,8 @@ class _InstanceState:
352
354
  pulumi.set(__self__, "snapshot_id", snapshot_id)
353
355
  if tags is not None:
354
356
  pulumi.set(__self__, "tags", tags)
357
+ if tls_certificate is not None:
358
+ pulumi.set(__self__, "tls_certificate", tls_certificate)
355
359
  if updated_at is not None:
356
360
  pulumi.set(__self__, "updated_at", updated_at)
357
361
  if user_name is not None:
@@ -520,6 +524,18 @@ class _InstanceState:
520
524
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
521
525
  pulumi.set(self, "tags", value)
522
526
 
527
+ @property
528
+ @pulumi.getter(name="tlsCertificate")
529
+ def tls_certificate(self) -> Optional[pulumi.Input[builtins.str]]:
530
+ """
531
+ The PEM-encoded TLS certificate for the MongoDB® instance, if available.
532
+ """
533
+ return pulumi.get(self, "tls_certificate")
534
+
535
+ @tls_certificate.setter
536
+ def tls_certificate(self, value: Optional[pulumi.Input[builtins.str]]):
537
+ pulumi.set(self, "tls_certificate", value)
538
+
523
539
  @property
524
540
  @pulumi.getter(name="updatedAt")
525
541
  def updated_at(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -871,6 +887,7 @@ class Instance(pulumi.CustomResource):
871
887
  __props__.__dict__["volume_size_in_gb"] = volume_size_in_gb
872
888
  __props__.__dict__["volume_type"] = volume_type
873
889
  __props__.__dict__["created_at"] = None
890
+ __props__.__dict__["tls_certificate"] = None
874
891
  __props__.__dict__["updated_at"] = None
875
892
  alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="scaleway:index/mongoDbInstance:MongoDbInstance")])
876
893
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
@@ -899,6 +916,7 @@ class Instance(pulumi.CustomResource):
899
916
  settings: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
900
917
  snapshot_id: Optional[pulumi.Input[builtins.str]] = None,
901
918
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
919
+ tls_certificate: Optional[pulumi.Input[builtins.str]] = None,
902
920
  updated_at: Optional[pulumi.Input[builtins.str]] = None,
903
921
  user_name: Optional[pulumi.Input[builtins.str]] = None,
904
922
  version: Optional[pulumi.Input[builtins.str]] = None,
@@ -925,6 +943,7 @@ class Instance(pulumi.CustomResource):
925
943
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] settings: Map of settings to define for the instance.
926
944
  :param pulumi.Input[builtins.str] snapshot_id: Snapshot ID to restore the MongoDB® instance from.
927
945
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: List of tags attached to the MongoDB® instance.
946
+ :param pulumi.Input[builtins.str] tls_certificate: The PEM-encoded TLS certificate for the MongoDB® instance, if available.
928
947
  :param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the MongoDB® instance.
929
948
  :param pulumi.Input[builtins.str] user_name: Name of the user created when the intance is created.
930
949
  :param pulumi.Input[builtins.str] version: MongoDB® version of the instance.
@@ -948,6 +967,7 @@ class Instance(pulumi.CustomResource):
948
967
  __props__.__dict__["settings"] = settings
949
968
  __props__.__dict__["snapshot_id"] = snapshot_id
950
969
  __props__.__dict__["tags"] = tags
970
+ __props__.__dict__["tls_certificate"] = tls_certificate
951
971
  __props__.__dict__["updated_at"] = updated_at
952
972
  __props__.__dict__["user_name"] = user_name
953
973
  __props__.__dict__["version"] = version
@@ -1060,6 +1080,14 @@ class Instance(pulumi.CustomResource):
1060
1080
  """
1061
1081
  return pulumi.get(self, "tags")
1062
1082
 
1083
+ @property
1084
+ @pulumi.getter(name="tlsCertificate")
1085
+ def tls_certificate(self) -> pulumi.Output[builtins.str]:
1086
+ """
1087
+ The PEM-encoded TLS certificate for the MongoDB® instance, if available.
1088
+ """
1089
+ return pulumi.get(self, "tls_certificate")
1090
+
1063
1091
  @property
1064
1092
  @pulumi.getter(name="updatedAt")
1065
1093
  def updated_at(self) -> pulumi.Output[builtins.str]:
@@ -22,50 +22,28 @@ __all__ = ['AclArgs', 'Acl']
22
22
  @pulumi.input_type
23
23
  class AclArgs:
24
24
  def __init__(__self__, *,
25
- default_policy: pulumi.Input[builtins.str],
26
- rules: pulumi.Input[Sequence[pulumi.Input['AclRuleArgs']]],
27
25
  vpc_id: pulumi.Input[builtins.str],
26
+ default_policy: Optional[pulumi.Input[builtins.str]] = None,
28
27
  is_ipv6: Optional[pulumi.Input[builtins.bool]] = None,
29
- region: Optional[pulumi.Input[builtins.str]] = None):
28
+ region: Optional[pulumi.Input[builtins.str]] = None,
29
+ rules: Optional[pulumi.Input[Sequence[pulumi.Input['AclRuleArgs']]]] = None):
30
30
  """
31
31
  The set of arguments for constructing a Acl resource.
32
- :param pulumi.Input[builtins.str] default_policy: The action to take for packets which do not match any rules.
33
- :param pulumi.Input[Sequence[pulumi.Input['AclRuleArgs']]] rules: The list of Network ACL rules.
34
32
  :param pulumi.Input[builtins.str] vpc_id: The VPC ID the ACL belongs to.
33
+ :param pulumi.Input[builtins.str] default_policy: The action to take for packets which do not match any rules.
35
34
  :param pulumi.Input[builtins.bool] is_ipv6: Defines whether this set of ACL rules is for IPv6 (false = IPv4). Each Network ACL can have rules for only one IP type.
36
35
  :param pulumi.Input[builtins.str] region: `region`) The region of the ACL.
36
+ :param pulumi.Input[Sequence[pulumi.Input['AclRuleArgs']]] rules: The list of Network ACL rules.
37
37
  """
38
- pulumi.set(__self__, "default_policy", default_policy)
39
- pulumi.set(__self__, "rules", rules)
40
38
  pulumi.set(__self__, "vpc_id", vpc_id)
39
+ if default_policy is not None:
40
+ pulumi.set(__self__, "default_policy", default_policy)
41
41
  if is_ipv6 is not None:
42
42
  pulumi.set(__self__, "is_ipv6", is_ipv6)
43
43
  if region is not None:
44
44
  pulumi.set(__self__, "region", region)
45
-
46
- @property
47
- @pulumi.getter(name="defaultPolicy")
48
- def default_policy(self) -> pulumi.Input[builtins.str]:
49
- """
50
- The action to take for packets which do not match any rules.
51
- """
52
- return pulumi.get(self, "default_policy")
53
-
54
- @default_policy.setter
55
- def default_policy(self, value: pulumi.Input[builtins.str]):
56
- pulumi.set(self, "default_policy", value)
57
-
58
- @property
59
- @pulumi.getter
60
- def rules(self) -> pulumi.Input[Sequence[pulumi.Input['AclRuleArgs']]]:
61
- """
62
- The list of Network ACL rules.
63
- """
64
- return pulumi.get(self, "rules")
65
-
66
- @rules.setter
67
- def rules(self, value: pulumi.Input[Sequence[pulumi.Input['AclRuleArgs']]]):
68
- pulumi.set(self, "rules", value)
45
+ if rules is not None:
46
+ pulumi.set(__self__, "rules", rules)
69
47
 
70
48
  @property
71
49
  @pulumi.getter(name="vpcId")
@@ -79,6 +57,18 @@ class AclArgs:
79
57
  def vpc_id(self, value: pulumi.Input[builtins.str]):
80
58
  pulumi.set(self, "vpc_id", value)
81
59
 
60
+ @property
61
+ @pulumi.getter(name="defaultPolicy")
62
+ def default_policy(self) -> Optional[pulumi.Input[builtins.str]]:
63
+ """
64
+ The action to take for packets which do not match any rules.
65
+ """
66
+ return pulumi.get(self, "default_policy")
67
+
68
+ @default_policy.setter
69
+ def default_policy(self, value: Optional[pulumi.Input[builtins.str]]):
70
+ pulumi.set(self, "default_policy", value)
71
+
82
72
  @property
83
73
  @pulumi.getter(name="isIpv6")
84
74
  def is_ipv6(self) -> Optional[pulumi.Input[builtins.bool]]:
@@ -103,6 +93,18 @@ class AclArgs:
103
93
  def region(self, value: Optional[pulumi.Input[builtins.str]]):
104
94
  pulumi.set(self, "region", value)
105
95
 
96
+ @property
97
+ @pulumi.getter
98
+ def rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AclRuleArgs']]]]:
99
+ """
100
+ The list of Network ACL rules.
101
+ """
102
+ return pulumi.get(self, "rules")
103
+
104
+ @rules.setter
105
+ def rules(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AclRuleArgs']]]]):
106
+ pulumi.set(self, "rules", value)
107
+
106
108
 
107
109
  @pulumi.input_type
108
110
  class _AclState:
@@ -325,13 +327,9 @@ class Acl(pulumi.CustomResource):
325
327
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
326
328
  __props__ = AclArgs.__new__(AclArgs)
327
329
 
328
- if default_policy is None and not opts.urn:
329
- raise TypeError("Missing required property 'default_policy'")
330
330
  __props__.__dict__["default_policy"] = default_policy
331
331
  __props__.__dict__["is_ipv6"] = is_ipv6
332
332
  __props__.__dict__["region"] = region
333
- if rules is None and not opts.urn:
334
- raise TypeError("Missing required property 'rules'")
335
333
  __props__.__dict__["rules"] = rules
336
334
  if vpc_id is None and not opts.urn:
337
335
  raise TypeError("Missing required property 'vpc_id'")
@@ -377,7 +375,7 @@ class Acl(pulumi.CustomResource):
377
375
 
378
376
  @property
379
377
  @pulumi.getter(name="defaultPolicy")
380
- def default_policy(self) -> pulumi.Output[builtins.str]:
378
+ def default_policy(self) -> pulumi.Output[Optional[builtins.str]]:
381
379
  """
382
380
  The action to take for packets which do not match any rules.
383
381
  """
@@ -401,7 +399,7 @@ class Acl(pulumi.CustomResource):
401
399
 
402
400
  @property
403
401
  @pulumi.getter
404
- def rules(self) -> pulumi.Output[Sequence['outputs.AclRule']]:
402
+ def rules(self) -> pulumi.Output[Optional[Sequence['outputs.AclRule']]]:
405
403
  """
406
404
  The list of Network ACL rules.
407
405
  """
@@ -25,6 +25,7 @@ __all__ = [
25
25
  'BaremetalServerOption',
26
26
  'BaremetalServerPrivateIp',
27
27
  'BaremetalServerPrivateNetwork',
28
+ 'BlockSnapshotExport',
28
29
  'BlockSnapshotImport',
29
30
  'CockpitAlertManagerContactPoint',
30
31
  'CockpitEndpoint',
@@ -86,6 +87,7 @@ __all__ = [
86
87
  'IpamIpSource',
87
88
  'JobDefinitionCron',
88
89
  'JobDefinitionSecretReference',
90
+ 'KeyManagerKeyRotationPolicy',
89
91
  'KubernetesClusterAutoUpgrade',
90
92
  'KubernetesClusterAutoscalerConfig',
91
93
  'KubernetesClusterKubeconfig',
@@ -151,6 +153,7 @@ __all__ = [
151
153
  'GetBaremetalServerPrivateNetworkResult',
152
154
  'GetBillingConsumptionsConsumptionResult',
153
155
  'GetBillingInvoicesInvoiceResult',
156
+ 'GetBlockSnapshotExportResult',
154
157
  'GetBlockSnapshotImportResult',
155
158
  'GetCockpitEndpointResult',
156
159
  'GetCockpitPushUrlResult',
@@ -310,12 +313,12 @@ class AppleSiliconServerPrivateNetwork(dict):
310
313
  updated_at: Optional[builtins.str] = None,
311
314
  vlan: Optional[builtins.int] = None):
312
315
  """
313
- :param builtins.str id: The ID of the IP address resource.
314
- :param builtins.str created_at: The date and time of the creation of the Apple Silicon server.
315
- :param Sequence[builtins.str] ipam_ip_ids: List of IPAM IP IDs to attach to the server
316
- :param builtins.str status: The private network status
317
- :param builtins.str updated_at: The date and time of the last update of the Apple Silicon server.
318
- :param builtins.int vlan: The VLAN ID associated to the private network
316
+ :param builtins.str id: The private network ID
317
+ :param builtins.str created_at: The date and time the private network was created.
318
+ :param Sequence[builtins.str] ipam_ip_ids: A list of IPAM IP IDs to attach to the server.
319
+ :param builtins.str status: The current status of the private network.
320
+ :param builtins.str updated_at: The date and time the private network was last updated.
321
+ :param builtins.int vlan: The VLAN ID associated with the private network.
319
322
  """
320
323
  pulumi.set(__self__, "id", id)
321
324
  if created_at is not None:
@@ -333,7 +336,7 @@ class AppleSiliconServerPrivateNetwork(dict):
333
336
  @pulumi.getter
334
337
  def id(self) -> builtins.str:
335
338
  """
336
- The ID of the IP address resource.
339
+ The private network ID
337
340
  """
338
341
  return pulumi.get(self, "id")
339
342
 
@@ -341,7 +344,7 @@ class AppleSiliconServerPrivateNetwork(dict):
341
344
  @pulumi.getter(name="createdAt")
342
345
  def created_at(self) -> Optional[builtins.str]:
343
346
  """
344
- The date and time of the creation of the Apple Silicon server.
347
+ The date and time the private network was created.
345
348
  """
346
349
  return pulumi.get(self, "created_at")
347
350
 
@@ -349,7 +352,7 @@ class AppleSiliconServerPrivateNetwork(dict):
349
352
  @pulumi.getter(name="ipamIpIds")
350
353
  def ipam_ip_ids(self) -> Optional[Sequence[builtins.str]]:
351
354
  """
352
- List of IPAM IP IDs to attach to the server
355
+ A list of IPAM IP IDs to attach to the server.
353
356
  """
354
357
  return pulumi.get(self, "ipam_ip_ids")
355
358
 
@@ -357,7 +360,7 @@ class AppleSiliconServerPrivateNetwork(dict):
357
360
  @pulumi.getter
358
361
  def status(self) -> Optional[builtins.str]:
359
362
  """
360
- The private network status
363
+ The current status of the private network.
361
364
  """
362
365
  return pulumi.get(self, "status")
363
366
 
@@ -365,7 +368,7 @@ class AppleSiliconServerPrivateNetwork(dict):
365
368
  @pulumi.getter(name="updatedAt")
366
369
  def updated_at(self) -> Optional[builtins.str]:
367
370
  """
368
- The date and time of the last update of the Apple Silicon server.
371
+ The date and time the private network was last updated.
369
372
  """
370
373
  return pulumi.get(self, "updated_at")
371
374
 
@@ -373,7 +376,7 @@ class AppleSiliconServerPrivateNetwork(dict):
373
376
  @pulumi.getter
374
377
  def vlan(self) -> Optional[builtins.int]:
375
378
  """
376
- The VLAN ID associated to the private network
379
+ The VLAN ID associated with the private network.
377
380
  """
378
381
  return pulumi.get(self, "vlan")
379
382
 
@@ -746,14 +749,43 @@ class BaremetalServerPrivateNetwork(dict):
746
749
  return pulumi.get(self, "vlan")
747
750
 
748
751
 
752
+ @pulumi.output_type
753
+ class BlockSnapshotExport(dict):
754
+ def __init__(__self__, *,
755
+ bucket: builtins.str,
756
+ key: builtins.str):
757
+ """
758
+ :param builtins.str bucket: The name of the bucket where the QCOW file will be saved.
759
+ :param builtins.str key: The desired key (path) for the QCOW file within the bucket.
760
+ """
761
+ pulumi.set(__self__, "bucket", bucket)
762
+ pulumi.set(__self__, "key", key)
763
+
764
+ @property
765
+ @pulumi.getter
766
+ def bucket(self) -> builtins.str:
767
+ """
768
+ The name of the bucket where the QCOW file will be saved.
769
+ """
770
+ return pulumi.get(self, "bucket")
771
+
772
+ @property
773
+ @pulumi.getter
774
+ def key(self) -> builtins.str:
775
+ """
776
+ The desired key (path) for the QCOW file within the bucket.
777
+ """
778
+ return pulumi.get(self, "key")
779
+
780
+
749
781
  @pulumi.output_type
750
782
  class BlockSnapshotImport(dict):
751
783
  def __init__(__self__, *,
752
784
  bucket: builtins.str,
753
785
  key: builtins.str):
754
786
  """
755
- :param builtins.str bucket: Bucket containing qcow
756
- :param builtins.str key: Key of the qcow file in the specified bucket
787
+ :param builtins.str bucket: The name of the bucket containing the QCOW file.
788
+ :param builtins.str key: The key of the QCOW file within the bucket.
757
789
  """
758
790
  pulumi.set(__self__, "bucket", bucket)
759
791
  pulumi.set(__self__, "key", key)
@@ -762,7 +794,7 @@ class BlockSnapshotImport(dict):
762
794
  @pulumi.getter
763
795
  def bucket(self) -> builtins.str:
764
796
  """
765
- Bucket containing qcow
797
+ The name of the bucket containing the QCOW file.
766
798
  """
767
799
  return pulumi.get(self, "bucket")
768
800
 
@@ -770,7 +802,7 @@ class BlockSnapshotImport(dict):
770
802
  @pulumi.getter
771
803
  def key(self) -> builtins.str:
772
804
  """
773
- Key of the qcow file in the specified bucket
805
+ The key of the QCOW file within the bucket.
774
806
  """
775
807
  return pulumi.get(self, "key")
776
808
 
@@ -4591,6 +4623,56 @@ class JobDefinitionSecretReference(dict):
4591
4623
  return pulumi.get(self, "secret_version")
4592
4624
 
4593
4625
 
4626
+ @pulumi.output_type
4627
+ class KeyManagerKeyRotationPolicy(dict):
4628
+ @staticmethod
4629
+ def __key_warning(key: str):
4630
+ suggest = None
4631
+ if key == "nextRotationAt":
4632
+ suggest = "next_rotation_at"
4633
+ elif key == "rotationPeriod":
4634
+ suggest = "rotation_period"
4635
+
4636
+ if suggest:
4637
+ pulumi.log.warn(f"Key '{key}' not found in KeyManagerKeyRotationPolicy. Access the value via the '{suggest}' property getter instead.")
4638
+
4639
+ def __getitem__(self, key: str) -> Any:
4640
+ KeyManagerKeyRotationPolicy.__key_warning(key)
4641
+ return super().__getitem__(key)
4642
+
4643
+ def get(self, key: str, default = None) -> Any:
4644
+ KeyManagerKeyRotationPolicy.__key_warning(key)
4645
+ return super().get(key, default)
4646
+
4647
+ def __init__(__self__, *,
4648
+ next_rotation_at: Optional[builtins.str] = None,
4649
+ rotation_period: Optional[builtins.str] = None):
4650
+ """
4651
+ :param builtins.str next_rotation_at: The date and time of the next scheduled rotation.
4652
+ :param builtins.str rotation_period: – The period between key rotations (e.g., `"720h"` for 30 days).
4653
+ """
4654
+ if next_rotation_at is not None:
4655
+ pulumi.set(__self__, "next_rotation_at", next_rotation_at)
4656
+ if rotation_period is not None:
4657
+ pulumi.set(__self__, "rotation_period", rotation_period)
4658
+
4659
+ @property
4660
+ @pulumi.getter(name="nextRotationAt")
4661
+ def next_rotation_at(self) -> Optional[builtins.str]:
4662
+ """
4663
+ The date and time of the next scheduled rotation.
4664
+ """
4665
+ return pulumi.get(self, "next_rotation_at")
4666
+
4667
+ @property
4668
+ @pulumi.getter(name="rotationPeriod")
4669
+ def rotation_period(self) -> Optional[builtins.str]:
4670
+ """
4671
+ – The period between key rotations (e.g., `"720h"` for 30 days).
4672
+ """
4673
+ return pulumi.get(self, "rotation_period")
4674
+
4675
+
4594
4676
  @pulumi.output_type
4595
4677
  class KubernetesClusterAutoUpgrade(dict):
4596
4678
  @staticmethod
@@ -5647,10 +5729,10 @@ class LoadbalancerFrontendAcl(dict):
5647
5729
  """
5648
5730
  :param 'LoadbalancerFrontendAclActionArgs' action: Action to undertake when an ACL filter matches.
5649
5731
  :param 'LoadbalancerFrontendAclMatchArgs' match: The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
5650
- :param builtins.str created_at: IsDate and time of ACL's creation (RFC 3339 format)
5732
+ :param builtins.str created_at: The date and time the frontend was created.
5651
5733
  :param builtins.str description: Description of the ACL
5652
5734
  :param builtins.str name: The ACL name. If not provided it will be randomly generated.
5653
- :param builtins.str updated_at: IsDate and time of ACL's update (RFC 3339 format)
5735
+ :param builtins.str updated_at: The date and time the frontend resource was updated.
5654
5736
  """
5655
5737
  pulumi.set(__self__, "action", action)
5656
5738
  pulumi.set(__self__, "match", match)
@@ -5683,7 +5765,7 @@ class LoadbalancerFrontendAcl(dict):
5683
5765
  @pulumi.getter(name="createdAt")
5684
5766
  def created_at(self) -> Optional[builtins.str]:
5685
5767
  """
5686
- IsDate and time of ACL's creation (RFC 3339 format)
5768
+ The date and time the frontend was created.
5687
5769
  """
5688
5770
  return pulumi.get(self, "created_at")
5689
5771
 
@@ -5707,7 +5789,7 @@ class LoadbalancerFrontendAcl(dict):
5707
5789
  @pulumi.getter(name="updatedAt")
5708
5790
  def updated_at(self) -> Optional[builtins.str]:
5709
5791
  """
5710
- IsDate and time of ACL's update (RFC 3339 format)
5792
+ The date and time the frontend resource was updated.
5711
5793
  """
5712
5794
  return pulumi.get(self, "updated_at")
5713
5795
 
@@ -5961,9 +6043,9 @@ class LoadbalancerPrivateNetwork(dict):
5961
6043
  """
5962
6044
  :param builtins.str private_network_id: The ID of the Private Network to attach to.
5963
6045
  - > **Important:** Updates to `private_network` will recreate the attachment.
5964
- :param builtins.bool dhcp_config: Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
6046
+ :param builtins.bool dhcp_config: Set to true if you want to let DHCP assign IP addresses
5965
6047
  :param builtins.str ipam_ids: IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
5966
- :param builtins.str static_config: Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
6048
+ :param builtins.str static_config: Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
5967
6049
  :param builtins.str status: The status of the private network connection.
5968
6050
  :param builtins.str zone: `zone`) The zone of the Load Balancer.
5969
6051
  """
@@ -5993,7 +6075,7 @@ class LoadbalancerPrivateNetwork(dict):
5993
6075
  @_utilities.deprecated("""dhcp_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
5994
6076
  def dhcp_config(self) -> Optional[builtins.bool]:
5995
6077
  """
5996
- Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
6078
+ Set to true if you want to let DHCP assign IP addresses
5997
6079
  """
5998
6080
  return pulumi.get(self, "dhcp_config")
5999
6081
 
@@ -6010,7 +6092,7 @@ class LoadbalancerPrivateNetwork(dict):
6010
6092
  @_utilities.deprecated("""static_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
6011
6093
  def static_config(self) -> Optional[builtins.str]:
6012
6094
  """
6013
- Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
6095
+ Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
6014
6096
  """
6015
6097
  return pulumi.get(self, "static_config")
6016
6098
 
@@ -8608,6 +8690,35 @@ class GetBillingInvoicesInvoiceResult(dict):
8608
8690
  return pulumi.get(self, "total_untaxed")
8609
8691
 
8610
8692
 
8693
+ @pulumi.output_type
8694
+ class GetBlockSnapshotExportResult(dict):
8695
+ def __init__(__self__, *,
8696
+ bucket: builtins.str,
8697
+ key: builtins.str):
8698
+ """
8699
+ :param builtins.str bucket: Bucket containing qcow
8700
+ :param builtins.str key: Key of the qcow file in the specified bucket
8701
+ """
8702
+ pulumi.set(__self__, "bucket", bucket)
8703
+ pulumi.set(__self__, "key", key)
8704
+
8705
+ @property
8706
+ @pulumi.getter
8707
+ def bucket(self) -> builtins.str:
8708
+ """
8709
+ Bucket containing qcow
8710
+ """
8711
+ return pulumi.get(self, "bucket")
8712
+
8713
+ @property
8714
+ @pulumi.getter
8715
+ def key(self) -> builtins.str:
8716
+ """
8717
+ Key of the qcow file in the specified bucket
8718
+ """
8719
+ return pulumi.get(self, "key")
8720
+
8721
+
8611
8722
  @pulumi.output_type
8612
8723
  class GetBlockSnapshotImportResult(dict):
8613
8724
  def __init__(__self__, *,
@@ -11889,7 +12000,9 @@ class GetLbFrontendsFrontendResult(dict):
11889
12000
  def __init__(__self__, *,
11890
12001
  backend_id: builtins.str,
11891
12002
  certificate_ids: Sequence[builtins.str],
12003
+ connection_rate_limit: builtins.int,
11892
12004
  created_at: builtins.str,
12005
+ enable_access_logs: builtins.bool,
11893
12006
  enable_http3: builtins.bool,
11894
12007
  id: builtins.str,
11895
12008
  inbound_port: builtins.int,
@@ -11901,7 +12014,9 @@ class GetLbFrontendsFrontendResult(dict):
11901
12014
  :param builtins.str backend_id: The Load Balancer backend ID this frontend is attached to.
11902
12015
  > **Important:** Load Balancer backend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
11903
12016
  :param Sequence[builtins.str] certificate_ids: List of certificate IDs that are used by the frontend.
12017
+ :param builtins.int connection_rate_limit: The rate limit for new connections established on this frontend. Use 0 value to disable, else value is connections per second.
11904
12018
  :param builtins.str created_at: The date on which the frontend was created (RFC 3339 format).
12019
+ :param builtins.bool enable_access_logs: Defines whether to enable access logs on the frontend.
11905
12020
  :param builtins.bool enable_http3: Whether HTTP/3 protocol is activated.
11906
12021
  :param builtins.str id: The ID of the associated frontend.
11907
12022
  > **Important:** LB frontend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
@@ -11909,11 +12024,13 @@ class GetLbFrontendsFrontendResult(dict):
11909
12024
  :param builtins.str lb_id: The Load Balancer ID this frontend is attached to. Frontends with a matching ID are listed.
11910
12025
  :param builtins.str name: The frontend name to filter for. Frontends with a matching name are listed.
11911
12026
  :param builtins.str timeout_client: Maximum inactivity time on the client side.
11912
- :param builtins.str update_at: The date aont which the frontend was last updated (RFC 3339 format).
12027
+ :param builtins.str update_at: The date on which the frontend was last updated (RFC 3339 format).
11913
12028
  """
11914
12029
  pulumi.set(__self__, "backend_id", backend_id)
11915
12030
  pulumi.set(__self__, "certificate_ids", certificate_ids)
12031
+ pulumi.set(__self__, "connection_rate_limit", connection_rate_limit)
11916
12032
  pulumi.set(__self__, "created_at", created_at)
12033
+ pulumi.set(__self__, "enable_access_logs", enable_access_logs)
11917
12034
  pulumi.set(__self__, "enable_http3", enable_http3)
11918
12035
  pulumi.set(__self__, "id", id)
11919
12036
  pulumi.set(__self__, "inbound_port", inbound_port)
@@ -11939,6 +12056,14 @@ class GetLbFrontendsFrontendResult(dict):
11939
12056
  """
11940
12057
  return pulumi.get(self, "certificate_ids")
11941
12058
 
12059
+ @property
12060
+ @pulumi.getter(name="connectionRateLimit")
12061
+ def connection_rate_limit(self) -> builtins.int:
12062
+ """
12063
+ The rate limit for new connections established on this frontend. Use 0 value to disable, else value is connections per second.
12064
+ """
12065
+ return pulumi.get(self, "connection_rate_limit")
12066
+
11942
12067
  @property
11943
12068
  @pulumi.getter(name="createdAt")
11944
12069
  def created_at(self) -> builtins.str:
@@ -11947,6 +12072,14 @@ class GetLbFrontendsFrontendResult(dict):
11947
12072
  """
11948
12073
  return pulumi.get(self, "created_at")
11949
12074
 
12075
+ @property
12076
+ @pulumi.getter(name="enableAccessLogs")
12077
+ def enable_access_logs(self) -> builtins.bool:
12078
+ """
12079
+ Defines whether to enable access logs on the frontend.
12080
+ """
12081
+ return pulumi.get(self, "enable_access_logs")
12082
+
11950
12083
  @property
11951
12084
  @pulumi.getter(name="enableHttp3")
11952
12085
  def enable_http3(self) -> builtins.bool:
@@ -12000,7 +12133,7 @@ class GetLbFrontendsFrontendResult(dict):
12000
12133
  @pulumi.getter(name="updateAt")
12001
12134
  def update_at(self) -> builtins.str:
12002
12135
  """
12003
- The date aont which the frontend was last updated (RFC 3339 format).
12136
+ The date on which the frontend was last updated (RFC 3339 format).
12004
12137
  """
12005
12138
  return pulumi.get(self, "update_at")
12006
12139
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "scaleway",
4
- "version": "1.32.0-alpha.1753171981",
4
+ "version": "1.32.0-alpha.1754042138",
5
5
  "server": "github://api.github.com/pulumiverse"
6
6
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumiverse_scaleway
3
- Version: 1.32.0a1753171981
3
+ Version: 1.32.0a1754042138
4
4
  Summary: A Pulumi package for creating and managing Scaleway cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.scaleway.com