pulumiverse-scaleway 1.36.0a1761749266__py3-none-any.whl → 1.36.0a1761895416__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 (37) hide show
  1. pulumiverse_scaleway/_inputs.py +151 -3
  2. pulumiverse_scaleway/database_instance.py +71 -21
  3. pulumiverse_scaleway/database_user.py +6 -6
  4. pulumiverse_scaleway/databases/_inputs.py +97 -3
  5. pulumiverse_scaleway/databases/get_instance.py +12 -1
  6. pulumiverse_scaleway/databases/instance.py +71 -21
  7. pulumiverse_scaleway/databases/outputs.py +127 -2
  8. pulumiverse_scaleway/databases/user.py +6 -6
  9. pulumiverse_scaleway/elasticmetal/get_offer.py +2 -0
  10. pulumiverse_scaleway/file_filesystem.py +33 -33
  11. pulumiverse_scaleway/get_baremetal_offer.py +2 -0
  12. pulumiverse_scaleway/get_database_instance.py +12 -1
  13. pulumiverse_scaleway/get_instance_server.py +13 -83
  14. pulumiverse_scaleway/get_kubernetes_cluster.py +34 -1
  15. pulumiverse_scaleway/iam/__init__.py +1 -0
  16. pulumiverse_scaleway/iam/get_policy.py +293 -0
  17. pulumiverse_scaleway/iam/outputs.py +52 -0
  18. pulumiverse_scaleway/instance/_inputs.py +54 -0
  19. pulumiverse_scaleway/instance/get_server.py +13 -83
  20. pulumiverse_scaleway/instance/outputs.py +87 -75
  21. pulumiverse_scaleway/instance/server.py +95 -230
  22. pulumiverse_scaleway/instance_server.py +95 -230
  23. pulumiverse_scaleway/iot/device.py +0 -38
  24. pulumiverse_scaleway/iot/route.py +20 -20
  25. pulumiverse_scaleway/iot_device.py +0 -38
  26. pulumiverse_scaleway/iot_route.py +20 -20
  27. pulumiverse_scaleway/kubernetes/cluster.py +208 -4
  28. pulumiverse_scaleway/kubernetes/get_cluster.py +34 -1
  29. pulumiverse_scaleway/kubernetes_cluster.py +208 -4
  30. pulumiverse_scaleway/object/bucket_policy.py +0 -64
  31. pulumiverse_scaleway/object_bucket_policy.py +0 -64
  32. pulumiverse_scaleway/outputs.py +214 -77
  33. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  34. {pulumiverse_scaleway-1.36.0a1761749266.dist-info → pulumiverse_scaleway-1.36.0a1761895416.dist-info}/METADATA +1 -1
  35. {pulumiverse_scaleway-1.36.0a1761749266.dist-info → pulumiverse_scaleway-1.36.0a1761895416.dist-info}/RECORD +37 -36
  36. {pulumiverse_scaleway-1.36.0a1761749266.dist-info → pulumiverse_scaleway-1.36.0a1761895416.dist-info}/WHEEL +0 -0
  37. {pulumiverse_scaleway-1.36.0a1761749266.dist-info → pulumiverse_scaleway-1.36.0a1761895416.dist-info}/top_level.txt +0 -0
@@ -278,38 +278,6 @@ class ObjectBucketPolicy(pulumi.CustomResource):
278
278
  bucket = scaleway.object.get_bucket(name="some-unique-name")
279
279
  ```
280
280
 
281
- ### Example with AWS provider
282
-
283
- ```python
284
- import pulumi
285
- import pulumi_aws as aws
286
- import pulumi_scaleway as scaleway
287
- import pulumiverse_scaleway as scaleway
288
-
289
- # Scaleway project ID
290
- default = scaleway.account.get_project(name="default")
291
- # Object storage configuration
292
- bucket = scaleway.object.Bucket("bucket", name="some-unique-name")
293
- # AWS data source
294
- policy = aws.iam.get_policy_document_output(version="2012-10-17",
295
- statements=[{
296
- "sid": "Delegate access",
297
- "effect": "Allow",
298
- "principals": [{
299
- "type": "SCW",
300
- "identifiers": [f"project_id:{default.id}"],
301
- }],
302
- "actions": ["s3:ListBucket"],
303
- "resources": [
304
- bucket.name,
305
- bucket.name.apply(lambda name: f"{name}/*"),
306
- ],
307
- }])
308
- main = scaleway.object.BucketPolicy("main",
309
- bucket=bucket.id,
310
- policy=policy.json)
311
- ```
312
-
313
281
  ### Example with deprecated version 2012-10-17
314
282
 
315
283
  ```python
@@ -484,38 +452,6 @@ class ObjectBucketPolicy(pulumi.CustomResource):
484
452
  bucket = scaleway.object.get_bucket(name="some-unique-name")
485
453
  ```
486
454
 
487
- ### Example with AWS provider
488
-
489
- ```python
490
- import pulumi
491
- import pulumi_aws as aws
492
- import pulumi_scaleway as scaleway
493
- import pulumiverse_scaleway as scaleway
494
-
495
- # Scaleway project ID
496
- default = scaleway.account.get_project(name="default")
497
- # Object storage configuration
498
- bucket = scaleway.object.Bucket("bucket", name="some-unique-name")
499
- # AWS data source
500
- policy = aws.iam.get_policy_document_output(version="2012-10-17",
501
- statements=[{
502
- "sid": "Delegate access",
503
- "effect": "Allow",
504
- "principals": [{
505
- "type": "SCW",
506
- "identifiers": [f"project_id:{default.id}"],
507
- }],
508
- "actions": ["s3:ListBucket"],
509
- "resources": [
510
- bucket.name,
511
- bucket.name.apply(lambda name: f"{name}/*"),
512
- ],
513
- }])
514
- main = scaleway.object.BucketPolicy("main",
515
- bucket=bucket.id,
516
- policy=policy.json)
517
- ```
518
-
519
455
  ### Example with deprecated version 2012-10-17
520
456
 
521
457
  ```python
@@ -41,6 +41,7 @@ __all__ = [
41
41
  'DatabaseInstancePrivateIp',
42
42
  'DatabaseInstancePrivateNetwork',
43
43
  'DatabaseInstanceReadReplica',
44
+ 'DatabaseInstanceUpgradableVersion',
44
45
  'DatabaseReadReplicaDirectAccess',
45
46
  'DatabaseReadReplicaPrivateNetwork',
46
47
  'DomainRecordGeoIp',
@@ -69,6 +70,7 @@ __all__ = [
69
70
  'InstanceSecurityGroupOutboundRule',
70
71
  'InstanceSecurityGroupRulesInboundRule',
71
72
  'InstanceSecurityGroupRulesOutboundRule',
73
+ 'InstanceServerFilesystem',
72
74
  'InstanceServerPrivateIp',
73
75
  'InstanceServerPrivateNetwork',
74
76
  'InstanceServerPublicIp',
@@ -167,6 +169,7 @@ __all__ = [
167
169
  'GetDatabaseInstancePrivateIpResult',
168
170
  'GetDatabaseInstancePrivateNetworkResult',
169
171
  'GetDatabaseInstanceReadReplicaResult',
172
+ 'GetDatabaseInstanceUpgradableVersionResult',
170
173
  'GetDomainRecordGeoIpResult',
171
174
  'GetDomainRecordGeoIpMatchResult',
172
175
  'GetDomainRecordHttpServiceResult',
@@ -177,6 +180,7 @@ __all__ = [
177
180
  'GetInstancePrivateNicPrivateIpResult',
178
181
  'GetInstanceSecurityGroupInboundRuleResult',
179
182
  'GetInstanceSecurityGroupOutboundRuleResult',
183
+ 'GetInstanceServerFilesystemResult',
180
184
  'GetInstanceServerPrivateIpResult',
181
185
  'GetInstanceServerPrivateNetworkResult',
182
186
  'GetInstanceServerPublicIpResult',
@@ -1575,7 +1579,7 @@ class DatabaseInstancePrivateIp(dict):
1575
1579
  id: Optional[_builtins.str] = None):
1576
1580
  """
1577
1581
  :param _builtins.str address: The private IPv4 address.
1578
- :param _builtins.str id: The ID of the IPv4 address resource.
1582
+ :param _builtins.str id: Version ID to use in upgrade requests.
1579
1583
  """
1580
1584
  if address is not None:
1581
1585
  pulumi.set(__self__, "address", address)
@@ -1594,7 +1598,7 @@ class DatabaseInstancePrivateIp(dict):
1594
1598
  @pulumi.getter
1595
1599
  def id(self) -> Optional[_builtins.str]:
1596
1600
  """
1597
- The ID of the IPv4 address resource.
1601
+ Version ID to use in upgrade requests.
1598
1602
  """
1599
1603
  return pulumi.get(self, "id")
1600
1604
 
@@ -1779,6 +1783,78 @@ class DatabaseInstanceReadReplica(dict):
1779
1783
  return pulumi.get(self, "port")
1780
1784
 
1781
1785
 
1786
+ @pulumi.output_type
1787
+ class DatabaseInstanceUpgradableVersion(dict):
1788
+ @staticmethod
1789
+ def __key_warning(key: str):
1790
+ suggest = None
1791
+ if key == "minorVersion":
1792
+ suggest = "minor_version"
1793
+
1794
+ if suggest:
1795
+ pulumi.log.warn(f"Key '{key}' not found in DatabaseInstanceUpgradableVersion. Access the value via the '{suggest}' property getter instead.")
1796
+
1797
+ def __getitem__(self, key: str) -> Any:
1798
+ DatabaseInstanceUpgradableVersion.__key_warning(key)
1799
+ return super().__getitem__(key)
1800
+
1801
+ def get(self, key: str, default = None) -> Any:
1802
+ DatabaseInstanceUpgradableVersion.__key_warning(key)
1803
+ return super().get(key, default)
1804
+
1805
+ def __init__(__self__, *,
1806
+ id: Optional[_builtins.str] = None,
1807
+ minor_version: Optional[_builtins.str] = None,
1808
+ name: Optional[_builtins.str] = None,
1809
+ version: Optional[_builtins.str] = None):
1810
+ """
1811
+ :param _builtins.str id: Version ID to use in upgrade requests.
1812
+ :param _builtins.str minor_version: Minor version string (e.g., `15.5.0`).
1813
+ :param _builtins.str name: The name of the Database Instance.
1814
+ :param _builtins.str version: Version string (e.g., `15.5`).
1815
+ """
1816
+ if id is not None:
1817
+ pulumi.set(__self__, "id", id)
1818
+ if minor_version is not None:
1819
+ pulumi.set(__self__, "minor_version", minor_version)
1820
+ if name is not None:
1821
+ pulumi.set(__self__, "name", name)
1822
+ if version is not None:
1823
+ pulumi.set(__self__, "version", version)
1824
+
1825
+ @_builtins.property
1826
+ @pulumi.getter
1827
+ def id(self) -> Optional[_builtins.str]:
1828
+ """
1829
+ Version ID to use in upgrade requests.
1830
+ """
1831
+ return pulumi.get(self, "id")
1832
+
1833
+ @_builtins.property
1834
+ @pulumi.getter(name="minorVersion")
1835
+ def minor_version(self) -> Optional[_builtins.str]:
1836
+ """
1837
+ Minor version string (e.g., `15.5.0`).
1838
+ """
1839
+ return pulumi.get(self, "minor_version")
1840
+
1841
+ @_builtins.property
1842
+ @pulumi.getter
1843
+ def name(self) -> Optional[_builtins.str]:
1844
+ """
1845
+ The name of the Database Instance.
1846
+ """
1847
+ return pulumi.get(self, "name")
1848
+
1849
+ @_builtins.property
1850
+ @pulumi.getter
1851
+ def version(self) -> Optional[_builtins.str]:
1852
+ """
1853
+ Version string (e.g., `15.5`).
1854
+ """
1855
+ return pulumi.get(self, "version")
1856
+
1857
+
1782
1858
  @pulumi.output_type
1783
1859
  class DatabaseReadReplicaDirectAccess(dict):
1784
1860
  @staticmethod
@@ -3653,6 +3729,54 @@ class InstanceSecurityGroupRulesOutboundRule(dict):
3653
3729
  return pulumi.get(self, "protocol")
3654
3730
 
3655
3731
 
3732
+ @pulumi.output_type
3733
+ class InstanceServerFilesystem(dict):
3734
+ @staticmethod
3735
+ def __key_warning(key: str):
3736
+ suggest = None
3737
+ if key == "filesystemId":
3738
+ suggest = "filesystem_id"
3739
+
3740
+ if suggest:
3741
+ pulumi.log.warn(f"Key '{key}' not found in InstanceServerFilesystem. Access the value via the '{suggest}' property getter instead.")
3742
+
3743
+ def __getitem__(self, key: str) -> Any:
3744
+ InstanceServerFilesystem.__key_warning(key)
3745
+ return super().__getitem__(key)
3746
+
3747
+ def get(self, key: str, default = None) -> Any:
3748
+ InstanceServerFilesystem.__key_warning(key)
3749
+ return super().get(key, default)
3750
+
3751
+ def __init__(__self__, *,
3752
+ filesystem_id: Optional[_builtins.str] = None,
3753
+ status: Optional[_builtins.str] = None):
3754
+ """
3755
+ :param _builtins.str filesystem_id: The unique ID of the filesystem attached to the server.
3756
+ :param _builtins.str status: The state of the filesystem
3757
+ """
3758
+ if filesystem_id is not None:
3759
+ pulumi.set(__self__, "filesystem_id", filesystem_id)
3760
+ if status is not None:
3761
+ pulumi.set(__self__, "status", status)
3762
+
3763
+ @_builtins.property
3764
+ @pulumi.getter(name="filesystemId")
3765
+ def filesystem_id(self) -> Optional[_builtins.str]:
3766
+ """
3767
+ The unique ID of the filesystem attached to the server.
3768
+ """
3769
+ return pulumi.get(self, "filesystem_id")
3770
+
3771
+ @_builtins.property
3772
+ @pulumi.getter
3773
+ def status(self) -> Optional[_builtins.str]:
3774
+ """
3775
+ The state of the filesystem
3776
+ """
3777
+ return pulumi.get(self, "status")
3778
+
3779
+
3656
3780
  @pulumi.output_type
3657
3781
  class InstanceServerPrivateIp(dict):
3658
3782
  def __init__(__self__, *,
@@ -9390,6 +9514,57 @@ class GetDatabaseInstanceReadReplicaResult(dict):
9390
9514
  return pulumi.get(self, "port")
9391
9515
 
9392
9516
 
9517
+ @pulumi.output_type
9518
+ class GetDatabaseInstanceUpgradableVersionResult(dict):
9519
+ def __init__(__self__, *,
9520
+ id: _builtins.str,
9521
+ minor_version: _builtins.str,
9522
+ name: _builtins.str,
9523
+ version: _builtins.str):
9524
+ """
9525
+ :param _builtins.str id: The ID of the Database Instance.
9526
+ :param _builtins.str minor_version: Minor version string
9527
+ :param _builtins.str name: The name of the RDB instance.
9528
+ :param _builtins.str version: Version string
9529
+ """
9530
+ pulumi.set(__self__, "id", id)
9531
+ pulumi.set(__self__, "minor_version", minor_version)
9532
+ pulumi.set(__self__, "name", name)
9533
+ pulumi.set(__self__, "version", version)
9534
+
9535
+ @_builtins.property
9536
+ @pulumi.getter
9537
+ def id(self) -> _builtins.str:
9538
+ """
9539
+ The ID of the Database Instance.
9540
+ """
9541
+ return pulumi.get(self, "id")
9542
+
9543
+ @_builtins.property
9544
+ @pulumi.getter(name="minorVersion")
9545
+ def minor_version(self) -> _builtins.str:
9546
+ """
9547
+ Minor version string
9548
+ """
9549
+ return pulumi.get(self, "minor_version")
9550
+
9551
+ @_builtins.property
9552
+ @pulumi.getter
9553
+ def name(self) -> _builtins.str:
9554
+ """
9555
+ The name of the RDB instance.
9556
+ """
9557
+ return pulumi.get(self, "name")
9558
+
9559
+ @_builtins.property
9560
+ @pulumi.getter
9561
+ def version(self) -> _builtins.str:
9562
+ """
9563
+ Version string
9564
+ """
9565
+ return pulumi.get(self, "version")
9566
+
9567
+
9393
9568
  @pulumi.output_type
9394
9569
  class GetDomainRecordGeoIpResult(dict):
9395
9570
  def __init__(__self__, *,
@@ -9975,14 +10150,43 @@ class GetInstanceSecurityGroupOutboundRuleResult(dict):
9975
10150
  return pulumi.get(self, "protocol")
9976
10151
 
9977
10152
 
10153
+ @pulumi.output_type
10154
+ class GetInstanceServerFilesystemResult(dict):
10155
+ def __init__(__self__, *,
10156
+ filesystem_id: _builtins.str,
10157
+ status: _builtins.str):
10158
+ """
10159
+ :param _builtins.str filesystem_id: The filesystem ID attached to the server
10160
+ :param _builtins.str status: The state of the filesystem
10161
+ """
10162
+ pulumi.set(__self__, "filesystem_id", filesystem_id)
10163
+ pulumi.set(__self__, "status", status)
10164
+
10165
+ @_builtins.property
10166
+ @pulumi.getter(name="filesystemId")
10167
+ def filesystem_id(self) -> _builtins.str:
10168
+ """
10169
+ The filesystem ID attached to the server
10170
+ """
10171
+ return pulumi.get(self, "filesystem_id")
10172
+
10173
+ @_builtins.property
10174
+ @pulumi.getter
10175
+ def status(self) -> _builtins.str:
10176
+ """
10177
+ The state of the filesystem
10178
+ """
10179
+ return pulumi.get(self, "status")
10180
+
10181
+
9978
10182
  @pulumi.output_type
9979
10183
  class GetInstanceServerPrivateIpResult(dict):
9980
10184
  def __init__(__self__, *,
9981
10185
  address: _builtins.str,
9982
10186
  id: _builtins.str):
9983
10187
  """
9984
- :param _builtins.str address: The address of the IP
9985
- :param _builtins.str id: The ID of the IP
10188
+ :param _builtins.str address: The private IP address.
10189
+ :param _builtins.str id: The ID of the IP address resource.
9986
10190
  """
9987
10191
  pulumi.set(__self__, "address", address)
9988
10192
  pulumi.set(__self__, "id", id)
@@ -9991,7 +10195,7 @@ class GetInstanceServerPrivateIpResult(dict):
9991
10195
  @pulumi.getter
9992
10196
  def address(self) -> _builtins.str:
9993
10197
  """
9994
- The address of the IP
10198
+ The private IP address.
9995
10199
  """
9996
10200
  return pulumi.get(self, "address")
9997
10201
 
@@ -9999,7 +10203,7 @@ class GetInstanceServerPrivateIpResult(dict):
9999
10203
  @pulumi.getter
10000
10204
  def id(self) -> _builtins.str:
10001
10205
  """
10002
- The ID of the IP
10206
+ The ID of the IP address resource.
10003
10207
  """
10004
10208
  return pulumi.get(self, "id")
10005
10209
 
@@ -10077,11 +10281,11 @@ class GetInstanceServerPublicIpResult(dict):
10077
10281
  netmask: _builtins.str,
10078
10282
  provisioning_mode: _builtins.str):
10079
10283
  """
10080
- :param _builtins.str address: The address of the IP
10284
+ :param _builtins.str address: The private IP address.
10081
10285
  :param _builtins.bool dynamic: Whether the IP is dynamic
10082
10286
  :param _builtins.str family: IP address family (inet or inet6)
10083
10287
  :param _builtins.str gateway: Gateway's IP address
10084
- :param _builtins.str id: The ID of the IP
10288
+ :param _builtins.str id: The ID of the IP address resource.
10085
10289
  :param _builtins.str netmask: CIDR netmask
10086
10290
  :param _builtins.str provisioning_mode: Provisioning mode of the IP address
10087
10291
  """
@@ -10097,7 +10301,7 @@ class GetInstanceServerPublicIpResult(dict):
10097
10301
  @pulumi.getter
10098
10302
  def address(self) -> _builtins.str:
10099
10303
  """
10100
- The address of the IP
10304
+ The private IP address.
10101
10305
  """
10102
10306
  return pulumi.get(self, "address")
10103
10307
 
@@ -10129,7 +10333,7 @@ class GetInstanceServerPublicIpResult(dict):
10129
10333
  @pulumi.getter
10130
10334
  def id(self) -> _builtins.str:
10131
10335
  """
10132
- The ID of the IP
10336
+ The ID of the IP address resource.
10133
10337
  """
10134
10338
  return pulumi.get(self, "id")
10135
10339
 
@@ -10240,20 +10444,14 @@ class GetInstanceServersServerResult(dict):
10240
10444
  boot_type: _builtins.str,
10241
10445
  bootscript_id: _builtins.str,
10242
10446
  enable_dynamic_ip: _builtins.bool,
10243
- enable_ipv6: _builtins.bool,
10244
10447
  id: _builtins.str,
10245
10448
  image: _builtins.str,
10246
- ipv6_address: _builtins.str,
10247
- ipv6_gateway: _builtins.str,
10248
- ipv6_prefix_length: _builtins.int,
10249
10449
  name: _builtins.str,
10250
10450
  organization_id: _builtins.str,
10251
10451
  placement_group_id: _builtins.str,
10252
10452
  placement_group_policy_respected: _builtins.bool,
10253
- private_ip: _builtins.str,
10254
10453
  private_ips: Sequence['outputs.GetInstanceServersServerPrivateIpResult'],
10255
10454
  project_id: _builtins.str,
10256
- public_ip: _builtins.str,
10257
10455
  public_ips: Sequence['outputs.GetInstanceServersServerPublicIpResult'],
10258
10456
  security_group_id: _builtins.str,
10259
10457
  state: _builtins.str,
@@ -10264,20 +10462,14 @@ class GetInstanceServersServerResult(dict):
10264
10462
  :param _builtins.str boot_type: The boot Type of the server. Possible values are: `local`, `bootscript` or `rescue`.
10265
10463
  :param _builtins.str bootscript_id: UUID of the bootscript
10266
10464
  :param _builtins.bool enable_dynamic_ip: If true a dynamic IP will be attached to the server.
10267
- :param _builtins.bool enable_ipv6: Determines if IPv6 is enabled for the server.
10268
10465
  :param _builtins.str id: The ID of the IP
10269
10466
  :param _builtins.str image: The UUID or the label of the base image used by the server.
10270
- :param _builtins.str ipv6_address: The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true )
10271
- :param _builtins.str ipv6_gateway: The ipv6 gateway address. ( Only set when enable_ipv6 is set to true )
10272
- :param _builtins.int ipv6_prefix_length: The prefix length of the ipv6 subnet routed to the server. ( Only set when enable_ipv6 is set to true )
10273
10467
  :param _builtins.str name: The server name used as filter. Servers with a name like it are listed.
10274
10468
  :param _builtins.str organization_id: The organization ID the server is associated with.
10275
10469
  :param _builtins.str placement_group_id: The [placement group](https://developers.scaleway.com/en/products/instance/api/#placement-groups-d8f653) the server is attached to.
10276
10470
  :param _builtins.bool placement_group_policy_respected: Whether the placement group policy respected or not
10277
- :param _builtins.str private_ip: The Scaleway internal IP address of the server.
10278
10471
  :param Sequence['GetInstanceServersServerPrivateIpArgs'] private_ips: The list of private IPv4 and IPv6 addresses associated with the server.
10279
10472
  :param _builtins.str project_id: The ID of the project the server is associated with.
10280
- :param _builtins.str public_ip: The public IP address of the server.
10281
10473
  :param Sequence['GetInstanceServersServerPublicIpArgs'] public_ips: The list of public IPs of the server
10282
10474
  :param _builtins.str security_group_id: The [security group](https://developers.scaleway.com/en/products/instance/api/#security-groups-8d7f89) the server is attached to.
10283
10475
  :param _builtins.str state: The state of the server. Possible values are: `started`, `stopped` or `standby`.
@@ -10288,20 +10480,14 @@ class GetInstanceServersServerResult(dict):
10288
10480
  pulumi.set(__self__, "boot_type", boot_type)
10289
10481
  pulumi.set(__self__, "bootscript_id", bootscript_id)
10290
10482
  pulumi.set(__self__, "enable_dynamic_ip", enable_dynamic_ip)
10291
- pulumi.set(__self__, "enable_ipv6", enable_ipv6)
10292
10483
  pulumi.set(__self__, "id", id)
10293
10484
  pulumi.set(__self__, "image", image)
10294
- pulumi.set(__self__, "ipv6_address", ipv6_address)
10295
- pulumi.set(__self__, "ipv6_gateway", ipv6_gateway)
10296
- pulumi.set(__self__, "ipv6_prefix_length", ipv6_prefix_length)
10297
10485
  pulumi.set(__self__, "name", name)
10298
10486
  pulumi.set(__self__, "organization_id", organization_id)
10299
10487
  pulumi.set(__self__, "placement_group_id", placement_group_id)
10300
10488
  pulumi.set(__self__, "placement_group_policy_respected", placement_group_policy_respected)
10301
- pulumi.set(__self__, "private_ip", private_ip)
10302
10489
  pulumi.set(__self__, "private_ips", private_ips)
10303
10490
  pulumi.set(__self__, "project_id", project_id)
10304
- pulumi.set(__self__, "public_ip", public_ip)
10305
10491
  pulumi.set(__self__, "public_ips", public_ips)
10306
10492
  pulumi.set(__self__, "security_group_id", security_group_id)
10307
10493
  pulumi.set(__self__, "state", state)
@@ -10335,14 +10521,6 @@ class GetInstanceServersServerResult(dict):
10335
10521
  """
10336
10522
  return pulumi.get(self, "enable_dynamic_ip")
10337
10523
 
10338
- @_builtins.property
10339
- @pulumi.getter(name="enableIpv6")
10340
- def enable_ipv6(self) -> _builtins.bool:
10341
- """
10342
- Determines if IPv6 is enabled for the server.
10343
- """
10344
- return pulumi.get(self, "enable_ipv6")
10345
-
10346
10524
  @_builtins.property
10347
10525
  @pulumi.getter
10348
10526
  def id(self) -> _builtins.str:
@@ -10359,30 +10537,6 @@ class GetInstanceServersServerResult(dict):
10359
10537
  """
10360
10538
  return pulumi.get(self, "image")
10361
10539
 
10362
- @_builtins.property
10363
- @pulumi.getter(name="ipv6Address")
10364
- def ipv6_address(self) -> _builtins.str:
10365
- """
10366
- The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true )
10367
- """
10368
- return pulumi.get(self, "ipv6_address")
10369
-
10370
- @_builtins.property
10371
- @pulumi.getter(name="ipv6Gateway")
10372
- def ipv6_gateway(self) -> _builtins.str:
10373
- """
10374
- The ipv6 gateway address. ( Only set when enable_ipv6 is set to true )
10375
- """
10376
- return pulumi.get(self, "ipv6_gateway")
10377
-
10378
- @_builtins.property
10379
- @pulumi.getter(name="ipv6PrefixLength")
10380
- def ipv6_prefix_length(self) -> _builtins.int:
10381
- """
10382
- The prefix length of the ipv6 subnet routed to the server. ( Only set when enable_ipv6 is set to true )
10383
- """
10384
- return pulumi.get(self, "ipv6_prefix_length")
10385
-
10386
10540
  @_builtins.property
10387
10541
  @pulumi.getter
10388
10542
  def name(self) -> _builtins.str:
@@ -10415,14 +10569,6 @@ class GetInstanceServersServerResult(dict):
10415
10569
  """
10416
10570
  return pulumi.get(self, "placement_group_policy_respected")
10417
10571
 
10418
- @_builtins.property
10419
- @pulumi.getter(name="privateIp")
10420
- def private_ip(self) -> _builtins.str:
10421
- """
10422
- The Scaleway internal IP address of the server.
10423
- """
10424
- return pulumi.get(self, "private_ip")
10425
-
10426
10572
  @_builtins.property
10427
10573
  @pulumi.getter(name="privateIps")
10428
10574
  def private_ips(self) -> Sequence['outputs.GetInstanceServersServerPrivateIpResult']:
@@ -10439,15 +10585,6 @@ class GetInstanceServersServerResult(dict):
10439
10585
  """
10440
10586
  return pulumi.get(self, "project_id")
10441
10587
 
10442
- @_builtins.property
10443
- @pulumi.getter(name="publicIp")
10444
- @_utilities.deprecated("""Use public_ips instead""")
10445
- def public_ip(self) -> _builtins.str:
10446
- """
10447
- The public IP address of the server.
10448
- """
10449
- return pulumi.get(self, "public_ip")
10450
-
10451
10588
  @_builtins.property
10452
10589
  @pulumi.getter(name="publicIps")
10453
10590
  def public_ips(self) -> Sequence['outputs.GetInstanceServersServerPublicIpResult']:
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "scaleway",
4
- "version": "1.36.0-alpha.1761749266",
4
+ "version": "1.36.0-alpha.1761895416",
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.36.0a1761749266
3
+ Version: 1.36.0a1761895416
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