pulumiverse-scaleway 1.35.0a1761031391__py3-none-any.whl → 1.39.0a1764841480__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 (109) hide show
  1. pulumiverse_scaleway/__init__.py +38 -0
  2. pulumiverse_scaleway/_inputs.py +271 -166
  3. pulumiverse_scaleway/audittrail/__init__.py +10 -0
  4. pulumiverse_scaleway/audittrail/get_event.py +410 -0
  5. pulumiverse_scaleway/audittrail/outputs.py +234 -0
  6. pulumiverse_scaleway/baremetal_server.py +159 -0
  7. pulumiverse_scaleway/billing/get_consumptions.py +4 -0
  8. pulumiverse_scaleway/block/snapshot.py +78 -0
  9. pulumiverse_scaleway/block_snapshot.py +78 -0
  10. pulumiverse_scaleway/cockpit_grafana_user.py +0 -42
  11. pulumiverse_scaleway/database_instance.py +105 -55
  12. pulumiverse_scaleway/database_user.py +6 -6
  13. pulumiverse_scaleway/databases/_inputs.py +97 -3
  14. pulumiverse_scaleway/databases/get_instance.py +12 -1
  15. pulumiverse_scaleway/databases/instance.py +105 -55
  16. pulumiverse_scaleway/databases/outputs.py +127 -2
  17. pulumiverse_scaleway/databases/user.py +6 -6
  18. pulumiverse_scaleway/datawarehouse/__init__.py +13 -0
  19. pulumiverse_scaleway/datawarehouse/_inputs.py +149 -0
  20. pulumiverse_scaleway/datawarehouse/database.py +338 -0
  21. pulumiverse_scaleway/datawarehouse/deployment.py +821 -0
  22. pulumiverse_scaleway/datawarehouse/outputs.py +113 -0
  23. pulumiverse_scaleway/datawarehouse/user.py +451 -0
  24. pulumiverse_scaleway/domain/record.py +4 -4
  25. pulumiverse_scaleway/domain_record.py +4 -4
  26. pulumiverse_scaleway/edge_services_cache_stage.py +30 -0
  27. pulumiverse_scaleway/edge_services_dns_stage.py +28 -0
  28. pulumiverse_scaleway/elasticmetal/get_offer.py +2 -0
  29. pulumiverse_scaleway/elasticmetal/get_server.py +12 -1
  30. pulumiverse_scaleway/elasticmetal/server.py +159 -0
  31. pulumiverse_scaleway/file_filesystem.py +39 -35
  32. pulumiverse_scaleway/get_baremetal_offer.py +2 -0
  33. pulumiverse_scaleway/get_baremetal_server.py +12 -1
  34. pulumiverse_scaleway/get_billing_consumptions.py +4 -0
  35. pulumiverse_scaleway/get_database_instance.py +12 -1
  36. pulumiverse_scaleway/get_instance_ip.py +14 -2
  37. pulumiverse_scaleway/get_instance_server.py +13 -83
  38. pulumiverse_scaleway/get_k8s_version.py +12 -1
  39. pulumiverse_scaleway/get_kubernetes_cluster.py +34 -1
  40. pulumiverse_scaleway/get_loadbalancer.py +12 -1
  41. pulumiverse_scaleway/get_loadbalancer_certificate.py +60 -0
  42. pulumiverse_scaleway/iam/__init__.py +1 -0
  43. pulumiverse_scaleway/iam/get_policy.py +293 -0
  44. pulumiverse_scaleway/iam/outputs.py +52 -0
  45. pulumiverse_scaleway/inference/deployment.py +36 -0
  46. pulumiverse_scaleway/inference/model.py +7 -7
  47. pulumiverse_scaleway/inference_deployment.py +36 -0
  48. pulumiverse_scaleway/instance/_inputs.py +155 -144
  49. pulumiverse_scaleway/instance/get_ip.py +14 -2
  50. pulumiverse_scaleway/instance/get_server.py +13 -83
  51. pulumiverse_scaleway/instance/image.py +94 -40
  52. pulumiverse_scaleway/instance/outputs.py +164 -167
  53. pulumiverse_scaleway/instance/server.py +116 -244
  54. pulumiverse_scaleway/instance/user_data.py +4 -4
  55. pulumiverse_scaleway/instance/volume.py +14 -0
  56. pulumiverse_scaleway/instance_image.py +94 -40
  57. pulumiverse_scaleway/instance_server.py +116 -244
  58. pulumiverse_scaleway/instance_user_data.py +4 -4
  59. pulumiverse_scaleway/instance_volume.py +14 -0
  60. pulumiverse_scaleway/iot/device.py +0 -38
  61. pulumiverse_scaleway/iot/hub.py +11 -11
  62. pulumiverse_scaleway/iot/route.py +20 -20
  63. pulumiverse_scaleway/iot_device.py +0 -38
  64. pulumiverse_scaleway/iot_hub.py +11 -11
  65. pulumiverse_scaleway/iot_route.py +20 -20
  66. pulumiverse_scaleway/ipam/_inputs.py +6 -6
  67. pulumiverse_scaleway/ipam/ip.py +35 -7
  68. pulumiverse_scaleway/ipam/ip_reverse_dns.py +70 -0
  69. pulumiverse_scaleway/ipam/outputs.py +4 -4
  70. pulumiverse_scaleway/ipam_ip.py +35 -7
  71. pulumiverse_scaleway/ipam_ip_reverse_dns.py +70 -0
  72. pulumiverse_scaleway/key_manager_key.py +134 -25
  73. pulumiverse_scaleway/kubernetes/cluster.py +290 -4
  74. pulumiverse_scaleway/kubernetes/get_cluster.py +34 -1
  75. pulumiverse_scaleway/kubernetes/get_version.py +12 -1
  76. pulumiverse_scaleway/kubernetes/pool.py +7 -7
  77. pulumiverse_scaleway/kubernetes_cluster.py +290 -4
  78. pulumiverse_scaleway/kubernetes_node_pool.py +7 -7
  79. pulumiverse_scaleway/loadbalancer.py +55 -1
  80. pulumiverse_scaleway/loadbalancers/__init__.py +1 -0
  81. pulumiverse_scaleway/loadbalancers/_inputs.py +13 -13
  82. pulumiverse_scaleway/loadbalancers/get_certificate.py +60 -0
  83. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +12 -1
  84. pulumiverse_scaleway/loadbalancers/load_balancer.py +55 -1
  85. pulumiverse_scaleway/loadbalancers/outputs.py +9 -9
  86. pulumiverse_scaleway/loadbalancers/private_network.py +505 -0
  87. pulumiverse_scaleway/mongo_db_instance.py +14 -14
  88. pulumiverse_scaleway/mongodb/instance.py +14 -14
  89. pulumiverse_scaleway/network/gateway_network.py +7 -7
  90. pulumiverse_scaleway/object/__init__.py +1 -0
  91. pulumiverse_scaleway/object/bucket_policy.py +0 -64
  92. pulumiverse_scaleway/object/get.py +290 -0
  93. pulumiverse_scaleway/object/item.py +37 -7
  94. pulumiverse_scaleway/object_bucket_policy.py +0 -64
  95. pulumiverse_scaleway/object_item.py +37 -7
  96. pulumiverse_scaleway/observability/__init__.py +1 -0
  97. pulumiverse_scaleway/observability/get_grafana.py +103 -0
  98. pulumiverse_scaleway/observability/get_sources.py +6 -6
  99. pulumiverse_scaleway/observability/grafana_user.py +0 -42
  100. pulumiverse_scaleway/observability/outputs.py +2 -2
  101. pulumiverse_scaleway/outputs.py +304 -182
  102. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  103. pulumiverse_scaleway/tem/domain.py +42 -0
  104. pulumiverse_scaleway/tem_domain.py +42 -0
  105. pulumiverse_scaleway/vpc_gateway_network.py +7 -7
  106. {pulumiverse_scaleway-1.35.0a1761031391.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/METADATA +1 -1
  107. {pulumiverse_scaleway-1.35.0a1761031391.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/RECORD +109 -96
  108. {pulumiverse_scaleway-1.35.0a1761031391.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/WHEEL +0 -0
  109. {pulumiverse_scaleway-1.35.0a1761031391.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/top_level.txt +0 -0
@@ -17,11 +17,13 @@ from . import outputs
17
17
 
18
18
  __all__ = [
19
19
  'ImageAdditionalVolume',
20
+ 'ImageRootVolume',
20
21
  'PrivateNicPrivateIp',
21
22
  'SecurityGroupInboundRule',
22
23
  'SecurityGroupOutboundRule',
23
24
  'SecurityGroupRulesInboundRule',
24
25
  'SecurityGroupRulesOutboundRule',
26
+ 'ServerFilesystem',
25
27
  'ServerPrivateIp',
26
28
  'ServerPrivateNetwork',
27
29
  'ServerPublicIp',
@@ -30,6 +32,7 @@ __all__ = [
30
32
  'GetPrivateNicPrivateIpResult',
31
33
  'GetSecurityGroupInboundRuleResult',
32
34
  'GetSecurityGroupOutboundRuleResult',
35
+ 'GetServerFilesystemResult',
33
36
  'GetServerPrivateIpResult',
34
37
  'GetServerPrivateNetworkResult',
35
38
  'GetServerPublicIpResult',
@@ -48,13 +51,7 @@ class ImageAdditionalVolume(dict):
48
51
  @staticmethod
49
52
  def __key_warning(key: str):
50
53
  suggest = None
51
- if key == "creationDate":
52
- suggest = "creation_date"
53
- elif key == "exportUri":
54
- suggest = "export_uri"
55
- elif key == "modificationDate":
56
- suggest = "modification_date"
57
- elif key == "volumeType":
54
+ if key == "volumeType":
58
55
  suggest = "volume_type"
59
56
 
60
57
  if suggest:
@@ -69,76 +66,32 @@ class ImageAdditionalVolume(dict):
69
66
  return super().get(key, default)
70
67
 
71
68
  def __init__(__self__, *,
72
- creation_date: Optional[_builtins.str] = None,
73
- export_uri: Optional[_builtins.str] = None,
74
69
  id: Optional[_builtins.str] = None,
75
- modification_date: Optional[_builtins.str] = None,
76
70
  name: Optional[_builtins.str] = None,
77
- organization: Optional[_builtins.str] = None,
78
- project: Optional[_builtins.str] = None,
79
71
  server: Optional[Mapping[str, _builtins.str]] = None,
80
72
  size: Optional[_builtins.int] = None,
81
- state: Optional[_builtins.str] = None,
82
73
  tags: Optional[Sequence[_builtins.str]] = None,
83
- volume_type: Optional[_builtins.str] = None,
84
- zone: Optional[_builtins.str] = None):
74
+ volume_type: Optional[_builtins.str] = None):
85
75
  """
86
- :param _builtins.str creation_date: Date of the volume creation.
87
- :param _builtins.str export_uri: The export URI of the volume.
88
76
  :param _builtins.str id: ID of the server containing the volume.
89
- :param _builtins.str modification_date: Date of volume latest update.
90
77
  :param _builtins.str name: The name of the image. If not provided it will be randomly generated.
91
- :param _builtins.str organization: The organization ID the volume is associated with.
92
- :param _builtins.str project: ID of the project the volume is associated with
93
78
  :param Mapping[str, _builtins.str] server: Description of the server containing the volume (in case the image is a backup from a server).
94
79
  :param _builtins.int size: The size of the volume.
95
- :param _builtins.str state: State of the volume.
96
80
  :param Sequence[_builtins.str] tags: A list of tags to apply to the image.
97
- :param _builtins.str volume_type: The type of volume, possible values are `l_ssd` and `b_ssd`.
98
- :param _builtins.str zone: The zone in which the image should be created.
81
+ :param _builtins.str volume_type: The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
99
82
  """
100
- if creation_date is not None:
101
- pulumi.set(__self__, "creation_date", creation_date)
102
- if export_uri is not None:
103
- pulumi.set(__self__, "export_uri", export_uri)
104
83
  if id is not None:
105
84
  pulumi.set(__self__, "id", id)
106
- if modification_date is not None:
107
- pulumi.set(__self__, "modification_date", modification_date)
108
85
  if name is not None:
109
86
  pulumi.set(__self__, "name", name)
110
- if organization is not None:
111
- pulumi.set(__self__, "organization", organization)
112
- if project is not None:
113
- pulumi.set(__self__, "project", project)
114
87
  if server is not None:
115
88
  pulumi.set(__self__, "server", server)
116
89
  if size is not None:
117
90
  pulumi.set(__self__, "size", size)
118
- if state is not None:
119
- pulumi.set(__self__, "state", state)
120
91
  if tags is not None:
121
92
  pulumi.set(__self__, "tags", tags)
122
93
  if volume_type is not None:
123
94
  pulumi.set(__self__, "volume_type", volume_type)
124
- if zone is not None:
125
- pulumi.set(__self__, "zone", zone)
126
-
127
- @_builtins.property
128
- @pulumi.getter(name="creationDate")
129
- def creation_date(self) -> Optional[_builtins.str]:
130
- """
131
- Date of the volume creation.
132
- """
133
- return pulumi.get(self, "creation_date")
134
-
135
- @_builtins.property
136
- @pulumi.getter(name="exportUri")
137
- def export_uri(self) -> Optional[_builtins.str]:
138
- """
139
- The export URI of the volume.
140
- """
141
- return pulumi.get(self, "export_uri")
142
95
 
143
96
  @_builtins.property
144
97
  @pulumi.getter
@@ -148,14 +101,6 @@ class ImageAdditionalVolume(dict):
148
101
  """
149
102
  return pulumi.get(self, "id")
150
103
 
151
- @_builtins.property
152
- @pulumi.getter(name="modificationDate")
153
- def modification_date(self) -> Optional[_builtins.str]:
154
- """
155
- Date of volume latest update.
156
- """
157
- return pulumi.get(self, "modification_date")
158
-
159
104
  @_builtins.property
160
105
  @pulumi.getter
161
106
  def name(self) -> Optional[_builtins.str]:
@@ -166,67 +111,107 @@ class ImageAdditionalVolume(dict):
166
111
 
167
112
  @_builtins.property
168
113
  @pulumi.getter
169
- def organization(self) -> Optional[_builtins.str]:
114
+ def server(self) -> Optional[Mapping[str, _builtins.str]]:
170
115
  """
171
- The organization ID the volume is associated with.
116
+ Description of the server containing the volume (in case the image is a backup from a server).
172
117
  """
173
- return pulumi.get(self, "organization")
118
+ return pulumi.get(self, "server")
174
119
 
175
120
  @_builtins.property
176
121
  @pulumi.getter
177
- def project(self) -> Optional[_builtins.str]:
122
+ def size(self) -> Optional[_builtins.int]:
178
123
  """
179
- ID of the project the volume is associated with
124
+ The size of the volume.
180
125
  """
181
- return pulumi.get(self, "project")
126
+ return pulumi.get(self, "size")
182
127
 
183
128
  @_builtins.property
184
129
  @pulumi.getter
185
- def server(self) -> Optional[Mapping[str, _builtins.str]]:
130
+ def tags(self) -> Optional[Sequence[_builtins.str]]:
186
131
  """
187
- Description of the server containing the volume (in case the image is a backup from a server).
132
+ A list of tags to apply to the image.
188
133
  """
189
- return pulumi.get(self, "server")
134
+ return pulumi.get(self, "tags")
190
135
 
191
136
  @_builtins.property
192
- @pulumi.getter
193
- def size(self) -> Optional[_builtins.int]:
137
+ @pulumi.getter(name="volumeType")
138
+ def volume_type(self) -> Optional[_builtins.str]:
194
139
  """
195
- The size of the volume.
140
+ The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
196
141
  """
197
- return pulumi.get(self, "size")
142
+ return pulumi.get(self, "volume_type")
143
+
144
+
145
+ @pulumi.output_type
146
+ class ImageRootVolume(dict):
147
+ @staticmethod
148
+ def __key_warning(key: str):
149
+ suggest = None
150
+ if key == "volumeType":
151
+ suggest = "volume_type"
152
+
153
+ if suggest:
154
+ pulumi.log.warn(f"Key '{key}' not found in ImageRootVolume. Access the value via the '{suggest}' property getter instead.")
155
+
156
+ def __getitem__(self, key: str) -> Any:
157
+ ImageRootVolume.__key_warning(key)
158
+ return super().__getitem__(key)
159
+
160
+ def get(self, key: str, default = None) -> Any:
161
+ ImageRootVolume.__key_warning(key)
162
+ return super().get(key, default)
163
+
164
+ def __init__(__self__, *,
165
+ id: Optional[_builtins.str] = None,
166
+ name: Optional[_builtins.str] = None,
167
+ size: Optional[_builtins.int] = None,
168
+ volume_type: Optional[_builtins.str] = None):
169
+ """
170
+ :param _builtins.str id: ID of the server containing the volume.
171
+ :param _builtins.str name: The name of the image. If not provided it will be randomly generated.
172
+ :param _builtins.int size: The size of the volume.
173
+ :param _builtins.str volume_type: The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
174
+ """
175
+ if id is not None:
176
+ pulumi.set(__self__, "id", id)
177
+ if name is not None:
178
+ pulumi.set(__self__, "name", name)
179
+ if size is not None:
180
+ pulumi.set(__self__, "size", size)
181
+ if volume_type is not None:
182
+ pulumi.set(__self__, "volume_type", volume_type)
198
183
 
199
184
  @_builtins.property
200
185
  @pulumi.getter
201
- def state(self) -> Optional[_builtins.str]:
186
+ def id(self) -> Optional[_builtins.str]:
202
187
  """
203
- State of the volume.
188
+ ID of the server containing the volume.
204
189
  """
205
- return pulumi.get(self, "state")
190
+ return pulumi.get(self, "id")
206
191
 
207
192
  @_builtins.property
208
193
  @pulumi.getter
209
- def tags(self) -> Optional[Sequence[_builtins.str]]:
194
+ def name(self) -> Optional[_builtins.str]:
210
195
  """
211
- A list of tags to apply to the image.
196
+ The name of the image. If not provided it will be randomly generated.
212
197
  """
213
- return pulumi.get(self, "tags")
198
+ return pulumi.get(self, "name")
214
199
 
215
200
  @_builtins.property
216
- @pulumi.getter(name="volumeType")
217
- def volume_type(self) -> Optional[_builtins.str]:
201
+ @pulumi.getter
202
+ def size(self) -> Optional[_builtins.int]:
218
203
  """
219
- The type of volume, possible values are `l_ssd` and `b_ssd`.
204
+ The size of the volume.
220
205
  """
221
- return pulumi.get(self, "volume_type")
206
+ return pulumi.get(self, "size")
222
207
 
223
208
  @_builtins.property
224
- @pulumi.getter
225
- def zone(self) -> Optional[_builtins.str]:
209
+ @pulumi.getter(name="volumeType")
210
+ def volume_type(self) -> Optional[_builtins.str]:
226
211
  """
227
- The zone in which the image should be created.
212
+ The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
228
213
  """
229
- return pulumi.get(self, "zone")
214
+ return pulumi.get(self, "volume_type")
230
215
 
231
216
 
232
217
  @pulumi.output_type
@@ -652,6 +637,54 @@ class SecurityGroupRulesOutboundRule(dict):
652
637
  return pulumi.get(self, "protocol")
653
638
 
654
639
 
640
+ @pulumi.output_type
641
+ class ServerFilesystem(dict):
642
+ @staticmethod
643
+ def __key_warning(key: str):
644
+ suggest = None
645
+ if key == "filesystemId":
646
+ suggest = "filesystem_id"
647
+
648
+ if suggest:
649
+ pulumi.log.warn(f"Key '{key}' not found in ServerFilesystem. Access the value via the '{suggest}' property getter instead.")
650
+
651
+ def __getitem__(self, key: str) -> Any:
652
+ ServerFilesystem.__key_warning(key)
653
+ return super().__getitem__(key)
654
+
655
+ def get(self, key: str, default = None) -> Any:
656
+ ServerFilesystem.__key_warning(key)
657
+ return super().get(key, default)
658
+
659
+ def __init__(__self__, *,
660
+ filesystem_id: Optional[_builtins.str] = None,
661
+ status: Optional[_builtins.str] = None):
662
+ """
663
+ :param _builtins.str filesystem_id: The unique ID of the filesystem attached to the server.
664
+ :param _builtins.str status: The state of the filesystem
665
+ """
666
+ if filesystem_id is not None:
667
+ pulumi.set(__self__, "filesystem_id", filesystem_id)
668
+ if status is not None:
669
+ pulumi.set(__self__, "status", status)
670
+
671
+ @_builtins.property
672
+ @pulumi.getter(name="filesystemId")
673
+ def filesystem_id(self) -> Optional[_builtins.str]:
674
+ """
675
+ The unique ID of the filesystem attached to the server.
676
+ """
677
+ return pulumi.get(self, "filesystem_id")
678
+
679
+ @_builtins.property
680
+ @pulumi.getter
681
+ def status(self) -> Optional[_builtins.str]:
682
+ """
683
+ The state of the filesystem
684
+ """
685
+ return pulumi.get(self, "status")
686
+
687
+
655
688
  @pulumi.output_type
656
689
  class ServerPrivateIp(dict):
657
690
  def __init__(__self__, *,
@@ -916,10 +949,11 @@ class ServerRootVolume(dict):
916
949
  """
917
950
  :param _builtins.bool boot: Set the volume where the boot the server
918
951
  :param _builtins.bool delete_on_termination: Forces deletion of the root volume on instance termination.
919
- :param _builtins.str name: The name of the server.
952
+ :param _builtins.str name: Name of the root volume.
920
953
  :param _builtins.int sbs_iops: Choose IOPS of your sbs volume, has to be used with `sbs_volume` for root volume type.
921
954
 
922
- > **Important:** Updates to `root_volume.size_in_gb` will be ignored after the creation of the server.
955
+ > **Important:** It is not possible to change `root_volume.size_in_gb` for local volumes (`l_ssd`). Changes to this field will recreate the server.
956
+ It is possible to increase `root_volume.size_in_gb` for SBS volumes, but they cannot be resized down without recreating the server.
923
957
  :param _builtins.int size_in_gb: Size of the root volume in gigabytes.
924
958
  To find the right size use [this endpoint](https://www.scaleway.com/en/developers/api/instance/#path-instances-list-all-instances) and
925
959
  check the `volumes_constraint.{min|max}_size` (in bytes) for your `commercial_type`.
@@ -962,7 +996,7 @@ class ServerRootVolume(dict):
962
996
  @pulumi.getter
963
997
  def name(self) -> Optional[_builtins.str]:
964
998
  """
965
- The name of the server.
999
+ Name of the root volume.
966
1000
  """
967
1001
  return pulumi.get(self, "name")
968
1002
 
@@ -972,7 +1006,8 @@ class ServerRootVolume(dict):
972
1006
  """
973
1007
  Choose IOPS of your sbs volume, has to be used with `sbs_volume` for root volume type.
974
1008
 
975
- > **Important:** Updates to `root_volume.size_in_gb` will be ignored after the creation of the server.
1009
+ > **Important:** It is not possible to change `root_volume.size_in_gb` for local volumes (`l_ssd`). Changes to this field will recreate the server.
1010
+ It is possible to increase `root_volume.size_in_gb` for SBS volumes, but they cannot be resized down without recreating the server.
976
1011
  """
977
1012
  return pulumi.get(self, "sbs_iops")
978
1013
 
@@ -1216,14 +1251,43 @@ class GetSecurityGroupOutboundRuleResult(dict):
1216
1251
  return pulumi.get(self, "protocol")
1217
1252
 
1218
1253
 
1254
+ @pulumi.output_type
1255
+ class GetServerFilesystemResult(dict):
1256
+ def __init__(__self__, *,
1257
+ filesystem_id: _builtins.str,
1258
+ status: _builtins.str):
1259
+ """
1260
+ :param _builtins.str filesystem_id: The filesystem ID attached to the server
1261
+ :param _builtins.str status: The state of the filesystem
1262
+ """
1263
+ pulumi.set(__self__, "filesystem_id", filesystem_id)
1264
+ pulumi.set(__self__, "status", status)
1265
+
1266
+ @_builtins.property
1267
+ @pulumi.getter(name="filesystemId")
1268
+ def filesystem_id(self) -> _builtins.str:
1269
+ """
1270
+ The filesystem ID attached to the server
1271
+ """
1272
+ return pulumi.get(self, "filesystem_id")
1273
+
1274
+ @_builtins.property
1275
+ @pulumi.getter
1276
+ def status(self) -> _builtins.str:
1277
+ """
1278
+ The state of the filesystem
1279
+ """
1280
+ return pulumi.get(self, "status")
1281
+
1282
+
1219
1283
  @pulumi.output_type
1220
1284
  class GetServerPrivateIpResult(dict):
1221
1285
  def __init__(__self__, *,
1222
1286
  address: _builtins.str,
1223
1287
  id: _builtins.str):
1224
1288
  """
1225
- :param _builtins.str address: The address of the IP
1226
- :param _builtins.str id: The ID of the IP
1289
+ :param _builtins.str address: The private IP address.
1290
+ :param _builtins.str id: The ID of the IP address resource.
1227
1291
  """
1228
1292
  pulumi.set(__self__, "address", address)
1229
1293
  pulumi.set(__self__, "id", id)
@@ -1232,7 +1296,7 @@ class GetServerPrivateIpResult(dict):
1232
1296
  @pulumi.getter
1233
1297
  def address(self) -> _builtins.str:
1234
1298
  """
1235
- The address of the IP
1299
+ The private IP address.
1236
1300
  """
1237
1301
  return pulumi.get(self, "address")
1238
1302
 
@@ -1240,7 +1304,7 @@ class GetServerPrivateIpResult(dict):
1240
1304
  @pulumi.getter
1241
1305
  def id(self) -> _builtins.str:
1242
1306
  """
1243
- The ID of the IP
1307
+ The ID of the IP address resource.
1244
1308
  """
1245
1309
  return pulumi.get(self, "id")
1246
1310
 
@@ -1318,11 +1382,11 @@ class GetServerPublicIpResult(dict):
1318
1382
  netmask: _builtins.str,
1319
1383
  provisioning_mode: _builtins.str):
1320
1384
  """
1321
- :param _builtins.str address: The address of the IP
1385
+ :param _builtins.str address: The private IP address.
1322
1386
  :param _builtins.bool dynamic: Whether the IP is dynamic
1323
1387
  :param _builtins.str family: IP address family (inet or inet6)
1324
1388
  :param _builtins.str gateway: Gateway's IP address
1325
- :param _builtins.str id: The ID of the IP
1389
+ :param _builtins.str id: The ID of the IP address resource.
1326
1390
  :param _builtins.str netmask: CIDR netmask
1327
1391
  :param _builtins.str provisioning_mode: Provisioning mode of the IP address
1328
1392
  """
@@ -1338,7 +1402,7 @@ class GetServerPublicIpResult(dict):
1338
1402
  @pulumi.getter
1339
1403
  def address(self) -> _builtins.str:
1340
1404
  """
1341
- The address of the IP
1405
+ The private IP address.
1342
1406
  """
1343
1407
  return pulumi.get(self, "address")
1344
1408
 
@@ -1370,7 +1434,7 @@ class GetServerPublicIpResult(dict):
1370
1434
  @pulumi.getter
1371
1435
  def id(self) -> _builtins.str:
1372
1436
  """
1373
- The ID of the IP
1437
+ The ID of the IP address resource.
1374
1438
  """
1375
1439
  return pulumi.get(self, "id")
1376
1440
 
@@ -1623,20 +1687,14 @@ class GetServersServerResult(dict):
1623
1687
  boot_type: _builtins.str,
1624
1688
  bootscript_id: _builtins.str,
1625
1689
  enable_dynamic_ip: _builtins.bool,
1626
- enable_ipv6: _builtins.bool,
1627
1690
  id: _builtins.str,
1628
1691
  image: _builtins.str,
1629
- ipv6_address: _builtins.str,
1630
- ipv6_gateway: _builtins.str,
1631
- ipv6_prefix_length: _builtins.int,
1632
1692
  name: _builtins.str,
1633
1693
  organization_id: _builtins.str,
1634
1694
  placement_group_id: _builtins.str,
1635
1695
  placement_group_policy_respected: _builtins.bool,
1636
- private_ip: _builtins.str,
1637
1696
  private_ips: Sequence['outputs.GetServersServerPrivateIpResult'],
1638
1697
  project_id: _builtins.str,
1639
- public_ip: _builtins.str,
1640
1698
  public_ips: Sequence['outputs.GetServersServerPublicIpResult'],
1641
1699
  security_group_id: _builtins.str,
1642
1700
  state: _builtins.str,
@@ -1647,20 +1705,14 @@ class GetServersServerResult(dict):
1647
1705
  :param _builtins.str boot_type: The boot Type of the server. Possible values are: `local`, `bootscript` or `rescue`.
1648
1706
  :param _builtins.str bootscript_id: UUID of the bootscript
1649
1707
  :param _builtins.bool enable_dynamic_ip: If true a dynamic IP will be attached to the server.
1650
- :param _builtins.bool enable_ipv6: Determines if IPv6 is enabled for the server.
1651
1708
  :param _builtins.str id: The ID of the IP
1652
1709
  :param _builtins.str image: The UUID or the label of the base image used by the server.
1653
- :param _builtins.str ipv6_address: The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true )
1654
- :param _builtins.str ipv6_gateway: The ipv6 gateway address. ( Only set when enable_ipv6 is set to true )
1655
- :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 )
1656
1710
  :param _builtins.str name: The server name used as filter. Servers with a name like it are listed.
1657
1711
  :param _builtins.str organization_id: The organization ID the server is associated with.
1658
1712
  :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.
1659
1713
  :param _builtins.bool placement_group_policy_respected: Whether the placement group policy respected or not
1660
- :param _builtins.str private_ip: The Scaleway internal IP address of the server.
1661
1714
  :param Sequence['GetServersServerPrivateIpArgs'] private_ips: The list of private IPv4 and IPv6 addresses associated with the server.
1662
1715
  :param _builtins.str project_id: The ID of the project the server is associated with.
1663
- :param _builtins.str public_ip: The public IP address of the server.
1664
1716
  :param Sequence['GetServersServerPublicIpArgs'] public_ips: The list of public IPs of the server
1665
1717
  :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.
1666
1718
  :param _builtins.str state: The state of the server. Possible values are: `started`, `stopped` or `standby`.
@@ -1671,20 +1723,14 @@ class GetServersServerResult(dict):
1671
1723
  pulumi.set(__self__, "boot_type", boot_type)
1672
1724
  pulumi.set(__self__, "bootscript_id", bootscript_id)
1673
1725
  pulumi.set(__self__, "enable_dynamic_ip", enable_dynamic_ip)
1674
- pulumi.set(__self__, "enable_ipv6", enable_ipv6)
1675
1726
  pulumi.set(__self__, "id", id)
1676
1727
  pulumi.set(__self__, "image", image)
1677
- pulumi.set(__self__, "ipv6_address", ipv6_address)
1678
- pulumi.set(__self__, "ipv6_gateway", ipv6_gateway)
1679
- pulumi.set(__self__, "ipv6_prefix_length", ipv6_prefix_length)
1680
1728
  pulumi.set(__self__, "name", name)
1681
1729
  pulumi.set(__self__, "organization_id", organization_id)
1682
1730
  pulumi.set(__self__, "placement_group_id", placement_group_id)
1683
1731
  pulumi.set(__self__, "placement_group_policy_respected", placement_group_policy_respected)
1684
- pulumi.set(__self__, "private_ip", private_ip)
1685
1732
  pulumi.set(__self__, "private_ips", private_ips)
1686
1733
  pulumi.set(__self__, "project_id", project_id)
1687
- pulumi.set(__self__, "public_ip", public_ip)
1688
1734
  pulumi.set(__self__, "public_ips", public_ips)
1689
1735
  pulumi.set(__self__, "security_group_id", security_group_id)
1690
1736
  pulumi.set(__self__, "state", state)
@@ -1718,14 +1764,6 @@ class GetServersServerResult(dict):
1718
1764
  """
1719
1765
  return pulumi.get(self, "enable_dynamic_ip")
1720
1766
 
1721
- @_builtins.property
1722
- @pulumi.getter(name="enableIpv6")
1723
- def enable_ipv6(self) -> _builtins.bool:
1724
- """
1725
- Determines if IPv6 is enabled for the server.
1726
- """
1727
- return pulumi.get(self, "enable_ipv6")
1728
-
1729
1767
  @_builtins.property
1730
1768
  @pulumi.getter
1731
1769
  def id(self) -> _builtins.str:
@@ -1742,30 +1780,6 @@ class GetServersServerResult(dict):
1742
1780
  """
1743
1781
  return pulumi.get(self, "image")
1744
1782
 
1745
- @_builtins.property
1746
- @pulumi.getter(name="ipv6Address")
1747
- def ipv6_address(self) -> _builtins.str:
1748
- """
1749
- The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true )
1750
- """
1751
- return pulumi.get(self, "ipv6_address")
1752
-
1753
- @_builtins.property
1754
- @pulumi.getter(name="ipv6Gateway")
1755
- def ipv6_gateway(self) -> _builtins.str:
1756
- """
1757
- The ipv6 gateway address. ( Only set when enable_ipv6 is set to true )
1758
- """
1759
- return pulumi.get(self, "ipv6_gateway")
1760
-
1761
- @_builtins.property
1762
- @pulumi.getter(name="ipv6PrefixLength")
1763
- def ipv6_prefix_length(self) -> _builtins.int:
1764
- """
1765
- The prefix length of the ipv6 subnet routed to the server. ( Only set when enable_ipv6 is set to true )
1766
- """
1767
- return pulumi.get(self, "ipv6_prefix_length")
1768
-
1769
1783
  @_builtins.property
1770
1784
  @pulumi.getter
1771
1785
  def name(self) -> _builtins.str:
@@ -1798,14 +1812,6 @@ class GetServersServerResult(dict):
1798
1812
  """
1799
1813
  return pulumi.get(self, "placement_group_policy_respected")
1800
1814
 
1801
- @_builtins.property
1802
- @pulumi.getter(name="privateIp")
1803
- def private_ip(self) -> _builtins.str:
1804
- """
1805
- The Scaleway internal IP address of the server.
1806
- """
1807
- return pulumi.get(self, "private_ip")
1808
-
1809
1815
  @_builtins.property
1810
1816
  @pulumi.getter(name="privateIps")
1811
1817
  def private_ips(self) -> Sequence['outputs.GetServersServerPrivateIpResult']:
@@ -1822,15 +1828,6 @@ class GetServersServerResult(dict):
1822
1828
  """
1823
1829
  return pulumi.get(self, "project_id")
1824
1830
 
1825
- @_builtins.property
1826
- @pulumi.getter(name="publicIp")
1827
- @_utilities.deprecated("""Use public_ips instead""")
1828
- def public_ip(self) -> _builtins.str:
1829
- """
1830
- The public IP address of the server.
1831
- """
1832
- return pulumi.get(self, "public_ip")
1833
-
1834
1831
  @_builtins.property
1835
1832
  @pulumi.getter(name="publicIps")
1836
1833
  def public_ips(self) -> Sequence['outputs.GetServersServerPublicIpResult']: