pulumiverse-scaleway 1.32.0a1753171981__py3-none-any.whl → 1.33.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.
Files changed (48) hide show
  1. pulumiverse_scaleway/__init__.py +9 -0
  2. pulumiverse_scaleway/_inputs.py +185 -39
  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/baremetal_server.py +47 -0
  8. pulumiverse_scaleway/block/_inputs.py +58 -6
  9. pulumiverse_scaleway/block/get_snapshot.py +12 -1
  10. pulumiverse_scaleway/block/outputs.py +60 -0
  11. pulumiverse_scaleway/block/snapshot.py +54 -7
  12. pulumiverse_scaleway/block/volume.py +14 -14
  13. pulumiverse_scaleway/block_snapshot.py +54 -7
  14. pulumiverse_scaleway/block_volume.py +14 -14
  15. pulumiverse_scaleway/domain/get_record.py +1 -12
  16. pulumiverse_scaleway/domain/record.py +0 -47
  17. pulumiverse_scaleway/domain_record.py +0 -47
  18. pulumiverse_scaleway/elasticmetal/get_server.py +12 -1
  19. pulumiverse_scaleway/elasticmetal/server.py +47 -0
  20. pulumiverse_scaleway/get_baremetal_server.py +12 -1
  21. pulumiverse_scaleway/get_block_snapshot.py +12 -1
  22. pulumiverse_scaleway/get_domain_record.py +1 -12
  23. pulumiverse_scaleway/get_iam_user.py +2 -2
  24. pulumiverse_scaleway/get_lb_frontend.py +37 -4
  25. pulumiverse_scaleway/get_mongo_db_instance.py +12 -1
  26. pulumiverse_scaleway/iam/get_user.py +2 -2
  27. pulumiverse_scaleway/key_manager_key.py +831 -0
  28. pulumiverse_scaleway/kubernetes/cluster.py +6 -6
  29. pulumiverse_scaleway/kubernetes_cluster.py +6 -6
  30. pulumiverse_scaleway/loadbalancer_frontend.py +105 -2
  31. pulumiverse_scaleway/loadbalancers/_inputs.py +12 -12
  32. pulumiverse_scaleway/loadbalancers/frontend.py +105 -2
  33. pulumiverse_scaleway/loadbalancers/get_frontend.py +37 -4
  34. pulumiverse_scaleway/loadbalancers/outputs.py +32 -10
  35. pulumiverse_scaleway/mongo_db_instance.py +28 -0
  36. pulumiverse_scaleway/mongodb/get_instance.py +12 -1
  37. pulumiverse_scaleway/mongodb/instance.py +28 -0
  38. pulumiverse_scaleway/network/acl.py +35 -37
  39. pulumiverse_scaleway/network/vpc.py +1 -1
  40. pulumiverse_scaleway/outputs.py +213 -30
  41. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  42. pulumiverse_scaleway/redis/_inputs.py +43 -3
  43. pulumiverse_scaleway/redis/outputs.py +54 -4
  44. pulumiverse_scaleway/vpc.py +1 -1
  45. {pulumiverse_scaleway-1.32.0a1753171981.dist-info → pulumiverse_scaleway-1.33.0.dist-info}/METADATA +1 -1
  46. {pulumiverse_scaleway-1.32.0a1753171981.dist-info → pulumiverse_scaleway-1.33.0.dist-info}/RECORD +48 -47
  47. {pulumiverse_scaleway-1.32.0a1753171981.dist-info → pulumiverse_scaleway-1.33.0.dist-info}/WHEEL +0 -0
  48. {pulumiverse_scaleway-1.32.0a1753171981.dist-info → pulumiverse_scaleway-1.33.0.dist-info}/top_level.txt +0 -0
@@ -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
 
@@ -7027,11 +7109,15 @@ class RedisClusterPrivateNetwork(dict):
7027
7109
  def __init__(__self__, *,
7028
7110
  id: builtins.str,
7029
7111
  endpoint_id: Optional[builtins.str] = None,
7112
+ ips: Optional[Sequence[builtins.str]] = None,
7113
+ port: Optional[builtins.int] = None,
7030
7114
  service_ips: Optional[Sequence[builtins.str]] = None,
7031
7115
  zone: Optional[builtins.str] = None):
7032
7116
  """
7033
7117
  :param builtins.str id: The UUID of the Private Network resource.
7034
7118
  :param builtins.str endpoint_id: The ID of the endpoint.
7119
+ :param Sequence[builtins.str] ips: List of IPv4 addresses of the endpoint.
7120
+ :param builtins.int port: TCP port of the endpoint.
7035
7121
  :param Sequence[builtins.str] service_ips: Endpoint IPv4 addresses in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation). You must provide at least one IP per node.
7036
7122
  Keep in mind that in cluster mode you cannot edit your Private Network after its creation so if you want to be able to
7037
7123
  scale your cluster horizontally (adding nodes) later, you should provide more IPs than nodes.
@@ -7058,6 +7144,10 @@ class RedisClusterPrivateNetwork(dict):
7058
7144
  pulumi.set(__self__, "id", id)
7059
7145
  if endpoint_id is not None:
7060
7146
  pulumi.set(__self__, "endpoint_id", endpoint_id)
7147
+ if ips is not None:
7148
+ pulumi.set(__self__, "ips", ips)
7149
+ if port is not None:
7150
+ pulumi.set(__self__, "port", port)
7061
7151
  if service_ips is not None:
7062
7152
  pulumi.set(__self__, "service_ips", service_ips)
7063
7153
  if zone is not None:
@@ -7079,6 +7169,22 @@ class RedisClusterPrivateNetwork(dict):
7079
7169
  """
7080
7170
  return pulumi.get(self, "endpoint_id")
7081
7171
 
7172
+ @property
7173
+ @pulumi.getter
7174
+ def ips(self) -> Optional[Sequence[builtins.str]]:
7175
+ """
7176
+ List of IPv4 addresses of the endpoint.
7177
+ """
7178
+ return pulumi.get(self, "ips")
7179
+
7180
+ @property
7181
+ @pulumi.getter
7182
+ def port(self) -> Optional[builtins.int]:
7183
+ """
7184
+ TCP port of the endpoint.
7185
+ """
7186
+ return pulumi.get(self, "port")
7187
+
7082
7188
  @property
7083
7189
  @pulumi.getter(name="serviceIps")
7084
7190
  def service_ips(self) -> Optional[Sequence[builtins.str]]:
@@ -7124,7 +7230,7 @@ class RedisClusterPublicNetwork(dict):
7124
7230
  port: Optional[builtins.int] = None):
7125
7231
  """
7126
7232
  :param builtins.str id: The ID of the IPv4 address resource.
7127
- :param Sequence[builtins.str] ips: Lis of IPv4 address of the endpoint (IP address).
7233
+ :param Sequence[builtins.str] ips: List of IPv4 addresses of the endpoint.
7128
7234
  :param builtins.int port: TCP port of the endpoint.
7129
7235
  """
7130
7236
  if id is not None:
@@ -7146,7 +7252,7 @@ class RedisClusterPublicNetwork(dict):
7146
7252
  @pulumi.getter
7147
7253
  def ips(self) -> Optional[Sequence[builtins.str]]:
7148
7254
  """
7149
- Lis of IPv4 address of the endpoint (IP address).
7255
+ List of IPv4 addresses of the endpoint.
7150
7256
  """
7151
7257
  return pulumi.get(self, "ips")
7152
7258
 
@@ -8608,6 +8714,35 @@ class GetBillingInvoicesInvoiceResult(dict):
8608
8714
  return pulumi.get(self, "total_untaxed")
8609
8715
 
8610
8716
 
8717
+ @pulumi.output_type
8718
+ class GetBlockSnapshotExportResult(dict):
8719
+ def __init__(__self__, *,
8720
+ bucket: builtins.str,
8721
+ key: builtins.str):
8722
+ """
8723
+ :param builtins.str bucket: Bucket containing qcow
8724
+ :param builtins.str key: Key of the qcow file in the specified bucket
8725
+ """
8726
+ pulumi.set(__self__, "bucket", bucket)
8727
+ pulumi.set(__self__, "key", key)
8728
+
8729
+ @property
8730
+ @pulumi.getter
8731
+ def bucket(self) -> builtins.str:
8732
+ """
8733
+ Bucket containing qcow
8734
+ """
8735
+ return pulumi.get(self, "bucket")
8736
+
8737
+ @property
8738
+ @pulumi.getter
8739
+ def key(self) -> builtins.str:
8740
+ """
8741
+ Key of the qcow file in the specified bucket
8742
+ """
8743
+ return pulumi.get(self, "key")
8744
+
8745
+
8611
8746
  @pulumi.output_type
8612
8747
  class GetBlockSnapshotImportResult(dict):
8613
8748
  def __init__(__self__, *,
@@ -11889,7 +12024,9 @@ class GetLbFrontendsFrontendResult(dict):
11889
12024
  def __init__(__self__, *,
11890
12025
  backend_id: builtins.str,
11891
12026
  certificate_ids: Sequence[builtins.str],
12027
+ connection_rate_limit: builtins.int,
11892
12028
  created_at: builtins.str,
12029
+ enable_access_logs: builtins.bool,
11893
12030
  enable_http3: builtins.bool,
11894
12031
  id: builtins.str,
11895
12032
  inbound_port: builtins.int,
@@ -11901,7 +12038,9 @@ class GetLbFrontendsFrontendResult(dict):
11901
12038
  :param builtins.str backend_id: The Load Balancer backend ID this frontend is attached to.
11902
12039
  > **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
12040
  :param Sequence[builtins.str] certificate_ids: List of certificate IDs that are used by the frontend.
12041
+ :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
12042
  :param builtins.str created_at: The date on which the frontend was created (RFC 3339 format).
12043
+ :param builtins.bool enable_access_logs: Defines whether to enable access logs on the frontend.
11905
12044
  :param builtins.bool enable_http3: Whether HTTP/3 protocol is activated.
11906
12045
  :param builtins.str id: The ID of the associated frontend.
11907
12046
  > **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 +12048,13 @@ class GetLbFrontendsFrontendResult(dict):
11909
12048
  :param builtins.str lb_id: The Load Balancer ID this frontend is attached to. Frontends with a matching ID are listed.
11910
12049
  :param builtins.str name: The frontend name to filter for. Frontends with a matching name are listed.
11911
12050
  :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).
12051
+ :param builtins.str update_at: The date on which the frontend was last updated (RFC 3339 format).
11913
12052
  """
11914
12053
  pulumi.set(__self__, "backend_id", backend_id)
11915
12054
  pulumi.set(__self__, "certificate_ids", certificate_ids)
12055
+ pulumi.set(__self__, "connection_rate_limit", connection_rate_limit)
11916
12056
  pulumi.set(__self__, "created_at", created_at)
12057
+ pulumi.set(__self__, "enable_access_logs", enable_access_logs)
11917
12058
  pulumi.set(__self__, "enable_http3", enable_http3)
11918
12059
  pulumi.set(__self__, "id", id)
11919
12060
  pulumi.set(__self__, "inbound_port", inbound_port)
@@ -11939,6 +12080,14 @@ class GetLbFrontendsFrontendResult(dict):
11939
12080
  """
11940
12081
  return pulumi.get(self, "certificate_ids")
11941
12082
 
12083
+ @property
12084
+ @pulumi.getter(name="connectionRateLimit")
12085
+ def connection_rate_limit(self) -> builtins.int:
12086
+ """
12087
+ The rate limit for new connections established on this frontend. Use 0 value to disable, else value is connections per second.
12088
+ """
12089
+ return pulumi.get(self, "connection_rate_limit")
12090
+
11942
12091
  @property
11943
12092
  @pulumi.getter(name="createdAt")
11944
12093
  def created_at(self) -> builtins.str:
@@ -11947,6 +12096,14 @@ class GetLbFrontendsFrontendResult(dict):
11947
12096
  """
11948
12097
  return pulumi.get(self, "created_at")
11949
12098
 
12099
+ @property
12100
+ @pulumi.getter(name="enableAccessLogs")
12101
+ def enable_access_logs(self) -> builtins.bool:
12102
+ """
12103
+ Defines whether to enable access logs on the frontend.
12104
+ """
12105
+ return pulumi.get(self, "enable_access_logs")
12106
+
11950
12107
  @property
11951
12108
  @pulumi.getter(name="enableHttp3")
11952
12109
  def enable_http3(self) -> builtins.bool:
@@ -12000,7 +12157,7 @@ class GetLbFrontendsFrontendResult(dict):
12000
12157
  @pulumi.getter(name="updateAt")
12001
12158
  def update_at(self) -> builtins.str:
12002
12159
  """
12003
- The date aont which the frontend was last updated (RFC 3339 format).
12160
+ The date on which the frontend was last updated (RFC 3339 format).
12004
12161
  """
12005
12162
  return pulumi.get(self, "update_at")
12006
12163
 
@@ -13095,16 +13252,22 @@ class GetRedisClusterPrivateNetworkResult(dict):
13095
13252
  def __init__(__self__, *,
13096
13253
  endpoint_id: builtins.str,
13097
13254
  id: builtins.str,
13255
+ ips: Sequence[builtins.str],
13256
+ port: builtins.int,
13098
13257
  service_ips: Sequence[builtins.str],
13099
13258
  zone: builtins.str):
13100
13259
  """
13101
13260
  :param builtins.str endpoint_id: The ID of the endpoint.
13102
13261
  :param builtins.str id: The ID of the Redis cluster.
13262
+ :param Sequence[builtins.str] ips: List of IPv4 addresses of the endpoint.
13263
+ :param builtins.int port: TCP port of the endpoint.
13103
13264
  :param Sequence[builtins.str] service_ips: List of IPv4 addresses of the private network with a CIDR notation
13104
13265
  :param builtins.str zone: `region`) The zone in which the server exists.
13105
13266
  """
13106
13267
  pulumi.set(__self__, "endpoint_id", endpoint_id)
13107
13268
  pulumi.set(__self__, "id", id)
13269
+ pulumi.set(__self__, "ips", ips)
13270
+ pulumi.set(__self__, "port", port)
13108
13271
  pulumi.set(__self__, "service_ips", service_ips)
13109
13272
  pulumi.set(__self__, "zone", zone)
13110
13273
 
@@ -13124,6 +13287,22 @@ class GetRedisClusterPrivateNetworkResult(dict):
13124
13287
  """
13125
13288
  return pulumi.get(self, "id")
13126
13289
 
13290
+ @property
13291
+ @pulumi.getter
13292
+ def ips(self) -> Sequence[builtins.str]:
13293
+ """
13294
+ List of IPv4 addresses of the endpoint.
13295
+ """
13296
+ return pulumi.get(self, "ips")
13297
+
13298
+ @property
13299
+ @pulumi.getter
13300
+ def port(self) -> builtins.int:
13301
+ """
13302
+ TCP port of the endpoint.
13303
+ """
13304
+ return pulumi.get(self, "port")
13305
+
13127
13306
  @property
13128
13307
  @pulumi.getter(name="serviceIps")
13129
13308
  def service_ips(self) -> Sequence[builtins.str]:
@@ -13149,7 +13328,8 @@ class GetRedisClusterPublicNetworkResult(dict):
13149
13328
  port: builtins.int):
13150
13329
  """
13151
13330
  :param builtins.str id: The ID of the Redis cluster.
13152
- :param builtins.int port: TCP port of the endpoint
13331
+ :param Sequence[builtins.str] ips: List of IPv4 addresses of the endpoint.
13332
+ :param builtins.int port: TCP port of the endpoint.
13153
13333
  """
13154
13334
  pulumi.set(__self__, "id", id)
13155
13335
  pulumi.set(__self__, "ips", ips)
@@ -13166,13 +13346,16 @@ class GetRedisClusterPublicNetworkResult(dict):
13166
13346
  @property
13167
13347
  @pulumi.getter
13168
13348
  def ips(self) -> Sequence[builtins.str]:
13349
+ """
13350
+ List of IPv4 addresses of the endpoint.
13351
+ """
13169
13352
  return pulumi.get(self, "ips")
13170
13353
 
13171
13354
  @property
13172
13355
  @pulumi.getter
13173
13356
  def port(self) -> builtins.int:
13174
13357
  """
13175
- TCP port of the endpoint
13358
+ TCP port of the endpoint.
13176
13359
  """
13177
13360
  return pulumi.get(self, "port")
13178
13361
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "scaleway",
4
- "version": "1.32.0-alpha.1753171981",
4
+ "version": "1.33.0",
5
5
  "server": "github://api.github.com/pulumiverse"
6
6
  }
@@ -170,6 +170,14 @@ if not MYPY:
170
170
  """
171
171
  The ID of the endpoint.
172
172
  """
173
+ ips: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
174
+ """
175
+ List of IPv4 addresses of the endpoint.
176
+ """
177
+ port: NotRequired[pulumi.Input[builtins.int]]
178
+ """
179
+ TCP port of the endpoint.
180
+ """
173
181
  service_ips: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
174
182
  """
175
183
  Endpoint IPv4 addresses in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation). You must provide at least one IP per node.
@@ -206,11 +214,15 @@ class ClusterPrivateNetworkArgs:
206
214
  def __init__(__self__, *,
207
215
  id: pulumi.Input[builtins.str],
208
216
  endpoint_id: Optional[pulumi.Input[builtins.str]] = None,
217
+ ips: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
218
+ port: Optional[pulumi.Input[builtins.int]] = None,
209
219
  service_ips: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
210
220
  zone: Optional[pulumi.Input[builtins.str]] = None):
211
221
  """
212
222
  :param pulumi.Input[builtins.str] id: The UUID of the Private Network resource.
213
223
  :param pulumi.Input[builtins.str] endpoint_id: The ID of the endpoint.
224
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ips: List of IPv4 addresses of the endpoint.
225
+ :param pulumi.Input[builtins.int] port: TCP port of the endpoint.
214
226
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] service_ips: Endpoint IPv4 addresses in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation). You must provide at least one IP per node.
215
227
  Keep in mind that in cluster mode you cannot edit your Private Network after its creation so if you want to be able to
216
228
  scale your cluster horizontally (adding nodes) later, you should provide more IPs than nodes.
@@ -237,6 +249,10 @@ class ClusterPrivateNetworkArgs:
237
249
  pulumi.set(__self__, "id", id)
238
250
  if endpoint_id is not None:
239
251
  pulumi.set(__self__, "endpoint_id", endpoint_id)
252
+ if ips is not None:
253
+ pulumi.set(__self__, "ips", ips)
254
+ if port is not None:
255
+ pulumi.set(__self__, "port", port)
240
256
  if service_ips is not None:
241
257
  pulumi.set(__self__, "service_ips", service_ips)
242
258
  if zone is not None:
@@ -266,6 +282,30 @@ class ClusterPrivateNetworkArgs:
266
282
  def endpoint_id(self, value: Optional[pulumi.Input[builtins.str]]):
267
283
  pulumi.set(self, "endpoint_id", value)
268
284
 
285
+ @property
286
+ @pulumi.getter
287
+ def ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
288
+ """
289
+ List of IPv4 addresses of the endpoint.
290
+ """
291
+ return pulumi.get(self, "ips")
292
+
293
+ @ips.setter
294
+ def ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
295
+ pulumi.set(self, "ips", value)
296
+
297
+ @property
298
+ @pulumi.getter
299
+ def port(self) -> Optional[pulumi.Input[builtins.int]]:
300
+ """
301
+ TCP port of the endpoint.
302
+ """
303
+ return pulumi.get(self, "port")
304
+
305
+ @port.setter
306
+ def port(self, value: Optional[pulumi.Input[builtins.int]]):
307
+ pulumi.set(self, "port", value)
308
+
269
309
  @property
270
310
  @pulumi.getter(name="serviceIps")
271
311
  def service_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
@@ -319,7 +359,7 @@ if not MYPY:
319
359
  """
320
360
  ips: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
321
361
  """
322
- Lis of IPv4 address of the endpoint (IP address).
362
+ List of IPv4 addresses of the endpoint.
323
363
  """
324
364
  port: NotRequired[pulumi.Input[builtins.int]]
325
365
  """
@@ -336,7 +376,7 @@ class ClusterPublicNetworkArgs:
336
376
  port: Optional[pulumi.Input[builtins.int]] = None):
337
377
  """
338
378
  :param pulumi.Input[builtins.str] id: The ID of the IPv4 address resource.
339
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ips: Lis of IPv4 address of the endpoint (IP address).
379
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ips: List of IPv4 addresses of the endpoint.
340
380
  :param pulumi.Input[builtins.int] port: TCP port of the endpoint.
341
381
  """
342
382
  if id is not None:
@@ -362,7 +402,7 @@ class ClusterPublicNetworkArgs:
362
402
  @pulumi.getter
363
403
  def ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
364
404
  """
365
- Lis of IPv4 address of the endpoint (IP address).
405
+ List of IPv4 addresses of the endpoint.
366
406
  """
367
407
  return pulumi.get(self, "ips")
368
408