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
@@ -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',
@@ -63,11 +64,13 @@ __all__ = [
63
64
  'InferenceDeploymentPrivateIp',
64
65
  'InferenceDeploymentPublicEndpoint',
65
66
  'InstanceImageAdditionalVolume',
67
+ 'InstanceImageRootVolume',
66
68
  'InstancePrivateNicPrivateIp',
67
69
  'InstanceSecurityGroupInboundRule',
68
70
  'InstanceSecurityGroupOutboundRule',
69
71
  'InstanceSecurityGroupRulesInboundRule',
70
72
  'InstanceSecurityGroupRulesOutboundRule',
73
+ 'InstanceServerFilesystem',
71
74
  'InstanceServerPrivateIp',
72
75
  'InstanceServerPrivateNetwork',
73
76
  'InstanceServerPublicIp',
@@ -166,6 +169,7 @@ __all__ = [
166
169
  'GetDatabaseInstancePrivateIpResult',
167
170
  'GetDatabaseInstancePrivateNetworkResult',
168
171
  'GetDatabaseInstanceReadReplicaResult',
172
+ 'GetDatabaseInstanceUpgradableVersionResult',
169
173
  'GetDomainRecordGeoIpResult',
170
174
  'GetDomainRecordGeoIpMatchResult',
171
175
  'GetDomainRecordHttpServiceResult',
@@ -176,6 +180,7 @@ __all__ = [
176
180
  'GetInstancePrivateNicPrivateIpResult',
177
181
  'GetInstanceSecurityGroupInboundRuleResult',
178
182
  'GetInstanceSecurityGroupOutboundRuleResult',
183
+ 'GetInstanceServerFilesystemResult',
179
184
  'GetInstanceServerPrivateIpResult',
180
185
  'GetInstanceServerPrivateNetworkResult',
181
186
  'GetInstanceServerPublicIpResult',
@@ -1574,7 +1579,7 @@ class DatabaseInstancePrivateIp(dict):
1574
1579
  id: Optional[_builtins.str] = None):
1575
1580
  """
1576
1581
  :param _builtins.str address: The private IPv4 address.
1577
- :param _builtins.str id: The ID of the IPv4 address resource.
1582
+ :param _builtins.str id: Version ID to use in upgrade requests.
1578
1583
  """
1579
1584
  if address is not None:
1580
1585
  pulumi.set(__self__, "address", address)
@@ -1593,7 +1598,7 @@ class DatabaseInstancePrivateIp(dict):
1593
1598
  @pulumi.getter
1594
1599
  def id(self) -> Optional[_builtins.str]:
1595
1600
  """
1596
- The ID of the IPv4 address resource.
1601
+ Version ID to use in upgrade requests.
1597
1602
  """
1598
1603
  return pulumi.get(self, "id")
1599
1604
 
@@ -1778,6 +1783,78 @@ class DatabaseInstanceReadReplica(dict):
1778
1783
  return pulumi.get(self, "port")
1779
1784
 
1780
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
+
1781
1858
  @pulumi.output_type
1782
1859
  class DatabaseReadReplicaDirectAccess(dict):
1783
1860
  @staticmethod
@@ -3066,13 +3143,7 @@ class InstanceImageAdditionalVolume(dict):
3066
3143
  @staticmethod
3067
3144
  def __key_warning(key: str):
3068
3145
  suggest = None
3069
- if key == "creationDate":
3070
- suggest = "creation_date"
3071
- elif key == "exportUri":
3072
- suggest = "export_uri"
3073
- elif key == "modificationDate":
3074
- suggest = "modification_date"
3075
- elif key == "volumeType":
3146
+ if key == "volumeType":
3076
3147
  suggest = "volume_type"
3077
3148
 
3078
3149
  if suggest:
@@ -3087,76 +3158,32 @@ class InstanceImageAdditionalVolume(dict):
3087
3158
  return super().get(key, default)
3088
3159
 
3089
3160
  def __init__(__self__, *,
3090
- creation_date: Optional[_builtins.str] = None,
3091
- export_uri: Optional[_builtins.str] = None,
3092
3161
  id: Optional[_builtins.str] = None,
3093
- modification_date: Optional[_builtins.str] = None,
3094
3162
  name: Optional[_builtins.str] = None,
3095
- organization: Optional[_builtins.str] = None,
3096
- project: Optional[_builtins.str] = None,
3097
3163
  server: Optional[Mapping[str, _builtins.str]] = None,
3098
3164
  size: Optional[_builtins.int] = None,
3099
- state: Optional[_builtins.str] = None,
3100
3165
  tags: Optional[Sequence[_builtins.str]] = None,
3101
- volume_type: Optional[_builtins.str] = None,
3102
- zone: Optional[_builtins.str] = None):
3166
+ volume_type: Optional[_builtins.str] = None):
3103
3167
  """
3104
- :param _builtins.str creation_date: Date of the volume creation.
3105
- :param _builtins.str export_uri: The export URI of the volume.
3106
3168
  :param _builtins.str id: ID of the server containing the volume.
3107
- :param _builtins.str modification_date: Date of volume latest update.
3108
3169
  :param _builtins.str name: The name of the image. If not provided it will be randomly generated.
3109
- :param _builtins.str organization: The organization ID the volume is associated with.
3110
- :param _builtins.str project: ID of the project the volume is associated with
3111
3170
  :param Mapping[str, _builtins.str] server: Description of the server containing the volume (in case the image is a backup from a server).
3112
3171
  :param _builtins.int size: The size of the volume.
3113
- :param _builtins.str state: State of the volume.
3114
3172
  :param Sequence[_builtins.str] tags: A list of tags to apply to the image.
3115
- :param _builtins.str volume_type: The type of volume, possible values are `l_ssd` and `b_ssd`.
3116
- :param _builtins.str zone: The zone in which the image should be created.
3173
+ :param _builtins.str volume_type: The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
3117
3174
  """
3118
- if creation_date is not None:
3119
- pulumi.set(__self__, "creation_date", creation_date)
3120
- if export_uri is not None:
3121
- pulumi.set(__self__, "export_uri", export_uri)
3122
3175
  if id is not None:
3123
3176
  pulumi.set(__self__, "id", id)
3124
- if modification_date is not None:
3125
- pulumi.set(__self__, "modification_date", modification_date)
3126
3177
  if name is not None:
3127
3178
  pulumi.set(__self__, "name", name)
3128
- if organization is not None:
3129
- pulumi.set(__self__, "organization", organization)
3130
- if project is not None:
3131
- pulumi.set(__self__, "project", project)
3132
3179
  if server is not None:
3133
3180
  pulumi.set(__self__, "server", server)
3134
3181
  if size is not None:
3135
3182
  pulumi.set(__self__, "size", size)
3136
- if state is not None:
3137
- pulumi.set(__self__, "state", state)
3138
3183
  if tags is not None:
3139
3184
  pulumi.set(__self__, "tags", tags)
3140
3185
  if volume_type is not None:
3141
3186
  pulumi.set(__self__, "volume_type", volume_type)
3142
- if zone is not None:
3143
- pulumi.set(__self__, "zone", zone)
3144
-
3145
- @_builtins.property
3146
- @pulumi.getter(name="creationDate")
3147
- def creation_date(self) -> Optional[_builtins.str]:
3148
- """
3149
- Date of the volume creation.
3150
- """
3151
- return pulumi.get(self, "creation_date")
3152
-
3153
- @_builtins.property
3154
- @pulumi.getter(name="exportUri")
3155
- def export_uri(self) -> Optional[_builtins.str]:
3156
- """
3157
- The export URI of the volume.
3158
- """
3159
- return pulumi.get(self, "export_uri")
3160
3187
 
3161
3188
  @_builtins.property
3162
3189
  @pulumi.getter
@@ -3166,14 +3193,6 @@ class InstanceImageAdditionalVolume(dict):
3166
3193
  """
3167
3194
  return pulumi.get(self, "id")
3168
3195
 
3169
- @_builtins.property
3170
- @pulumi.getter(name="modificationDate")
3171
- def modification_date(self) -> Optional[_builtins.str]:
3172
- """
3173
- Date of volume latest update.
3174
- """
3175
- return pulumi.get(self, "modification_date")
3176
-
3177
3196
  @_builtins.property
3178
3197
  @pulumi.getter
3179
3198
  def name(self) -> Optional[_builtins.str]:
@@ -3184,67 +3203,107 @@ class InstanceImageAdditionalVolume(dict):
3184
3203
 
3185
3204
  @_builtins.property
3186
3205
  @pulumi.getter
3187
- def organization(self) -> Optional[_builtins.str]:
3206
+ def server(self) -> Optional[Mapping[str, _builtins.str]]:
3188
3207
  """
3189
- The organization ID the volume is associated with.
3208
+ Description of the server containing the volume (in case the image is a backup from a server).
3190
3209
  """
3191
- return pulumi.get(self, "organization")
3210
+ return pulumi.get(self, "server")
3192
3211
 
3193
3212
  @_builtins.property
3194
3213
  @pulumi.getter
3195
- def project(self) -> Optional[_builtins.str]:
3214
+ def size(self) -> Optional[_builtins.int]:
3196
3215
  """
3197
- ID of the project the volume is associated with
3216
+ The size of the volume.
3198
3217
  """
3199
- return pulumi.get(self, "project")
3218
+ return pulumi.get(self, "size")
3200
3219
 
3201
3220
  @_builtins.property
3202
3221
  @pulumi.getter
3203
- def server(self) -> Optional[Mapping[str, _builtins.str]]:
3222
+ def tags(self) -> Optional[Sequence[_builtins.str]]:
3204
3223
  """
3205
- Description of the server containing the volume (in case the image is a backup from a server).
3224
+ A list of tags to apply to the image.
3206
3225
  """
3207
- return pulumi.get(self, "server")
3226
+ return pulumi.get(self, "tags")
3208
3227
 
3209
3228
  @_builtins.property
3210
- @pulumi.getter
3211
- def size(self) -> Optional[_builtins.int]:
3229
+ @pulumi.getter(name="volumeType")
3230
+ def volume_type(self) -> Optional[_builtins.str]:
3212
3231
  """
3213
- The size of the volume.
3232
+ The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
3214
3233
  """
3215
- return pulumi.get(self, "size")
3234
+ return pulumi.get(self, "volume_type")
3235
+
3236
+
3237
+ @pulumi.output_type
3238
+ class InstanceImageRootVolume(dict):
3239
+ @staticmethod
3240
+ def __key_warning(key: str):
3241
+ suggest = None
3242
+ if key == "volumeType":
3243
+ suggest = "volume_type"
3244
+
3245
+ if suggest:
3246
+ pulumi.log.warn(f"Key '{key}' not found in InstanceImageRootVolume. Access the value via the '{suggest}' property getter instead.")
3247
+
3248
+ def __getitem__(self, key: str) -> Any:
3249
+ InstanceImageRootVolume.__key_warning(key)
3250
+ return super().__getitem__(key)
3251
+
3252
+ def get(self, key: str, default = None) -> Any:
3253
+ InstanceImageRootVolume.__key_warning(key)
3254
+ return super().get(key, default)
3255
+
3256
+ def __init__(__self__, *,
3257
+ id: Optional[_builtins.str] = None,
3258
+ name: Optional[_builtins.str] = None,
3259
+ size: Optional[_builtins.int] = None,
3260
+ volume_type: Optional[_builtins.str] = None):
3261
+ """
3262
+ :param _builtins.str id: ID of the server containing the volume.
3263
+ :param _builtins.str name: The name of the image. If not provided it will be randomly generated.
3264
+ :param _builtins.int size: The size of the volume.
3265
+ :param _builtins.str volume_type: The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
3266
+ """
3267
+ if id is not None:
3268
+ pulumi.set(__self__, "id", id)
3269
+ if name is not None:
3270
+ pulumi.set(__self__, "name", name)
3271
+ if size is not None:
3272
+ pulumi.set(__self__, "size", size)
3273
+ if volume_type is not None:
3274
+ pulumi.set(__self__, "volume_type", volume_type)
3216
3275
 
3217
3276
  @_builtins.property
3218
3277
  @pulumi.getter
3219
- def state(self) -> Optional[_builtins.str]:
3278
+ def id(self) -> Optional[_builtins.str]:
3220
3279
  """
3221
- State of the volume.
3280
+ ID of the server containing the volume.
3222
3281
  """
3223
- return pulumi.get(self, "state")
3282
+ return pulumi.get(self, "id")
3224
3283
 
3225
3284
  @_builtins.property
3226
3285
  @pulumi.getter
3227
- def tags(self) -> Optional[Sequence[_builtins.str]]:
3286
+ def name(self) -> Optional[_builtins.str]:
3228
3287
  """
3229
- A list of tags to apply to the image.
3288
+ The name of the image. If not provided it will be randomly generated.
3230
3289
  """
3231
- return pulumi.get(self, "tags")
3290
+ return pulumi.get(self, "name")
3232
3291
 
3233
3292
  @_builtins.property
3234
- @pulumi.getter(name="volumeType")
3235
- def volume_type(self) -> Optional[_builtins.str]:
3293
+ @pulumi.getter
3294
+ def size(self) -> Optional[_builtins.int]:
3236
3295
  """
3237
- The type of volume, possible values are `l_ssd` and `b_ssd`.
3296
+ The size of the volume.
3238
3297
  """
3239
- return pulumi.get(self, "volume_type")
3298
+ return pulumi.get(self, "size")
3240
3299
 
3241
3300
  @_builtins.property
3242
- @pulumi.getter
3243
- def zone(self) -> Optional[_builtins.str]:
3301
+ @pulumi.getter(name="volumeType")
3302
+ def volume_type(self) -> Optional[_builtins.str]:
3244
3303
  """
3245
- The zone in which the image should be created.
3304
+ The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
3246
3305
  """
3247
- return pulumi.get(self, "zone")
3306
+ return pulumi.get(self, "volume_type")
3248
3307
 
3249
3308
 
3250
3309
  @pulumi.output_type
@@ -3670,6 +3729,54 @@ class InstanceSecurityGroupRulesOutboundRule(dict):
3670
3729
  return pulumi.get(self, "protocol")
3671
3730
 
3672
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
+
3673
3780
  @pulumi.output_type
3674
3781
  class InstanceServerPrivateIp(dict):
3675
3782
  def __init__(__self__, *,
@@ -3934,10 +4041,11 @@ class InstanceServerRootVolume(dict):
3934
4041
  """
3935
4042
  :param _builtins.bool boot: Set the volume where the boot the server
3936
4043
  :param _builtins.bool delete_on_termination: Forces deletion of the root volume on instance termination.
3937
- :param _builtins.str name: The name of the server.
4044
+ :param _builtins.str name: Name of the root volume.
3938
4045
  :param _builtins.int sbs_iops: Choose IOPS of your sbs volume, has to be used with `sbs_volume` for root volume type.
3939
4046
 
3940
- > **Important:** Updates to `root_volume.size_in_gb` will be ignored after the creation of the server.
4047
+ > **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.
4048
+ It is possible to increase `root_volume.size_in_gb` for SBS volumes, but they cannot be resized down without recreating the server.
3941
4049
  :param _builtins.int size_in_gb: Size of the root volume in gigabytes.
3942
4050
  To find the right size use [this endpoint](https://www.scaleway.com/en/developers/api/instance/#path-instances-list-all-instances) and
3943
4051
  check the `volumes_constraint.{min|max}_size` (in bytes) for your `commercial_type`.
@@ -3980,7 +4088,7 @@ class InstanceServerRootVolume(dict):
3980
4088
  @pulumi.getter
3981
4089
  def name(self) -> Optional[_builtins.str]:
3982
4090
  """
3983
- The name of the server.
4091
+ Name of the root volume.
3984
4092
  """
3985
4093
  return pulumi.get(self, "name")
3986
4094
 
@@ -3990,7 +4098,8 @@ class InstanceServerRootVolume(dict):
3990
4098
  """
3991
4099
  Choose IOPS of your sbs volume, has to be used with `sbs_volume` for root volume type.
3992
4100
 
3993
- > **Important:** Updates to `root_volume.size_in_gb` will be ignored after the creation of the server.
4101
+ > **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.
4102
+ It is possible to increase `root_volume.size_in_gb` for SBS volumes, but they cannot be resized down without recreating the server.
3994
4103
  """
3995
4104
  return pulumi.get(self, "sbs_iops")
3996
4105
 
@@ -4392,8 +4501,8 @@ class IpamIpCustomResource(dict):
4392
4501
  mac_address: _builtins.str,
4393
4502
  name: Optional[_builtins.str] = None):
4394
4503
  """
4395
- :param _builtins.str mac_address: The MAC address of the resource the IP is attached to.
4396
- :param _builtins.str name: The name of the resource the IP is attached to.
4504
+ :param _builtins.str mac_address: The MAC address of the custom resource.
4505
+ :param _builtins.str name: When the resource is in a Private Network, a DNS record is available to resolve the resource name.
4397
4506
  """
4398
4507
  pulumi.set(__self__, "mac_address", mac_address)
4399
4508
  if name is not None:
@@ -4403,7 +4512,7 @@ class IpamIpCustomResource(dict):
4403
4512
  @pulumi.getter(name="macAddress")
4404
4513
  def mac_address(self) -> _builtins.str:
4405
4514
  """
4406
- The MAC address of the resource the IP is attached to.
4515
+ The MAC address of the custom resource.
4407
4516
  """
4408
4517
  return pulumi.get(self, "mac_address")
4409
4518
 
@@ -4411,7 +4520,7 @@ class IpamIpCustomResource(dict):
4411
4520
  @pulumi.getter
4412
4521
  def name(self) -> Optional[_builtins.str]:
4413
4522
  """
4414
- The name of the resource the IP is attached to.
4523
+ When the resource is in a Private Network, a DNS record is available to resolve the resource name.
4415
4524
  """
4416
4525
  return pulumi.get(self, "name")
4417
4526
 
@@ -6092,8 +6201,8 @@ class LoadbalancerPrivateNetwork(dict):
6092
6201
  suggest = "dhcp_config"
6093
6202
  elif key == "ipamIds":
6094
6203
  suggest = "ipam_ids"
6095
- elif key == "staticConfig":
6096
- suggest = "static_config"
6204
+ elif key == "staticConfigs":
6205
+ suggest = "static_configs"
6097
6206
 
6098
6207
  if suggest:
6099
6208
  pulumi.log.warn(f"Key '{key}' not found in LoadbalancerPrivateNetwork. Access the value via the '{suggest}' property getter instead.")
@@ -6110,7 +6219,7 @@ class LoadbalancerPrivateNetwork(dict):
6110
6219
  private_network_id: _builtins.str,
6111
6220
  dhcp_config: Optional[_builtins.bool] = None,
6112
6221
  ipam_ids: Optional[_builtins.str] = None,
6113
- static_config: Optional[_builtins.str] = None,
6222
+ static_configs: Optional[Sequence[_builtins.str]] = None,
6114
6223
  status: Optional[_builtins.str] = None,
6115
6224
  zone: Optional[_builtins.str] = None):
6116
6225
  """
@@ -6118,7 +6227,7 @@ class LoadbalancerPrivateNetwork(dict):
6118
6227
  - > **Important:** Updates to `private_network` will recreate the attachment.
6119
6228
  :param _builtins.bool dhcp_config: Set to true if you want to let DHCP assign IP addresses
6120
6229
  :param _builtins.str ipam_ids: IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
6121
- :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
6230
+ :param Sequence[_builtins.str] static_configs: Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
6122
6231
  :param _builtins.str status: The status of the private network connection.
6123
6232
  :param _builtins.str zone: `zone`) The zone of the Load Balancer.
6124
6233
  """
@@ -6127,8 +6236,8 @@ class LoadbalancerPrivateNetwork(dict):
6127
6236
  pulumi.set(__self__, "dhcp_config", dhcp_config)
6128
6237
  if ipam_ids is not None:
6129
6238
  pulumi.set(__self__, "ipam_ids", ipam_ids)
6130
- if static_config is not None:
6131
- pulumi.set(__self__, "static_config", static_config)
6239
+ if static_configs is not None:
6240
+ pulumi.set(__self__, "static_configs", static_configs)
6132
6241
  if status is not None:
6133
6242
  pulumi.set(__self__, "status", status)
6134
6243
  if zone is not None:
@@ -6161,13 +6270,13 @@ class LoadbalancerPrivateNetwork(dict):
6161
6270
  return pulumi.get(self, "ipam_ids")
6162
6271
 
6163
6272
  @_builtins.property
6164
- @pulumi.getter(name="staticConfig")
6273
+ @pulumi.getter(name="staticConfigs")
6165
6274
  @_utilities.deprecated("""static_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
6166
- def static_config(self) -> Optional[_builtins.str]:
6275
+ def static_configs(self) -> Optional[Sequence[_builtins.str]]:
6167
6276
  """
6168
6277
  Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
6169
6278
  """
6170
- return pulumi.get(self, "static_config")
6279
+ return pulumi.get(self, "static_configs")
6171
6280
 
6172
6281
  @_builtins.property
6173
6282
  @pulumi.getter
@@ -9407,6 +9516,57 @@ class GetDatabaseInstanceReadReplicaResult(dict):
9407
9516
  return pulumi.get(self, "port")
9408
9517
 
9409
9518
 
9519
+ @pulumi.output_type
9520
+ class GetDatabaseInstanceUpgradableVersionResult(dict):
9521
+ def __init__(__self__, *,
9522
+ id: _builtins.str,
9523
+ minor_version: _builtins.str,
9524
+ name: _builtins.str,
9525
+ version: _builtins.str):
9526
+ """
9527
+ :param _builtins.str id: The ID of the Database Instance.
9528
+ :param _builtins.str minor_version: Minor version string
9529
+ :param _builtins.str name: The name of the RDB instance.
9530
+ :param _builtins.str version: Version string
9531
+ """
9532
+ pulumi.set(__self__, "id", id)
9533
+ pulumi.set(__self__, "minor_version", minor_version)
9534
+ pulumi.set(__self__, "name", name)
9535
+ pulumi.set(__self__, "version", version)
9536
+
9537
+ @_builtins.property
9538
+ @pulumi.getter
9539
+ def id(self) -> _builtins.str:
9540
+ """
9541
+ The ID of the Database Instance.
9542
+ """
9543
+ return pulumi.get(self, "id")
9544
+
9545
+ @_builtins.property
9546
+ @pulumi.getter(name="minorVersion")
9547
+ def minor_version(self) -> _builtins.str:
9548
+ """
9549
+ Minor version string
9550
+ """
9551
+ return pulumi.get(self, "minor_version")
9552
+
9553
+ @_builtins.property
9554
+ @pulumi.getter
9555
+ def name(self) -> _builtins.str:
9556
+ """
9557
+ The name of the RDB instance.
9558
+ """
9559
+ return pulumi.get(self, "name")
9560
+
9561
+ @_builtins.property
9562
+ @pulumi.getter
9563
+ def version(self) -> _builtins.str:
9564
+ """
9565
+ Version string
9566
+ """
9567
+ return pulumi.get(self, "version")
9568
+
9569
+
9410
9570
  @pulumi.output_type
9411
9571
  class GetDomainRecordGeoIpResult(dict):
9412
9572
  def __init__(__self__, *,
@@ -9992,14 +10152,43 @@ class GetInstanceSecurityGroupOutboundRuleResult(dict):
9992
10152
  return pulumi.get(self, "protocol")
9993
10153
 
9994
10154
 
10155
+ @pulumi.output_type
10156
+ class GetInstanceServerFilesystemResult(dict):
10157
+ def __init__(__self__, *,
10158
+ filesystem_id: _builtins.str,
10159
+ status: _builtins.str):
10160
+ """
10161
+ :param _builtins.str filesystem_id: The filesystem ID attached to the server
10162
+ :param _builtins.str status: The state of the filesystem
10163
+ """
10164
+ pulumi.set(__self__, "filesystem_id", filesystem_id)
10165
+ pulumi.set(__self__, "status", status)
10166
+
10167
+ @_builtins.property
10168
+ @pulumi.getter(name="filesystemId")
10169
+ def filesystem_id(self) -> _builtins.str:
10170
+ """
10171
+ The filesystem ID attached to the server
10172
+ """
10173
+ return pulumi.get(self, "filesystem_id")
10174
+
10175
+ @_builtins.property
10176
+ @pulumi.getter
10177
+ def status(self) -> _builtins.str:
10178
+ """
10179
+ The state of the filesystem
10180
+ """
10181
+ return pulumi.get(self, "status")
10182
+
10183
+
9995
10184
  @pulumi.output_type
9996
10185
  class GetInstanceServerPrivateIpResult(dict):
9997
10186
  def __init__(__self__, *,
9998
10187
  address: _builtins.str,
9999
10188
  id: _builtins.str):
10000
10189
  """
10001
- :param _builtins.str address: The address of the IP
10002
- :param _builtins.str id: The ID of the IP
10190
+ :param _builtins.str address: The private IP address.
10191
+ :param _builtins.str id: The ID of the IP address resource.
10003
10192
  """
10004
10193
  pulumi.set(__self__, "address", address)
10005
10194
  pulumi.set(__self__, "id", id)
@@ -10008,7 +10197,7 @@ class GetInstanceServerPrivateIpResult(dict):
10008
10197
  @pulumi.getter
10009
10198
  def address(self) -> _builtins.str:
10010
10199
  """
10011
- The address of the IP
10200
+ The private IP address.
10012
10201
  """
10013
10202
  return pulumi.get(self, "address")
10014
10203
 
@@ -10016,7 +10205,7 @@ class GetInstanceServerPrivateIpResult(dict):
10016
10205
  @pulumi.getter
10017
10206
  def id(self) -> _builtins.str:
10018
10207
  """
10019
- The ID of the IP
10208
+ The ID of the IP address resource.
10020
10209
  """
10021
10210
  return pulumi.get(self, "id")
10022
10211
 
@@ -10094,11 +10283,11 @@ class GetInstanceServerPublicIpResult(dict):
10094
10283
  netmask: _builtins.str,
10095
10284
  provisioning_mode: _builtins.str):
10096
10285
  """
10097
- :param _builtins.str address: The address of the IP
10286
+ :param _builtins.str address: The private IP address.
10098
10287
  :param _builtins.bool dynamic: Whether the IP is dynamic
10099
10288
  :param _builtins.str family: IP address family (inet or inet6)
10100
10289
  :param _builtins.str gateway: Gateway's IP address
10101
- :param _builtins.str id: The ID of the IP
10290
+ :param _builtins.str id: The ID of the IP address resource.
10102
10291
  :param _builtins.str netmask: CIDR netmask
10103
10292
  :param _builtins.str provisioning_mode: Provisioning mode of the IP address
10104
10293
  """
@@ -10114,7 +10303,7 @@ class GetInstanceServerPublicIpResult(dict):
10114
10303
  @pulumi.getter
10115
10304
  def address(self) -> _builtins.str:
10116
10305
  """
10117
- The address of the IP
10306
+ The private IP address.
10118
10307
  """
10119
10308
  return pulumi.get(self, "address")
10120
10309
 
@@ -10146,7 +10335,7 @@ class GetInstanceServerPublicIpResult(dict):
10146
10335
  @pulumi.getter
10147
10336
  def id(self) -> _builtins.str:
10148
10337
  """
10149
- The ID of the IP
10338
+ The ID of the IP address resource.
10150
10339
  """
10151
10340
  return pulumi.get(self, "id")
10152
10341
 
@@ -10257,20 +10446,14 @@ class GetInstanceServersServerResult(dict):
10257
10446
  boot_type: _builtins.str,
10258
10447
  bootscript_id: _builtins.str,
10259
10448
  enable_dynamic_ip: _builtins.bool,
10260
- enable_ipv6: _builtins.bool,
10261
10449
  id: _builtins.str,
10262
10450
  image: _builtins.str,
10263
- ipv6_address: _builtins.str,
10264
- ipv6_gateway: _builtins.str,
10265
- ipv6_prefix_length: _builtins.int,
10266
10451
  name: _builtins.str,
10267
10452
  organization_id: _builtins.str,
10268
10453
  placement_group_id: _builtins.str,
10269
10454
  placement_group_policy_respected: _builtins.bool,
10270
- private_ip: _builtins.str,
10271
10455
  private_ips: Sequence['outputs.GetInstanceServersServerPrivateIpResult'],
10272
10456
  project_id: _builtins.str,
10273
- public_ip: _builtins.str,
10274
10457
  public_ips: Sequence['outputs.GetInstanceServersServerPublicIpResult'],
10275
10458
  security_group_id: _builtins.str,
10276
10459
  state: _builtins.str,
@@ -10281,20 +10464,14 @@ class GetInstanceServersServerResult(dict):
10281
10464
  :param _builtins.str boot_type: The boot Type of the server. Possible values are: `local`, `bootscript` or `rescue`.
10282
10465
  :param _builtins.str bootscript_id: UUID of the bootscript
10283
10466
  :param _builtins.bool enable_dynamic_ip: If true a dynamic IP will be attached to the server.
10284
- :param _builtins.bool enable_ipv6: Determines if IPv6 is enabled for the server.
10285
10467
  :param _builtins.str id: The ID of the IP
10286
10468
  :param _builtins.str image: The UUID or the label of the base image used by the server.
10287
- :param _builtins.str ipv6_address: The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true )
10288
- :param _builtins.str ipv6_gateway: The ipv6 gateway address. ( Only set when enable_ipv6 is set to true )
10289
- :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 )
10290
10469
  :param _builtins.str name: The server name used as filter. Servers with a name like it are listed.
10291
10470
  :param _builtins.str organization_id: The organization ID the server is associated with.
10292
10471
  :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.
10293
10472
  :param _builtins.bool placement_group_policy_respected: Whether the placement group policy respected or not
10294
- :param _builtins.str private_ip: The Scaleway internal IP address of the server.
10295
10473
  :param Sequence['GetInstanceServersServerPrivateIpArgs'] private_ips: The list of private IPv4 and IPv6 addresses associated with the server.
10296
10474
  :param _builtins.str project_id: The ID of the project the server is associated with.
10297
- :param _builtins.str public_ip: The public IP address of the server.
10298
10475
  :param Sequence['GetInstanceServersServerPublicIpArgs'] public_ips: The list of public IPs of the server
10299
10476
  :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.
10300
10477
  :param _builtins.str state: The state of the server. Possible values are: `started`, `stopped` or `standby`.
@@ -10305,20 +10482,14 @@ class GetInstanceServersServerResult(dict):
10305
10482
  pulumi.set(__self__, "boot_type", boot_type)
10306
10483
  pulumi.set(__self__, "bootscript_id", bootscript_id)
10307
10484
  pulumi.set(__self__, "enable_dynamic_ip", enable_dynamic_ip)
10308
- pulumi.set(__self__, "enable_ipv6", enable_ipv6)
10309
10485
  pulumi.set(__self__, "id", id)
10310
10486
  pulumi.set(__self__, "image", image)
10311
- pulumi.set(__self__, "ipv6_address", ipv6_address)
10312
- pulumi.set(__self__, "ipv6_gateway", ipv6_gateway)
10313
- pulumi.set(__self__, "ipv6_prefix_length", ipv6_prefix_length)
10314
10487
  pulumi.set(__self__, "name", name)
10315
10488
  pulumi.set(__self__, "organization_id", organization_id)
10316
10489
  pulumi.set(__self__, "placement_group_id", placement_group_id)
10317
10490
  pulumi.set(__self__, "placement_group_policy_respected", placement_group_policy_respected)
10318
- pulumi.set(__self__, "private_ip", private_ip)
10319
10491
  pulumi.set(__self__, "private_ips", private_ips)
10320
10492
  pulumi.set(__self__, "project_id", project_id)
10321
- pulumi.set(__self__, "public_ip", public_ip)
10322
10493
  pulumi.set(__self__, "public_ips", public_ips)
10323
10494
  pulumi.set(__self__, "security_group_id", security_group_id)
10324
10495
  pulumi.set(__self__, "state", state)
@@ -10352,14 +10523,6 @@ class GetInstanceServersServerResult(dict):
10352
10523
  """
10353
10524
  return pulumi.get(self, "enable_dynamic_ip")
10354
10525
 
10355
- @_builtins.property
10356
- @pulumi.getter(name="enableIpv6")
10357
- def enable_ipv6(self) -> _builtins.bool:
10358
- """
10359
- Determines if IPv6 is enabled for the server.
10360
- """
10361
- return pulumi.get(self, "enable_ipv6")
10362
-
10363
10526
  @_builtins.property
10364
10527
  @pulumi.getter
10365
10528
  def id(self) -> _builtins.str:
@@ -10376,30 +10539,6 @@ class GetInstanceServersServerResult(dict):
10376
10539
  """
10377
10540
  return pulumi.get(self, "image")
10378
10541
 
10379
- @_builtins.property
10380
- @pulumi.getter(name="ipv6Address")
10381
- def ipv6_address(self) -> _builtins.str:
10382
- """
10383
- The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true )
10384
- """
10385
- return pulumi.get(self, "ipv6_address")
10386
-
10387
- @_builtins.property
10388
- @pulumi.getter(name="ipv6Gateway")
10389
- def ipv6_gateway(self) -> _builtins.str:
10390
- """
10391
- The ipv6 gateway address. ( Only set when enable_ipv6 is set to true )
10392
- """
10393
- return pulumi.get(self, "ipv6_gateway")
10394
-
10395
- @_builtins.property
10396
- @pulumi.getter(name="ipv6PrefixLength")
10397
- def ipv6_prefix_length(self) -> _builtins.int:
10398
- """
10399
- The prefix length of the ipv6 subnet routed to the server. ( Only set when enable_ipv6 is set to true )
10400
- """
10401
- return pulumi.get(self, "ipv6_prefix_length")
10402
-
10403
10542
  @_builtins.property
10404
10543
  @pulumi.getter
10405
10544
  def name(self) -> _builtins.str:
@@ -10432,14 +10571,6 @@ class GetInstanceServersServerResult(dict):
10432
10571
  """
10433
10572
  return pulumi.get(self, "placement_group_policy_respected")
10434
10573
 
10435
- @_builtins.property
10436
- @pulumi.getter(name="privateIp")
10437
- def private_ip(self) -> _builtins.str:
10438
- """
10439
- The Scaleway internal IP address of the server.
10440
- """
10441
- return pulumi.get(self, "private_ip")
10442
-
10443
10574
  @_builtins.property
10444
10575
  @pulumi.getter(name="privateIps")
10445
10576
  def private_ips(self) -> Sequence['outputs.GetInstanceServersServerPrivateIpResult']:
@@ -10456,15 +10587,6 @@ class GetInstanceServersServerResult(dict):
10456
10587
  """
10457
10588
  return pulumi.get(self, "project_id")
10458
10589
 
10459
- @_builtins.property
10460
- @pulumi.getter(name="publicIp")
10461
- @_utilities.deprecated("""Use public_ips instead""")
10462
- def public_ip(self) -> _builtins.str:
10463
- """
10464
- The public IP address of the server.
10465
- """
10466
- return pulumi.get(self, "public_ip")
10467
-
10468
10590
  @_builtins.property
10469
10591
  @pulumi.getter(name="publicIps")
10470
10592
  def public_ips(self) -> Sequence['outputs.GetInstanceServersServerPublicIpResult']: