pulumiverse-scaleway 1.35.0a1759824076__py3-none-any.whl → 1.35.0a1760445454__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 (499) hide show
  1. pulumiverse_scaleway/__init__.py +1 -1
  2. pulumiverse_scaleway/_inputs.py +2711 -2712
  3. pulumiverse_scaleway/account/__init__.py +1 -1
  4. pulumiverse_scaleway/account/get_availability_zones.py +11 -12
  5. pulumiverse_scaleway/account/get_project.py +27 -28
  6. pulumiverse_scaleway/account/get_projects.py +18 -19
  7. pulumiverse_scaleway/account/get_ssh_key.py +33 -34
  8. pulumiverse_scaleway/account/outputs.py +25 -26
  9. pulumiverse_scaleway/account/project.py +70 -71
  10. pulumiverse_scaleway/account/ssh_key.py +105 -106
  11. pulumiverse_scaleway/account_project.py +70 -71
  12. pulumiverse_scaleway/account_ssh_key.py +105 -106
  13. pulumiverse_scaleway/apple_silicon_server.py +216 -217
  14. pulumiverse_scaleway/applesilicon/__init__.py +1 -1
  15. pulumiverse_scaleway/applesilicon/_inputs.py +50 -51
  16. pulumiverse_scaleway/applesilicon/outputs.py +34 -35
  17. pulumiverse_scaleway/applesilicon/server.py +216 -217
  18. pulumiverse_scaleway/autoscaling/__init__.py +1 -1
  19. pulumiverse_scaleway/autoscaling/_inputs.py +130 -131
  20. pulumiverse_scaleway/autoscaling/instance_group.py +127 -128
  21. pulumiverse_scaleway/autoscaling/instance_policy.py +140 -141
  22. pulumiverse_scaleway/autoscaling/instance_template.py +235 -236
  23. pulumiverse_scaleway/autoscaling/outputs.py +88 -89
  24. pulumiverse_scaleway/baremetal_server.py +350 -351
  25. pulumiverse_scaleway/billing/__init__.py +1 -1
  26. pulumiverse_scaleway/billing/get_consumptions.py +14 -15
  27. pulumiverse_scaleway/billing/get_invoices.py +24 -25
  28. pulumiverse_scaleway/billing/outputs.py +95 -96
  29. pulumiverse_scaleway/block/__init__.py +1 -1
  30. pulumiverse_scaleway/block/_inputs.py +25 -26
  31. pulumiverse_scaleway/block/get_snapshot.py +37 -38
  32. pulumiverse_scaleway/block/get_volume.py +37 -38
  33. pulumiverse_scaleway/block/outputs.py +33 -34
  34. pulumiverse_scaleway/block/snapshot.py +92 -93
  35. pulumiverse_scaleway/block/volume.py +137 -138
  36. pulumiverse_scaleway/block_snapshot.py +92 -93
  37. pulumiverse_scaleway/block_volume.py +137 -138
  38. pulumiverse_scaleway/cockpit.py +48 -49
  39. pulumiverse_scaleway/cockpit_alert_manager.py +64 -65
  40. pulumiverse_scaleway/cockpit_grafana_user.py +70 -71
  41. pulumiverse_scaleway/cockpit_source.py +140 -141
  42. pulumiverse_scaleway/cockpit_token.py +82 -83
  43. pulumiverse_scaleway/config/__init__.py +1 -1
  44. pulumiverse_scaleway/config/__init__.pyi +1 -2
  45. pulumiverse_scaleway/config/vars.py +9 -10
  46. pulumiverse_scaleway/container.py +476 -477
  47. pulumiverse_scaleway/container_cron.py +95 -96
  48. pulumiverse_scaleway/container_domain.py +61 -62
  49. pulumiverse_scaleway/container_namespace.py +181 -182
  50. pulumiverse_scaleway/container_token.py +95 -96
  51. pulumiverse_scaleway/container_trigger.py +75 -76
  52. pulumiverse_scaleway/containers/__init__.py +1 -1
  53. pulumiverse_scaleway/containers/_inputs.py +86 -87
  54. pulumiverse_scaleway/containers/container.py +476 -477
  55. pulumiverse_scaleway/containers/cron.py +95 -96
  56. pulumiverse_scaleway/containers/domain.py +61 -62
  57. pulumiverse_scaleway/containers/get_container.py +79 -80
  58. pulumiverse_scaleway/containers/get_namespace.py +45 -46
  59. pulumiverse_scaleway/containers/namespace.py +181 -182
  60. pulumiverse_scaleway/containers/outputs.py +83 -84
  61. pulumiverse_scaleway/containers/token.py +95 -96
  62. pulumiverse_scaleway/containers/trigger.py +75 -76
  63. pulumiverse_scaleway/database.py +79 -80
  64. pulumiverse_scaleway/database_acl.py +38 -39
  65. pulumiverse_scaleway/database_backup.py +122 -123
  66. pulumiverse_scaleway/database_instance.py +374 -375
  67. pulumiverse_scaleway/database_privilege.py +86 -87
  68. pulumiverse_scaleway/database_read_replica.py +58 -59
  69. pulumiverse_scaleway/database_user.py +86 -87
  70. pulumiverse_scaleway/databases/__init__.py +1 -1
  71. pulumiverse_scaleway/databases/_inputs.py +227 -228
  72. pulumiverse_scaleway/databases/acl.py +38 -39
  73. pulumiverse_scaleway/databases/database.py +79 -80
  74. pulumiverse_scaleway/databases/database_backup.py +122 -123
  75. pulumiverse_scaleway/databases/get_acl.py +16 -17
  76. pulumiverse_scaleway/databases/get_database.py +25 -26
  77. pulumiverse_scaleway/databases/get_database_backup.py +45 -46
  78. pulumiverse_scaleway/databases/get_instance.py +72 -73
  79. pulumiverse_scaleway/databases/get_privilege.py +29 -30
  80. pulumiverse_scaleway/databases/instance.py +374 -375
  81. pulumiverse_scaleway/databases/outputs.py +247 -248
  82. pulumiverse_scaleway/databases/privilege.py +86 -87
  83. pulumiverse_scaleway/databases/read_replica.py +58 -59
  84. pulumiverse_scaleway/databases/serverless_database.py +95 -96
  85. pulumiverse_scaleway/databases/snapshot.py +123 -124
  86. pulumiverse_scaleway/databases/user.py +86 -87
  87. pulumiverse_scaleway/domain/__init__.py +1 -1
  88. pulumiverse_scaleway/domain/_inputs.py +660 -661
  89. pulumiverse_scaleway/domain/get_record.py +51 -52
  90. pulumiverse_scaleway/domain/get_zone.py +33 -34
  91. pulumiverse_scaleway/domain/outputs.py +500 -501
  92. pulumiverse_scaleway/domain/record.py +150 -151
  93. pulumiverse_scaleway/domain/registration.py +121 -122
  94. pulumiverse_scaleway/domain/zone.py +106 -107
  95. pulumiverse_scaleway/domain_record.py +150 -151
  96. pulumiverse_scaleway/domain_zone.py +106 -107
  97. pulumiverse_scaleway/edge_services_backend_stage.py +59 -60
  98. pulumiverse_scaleway/edge_services_cache_stage.py +158 -159
  99. pulumiverse_scaleway/edge_services_dns_stage.py +130 -131
  100. pulumiverse_scaleway/edge_services_head_stage.py +35 -36
  101. pulumiverse_scaleway/edge_services_pipeline.py +79 -80
  102. pulumiverse_scaleway/edge_services_plan.py +35 -36
  103. pulumiverse_scaleway/edge_services_route_stage.py +73 -74
  104. pulumiverse_scaleway/edge_services_tls_stage.py +150 -151
  105. pulumiverse_scaleway/edge_services_waf_stage.py +104 -105
  106. pulumiverse_scaleway/elasticmetal/__init__.py +1 -1
  107. pulumiverse_scaleway/elasticmetal/_inputs.py +146 -147
  108. pulumiverse_scaleway/elasticmetal/get_ip.py +41 -42
  109. pulumiverse_scaleway/elasticmetal/get_ips.py +30 -31
  110. pulumiverse_scaleway/elasticmetal/get_offer.py +40 -41
  111. pulumiverse_scaleway/elasticmetal/get_option.py +23 -24
  112. pulumiverse_scaleway/elasticmetal/get_os.py +27 -28
  113. pulumiverse_scaleway/elasticmetal/get_partition_schema.py +35 -36
  114. pulumiverse_scaleway/elasticmetal/get_server.py +69 -70
  115. pulumiverse_scaleway/elasticmetal/ip.py +165 -166
  116. pulumiverse_scaleway/elasticmetal/ip_mac_address.py +105 -106
  117. pulumiverse_scaleway/elasticmetal/outputs.py +312 -312
  118. pulumiverse_scaleway/elasticmetal/server.py +350 -351
  119. pulumiverse_scaleway/file_filesystem.py +131 -132
  120. pulumiverse_scaleway/flexible_ip.py +165 -166
  121. pulumiverse_scaleway/flexible_ip_mac_address.py +105 -106
  122. pulumiverse_scaleway/function.py +381 -382
  123. pulumiverse_scaleway/function_cron.py +95 -96
  124. pulumiverse_scaleway/function_domain.py +61 -62
  125. pulumiverse_scaleway/function_namespace.py +164 -165
  126. pulumiverse_scaleway/function_token.py +95 -96
  127. pulumiverse_scaleway/function_trigger.py +75 -76
  128. pulumiverse_scaleway/functions/__init__.py +1 -1
  129. pulumiverse_scaleway/functions/_inputs.py +49 -50
  130. pulumiverse_scaleway/functions/cron.py +95 -96
  131. pulumiverse_scaleway/functions/domain.py +61 -62
  132. pulumiverse_scaleway/functions/function.py +381 -382
  133. pulumiverse_scaleway/functions/get_function.py +73 -74
  134. pulumiverse_scaleway/functions/get_namespace.py +43 -44
  135. pulumiverse_scaleway/functions/namespace.py +164 -165
  136. pulumiverse_scaleway/functions/outputs.py +33 -34
  137. pulumiverse_scaleway/functions/token.py +95 -96
  138. pulumiverse_scaleway/functions/trigger.py +75 -76
  139. pulumiverse_scaleway/get_account_project.py +27 -28
  140. pulumiverse_scaleway/get_account_ssh_key.py +33 -34
  141. pulumiverse_scaleway/get_availability_zones.py +11 -12
  142. pulumiverse_scaleway/get_baremetal_offer.py +40 -41
  143. pulumiverse_scaleway/get_baremetal_option.py +23 -24
  144. pulumiverse_scaleway/get_baremetal_os.py +27 -28
  145. pulumiverse_scaleway/get_baremetal_server.py +69 -70
  146. pulumiverse_scaleway/get_billing_consumptions.py +14 -15
  147. pulumiverse_scaleway/get_billing_invoices.py +24 -25
  148. pulumiverse_scaleway/get_block_snapshot.py +37 -38
  149. pulumiverse_scaleway/get_block_volume.py +37 -38
  150. pulumiverse_scaleway/get_cockpit.py +15 -16
  151. pulumiverse_scaleway/get_cockpit_source.py +49 -50
  152. pulumiverse_scaleway/get_config.py +23 -24
  153. pulumiverse_scaleway/get_container.py +79 -80
  154. pulumiverse_scaleway/get_container_namespace.py +45 -46
  155. pulumiverse_scaleway/get_database.py +25 -26
  156. pulumiverse_scaleway/get_database_acl.py +16 -17
  157. pulumiverse_scaleway/get_database_backup.py +45 -46
  158. pulumiverse_scaleway/get_database_instance.py +72 -73
  159. pulumiverse_scaleway/get_database_privilege.py +29 -30
  160. pulumiverse_scaleway/get_domain_record.py +51 -52
  161. pulumiverse_scaleway/get_domain_zone.py +33 -34
  162. pulumiverse_scaleway/get_flexible_ip.py +41 -42
  163. pulumiverse_scaleway/get_flexible_ips.py +30 -31
  164. pulumiverse_scaleway/get_function.py +73 -74
  165. pulumiverse_scaleway/get_function_namespace.py +43 -44
  166. pulumiverse_scaleway/get_iam_api_key.py +27 -28
  167. pulumiverse_scaleway/get_iam_application.py +31 -32
  168. pulumiverse_scaleway/get_iam_group.py +35 -36
  169. pulumiverse_scaleway/get_iam_ssh_key.py +33 -34
  170. pulumiverse_scaleway/get_iam_user.py +27 -28
  171. pulumiverse_scaleway/get_instance_image.py +57 -58
  172. pulumiverse_scaleway/get_instance_ip.py +29 -30
  173. pulumiverse_scaleway/get_instance_placement_group.py +37 -38
  174. pulumiverse_scaleway/get_instance_private_nic.py +40 -41
  175. pulumiverse_scaleway/get_instance_security_group.py +45 -46
  176. pulumiverse_scaleway/get_instance_server.py +81 -82
  177. pulumiverse_scaleway/get_instance_servers.py +30 -31
  178. pulumiverse_scaleway/get_instance_snapshot.py +40 -41
  179. pulumiverse_scaleway/get_instance_volume.py +41 -42
  180. pulumiverse_scaleway/get_iot_device.py +45 -46
  181. pulumiverse_scaleway/get_iot_hub.py +59 -60
  182. pulumiverse_scaleway/get_ipam_ip.py +64 -65
  183. pulumiverse_scaleway/get_ipam_ips.py +55 -56
  184. pulumiverse_scaleway/get_k8s_version.py +21 -22
  185. pulumiverse_scaleway/get_kubernetes_cluster.py +63 -64
  186. pulumiverse_scaleway/get_kubernetes_node_pool.py +75 -76
  187. pulumiverse_scaleway/get_lb_acls.py +28 -29
  188. pulumiverse_scaleway/get_lb_backend.py +74 -75
  189. pulumiverse_scaleway/get_lb_backends.py +28 -29
  190. pulumiverse_scaleway/get_lb_frontend.py +44 -45
  191. pulumiverse_scaleway/get_lb_frontends.py +28 -29
  192. pulumiverse_scaleway/get_lb_ips.py +36 -37
  193. pulumiverse_scaleway/get_lb_route.py +25 -26
  194. pulumiverse_scaleway/get_lb_routes.py +22 -23
  195. pulumiverse_scaleway/get_lbs.py +30 -31
  196. pulumiverse_scaleway/get_loadbalancer.py +55 -56
  197. pulumiverse_scaleway/get_loadbalancer_certificate.py +35 -36
  198. pulumiverse_scaleway/get_loadbalancer_ip.py +39 -40
  199. pulumiverse_scaleway/get_marketplace_image.py +27 -28
  200. pulumiverse_scaleway/get_mnq_sns.py +17 -18
  201. pulumiverse_scaleway/get_mnq_sqs.py +17 -18
  202. pulumiverse_scaleway/get_mongo_db_instance.py +62 -63
  203. pulumiverse_scaleway/get_object_bucket.py +34 -35
  204. pulumiverse_scaleway/get_object_bucket_policy.py +21 -22
  205. pulumiverse_scaleway/get_redis_cluster.py +53 -54
  206. pulumiverse_scaleway/get_registry_image.py +47 -48
  207. pulumiverse_scaleway/get_registry_image_tag.py +43 -44
  208. pulumiverse_scaleway/get_registry_namespace.py +35 -36
  209. pulumiverse_scaleway/get_secret.py +57 -58
  210. pulumiverse_scaleway/get_secret_version.py +45 -46
  211. pulumiverse_scaleway/get_tem_domain.py +102 -70
  212. pulumiverse_scaleway/get_vpc.py +47 -48
  213. pulumiverse_scaleway/get_vpc_gateway_network.py +43 -44
  214. pulumiverse_scaleway/get_vpc_private_network.py +47 -48
  215. pulumiverse_scaleway/get_vpc_public_gateway.py +55 -56
  216. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +43 -44
  217. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +43 -44
  218. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +23 -24
  219. pulumiverse_scaleway/get_vpc_public_pat_rule.py +31 -32
  220. pulumiverse_scaleway/get_vpc_routes.py +46 -47
  221. pulumiverse_scaleway/get_vpcs.py +30 -31
  222. pulumiverse_scaleway/get_web_host_offer.py +33 -34
  223. pulumiverse_scaleway/get_webhosting.py +57 -58
  224. pulumiverse_scaleway/hosting/__init__.py +1 -1
  225. pulumiverse_scaleway/hosting/_inputs.py +80 -81
  226. pulumiverse_scaleway/hosting/get_hosting.py +57 -58
  227. pulumiverse_scaleway/hosting/get_offer.py +33 -34
  228. pulumiverse_scaleway/hosting/hosting.py +209 -210
  229. pulumiverse_scaleway/hosting/outputs.py +211 -212
  230. pulumiverse_scaleway/iam/__init__.py +1 -1
  231. pulumiverse_scaleway/iam/_inputs.py +25 -26
  232. pulumiverse_scaleway/iam/api_key.py +140 -141
  233. pulumiverse_scaleway/iam/application.py +96 -97
  234. pulumiverse_scaleway/iam/get_api_key.py +27 -28
  235. pulumiverse_scaleway/iam/get_application.py +31 -32
  236. pulumiverse_scaleway/iam/get_group.py +35 -36
  237. pulumiverse_scaleway/iam/get_ssh_key.py +33 -34
  238. pulumiverse_scaleway/iam/get_user.py +27 -28
  239. pulumiverse_scaleway/iam/group.py +138 -139
  240. pulumiverse_scaleway/iam/group_membership.py +52 -53
  241. pulumiverse_scaleway/iam/outputs.py +17 -18
  242. pulumiverse_scaleway/iam/policy.py +167 -168
  243. pulumiverse_scaleway/iam/ssh_key.py +105 -106
  244. pulumiverse_scaleway/iam/user.py +269 -270
  245. pulumiverse_scaleway/iam_api_key.py +140 -141
  246. pulumiverse_scaleway/iam_application.py +96 -97
  247. pulumiverse_scaleway/iam_group.py +138 -139
  248. pulumiverse_scaleway/iam_group_membership.py +52 -53
  249. pulumiverse_scaleway/iam_policy.py +167 -168
  250. pulumiverse_scaleway/iam_ssh_key.py +105 -106
  251. pulumiverse_scaleway/iam_user.py +269 -270
  252. pulumiverse_scaleway/inference/__init__.py +1 -1
  253. pulumiverse_scaleway/inference/_inputs.py +86 -87
  254. pulumiverse_scaleway/inference/deployment.py +225 -226
  255. pulumiverse_scaleway/inference/get_model.py +42 -43
  256. pulumiverse_scaleway/inference/model.py +160 -161
  257. pulumiverse_scaleway/inference/outputs.py +75 -76
  258. pulumiverse_scaleway/inference_deployment.py +225 -226
  259. pulumiverse_scaleway/instance/__init__.py +2 -1
  260. pulumiverse_scaleway/instance/_inputs.py +381 -382
  261. pulumiverse_scaleway/instance/get_image.py +57 -58
  262. pulumiverse_scaleway/instance/get_ip.py +29 -30
  263. pulumiverse_scaleway/instance/get_placement_group.py +37 -38
  264. pulumiverse_scaleway/instance/get_private_nic.py +40 -41
  265. pulumiverse_scaleway/instance/get_security_group.py +45 -46
  266. pulumiverse_scaleway/instance/get_server.py +81 -82
  267. pulumiverse_scaleway/instance/get_server_type.py +271 -0
  268. pulumiverse_scaleway/instance/get_servers.py +30 -31
  269. pulumiverse_scaleway/instance/get_snapshot.py +40 -41
  270. pulumiverse_scaleway/instance/get_volume.py +41 -42
  271. pulumiverse_scaleway/instance/image.py +184 -185
  272. pulumiverse_scaleway/instance/ip.py +114 -115
  273. pulumiverse_scaleway/instance/ip_reverse_dns.py +52 -53
  274. pulumiverse_scaleway/instance/outputs.py +660 -515
  275. pulumiverse_scaleway/instance/placement_group.py +121 -122
  276. pulumiverse_scaleway/instance/private_nic.py +115 -116
  277. pulumiverse_scaleway/instance/security_group.py +186 -187
  278. pulumiverse_scaleway/instance/security_group_rules.py +24 -25
  279. pulumiverse_scaleway/instance/server.py +433 -434
  280. pulumiverse_scaleway/instance/snapshot.py +133 -162
  281. pulumiverse_scaleway/instance/user_data.py +69 -70
  282. pulumiverse_scaleway/instance/volume.py +155 -177
  283. pulumiverse_scaleway/instance_image.py +184 -185
  284. pulumiverse_scaleway/instance_ip.py +114 -115
  285. pulumiverse_scaleway/instance_ip_reverse_dns.py +52 -53
  286. pulumiverse_scaleway/instance_placement_group.py +121 -122
  287. pulumiverse_scaleway/instance_private_nic.py +115 -116
  288. pulumiverse_scaleway/instance_security_group.py +186 -187
  289. pulumiverse_scaleway/instance_security_group_rules.py +24 -25
  290. pulumiverse_scaleway/instance_server.py +433 -434
  291. pulumiverse_scaleway/instance_snapshot.py +133 -162
  292. pulumiverse_scaleway/instance_user_data.py +69 -70
  293. pulumiverse_scaleway/instance_volume.py +155 -177
  294. pulumiverse_scaleway/iot/__init__.py +1 -1
  295. pulumiverse_scaleway/iot/_inputs.py +118 -119
  296. pulumiverse_scaleway/iot/device.py +154 -155
  297. pulumiverse_scaleway/iot/get_device.py +45 -46
  298. pulumiverse_scaleway/iot/get_hub.py +59 -60
  299. pulumiverse_scaleway/iot/hub.py +252 -253
  300. pulumiverse_scaleway/iot/network.py +113 -114
  301. pulumiverse_scaleway/iot/outputs.py +106 -107
  302. pulumiverse_scaleway/iot/route.py +87 -88
  303. pulumiverse_scaleway/iot_device.py +154 -155
  304. pulumiverse_scaleway/iot_hub.py +252 -253
  305. pulumiverse_scaleway/iot_network.py +113 -114
  306. pulumiverse_scaleway/iot_route.py +87 -88
  307. pulumiverse_scaleway/ipam/__init__.py +1 -1
  308. pulumiverse_scaleway/ipam/_inputs.py +103 -104
  309. pulumiverse_scaleway/ipam/get_ip.py +64 -65
  310. pulumiverse_scaleway/ipam/get_ips.py +55 -56
  311. pulumiverse_scaleway/ipam/ip.py +123 -124
  312. pulumiverse_scaleway/ipam/ip_reverse_dns.py +69 -70
  313. pulumiverse_scaleway/ipam/outputs.py +119 -120
  314. pulumiverse_scaleway/ipam_ip.py +123 -124
  315. pulumiverse_scaleway/ipam_ip_reverse_dns.py +69 -70
  316. pulumiverse_scaleway/job/__init__.py +1 -1
  317. pulumiverse_scaleway/job/_inputs.py +44 -45
  318. pulumiverse_scaleway/job/definition.py +177 -178
  319. pulumiverse_scaleway/job/outputs.py +30 -31
  320. pulumiverse_scaleway/job_definition.py +177 -178
  321. pulumiverse_scaleway/key_manager_key.py +203 -204
  322. pulumiverse_scaleway/kubernetes/__init__.py +1 -1
  323. pulumiverse_scaleway/kubernetes/_inputs.py +227 -228
  324. pulumiverse_scaleway/kubernetes/acl.py +55 -56
  325. pulumiverse_scaleway/kubernetes/cluster.py +296 -297
  326. pulumiverse_scaleway/kubernetes/get_cluster.py +63 -64
  327. pulumiverse_scaleway/kubernetes/get_pool.py +75 -76
  328. pulumiverse_scaleway/kubernetes/get_version.py +21 -22
  329. pulumiverse_scaleway/kubernetes/outputs.py +288 -289
  330. pulumiverse_scaleway/kubernetes/pool.py +374 -375
  331. pulumiverse_scaleway/kubernetes_cluster.py +296 -297
  332. pulumiverse_scaleway/kubernetes_node_pool.py +374 -375
  333. pulumiverse_scaleway/loadbalancer.py +246 -247
  334. pulumiverse_scaleway/loadbalancer_acl.py +93 -94
  335. pulumiverse_scaleway/loadbalancer_backend.py +493 -487
  336. pulumiverse_scaleway/loadbalancer_certificate.py +95 -96
  337. pulumiverse_scaleway/loadbalancer_frontend.py +201 -202
  338. pulumiverse_scaleway/loadbalancer_ip.py +122 -123
  339. pulumiverse_scaleway/loadbalancer_route.py +121 -122
  340. pulumiverse_scaleway/loadbalancers/__init__.py +1 -1
  341. pulumiverse_scaleway/loadbalancers/_inputs.py +273 -274
  342. pulumiverse_scaleway/loadbalancers/acl.py +93 -94
  343. pulumiverse_scaleway/loadbalancers/backend.py +493 -487
  344. pulumiverse_scaleway/loadbalancers/certificate.py +95 -96
  345. pulumiverse_scaleway/loadbalancers/frontend.py +201 -202
  346. pulumiverse_scaleway/loadbalancers/get_acls.py +28 -29
  347. pulumiverse_scaleway/loadbalancers/get_backend.py +74 -75
  348. pulumiverse_scaleway/loadbalancers/get_backends.py +28 -29
  349. pulumiverse_scaleway/loadbalancers/get_certificate.py +35 -36
  350. pulumiverse_scaleway/loadbalancers/get_frontend.py +44 -45
  351. pulumiverse_scaleway/loadbalancers/get_frontends.py +28 -29
  352. pulumiverse_scaleway/loadbalancers/get_ip.py +39 -40
  353. pulumiverse_scaleway/loadbalancers/get_ips.py +36 -37
  354. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +55 -56
  355. pulumiverse_scaleway/loadbalancers/get_load_balancers.py +30 -31
  356. pulumiverse_scaleway/loadbalancers/get_route.py +25 -26
  357. pulumiverse_scaleway/loadbalancers/get_routes.py +22 -23
  358. pulumiverse_scaleway/loadbalancers/ip.py +122 -123
  359. pulumiverse_scaleway/loadbalancers/load_balancer.py +246 -247
  360. pulumiverse_scaleway/loadbalancers/outputs.py +748 -745
  361. pulumiverse_scaleway/loadbalancers/route.py +121 -122
  362. pulumiverse_scaleway/mnq/__init__.py +1 -1
  363. pulumiverse_scaleway/mnq/_inputs.py +49 -50
  364. pulumiverse_scaleway/mnq/get_sns.py +17 -18
  365. pulumiverse_scaleway/mnq/get_sqs.py +17 -18
  366. pulumiverse_scaleway/mnq/nats_account.py +61 -62
  367. pulumiverse_scaleway/mnq/nats_credentials.py +61 -62
  368. pulumiverse_scaleway/mnq/outputs.py +33 -34
  369. pulumiverse_scaleway/mnq/sns.py +44 -45
  370. pulumiverse_scaleway/mnq/sns_credentials.py +73 -74
  371. pulumiverse_scaleway/mnq/sns_topic.py +172 -173
  372. pulumiverse_scaleway/mnq/sns_topic_subscription.py +180 -181
  373. pulumiverse_scaleway/mnq/sqs.py +44 -45
  374. pulumiverse_scaleway/mnq/sqs_credentials.py +73 -74
  375. pulumiverse_scaleway/mnq/sqs_queue.py +243 -244
  376. pulumiverse_scaleway/mnq_nats_account.py +61 -62
  377. pulumiverse_scaleway/mnq_nats_credentials.py +61 -62
  378. pulumiverse_scaleway/mnq_sns.py +44 -45
  379. pulumiverse_scaleway/mnq_sns_credentials.py +73 -74
  380. pulumiverse_scaleway/mnq_sns_topic.py +172 -173
  381. pulumiverse_scaleway/mnq_sns_topic_subscription.py +180 -181
  382. pulumiverse_scaleway/mnq_sqs.py +44 -45
  383. pulumiverse_scaleway/mnq_sqs_credentials.py +73 -74
  384. pulumiverse_scaleway/mnq_sqs_queue.py +243 -244
  385. pulumiverse_scaleway/mongo_db_instance.py +309 -310
  386. pulumiverse_scaleway/mongo_db_snapshot.py +123 -124
  387. pulumiverse_scaleway/mongodb/__init__.py +1 -1
  388. pulumiverse_scaleway/mongodb/_inputs.py +80 -81
  389. pulumiverse_scaleway/mongodb/get_instance.py +62 -63
  390. pulumiverse_scaleway/mongodb/instance.py +309 -310
  391. pulumiverse_scaleway/mongodb/outputs.py +95 -96
  392. pulumiverse_scaleway/mongodb/snapshot.py +123 -124
  393. pulumiverse_scaleway/mongodb/user.py +72 -73
  394. pulumiverse_scaleway/network/__init__.py +1 -1
  395. pulumiverse_scaleway/network/_inputs.py +166 -167
  396. pulumiverse_scaleway/network/acl.py +72 -73
  397. pulumiverse_scaleway/network/gateway_network.py +179 -180
  398. pulumiverse_scaleway/network/get_gateway_network.py +43 -44
  399. pulumiverse_scaleway/network/get_private_network.py +47 -48
  400. pulumiverse_scaleway/network/get_public_gateway.py +55 -56
  401. pulumiverse_scaleway/network/get_public_gateway_dhcp.py +43 -44
  402. pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +43 -44
  403. pulumiverse_scaleway/network/get_public_gateway_ip.py +23 -24
  404. pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +31 -32
  405. pulumiverse_scaleway/network/get_routes.py +46 -47
  406. pulumiverse_scaleway/network/get_vpc.py +47 -48
  407. pulumiverse_scaleway/network/get_vpcs.py +30 -31
  408. pulumiverse_scaleway/network/outputs.py +288 -287
  409. pulumiverse_scaleway/network/private_network.py +170 -171
  410. pulumiverse_scaleway/network/public_gateway.py +259 -260
  411. pulumiverse_scaleway/network/public_gateway_dhcp.py +283 -284
  412. pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +105 -106
  413. pulumiverse_scaleway/network/public_gateway_ip.py +105 -106
  414. pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +52 -53
  415. pulumiverse_scaleway/network/public_gateway_pat_rule.py +130 -131
  416. pulumiverse_scaleway/network/route.py +138 -139
  417. pulumiverse_scaleway/network/vpc.py +139 -140
  418. pulumiverse_scaleway/object/__init__.py +1 -1
  419. pulumiverse_scaleway/object/_inputs.py +164 -165
  420. pulumiverse_scaleway/object/bucket.py +147 -148
  421. pulumiverse_scaleway/object/bucket_acl.py +89 -90
  422. pulumiverse_scaleway/object/bucket_lock_configuration.py +55 -56
  423. pulumiverse_scaleway/object/bucket_policy.py +69 -70
  424. pulumiverse_scaleway/object/bucket_website_configuration.py +76 -77
  425. pulumiverse_scaleway/object/get_bucket.py +34 -35
  426. pulumiverse_scaleway/object/get_bucket_policy.py +21 -22
  427. pulumiverse_scaleway/object/item.py +239 -240
  428. pulumiverse_scaleway/object/outputs.py +171 -172
  429. pulumiverse_scaleway/object_bucket.py +147 -148
  430. pulumiverse_scaleway/object_bucket_acl.py +89 -90
  431. pulumiverse_scaleway/object_bucket_lock_configuration.py +55 -56
  432. pulumiverse_scaleway/object_bucket_policy.py +69 -70
  433. pulumiverse_scaleway/object_bucket_website_configuration.py +76 -77
  434. pulumiverse_scaleway/object_item.py +239 -240
  435. pulumiverse_scaleway/observability/__init__.py +1 -1
  436. pulumiverse_scaleway/observability/_inputs.py +105 -106
  437. pulumiverse_scaleway/observability/alert_manager.py +64 -65
  438. pulumiverse_scaleway/observability/cockpit.py +48 -49
  439. pulumiverse_scaleway/observability/get_instance.py +15 -16
  440. pulumiverse_scaleway/observability/get_source.py +49 -50
  441. pulumiverse_scaleway/observability/get_sources.py +46 -47
  442. pulumiverse_scaleway/observability/grafana_user.py +70 -71
  443. pulumiverse_scaleway/observability/outputs.py +149 -150
  444. pulumiverse_scaleway/observability/source.py +140 -141
  445. pulumiverse_scaleway/observability/token.py +82 -83
  446. pulumiverse_scaleway/outputs.py +3886 -3879
  447. pulumiverse_scaleway/provider.py +82 -83
  448. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  449. pulumiverse_scaleway/rdb_snapshot.py +123 -124
  450. pulumiverse_scaleway/redis/__init__.py +1 -1
  451. pulumiverse_scaleway/redis/_inputs.py +86 -87
  452. pulumiverse_scaleway/redis/cluster.py +227 -228
  453. pulumiverse_scaleway/redis/get_cluster.py +53 -54
  454. pulumiverse_scaleway/redis/outputs.py +115 -116
  455. pulumiverse_scaleway/redis_cluster.py +227 -228
  456. pulumiverse_scaleway/registry/__init__.py +1 -1
  457. pulumiverse_scaleway/registry/get_image.py +47 -48
  458. pulumiverse_scaleway/registry/get_image_tag.py +43 -44
  459. pulumiverse_scaleway/registry/get_namespace.py +35 -36
  460. pulumiverse_scaleway/registry/namespace.py +104 -105
  461. pulumiverse_scaleway/registry_namespace.py +104 -105
  462. pulumiverse_scaleway/sdb_database.py +95 -96
  463. pulumiverse_scaleway/secret.py +178 -179
  464. pulumiverse_scaleway/secret_version.py +105 -106
  465. pulumiverse_scaleway/secrets/__init__.py +1 -1
  466. pulumiverse_scaleway/secrets/_inputs.py +62 -63
  467. pulumiverse_scaleway/secrets/get_secret.py +57 -58
  468. pulumiverse_scaleway/secrets/get_version.py +45 -46
  469. pulumiverse_scaleway/secrets/outputs.py +83 -84
  470. pulumiverse_scaleway/secrets/secret.py +178 -179
  471. pulumiverse_scaleway/secrets/version.py +105 -106
  472. pulumiverse_scaleway/tem/__init__.py +1 -1
  473. pulumiverse_scaleway/tem/_inputs.py +32 -33
  474. pulumiverse_scaleway/tem/blocked_list.py +103 -104
  475. pulumiverse_scaleway/tem/domain.py +340 -257
  476. pulumiverse_scaleway/tem/domain_validation.py +61 -62
  477. pulumiverse_scaleway/tem/get_domain.py +102 -70
  478. pulumiverse_scaleway/tem/get_offer_subscription.py +33 -34
  479. pulumiverse_scaleway/tem/outputs.py +43 -44
  480. pulumiverse_scaleway/tem/webhook.py +130 -131
  481. pulumiverse_scaleway/tem_domain.py +340 -257
  482. pulumiverse_scaleway/tem_domain_validation.py +61 -62
  483. pulumiverse_scaleway/tem_webhook.py +130 -131
  484. pulumiverse_scaleway/vpc.py +139 -140
  485. pulumiverse_scaleway/vpc_gateway_network.py +179 -180
  486. pulumiverse_scaleway/vpc_private_network.py +170 -171
  487. pulumiverse_scaleway/vpc_public_gateway.py +259 -260
  488. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +283 -284
  489. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +105 -106
  490. pulumiverse_scaleway/vpc_public_gateway_ip.py +105 -106
  491. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +52 -53
  492. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +130 -131
  493. pulumiverse_scaleway/vpc_route.py +138 -139
  494. pulumiverse_scaleway/webhosting.py +209 -210
  495. {pulumiverse_scaleway-1.35.0a1759824076.dist-info → pulumiverse_scaleway-1.35.0a1760445454.dist-info}/METADATA +1 -1
  496. pulumiverse_scaleway-1.35.0a1760445454.dist-info/RECORD +500 -0
  497. pulumiverse_scaleway-1.35.0a1759824076.dist-info/RECORD +0 -499
  498. {pulumiverse_scaleway-1.35.0a1759824076.dist-info → pulumiverse_scaleway-1.35.0a1760445454.dist-info}/WHEEL +0 -0
  499. {pulumiverse_scaleway-1.35.0a1759824076.dist-info → pulumiverse_scaleway-1.35.0a1760445454.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -35,6 +34,9 @@ __all__ = [
35
34
  'GetServerPrivateNetworkResult',
36
35
  'GetServerPublicIpResult',
37
36
  'GetServerRootVolumeResult',
37
+ 'GetServerTypeCapabilityResult',
38
+ 'GetServerTypeNetworkResult',
39
+ 'GetServerTypeVolumeResult',
38
40
  'GetServersServerResult',
39
41
  'GetServersServerPrivateIpResult',
40
42
  'GetServersServerPublicIpResult',
@@ -67,33 +69,33 @@ class ImageAdditionalVolume(dict):
67
69
  return super().get(key, default)
68
70
 
69
71
  def __init__(__self__, *,
70
- creation_date: Optional[builtins.str] = None,
71
- export_uri: Optional[builtins.str] = None,
72
- id: Optional[builtins.str] = None,
73
- modification_date: Optional[builtins.str] = None,
74
- name: Optional[builtins.str] = None,
75
- organization: Optional[builtins.str] = None,
76
- project: Optional[builtins.str] = None,
77
- server: Optional[Mapping[str, builtins.str]] = None,
78
- size: Optional[builtins.int] = None,
79
- state: Optional[builtins.str] = None,
80
- tags: Optional[Sequence[builtins.str]] = None,
81
- volume_type: Optional[builtins.str] = None,
82
- zone: Optional[builtins.str] = None):
83
- """
84
- :param builtins.str creation_date: Date of the volume creation.
85
- :param builtins.str export_uri: The export URI of the volume.
86
- :param builtins.str id: ID of the server containing the volume.
87
- :param builtins.str modification_date: Date of volume latest update.
88
- :param builtins.str name: The name of the image. If not provided it will be randomly generated.
89
- :param builtins.str organization: The organization ID the volume is associated with.
90
- :param builtins.str project: ID of the project the volume is associated with
91
- :param Mapping[str, builtins.str] server: Description of the server containing the volume (in case the image is a backup from a server).
92
- :param builtins.int size: The size of the volume.
93
- :param builtins.str state: State of the volume.
94
- :param Sequence[builtins.str] tags: A list of tags to apply to the image.
95
- :param builtins.str volume_type: The type of volume, possible values are `l_ssd` and `b_ssd`.
96
- :param builtins.str zone: The zone in which the image should be created.
72
+ creation_date: Optional[_builtins.str] = None,
73
+ export_uri: Optional[_builtins.str] = None,
74
+ id: Optional[_builtins.str] = None,
75
+ modification_date: Optional[_builtins.str] = None,
76
+ name: Optional[_builtins.str] = None,
77
+ organization: Optional[_builtins.str] = None,
78
+ project: Optional[_builtins.str] = None,
79
+ server: Optional[Mapping[str, _builtins.str]] = None,
80
+ size: Optional[_builtins.int] = None,
81
+ state: Optional[_builtins.str] = None,
82
+ tags: Optional[Sequence[_builtins.str]] = None,
83
+ volume_type: Optional[_builtins.str] = None,
84
+ zone: Optional[_builtins.str] = None):
85
+ """
86
+ :param _builtins.str creation_date: Date of the volume creation.
87
+ :param _builtins.str export_uri: The export URI of the volume.
88
+ :param _builtins.str id: ID of the server containing the volume.
89
+ :param _builtins.str modification_date: Date of volume latest update.
90
+ :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
+ :param Mapping[str, _builtins.str] server: Description of the server containing the volume (in case the image is a backup from a server).
94
+ :param _builtins.int size: The size of the volume.
95
+ :param _builtins.str state: State of the volume.
96
+ :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.
97
99
  """
98
100
  if creation_date is not None:
99
101
  pulumi.set(__self__, "creation_date", creation_date)
@@ -122,105 +124,105 @@ class ImageAdditionalVolume(dict):
122
124
  if zone is not None:
123
125
  pulumi.set(__self__, "zone", zone)
124
126
 
125
- @property
127
+ @_builtins.property
126
128
  @pulumi.getter(name="creationDate")
127
- def creation_date(self) -> Optional[builtins.str]:
129
+ def creation_date(self) -> Optional[_builtins.str]:
128
130
  """
129
131
  Date of the volume creation.
130
132
  """
131
133
  return pulumi.get(self, "creation_date")
132
134
 
133
- @property
135
+ @_builtins.property
134
136
  @pulumi.getter(name="exportUri")
135
- def export_uri(self) -> Optional[builtins.str]:
137
+ def export_uri(self) -> Optional[_builtins.str]:
136
138
  """
137
139
  The export URI of the volume.
138
140
  """
139
141
  return pulumi.get(self, "export_uri")
140
142
 
141
- @property
143
+ @_builtins.property
142
144
  @pulumi.getter
143
- def id(self) -> Optional[builtins.str]:
145
+ def id(self) -> Optional[_builtins.str]:
144
146
  """
145
147
  ID of the server containing the volume.
146
148
  """
147
149
  return pulumi.get(self, "id")
148
150
 
149
- @property
151
+ @_builtins.property
150
152
  @pulumi.getter(name="modificationDate")
151
- def modification_date(self) -> Optional[builtins.str]:
153
+ def modification_date(self) -> Optional[_builtins.str]:
152
154
  """
153
155
  Date of volume latest update.
154
156
  """
155
157
  return pulumi.get(self, "modification_date")
156
158
 
157
- @property
159
+ @_builtins.property
158
160
  @pulumi.getter
159
- def name(self) -> Optional[builtins.str]:
161
+ def name(self) -> Optional[_builtins.str]:
160
162
  """
161
163
  The name of the image. If not provided it will be randomly generated.
162
164
  """
163
165
  return pulumi.get(self, "name")
164
166
 
165
- @property
167
+ @_builtins.property
166
168
  @pulumi.getter
167
- def organization(self) -> Optional[builtins.str]:
169
+ def organization(self) -> Optional[_builtins.str]:
168
170
  """
169
171
  The organization ID the volume is associated with.
170
172
  """
171
173
  return pulumi.get(self, "organization")
172
174
 
173
- @property
175
+ @_builtins.property
174
176
  @pulumi.getter
175
- def project(self) -> Optional[builtins.str]:
177
+ def project(self) -> Optional[_builtins.str]:
176
178
  """
177
179
  ID of the project the volume is associated with
178
180
  """
179
181
  return pulumi.get(self, "project")
180
182
 
181
- @property
183
+ @_builtins.property
182
184
  @pulumi.getter
183
- def server(self) -> Optional[Mapping[str, builtins.str]]:
185
+ def server(self) -> Optional[Mapping[str, _builtins.str]]:
184
186
  """
185
187
  Description of the server containing the volume (in case the image is a backup from a server).
186
188
  """
187
189
  return pulumi.get(self, "server")
188
190
 
189
- @property
191
+ @_builtins.property
190
192
  @pulumi.getter
191
- def size(self) -> Optional[builtins.int]:
193
+ def size(self) -> Optional[_builtins.int]:
192
194
  """
193
195
  The size of the volume.
194
196
  """
195
197
  return pulumi.get(self, "size")
196
198
 
197
- @property
199
+ @_builtins.property
198
200
  @pulumi.getter
199
- def state(self) -> Optional[builtins.str]:
201
+ def state(self) -> Optional[_builtins.str]:
200
202
  """
201
203
  State of the volume.
202
204
  """
203
205
  return pulumi.get(self, "state")
204
206
 
205
- @property
207
+ @_builtins.property
206
208
  @pulumi.getter
207
- def tags(self) -> Optional[Sequence[builtins.str]]:
209
+ def tags(self) -> Optional[Sequence[_builtins.str]]:
208
210
  """
209
211
  A list of tags to apply to the image.
210
212
  """
211
213
  return pulumi.get(self, "tags")
212
214
 
213
- @property
215
+ @_builtins.property
214
216
  @pulumi.getter(name="volumeType")
215
- def volume_type(self) -> Optional[builtins.str]:
217
+ def volume_type(self) -> Optional[_builtins.str]:
216
218
  """
217
219
  The type of volume, possible values are `l_ssd` and `b_ssd`.
218
220
  """
219
221
  return pulumi.get(self, "volume_type")
220
222
 
221
- @property
223
+ @_builtins.property
222
224
  @pulumi.getter
223
- def zone(self) -> Optional[builtins.str]:
225
+ def zone(self) -> Optional[_builtins.str]:
224
226
  """
225
227
  The zone in which the image should be created.
226
228
  """
@@ -230,28 +232,28 @@ class ImageAdditionalVolume(dict):
230
232
  @pulumi.output_type
231
233
  class PrivateNicPrivateIp(dict):
232
234
  def __init__(__self__, *,
233
- address: Optional[builtins.str] = None,
234
- id: Optional[builtins.str] = None):
235
+ address: Optional[_builtins.str] = None,
236
+ id: Optional[_builtins.str] = None):
235
237
  """
236
- :param builtins.str address: The private IP address.
237
- :param builtins.str id: The ID of the IP address resource.
238
+ :param _builtins.str address: The private IP address.
239
+ :param _builtins.str id: The ID of the IP address resource.
238
240
  """
239
241
  if address is not None:
240
242
  pulumi.set(__self__, "address", address)
241
243
  if id is not None:
242
244
  pulumi.set(__self__, "id", id)
243
245
 
244
- @property
246
+ @_builtins.property
245
247
  @pulumi.getter
246
- def address(self) -> Optional[builtins.str]:
248
+ def address(self) -> Optional[_builtins.str]:
247
249
  """
248
250
  The private IP address.
249
251
  """
250
252
  return pulumi.get(self, "address")
251
253
 
252
- @property
254
+ @_builtins.property
253
255
  @pulumi.getter
254
- def id(self) -> Optional[builtins.str]:
256
+ def id(self) -> Optional[_builtins.str]:
255
257
  """
256
258
  The ID of the IP address resource.
257
259
  """
@@ -280,19 +282,19 @@ class SecurityGroupInboundRule(dict):
280
282
  return super().get(key, default)
281
283
 
282
284
  def __init__(__self__, *,
283
- action: builtins.str,
284
- ip: Optional[builtins.str] = None,
285
- ip_range: Optional[builtins.str] = None,
286
- port: Optional[builtins.int] = None,
287
- port_range: Optional[builtins.str] = None,
288
- protocol: Optional[builtins.str] = None):
289
- """
290
- :param builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
291
- :param builtins.str ip: The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
292
- :param builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
293
- :param builtins.int port: The port this rule applies to. If no `port` nor `port_range` are specified, the rule will apply to all port. Only one of `port` and `port_range` should be specified.
294
- :param builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
295
- :param builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
285
+ action: _builtins.str,
286
+ ip: Optional[_builtins.str] = None,
287
+ ip_range: Optional[_builtins.str] = None,
288
+ port: Optional[_builtins.int] = None,
289
+ port_range: Optional[_builtins.str] = None,
290
+ protocol: Optional[_builtins.str] = None):
291
+ """
292
+ :param _builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
293
+ :param _builtins.str ip: The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
294
+ :param _builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
295
+ :param _builtins.int port: The port this rule applies to. If no `port` nor `port_range` are specified, the rule will apply to all port. Only one of `port` and `port_range` should be specified.
296
+ :param _builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
297
+ :param _builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
296
298
  """
297
299
  pulumi.set(__self__, "action", action)
298
300
  if ip is not None:
@@ -306,50 +308,50 @@ class SecurityGroupInboundRule(dict):
306
308
  if protocol is not None:
307
309
  pulumi.set(__self__, "protocol", protocol)
308
310
 
309
- @property
311
+ @_builtins.property
310
312
  @pulumi.getter
311
- def action(self) -> builtins.str:
313
+ def action(self) -> _builtins.str:
312
314
  """
313
315
  The action to take when rule match. Possible values are: `accept` or `drop`.
314
316
  """
315
317
  return pulumi.get(self, "action")
316
318
 
317
- @property
319
+ @_builtins.property
318
320
  @pulumi.getter
319
321
  @_utilities.deprecated("""Ip address is deprecated. Please use ip_range instead""")
320
- def ip(self) -> Optional[builtins.str]:
322
+ def ip(self) -> Optional[_builtins.str]:
321
323
  """
322
324
  The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
323
325
  """
324
326
  return pulumi.get(self, "ip")
325
327
 
326
- @property
328
+ @_builtins.property
327
329
  @pulumi.getter(name="ipRange")
328
- def ip_range(self) -> Optional[builtins.str]:
330
+ def ip_range(self) -> Optional[_builtins.str]:
329
331
  """
330
332
  The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
331
333
  """
332
334
  return pulumi.get(self, "ip_range")
333
335
 
334
- @property
336
+ @_builtins.property
335
337
  @pulumi.getter
336
- def port(self) -> Optional[builtins.int]:
338
+ def port(self) -> Optional[_builtins.int]:
337
339
  """
338
340
  The port this rule applies to. If no `port` nor `port_range` are specified, the rule will apply to all port. Only one of `port` and `port_range` should be specified.
339
341
  """
340
342
  return pulumi.get(self, "port")
341
343
 
342
- @property
344
+ @_builtins.property
343
345
  @pulumi.getter(name="portRange")
344
- def port_range(self) -> Optional[builtins.str]:
346
+ def port_range(self) -> Optional[_builtins.str]:
345
347
  """
346
348
  Computed port range for this rule (e.g: 1-1024, 22-22)
347
349
  """
348
350
  return pulumi.get(self, "port_range")
349
351
 
350
- @property
352
+ @_builtins.property
351
353
  @pulumi.getter
352
- def protocol(self) -> Optional[builtins.str]:
354
+ def protocol(self) -> Optional[_builtins.str]:
353
355
  """
354
356
  The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
355
357
  """
@@ -378,19 +380,19 @@ class SecurityGroupOutboundRule(dict):
378
380
  return super().get(key, default)
379
381
 
380
382
  def __init__(__self__, *,
381
- action: builtins.str,
382
- ip: Optional[builtins.str] = None,
383
- ip_range: Optional[builtins.str] = None,
384
- port: Optional[builtins.int] = None,
385
- port_range: Optional[builtins.str] = None,
386
- protocol: Optional[builtins.str] = None):
387
- """
388
- :param builtins.str action: Action when rule match request (drop or accept)
389
- :param builtins.str ip: Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
390
- :param builtins.str ip_range: Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
391
- :param builtins.int port: Network port for this rule
392
- :param builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
393
- :param builtins.str protocol: Protocol for this rule (TCP, UDP, ICMP or ANY)
383
+ action: _builtins.str,
384
+ ip: Optional[_builtins.str] = None,
385
+ ip_range: Optional[_builtins.str] = None,
386
+ port: Optional[_builtins.int] = None,
387
+ port_range: Optional[_builtins.str] = None,
388
+ protocol: Optional[_builtins.str] = None):
389
+ """
390
+ :param _builtins.str action: Action when rule match request (drop or accept)
391
+ :param _builtins.str ip: Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
392
+ :param _builtins.str ip_range: Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
393
+ :param _builtins.int port: Network port for this rule
394
+ :param _builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
395
+ :param _builtins.str protocol: Protocol for this rule (TCP, UDP, ICMP or ANY)
394
396
  """
395
397
  pulumi.set(__self__, "action", action)
396
398
  if ip is not None:
@@ -404,50 +406,50 @@ class SecurityGroupOutboundRule(dict):
404
406
  if protocol is not None:
405
407
  pulumi.set(__self__, "protocol", protocol)
406
408
 
407
- @property
409
+ @_builtins.property
408
410
  @pulumi.getter
409
- def action(self) -> builtins.str:
411
+ def action(self) -> _builtins.str:
410
412
  """
411
413
  Action when rule match request (drop or accept)
412
414
  """
413
415
  return pulumi.get(self, "action")
414
416
 
415
- @property
417
+ @_builtins.property
416
418
  @pulumi.getter
417
419
  @_utilities.deprecated("""Ip address is deprecated. Please use ip_range instead""")
418
- def ip(self) -> Optional[builtins.str]:
420
+ def ip(self) -> Optional[_builtins.str]:
419
421
  """
420
422
  Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
421
423
  """
422
424
  return pulumi.get(self, "ip")
423
425
 
424
- @property
426
+ @_builtins.property
425
427
  @pulumi.getter(name="ipRange")
426
- def ip_range(self) -> Optional[builtins.str]:
428
+ def ip_range(self) -> Optional[_builtins.str]:
427
429
  """
428
430
  Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
429
431
  """
430
432
  return pulumi.get(self, "ip_range")
431
433
 
432
- @property
434
+ @_builtins.property
433
435
  @pulumi.getter
434
- def port(self) -> Optional[builtins.int]:
436
+ def port(self) -> Optional[_builtins.int]:
435
437
  """
436
438
  Network port for this rule
437
439
  """
438
440
  return pulumi.get(self, "port")
439
441
 
440
- @property
442
+ @_builtins.property
441
443
  @pulumi.getter(name="portRange")
442
- def port_range(self) -> Optional[builtins.str]:
444
+ def port_range(self) -> Optional[_builtins.str]:
443
445
  """
444
446
  Computed port range for this rule (e.g: 1-1024, 22-22)
445
447
  """
446
448
  return pulumi.get(self, "port_range")
447
449
 
448
- @property
450
+ @_builtins.property
449
451
  @pulumi.getter
450
- def protocol(self) -> Optional[builtins.str]:
452
+ def protocol(self) -> Optional[_builtins.str]:
451
453
  """
452
454
  Protocol for this rule (TCP, UDP, ICMP or ANY)
453
455
  """
@@ -476,19 +478,19 @@ class SecurityGroupRulesInboundRule(dict):
476
478
  return super().get(key, default)
477
479
 
478
480
  def __init__(__self__, *,
479
- action: builtins.str,
480
- ip: Optional[builtins.str] = None,
481
- ip_range: Optional[builtins.str] = None,
482
- port: Optional[builtins.int] = None,
483
- port_range: Optional[builtins.str] = None,
484
- protocol: Optional[builtins.str] = None):
485
- """
486
- :param builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
487
- :param builtins.str ip: The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
488
- :param builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
489
- :param builtins.int port: The port this rule apply to. If no port is specified, rule will apply to all port.
490
- :param builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
491
- :param builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
481
+ action: _builtins.str,
482
+ ip: Optional[_builtins.str] = None,
483
+ ip_range: Optional[_builtins.str] = None,
484
+ port: Optional[_builtins.int] = None,
485
+ port_range: Optional[_builtins.str] = None,
486
+ protocol: Optional[_builtins.str] = None):
487
+ """
488
+ :param _builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
489
+ :param _builtins.str ip: The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
490
+ :param _builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
491
+ :param _builtins.int port: The port this rule apply to. If no port is specified, rule will apply to all port.
492
+ :param _builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
493
+ :param _builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
492
494
  """
493
495
  pulumi.set(__self__, "action", action)
494
496
  if ip is not None:
@@ -502,50 +504,50 @@ class SecurityGroupRulesInboundRule(dict):
502
504
  if protocol is not None:
503
505
  pulumi.set(__self__, "protocol", protocol)
504
506
 
505
- @property
507
+ @_builtins.property
506
508
  @pulumi.getter
507
- def action(self) -> builtins.str:
509
+ def action(self) -> _builtins.str:
508
510
  """
509
511
  The action to take when rule match. Possible values are: `accept` or `drop`.
510
512
  """
511
513
  return pulumi.get(self, "action")
512
514
 
513
- @property
515
+ @_builtins.property
514
516
  @pulumi.getter
515
517
  @_utilities.deprecated("""Ip address is deprecated. Please use ip_range instead""")
516
- def ip(self) -> Optional[builtins.str]:
518
+ def ip(self) -> Optional[_builtins.str]:
517
519
  """
518
520
  The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
519
521
  """
520
522
  return pulumi.get(self, "ip")
521
523
 
522
- @property
524
+ @_builtins.property
523
525
  @pulumi.getter(name="ipRange")
524
- def ip_range(self) -> Optional[builtins.str]:
526
+ def ip_range(self) -> Optional[_builtins.str]:
525
527
  """
526
528
  The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
527
529
  """
528
530
  return pulumi.get(self, "ip_range")
529
531
 
530
- @property
532
+ @_builtins.property
531
533
  @pulumi.getter
532
- def port(self) -> Optional[builtins.int]:
534
+ def port(self) -> Optional[_builtins.int]:
533
535
  """
534
536
  The port this rule apply to. If no port is specified, rule will apply to all port.
535
537
  """
536
538
  return pulumi.get(self, "port")
537
539
 
538
- @property
540
+ @_builtins.property
539
541
  @pulumi.getter(name="portRange")
540
- def port_range(self) -> Optional[builtins.str]:
542
+ def port_range(self) -> Optional[_builtins.str]:
541
543
  """
542
544
  Computed port range for this rule (e.g: 1-1024, 22-22)
543
545
  """
544
546
  return pulumi.get(self, "port_range")
545
547
 
546
- @property
548
+ @_builtins.property
547
549
  @pulumi.getter
548
- def protocol(self) -> Optional[builtins.str]:
550
+ def protocol(self) -> Optional[_builtins.str]:
549
551
  """
550
552
  The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
551
553
  """
@@ -574,19 +576,19 @@ class SecurityGroupRulesOutboundRule(dict):
574
576
  return super().get(key, default)
575
577
 
576
578
  def __init__(__self__, *,
577
- action: builtins.str,
578
- ip: Optional[builtins.str] = None,
579
- ip_range: Optional[builtins.str] = None,
580
- port: Optional[builtins.int] = None,
581
- port_range: Optional[builtins.str] = None,
582
- protocol: Optional[builtins.str] = None):
583
- """
584
- :param builtins.str action: Action when rule match request (drop or accept)
585
- :param builtins.str ip: Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
586
- :param builtins.str ip_range: Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
587
- :param builtins.int port: Network port for this rule
588
- :param builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
589
- :param builtins.str protocol: Protocol for this rule (TCP, UDP, ICMP or ANY)
579
+ action: _builtins.str,
580
+ ip: Optional[_builtins.str] = None,
581
+ ip_range: Optional[_builtins.str] = None,
582
+ port: Optional[_builtins.int] = None,
583
+ port_range: Optional[_builtins.str] = None,
584
+ protocol: Optional[_builtins.str] = None):
585
+ """
586
+ :param _builtins.str action: Action when rule match request (drop or accept)
587
+ :param _builtins.str ip: Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
588
+ :param _builtins.str ip_range: Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
589
+ :param _builtins.int port: Network port for this rule
590
+ :param _builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
591
+ :param _builtins.str protocol: Protocol for this rule (TCP, UDP, ICMP or ANY)
590
592
  """
591
593
  pulumi.set(__self__, "action", action)
592
594
  if ip is not None:
@@ -600,50 +602,50 @@ class SecurityGroupRulesOutboundRule(dict):
600
602
  if protocol is not None:
601
603
  pulumi.set(__self__, "protocol", protocol)
602
604
 
603
- @property
605
+ @_builtins.property
604
606
  @pulumi.getter
605
- def action(self) -> builtins.str:
607
+ def action(self) -> _builtins.str:
606
608
  """
607
609
  Action when rule match request (drop or accept)
608
610
  """
609
611
  return pulumi.get(self, "action")
610
612
 
611
- @property
613
+ @_builtins.property
612
614
  @pulumi.getter
613
615
  @_utilities.deprecated("""Ip address is deprecated. Please use ip_range instead""")
614
- def ip(self) -> Optional[builtins.str]:
616
+ def ip(self) -> Optional[_builtins.str]:
615
617
  """
616
618
  Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
617
619
  """
618
620
  return pulumi.get(self, "ip")
619
621
 
620
- @property
622
+ @_builtins.property
621
623
  @pulumi.getter(name="ipRange")
622
- def ip_range(self) -> Optional[builtins.str]:
624
+ def ip_range(self) -> Optional[_builtins.str]:
623
625
  """
624
626
  Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
625
627
  """
626
628
  return pulumi.get(self, "ip_range")
627
629
 
628
- @property
630
+ @_builtins.property
629
631
  @pulumi.getter
630
- def port(self) -> Optional[builtins.int]:
632
+ def port(self) -> Optional[_builtins.int]:
631
633
  """
632
634
  Network port for this rule
633
635
  """
634
636
  return pulumi.get(self, "port")
635
637
 
636
- @property
638
+ @_builtins.property
637
639
  @pulumi.getter(name="portRange")
638
- def port_range(self) -> Optional[builtins.str]:
640
+ def port_range(self) -> Optional[_builtins.str]:
639
641
  """
640
642
  Computed port range for this rule (e.g: 1-1024, 22-22)
641
643
  """
642
644
  return pulumi.get(self, "port_range")
643
645
 
644
- @property
646
+ @_builtins.property
645
647
  @pulumi.getter
646
- def protocol(self) -> Optional[builtins.str]:
648
+ def protocol(self) -> Optional[_builtins.str]:
647
649
  """
648
650
  Protocol for this rule (TCP, UDP, ICMP or ANY)
649
651
  """
@@ -653,28 +655,28 @@ class SecurityGroupRulesOutboundRule(dict):
653
655
  @pulumi.output_type
654
656
  class ServerPrivateIp(dict):
655
657
  def __init__(__self__, *,
656
- address: Optional[builtins.str] = None,
657
- id: Optional[builtins.str] = None):
658
+ address: Optional[_builtins.str] = None,
659
+ id: Optional[_builtins.str] = None):
658
660
  """
659
- :param builtins.str address: The private IP address.
660
- :param builtins.str id: The ID of the IP address resource.
661
+ :param _builtins.str address: The private IP address.
662
+ :param _builtins.str id: The ID of the IP address resource.
661
663
  """
662
664
  if address is not None:
663
665
  pulumi.set(__self__, "address", address)
664
666
  if id is not None:
665
667
  pulumi.set(__self__, "id", id)
666
668
 
667
- @property
669
+ @_builtins.property
668
670
  @pulumi.getter
669
- def address(self) -> Optional[builtins.str]:
671
+ def address(self) -> Optional[_builtins.str]:
670
672
  """
671
673
  The private IP address.
672
674
  """
673
675
  return pulumi.get(self, "address")
674
676
 
675
- @property
677
+ @_builtins.property
676
678
  @pulumi.getter
677
- def id(self) -> Optional[builtins.str]:
679
+ def id(self) -> Optional[_builtins.str]:
678
680
  """
679
681
  The ID of the IP address resource.
680
682
  """
@@ -705,17 +707,17 @@ class ServerPrivateNetwork(dict):
705
707
  return super().get(key, default)
706
708
 
707
709
  def __init__(__self__, *,
708
- pn_id: builtins.str,
709
- mac_address: Optional[builtins.str] = None,
710
- pnic_id: Optional[builtins.str] = None,
711
- status: Optional[builtins.str] = None,
712
- zone: Optional[builtins.str] = None):
713
- """
714
- :param builtins.str pn_id: The Private Network ID
715
- :param builtins.str mac_address: MAC address of the NIC
716
- :param builtins.str pnic_id: The ID of the NIC
717
- :param builtins.str status: The private NIC state
718
- :param builtins.str zone: `zone`) The zone in which the server should be created.
710
+ pn_id: _builtins.str,
711
+ mac_address: Optional[_builtins.str] = None,
712
+ pnic_id: Optional[_builtins.str] = None,
713
+ status: Optional[_builtins.str] = None,
714
+ zone: Optional[_builtins.str] = None):
715
+ """
716
+ :param _builtins.str pn_id: The Private Network ID
717
+ :param _builtins.str mac_address: MAC address of the NIC
718
+ :param _builtins.str pnic_id: The ID of the NIC
719
+ :param _builtins.str status: The private NIC state
720
+ :param _builtins.str zone: `zone`) The zone in which the server should be created.
719
721
  """
720
722
  pulumi.set(__self__, "pn_id", pn_id)
721
723
  if mac_address is not None:
@@ -727,41 +729,41 @@ class ServerPrivateNetwork(dict):
727
729
  if zone is not None:
728
730
  pulumi.set(__self__, "zone", zone)
729
731
 
730
- @property
732
+ @_builtins.property
731
733
  @pulumi.getter(name="pnId")
732
- def pn_id(self) -> builtins.str:
734
+ def pn_id(self) -> _builtins.str:
733
735
  """
734
736
  The Private Network ID
735
737
  """
736
738
  return pulumi.get(self, "pn_id")
737
739
 
738
- @property
740
+ @_builtins.property
739
741
  @pulumi.getter(name="macAddress")
740
- def mac_address(self) -> Optional[builtins.str]:
742
+ def mac_address(self) -> Optional[_builtins.str]:
741
743
  """
742
744
  MAC address of the NIC
743
745
  """
744
746
  return pulumi.get(self, "mac_address")
745
747
 
746
- @property
748
+ @_builtins.property
747
749
  @pulumi.getter(name="pnicId")
748
- def pnic_id(self) -> Optional[builtins.str]:
750
+ def pnic_id(self) -> Optional[_builtins.str]:
749
751
  """
750
752
  The ID of the NIC
751
753
  """
752
754
  return pulumi.get(self, "pnic_id")
753
755
 
754
- @property
756
+ @_builtins.property
755
757
  @pulumi.getter
756
- def status(self) -> Optional[builtins.str]:
758
+ def status(self) -> Optional[_builtins.str]:
757
759
  """
758
760
  The private NIC state
759
761
  """
760
762
  return pulumi.get(self, "status")
761
763
 
762
- @property
764
+ @_builtins.property
763
765
  @pulumi.getter
764
- def zone(self) -> Optional[builtins.str]:
766
+ def zone(self) -> Optional[_builtins.str]:
765
767
  """
766
768
  `zone`) The zone in which the server should be created.
767
769
  """
@@ -788,21 +790,21 @@ class ServerPublicIp(dict):
788
790
  return super().get(key, default)
789
791
 
790
792
  def __init__(__self__, *,
791
- address: Optional[builtins.str] = None,
792
- dynamic: Optional[builtins.bool] = None,
793
- family: Optional[builtins.str] = None,
794
- gateway: Optional[builtins.str] = None,
795
- id: Optional[builtins.str] = None,
796
- netmask: Optional[builtins.str] = None,
797
- provisioning_mode: Optional[builtins.str] = None):
798
- """
799
- :param builtins.str address: The address of the IP.
800
- :param builtins.bool dynamic: Whether the IP is dynamic.
801
- :param builtins.str family: The IP address' family.
802
- :param builtins.str gateway: The IP of the Gateway associated with the IP.
803
- :param builtins.str id: The ID of the IP.
804
- :param builtins.str netmask: The CIDR netmask of the IP.
805
- :param builtins.str provisioning_mode: The provisioning mode of the IP
793
+ address: Optional[_builtins.str] = None,
794
+ dynamic: Optional[_builtins.bool] = None,
795
+ family: Optional[_builtins.str] = None,
796
+ gateway: Optional[_builtins.str] = None,
797
+ id: Optional[_builtins.str] = None,
798
+ netmask: Optional[_builtins.str] = None,
799
+ provisioning_mode: Optional[_builtins.str] = None):
800
+ """
801
+ :param _builtins.str address: The address of the IP.
802
+ :param _builtins.bool dynamic: Whether the IP is dynamic.
803
+ :param _builtins.str family: The IP address' family.
804
+ :param _builtins.str gateway: The IP of the Gateway associated with the IP.
805
+ :param _builtins.str id: The ID of the IP.
806
+ :param _builtins.str netmask: The CIDR netmask of the IP.
807
+ :param _builtins.str provisioning_mode: The provisioning mode of the IP
806
808
  """
807
809
  if address is not None:
808
810
  pulumi.set(__self__, "address", address)
@@ -819,57 +821,57 @@ class ServerPublicIp(dict):
819
821
  if provisioning_mode is not None:
820
822
  pulumi.set(__self__, "provisioning_mode", provisioning_mode)
821
823
 
822
- @property
824
+ @_builtins.property
823
825
  @pulumi.getter
824
- def address(self) -> Optional[builtins.str]:
826
+ def address(self) -> Optional[_builtins.str]:
825
827
  """
826
828
  The address of the IP.
827
829
  """
828
830
  return pulumi.get(self, "address")
829
831
 
830
- @property
832
+ @_builtins.property
831
833
  @pulumi.getter
832
- def dynamic(self) -> Optional[builtins.bool]:
834
+ def dynamic(self) -> Optional[_builtins.bool]:
833
835
  """
834
836
  Whether the IP is dynamic.
835
837
  """
836
838
  return pulumi.get(self, "dynamic")
837
839
 
838
- @property
840
+ @_builtins.property
839
841
  @pulumi.getter
840
- def family(self) -> Optional[builtins.str]:
842
+ def family(self) -> Optional[_builtins.str]:
841
843
  """
842
844
  The IP address' family.
843
845
  """
844
846
  return pulumi.get(self, "family")
845
847
 
846
- @property
848
+ @_builtins.property
847
849
  @pulumi.getter
848
- def gateway(self) -> Optional[builtins.str]:
850
+ def gateway(self) -> Optional[_builtins.str]:
849
851
  """
850
852
  The IP of the Gateway associated with the IP.
851
853
  """
852
854
  return pulumi.get(self, "gateway")
853
855
 
854
- @property
856
+ @_builtins.property
855
857
  @pulumi.getter
856
- def id(self) -> Optional[builtins.str]:
858
+ def id(self) -> Optional[_builtins.str]:
857
859
  """
858
860
  The ID of the IP.
859
861
  """
860
862
  return pulumi.get(self, "id")
861
863
 
862
- @property
864
+ @_builtins.property
863
865
  @pulumi.getter
864
- def netmask(self) -> Optional[builtins.str]:
866
+ def netmask(self) -> Optional[_builtins.str]:
865
867
  """
866
868
  The CIDR netmask of the IP.
867
869
  """
868
870
  return pulumi.get(self, "netmask")
869
871
 
870
- @property
872
+ @_builtins.property
871
873
  @pulumi.getter(name="provisioningMode")
872
- def provisioning_mode(self) -> Optional[builtins.str]:
874
+ def provisioning_mode(self) -> Optional[_builtins.str]:
873
875
  """
874
876
  The provisioning mode of the IP
875
877
  """
@@ -904,26 +906,26 @@ class ServerRootVolume(dict):
904
906
  return super().get(key, default)
905
907
 
906
908
  def __init__(__self__, *,
907
- boot: Optional[builtins.bool] = None,
908
- delete_on_termination: Optional[builtins.bool] = None,
909
- name: Optional[builtins.str] = None,
910
- sbs_iops: Optional[builtins.int] = None,
911
- size_in_gb: Optional[builtins.int] = None,
912
- volume_id: Optional[builtins.str] = None,
913
- volume_type: Optional[builtins.str] = None):
914
- """
915
- :param builtins.bool boot: Set the volume where the boot the server
916
- :param builtins.bool delete_on_termination: Forces deletion of the root volume on instance termination.
917
- :param builtins.str name: The name of the server.
918
- :param builtins.int sbs_iops: Choose IOPS of your sbs volume, has to be used with `sbs_volume` for root volume type.
909
+ boot: Optional[_builtins.bool] = None,
910
+ delete_on_termination: Optional[_builtins.bool] = None,
911
+ name: Optional[_builtins.str] = None,
912
+ sbs_iops: Optional[_builtins.int] = None,
913
+ size_in_gb: Optional[_builtins.int] = None,
914
+ volume_id: Optional[_builtins.str] = None,
915
+ volume_type: Optional[_builtins.str] = None):
916
+ """
917
+ :param _builtins.bool boot: Set the volume where the boot the server
918
+ :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.
920
+ :param _builtins.int sbs_iops: Choose IOPS of your sbs volume, has to be used with `sbs_volume` for root volume type.
919
921
 
920
922
  > **Important:** Updates to `root_volume.size_in_gb` will be ignored after the creation of the server.
921
- :param builtins.int size_in_gb: Size of the root volume in gigabytes.
923
+ :param _builtins.int size_in_gb: Size of the root volume in gigabytes.
922
924
  To find the right size use [this endpoint](https://www.scaleway.com/en/developers/api/instance/#path-instances-list-all-instances) and
923
925
  check the `volumes_constraint.{min|max}_size` (in bytes) for your `commercial_type`.
924
926
  Depending on `volume_type`, updates to this field may recreate a new resource.
925
- :param builtins.str volume_id: The volume ID of the root volume of the server, allows you to create server with an existing volume. If empty, will be computed to a created volume ID.
926
- :param builtins.str volume_type: Volume type of root volume, can be `l_ssd` or `sbs_volume`, default value depends on server type
927
+ :param _builtins.str volume_id: The volume ID of the root volume of the server, allows you to create server with an existing volume. If empty, will be computed to a created volume ID.
928
+ :param _builtins.str volume_type: Volume type of root volume, can be `l_ssd` or `sbs_volume`, default value depends on server type
927
929
  """
928
930
  if boot is not None:
929
931
  pulumi.set(__self__, "boot", boot)
@@ -940,33 +942,33 @@ class ServerRootVolume(dict):
940
942
  if volume_type is not None:
941
943
  pulumi.set(__self__, "volume_type", volume_type)
942
944
 
943
- @property
945
+ @_builtins.property
944
946
  @pulumi.getter
945
- def boot(self) -> Optional[builtins.bool]:
947
+ def boot(self) -> Optional[_builtins.bool]:
946
948
  """
947
949
  Set the volume where the boot the server
948
950
  """
949
951
  return pulumi.get(self, "boot")
950
952
 
951
- @property
953
+ @_builtins.property
952
954
  @pulumi.getter(name="deleteOnTermination")
953
- def delete_on_termination(self) -> Optional[builtins.bool]:
955
+ def delete_on_termination(self) -> Optional[_builtins.bool]:
954
956
  """
955
957
  Forces deletion of the root volume on instance termination.
956
958
  """
957
959
  return pulumi.get(self, "delete_on_termination")
958
960
 
959
- @property
961
+ @_builtins.property
960
962
  @pulumi.getter
961
- def name(self) -> Optional[builtins.str]:
963
+ def name(self) -> Optional[_builtins.str]:
962
964
  """
963
965
  The name of the server.
964
966
  """
965
967
  return pulumi.get(self, "name")
966
968
 
967
- @property
969
+ @_builtins.property
968
970
  @pulumi.getter(name="sbsIops")
969
- def sbs_iops(self) -> Optional[builtins.int]:
971
+ def sbs_iops(self) -> Optional[_builtins.int]:
970
972
  """
971
973
  Choose IOPS of your sbs volume, has to be used with `sbs_volume` for root volume type.
972
974
 
@@ -974,9 +976,9 @@ class ServerRootVolume(dict):
974
976
  """
975
977
  return pulumi.get(self, "sbs_iops")
976
978
 
977
- @property
979
+ @_builtins.property
978
980
  @pulumi.getter(name="sizeInGb")
979
- def size_in_gb(self) -> Optional[builtins.int]:
981
+ def size_in_gb(self) -> Optional[_builtins.int]:
980
982
  """
981
983
  Size of the root volume in gigabytes.
982
984
  To find the right size use [this endpoint](https://www.scaleway.com/en/developers/api/instance/#path-instances-list-all-instances) and
@@ -985,17 +987,17 @@ class ServerRootVolume(dict):
985
987
  """
986
988
  return pulumi.get(self, "size_in_gb")
987
989
 
988
- @property
990
+ @_builtins.property
989
991
  @pulumi.getter(name="volumeId")
990
- def volume_id(self) -> Optional[builtins.str]:
992
+ def volume_id(self) -> Optional[_builtins.str]:
991
993
  """
992
994
  The volume ID of the root volume of the server, allows you to create server with an existing volume. If empty, will be computed to a created volume ID.
993
995
  """
994
996
  return pulumi.get(self, "volume_id")
995
997
 
996
- @property
998
+ @_builtins.property
997
999
  @pulumi.getter(name="volumeType")
998
- def volume_type(self) -> Optional[builtins.str]:
1000
+ def volume_type(self) -> Optional[_builtins.str]:
999
1001
  """
1000
1002
  Volume type of root volume, can be `l_ssd` or `sbs_volume`, default value depends on server type
1001
1003
  """
@@ -1005,26 +1007,26 @@ class ServerRootVolume(dict):
1005
1007
  @pulumi.output_type
1006
1008
  class SnapshotImport(dict):
1007
1009
  def __init__(__self__, *,
1008
- bucket: builtins.str,
1009
- key: builtins.str):
1010
+ bucket: _builtins.str,
1011
+ key: _builtins.str):
1010
1012
  """
1011
- :param builtins.str bucket: Bucket name containing [qcow2](https://en.wikipedia.org/wiki/Qcow) to import
1012
- :param builtins.str key: Key of the object to import
1013
+ :param _builtins.str bucket: Bucket name containing [qcow2](https://en.wikipedia.org/wiki/Qcow) to import
1014
+ :param _builtins.str key: Key of the object to import
1013
1015
  """
1014
1016
  pulumi.set(__self__, "bucket", bucket)
1015
1017
  pulumi.set(__self__, "key", key)
1016
1018
 
1017
- @property
1019
+ @_builtins.property
1018
1020
  @pulumi.getter
1019
- def bucket(self) -> builtins.str:
1021
+ def bucket(self) -> _builtins.str:
1020
1022
  """
1021
1023
  Bucket name containing [qcow2](https://en.wikipedia.org/wiki/Qcow) to import
1022
1024
  """
1023
1025
  return pulumi.get(self, "bucket")
1024
1026
 
1025
- @property
1027
+ @_builtins.property
1026
1028
  @pulumi.getter
1027
- def key(self) -> builtins.str:
1029
+ def key(self) -> _builtins.str:
1028
1030
  """
1029
1031
  Key of the object to import
1030
1032
  """
@@ -1034,26 +1036,26 @@ class SnapshotImport(dict):
1034
1036
  @pulumi.output_type
1035
1037
  class GetPrivateNicPrivateIpResult(dict):
1036
1038
  def __init__(__self__, *,
1037
- address: builtins.str,
1038
- id: builtins.str):
1039
+ address: _builtins.str,
1040
+ id: _builtins.str):
1039
1041
  """
1040
- :param builtins.str address: The private IP address
1041
- :param builtins.str id: The ID of the IP address resource
1042
+ :param _builtins.str address: The private IP address
1043
+ :param _builtins.str id: The ID of the IP address resource
1042
1044
  """
1043
1045
  pulumi.set(__self__, "address", address)
1044
1046
  pulumi.set(__self__, "id", id)
1045
1047
 
1046
- @property
1048
+ @_builtins.property
1047
1049
  @pulumi.getter
1048
- def address(self) -> builtins.str:
1050
+ def address(self) -> _builtins.str:
1049
1051
  """
1050
1052
  The private IP address
1051
1053
  """
1052
1054
  return pulumi.get(self, "address")
1053
1055
 
1054
- @property
1056
+ @_builtins.property
1055
1057
  @pulumi.getter
1056
- def id(self) -> builtins.str:
1058
+ def id(self) -> _builtins.str:
1057
1059
  """
1058
1060
  The ID of the IP address resource
1059
1061
  """
@@ -1063,21 +1065,21 @@ class GetPrivateNicPrivateIpResult(dict):
1063
1065
  @pulumi.output_type
1064
1066
  class GetSecurityGroupInboundRuleResult(dict):
1065
1067
  def __init__(__self__, *,
1066
- action: builtins.str,
1067
- ip: builtins.str,
1068
- ip_range: builtins.str,
1069
- port: builtins.int,
1070
- port_range: builtins.str,
1071
- protocol: builtins.str):
1072
- """
1073
- :param builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
1074
- :param builtins.str ip: The ip this rule apply to.
1075
- :param builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule apply to.
1076
- :param builtins.int port: The port this rule apply to. If no port is specified, rule will apply to all port.
1077
- :param builtins.str port_range: The port range (e.g `22-23`) this rule applies to.
1068
+ action: _builtins.str,
1069
+ ip: _builtins.str,
1070
+ ip_range: _builtins.str,
1071
+ port: _builtins.int,
1072
+ port_range: _builtins.str,
1073
+ protocol: _builtins.str):
1074
+ """
1075
+ :param _builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
1076
+ :param _builtins.str ip: The ip this rule apply to.
1077
+ :param _builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule apply to.
1078
+ :param _builtins.int port: The port this rule apply to. If no port is specified, rule will apply to all port.
1079
+ :param _builtins.str port_range: The port range (e.g `22-23`) this rule applies to.
1078
1080
  If no `port` nor `port_range` are specified, rule will apply to all port.
1079
1081
  Only one of `port` and `port_range` should be specified.
1080
- :param builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
1082
+ :param _builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
1081
1083
  """
1082
1084
  pulumi.set(__self__, "action", action)
1083
1085
  pulumi.set(__self__, "ip", ip)
@@ -1086,41 +1088,41 @@ class GetSecurityGroupInboundRuleResult(dict):
1086
1088
  pulumi.set(__self__, "port_range", port_range)
1087
1089
  pulumi.set(__self__, "protocol", protocol)
1088
1090
 
1089
- @property
1091
+ @_builtins.property
1090
1092
  @pulumi.getter
1091
- def action(self) -> builtins.str:
1093
+ def action(self) -> _builtins.str:
1092
1094
  """
1093
1095
  The action to take when rule match. Possible values are: `accept` or `drop`.
1094
1096
  """
1095
1097
  return pulumi.get(self, "action")
1096
1098
 
1097
- @property
1099
+ @_builtins.property
1098
1100
  @pulumi.getter
1099
- def ip(self) -> builtins.str:
1101
+ def ip(self) -> _builtins.str:
1100
1102
  """
1101
1103
  The ip this rule apply to.
1102
1104
  """
1103
1105
  return pulumi.get(self, "ip")
1104
1106
 
1105
- @property
1107
+ @_builtins.property
1106
1108
  @pulumi.getter(name="ipRange")
1107
- def ip_range(self) -> builtins.str:
1109
+ def ip_range(self) -> _builtins.str:
1108
1110
  """
1109
1111
  The ip range (e.g `192.168.1.0/24`) this rule apply to.
1110
1112
  """
1111
1113
  return pulumi.get(self, "ip_range")
1112
1114
 
1113
- @property
1115
+ @_builtins.property
1114
1116
  @pulumi.getter
1115
- def port(self) -> builtins.int:
1117
+ def port(self) -> _builtins.int:
1116
1118
  """
1117
1119
  The port this rule apply to. If no port is specified, rule will apply to all port.
1118
1120
  """
1119
1121
  return pulumi.get(self, "port")
1120
1122
 
1121
- @property
1123
+ @_builtins.property
1122
1124
  @pulumi.getter(name="portRange")
1123
- def port_range(self) -> builtins.str:
1125
+ def port_range(self) -> _builtins.str:
1124
1126
  """
1125
1127
  The port range (e.g `22-23`) this rule applies to.
1126
1128
  If no `port` nor `port_range` are specified, rule will apply to all port.
@@ -1128,9 +1130,9 @@ class GetSecurityGroupInboundRuleResult(dict):
1128
1130
  """
1129
1131
  return pulumi.get(self, "port_range")
1130
1132
 
1131
- @property
1133
+ @_builtins.property
1132
1134
  @pulumi.getter
1133
- def protocol(self) -> builtins.str:
1135
+ def protocol(self) -> _builtins.str:
1134
1136
  """
1135
1137
  The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
1136
1138
  """
@@ -1140,21 +1142,21 @@ class GetSecurityGroupInboundRuleResult(dict):
1140
1142
  @pulumi.output_type
1141
1143
  class GetSecurityGroupOutboundRuleResult(dict):
1142
1144
  def __init__(__self__, *,
1143
- action: builtins.str,
1144
- ip: builtins.str,
1145
- ip_range: builtins.str,
1146
- port: builtins.int,
1147
- port_range: builtins.str,
1148
- protocol: builtins.str):
1149
- """
1150
- :param builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
1151
- :param builtins.str ip: The ip this rule apply to.
1152
- :param builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule apply to.
1153
- :param builtins.int port: The port this rule apply to. If no port is specified, rule will apply to all port.
1154
- :param builtins.str port_range: The port range (e.g `22-23`) this rule applies to.
1145
+ action: _builtins.str,
1146
+ ip: _builtins.str,
1147
+ ip_range: _builtins.str,
1148
+ port: _builtins.int,
1149
+ port_range: _builtins.str,
1150
+ protocol: _builtins.str):
1151
+ """
1152
+ :param _builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
1153
+ :param _builtins.str ip: The ip this rule apply to.
1154
+ :param _builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule apply to.
1155
+ :param _builtins.int port: The port this rule apply to. If no port is specified, rule will apply to all port.
1156
+ :param _builtins.str port_range: The port range (e.g `22-23`) this rule applies to.
1155
1157
  If no `port` nor `port_range` are specified, rule will apply to all port.
1156
1158
  Only one of `port` and `port_range` should be specified.
1157
- :param builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
1159
+ :param _builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
1158
1160
  """
1159
1161
  pulumi.set(__self__, "action", action)
1160
1162
  pulumi.set(__self__, "ip", ip)
@@ -1163,41 +1165,41 @@ class GetSecurityGroupOutboundRuleResult(dict):
1163
1165
  pulumi.set(__self__, "port_range", port_range)
1164
1166
  pulumi.set(__self__, "protocol", protocol)
1165
1167
 
1166
- @property
1168
+ @_builtins.property
1167
1169
  @pulumi.getter
1168
- def action(self) -> builtins.str:
1170
+ def action(self) -> _builtins.str:
1169
1171
  """
1170
1172
  The action to take when rule match. Possible values are: `accept` or `drop`.
1171
1173
  """
1172
1174
  return pulumi.get(self, "action")
1173
1175
 
1174
- @property
1176
+ @_builtins.property
1175
1177
  @pulumi.getter
1176
- def ip(self) -> builtins.str:
1178
+ def ip(self) -> _builtins.str:
1177
1179
  """
1178
1180
  The ip this rule apply to.
1179
1181
  """
1180
1182
  return pulumi.get(self, "ip")
1181
1183
 
1182
- @property
1184
+ @_builtins.property
1183
1185
  @pulumi.getter(name="ipRange")
1184
- def ip_range(self) -> builtins.str:
1186
+ def ip_range(self) -> _builtins.str:
1185
1187
  """
1186
1188
  The ip range (e.g `192.168.1.0/24`) this rule apply to.
1187
1189
  """
1188
1190
  return pulumi.get(self, "ip_range")
1189
1191
 
1190
- @property
1192
+ @_builtins.property
1191
1193
  @pulumi.getter
1192
- def port(self) -> builtins.int:
1194
+ def port(self) -> _builtins.int:
1193
1195
  """
1194
1196
  The port this rule apply to. If no port is specified, rule will apply to all port.
1195
1197
  """
1196
1198
  return pulumi.get(self, "port")
1197
1199
 
1198
- @property
1200
+ @_builtins.property
1199
1201
  @pulumi.getter(name="portRange")
1200
- def port_range(self) -> builtins.str:
1202
+ def port_range(self) -> _builtins.str:
1201
1203
  """
1202
1204
  The port range (e.g `22-23`) this rule applies to.
1203
1205
  If no `port` nor `port_range` are specified, rule will apply to all port.
@@ -1205,9 +1207,9 @@ class GetSecurityGroupOutboundRuleResult(dict):
1205
1207
  """
1206
1208
  return pulumi.get(self, "port_range")
1207
1209
 
1208
- @property
1210
+ @_builtins.property
1209
1211
  @pulumi.getter
1210
- def protocol(self) -> builtins.str:
1212
+ def protocol(self) -> _builtins.str:
1211
1213
  """
1212
1214
  The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
1213
1215
  """
@@ -1217,26 +1219,26 @@ class GetSecurityGroupOutboundRuleResult(dict):
1217
1219
  @pulumi.output_type
1218
1220
  class GetServerPrivateIpResult(dict):
1219
1221
  def __init__(__self__, *,
1220
- address: builtins.str,
1221
- id: builtins.str):
1222
+ address: _builtins.str,
1223
+ id: _builtins.str):
1222
1224
  """
1223
- :param builtins.str address: The address of the IP
1224
- :param builtins.str id: The ID of the IP
1225
+ :param _builtins.str address: The address of the IP
1226
+ :param _builtins.str id: The ID of the IP
1225
1227
  """
1226
1228
  pulumi.set(__self__, "address", address)
1227
1229
  pulumi.set(__self__, "id", id)
1228
1230
 
1229
- @property
1231
+ @_builtins.property
1230
1232
  @pulumi.getter
1231
- def address(self) -> builtins.str:
1233
+ def address(self) -> _builtins.str:
1232
1234
  """
1233
1235
  The address of the IP
1234
1236
  """
1235
1237
  return pulumi.get(self, "address")
1236
1238
 
1237
- @property
1239
+ @_builtins.property
1238
1240
  @pulumi.getter
1239
- def id(self) -> builtins.str:
1241
+ def id(self) -> _builtins.str:
1240
1242
  """
1241
1243
  The ID of the IP
1242
1244
  """
@@ -1246,17 +1248,17 @@ class GetServerPrivateIpResult(dict):
1246
1248
  @pulumi.output_type
1247
1249
  class GetServerPrivateNetworkResult(dict):
1248
1250
  def __init__(__self__, *,
1249
- mac_address: builtins.str,
1250
- pn_id: builtins.str,
1251
- pnic_id: builtins.str,
1252
- status: builtins.str,
1253
- zone: builtins.str):
1254
- """
1255
- :param builtins.str mac_address: MAC address of the NIC
1256
- :param builtins.str pn_id: The Private Network ID
1257
- :param builtins.str pnic_id: The ID of the NIC
1258
- :param builtins.str status: The private NIC state
1259
- :param builtins.str zone: `zone`) The zone in which the server exists.
1251
+ mac_address: _builtins.str,
1252
+ pn_id: _builtins.str,
1253
+ pnic_id: _builtins.str,
1254
+ status: _builtins.str,
1255
+ zone: _builtins.str):
1256
+ """
1257
+ :param _builtins.str mac_address: MAC address of the NIC
1258
+ :param _builtins.str pn_id: The Private Network ID
1259
+ :param _builtins.str pnic_id: The ID of the NIC
1260
+ :param _builtins.str status: The private NIC state
1261
+ :param _builtins.str zone: `zone`) The zone in which the server exists.
1260
1262
  """
1261
1263
  pulumi.set(__self__, "mac_address", mac_address)
1262
1264
  pulumi.set(__self__, "pn_id", pn_id)
@@ -1264,41 +1266,41 @@ class GetServerPrivateNetworkResult(dict):
1264
1266
  pulumi.set(__self__, "status", status)
1265
1267
  pulumi.set(__self__, "zone", zone)
1266
1268
 
1267
- @property
1269
+ @_builtins.property
1268
1270
  @pulumi.getter(name="macAddress")
1269
- def mac_address(self) -> builtins.str:
1271
+ def mac_address(self) -> _builtins.str:
1270
1272
  """
1271
1273
  MAC address of the NIC
1272
1274
  """
1273
1275
  return pulumi.get(self, "mac_address")
1274
1276
 
1275
- @property
1277
+ @_builtins.property
1276
1278
  @pulumi.getter(name="pnId")
1277
- def pn_id(self) -> builtins.str:
1279
+ def pn_id(self) -> _builtins.str:
1278
1280
  """
1279
1281
  The Private Network ID
1280
1282
  """
1281
1283
  return pulumi.get(self, "pn_id")
1282
1284
 
1283
- @property
1285
+ @_builtins.property
1284
1286
  @pulumi.getter(name="pnicId")
1285
- def pnic_id(self) -> builtins.str:
1287
+ def pnic_id(self) -> _builtins.str:
1286
1288
  """
1287
1289
  The ID of the NIC
1288
1290
  """
1289
1291
  return pulumi.get(self, "pnic_id")
1290
1292
 
1291
- @property
1293
+ @_builtins.property
1292
1294
  @pulumi.getter
1293
- def status(self) -> builtins.str:
1295
+ def status(self) -> _builtins.str:
1294
1296
  """
1295
1297
  The private NIC state
1296
1298
  """
1297
1299
  return pulumi.get(self, "status")
1298
1300
 
1299
- @property
1301
+ @_builtins.property
1300
1302
  @pulumi.getter
1301
- def zone(self) -> builtins.str:
1303
+ def zone(self) -> _builtins.str:
1302
1304
  """
1303
1305
  `zone`) The zone in which the server exists.
1304
1306
  """
@@ -1308,21 +1310,21 @@ class GetServerPrivateNetworkResult(dict):
1308
1310
  @pulumi.output_type
1309
1311
  class GetServerPublicIpResult(dict):
1310
1312
  def __init__(__self__, *,
1311
- address: builtins.str,
1312
- dynamic: builtins.bool,
1313
- family: builtins.str,
1314
- gateway: builtins.str,
1315
- id: builtins.str,
1316
- netmask: builtins.str,
1317
- provisioning_mode: builtins.str):
1318
- """
1319
- :param builtins.str address: The address of the IP
1320
- :param builtins.bool dynamic: Whether the IP is dynamic
1321
- :param builtins.str family: IP address family (inet or inet6)
1322
- :param builtins.str gateway: Gateway's IP address
1323
- :param builtins.str id: The ID of the IP
1324
- :param builtins.str netmask: CIDR netmask
1325
- :param builtins.str provisioning_mode: Provisioning mode of the IP address
1313
+ address: _builtins.str,
1314
+ dynamic: _builtins.bool,
1315
+ family: _builtins.str,
1316
+ gateway: _builtins.str,
1317
+ id: _builtins.str,
1318
+ netmask: _builtins.str,
1319
+ provisioning_mode: _builtins.str):
1320
+ """
1321
+ :param _builtins.str address: The address of the IP
1322
+ :param _builtins.bool dynamic: Whether the IP is dynamic
1323
+ :param _builtins.str family: IP address family (inet or inet6)
1324
+ :param _builtins.str gateway: Gateway's IP address
1325
+ :param _builtins.str id: The ID of the IP
1326
+ :param _builtins.str netmask: CIDR netmask
1327
+ :param _builtins.str provisioning_mode: Provisioning mode of the IP address
1326
1328
  """
1327
1329
  pulumi.set(__self__, "address", address)
1328
1330
  pulumi.set(__self__, "dynamic", dynamic)
@@ -1332,57 +1334,57 @@ class GetServerPublicIpResult(dict):
1332
1334
  pulumi.set(__self__, "netmask", netmask)
1333
1335
  pulumi.set(__self__, "provisioning_mode", provisioning_mode)
1334
1336
 
1335
- @property
1337
+ @_builtins.property
1336
1338
  @pulumi.getter
1337
- def address(self) -> builtins.str:
1339
+ def address(self) -> _builtins.str:
1338
1340
  """
1339
1341
  The address of the IP
1340
1342
  """
1341
1343
  return pulumi.get(self, "address")
1342
1344
 
1343
- @property
1345
+ @_builtins.property
1344
1346
  @pulumi.getter
1345
- def dynamic(self) -> builtins.bool:
1347
+ def dynamic(self) -> _builtins.bool:
1346
1348
  """
1347
1349
  Whether the IP is dynamic
1348
1350
  """
1349
1351
  return pulumi.get(self, "dynamic")
1350
1352
 
1351
- @property
1353
+ @_builtins.property
1352
1354
  @pulumi.getter
1353
- def family(self) -> builtins.str:
1355
+ def family(self) -> _builtins.str:
1354
1356
  """
1355
1357
  IP address family (inet or inet6)
1356
1358
  """
1357
1359
  return pulumi.get(self, "family")
1358
1360
 
1359
- @property
1361
+ @_builtins.property
1360
1362
  @pulumi.getter
1361
- def gateway(self) -> builtins.str:
1363
+ def gateway(self) -> _builtins.str:
1362
1364
  """
1363
1365
  Gateway's IP address
1364
1366
  """
1365
1367
  return pulumi.get(self, "gateway")
1366
1368
 
1367
- @property
1369
+ @_builtins.property
1368
1370
  @pulumi.getter
1369
- def id(self) -> builtins.str:
1371
+ def id(self) -> _builtins.str:
1370
1372
  """
1371
1373
  The ID of the IP
1372
1374
  """
1373
1375
  return pulumi.get(self, "id")
1374
1376
 
1375
- @property
1377
+ @_builtins.property
1376
1378
  @pulumi.getter
1377
- def netmask(self) -> builtins.str:
1379
+ def netmask(self) -> _builtins.str:
1378
1380
  """
1379
1381
  CIDR netmask
1380
1382
  """
1381
1383
  return pulumi.get(self, "netmask")
1382
1384
 
1383
- @property
1385
+ @_builtins.property
1384
1386
  @pulumi.getter(name="provisioningMode")
1385
- def provisioning_mode(self) -> builtins.str:
1387
+ def provisioning_mode(self) -> _builtins.str:
1386
1388
  """
1387
1389
  Provisioning mode of the IP address
1388
1390
  """
@@ -1392,21 +1394,21 @@ class GetServerPublicIpResult(dict):
1392
1394
  @pulumi.output_type
1393
1395
  class GetServerRootVolumeResult(dict):
1394
1396
  def __init__(__self__, *,
1395
- boot: builtins.bool,
1396
- delete_on_termination: builtins.bool,
1397
- name: builtins.str,
1398
- sbs_iops: builtins.int,
1399
- size_in_gb: builtins.int,
1400
- volume_id: builtins.str,
1401
- volume_type: builtins.str):
1402
- """
1403
- :param builtins.bool boot: Set the volume where the boot the server
1404
- :param builtins.bool delete_on_termination: Forces deletion of the root volume on instance termination.
1405
- :param builtins.str name: The server name. Only one of `name` and `server_id` should be specified.
1406
- :param builtins.int sbs_iops: SBS Volume IOPS, only with volume_type as sbs_volume
1407
- :param builtins.int size_in_gb: Size of the root volume in gigabytes.
1408
- :param builtins.str volume_id: The volume ID of the root volume of the server.
1409
- :param builtins.str volume_type: Volume type of the root volume
1397
+ boot: _builtins.bool,
1398
+ delete_on_termination: _builtins.bool,
1399
+ name: _builtins.str,
1400
+ sbs_iops: _builtins.int,
1401
+ size_in_gb: _builtins.int,
1402
+ volume_id: _builtins.str,
1403
+ volume_type: _builtins.str):
1404
+ """
1405
+ :param _builtins.bool boot: Set the volume where the boot the server
1406
+ :param _builtins.bool delete_on_termination: Forces deletion of the root volume on instance termination.
1407
+ :param _builtins.str name: The server name. Only one of `name` and `server_id` should be specified.
1408
+ :param _builtins.int sbs_iops: SBS Volume IOPS, only with volume_type as sbs_volume
1409
+ :param _builtins.int size_in_gb: Size of the root volume in gigabytes.
1410
+ :param _builtins.str volume_id: The volume ID of the root volume of the server.
1411
+ :param _builtins.str volume_type: Volume type of the root volume
1410
1412
  """
1411
1413
  pulumi.set(__self__, "boot", boot)
1412
1414
  pulumi.set(__self__, "delete_on_termination", delete_on_termination)
@@ -1416,113 +1418,255 @@ class GetServerRootVolumeResult(dict):
1416
1418
  pulumi.set(__self__, "volume_id", volume_id)
1417
1419
  pulumi.set(__self__, "volume_type", volume_type)
1418
1420
 
1419
- @property
1421
+ @_builtins.property
1420
1422
  @pulumi.getter
1421
- def boot(self) -> builtins.bool:
1423
+ def boot(self) -> _builtins.bool:
1422
1424
  """
1423
1425
  Set the volume where the boot the server
1424
1426
  """
1425
1427
  return pulumi.get(self, "boot")
1426
1428
 
1427
- @property
1429
+ @_builtins.property
1428
1430
  @pulumi.getter(name="deleteOnTermination")
1429
- def delete_on_termination(self) -> builtins.bool:
1431
+ def delete_on_termination(self) -> _builtins.bool:
1430
1432
  """
1431
1433
  Forces deletion of the root volume on instance termination.
1432
1434
  """
1433
1435
  return pulumi.get(self, "delete_on_termination")
1434
1436
 
1435
- @property
1437
+ @_builtins.property
1436
1438
  @pulumi.getter
1437
- def name(self) -> builtins.str:
1439
+ def name(self) -> _builtins.str:
1438
1440
  """
1439
1441
  The server name. Only one of `name` and `server_id` should be specified.
1440
1442
  """
1441
1443
  return pulumi.get(self, "name")
1442
1444
 
1443
- @property
1445
+ @_builtins.property
1444
1446
  @pulumi.getter(name="sbsIops")
1445
- def sbs_iops(self) -> builtins.int:
1447
+ def sbs_iops(self) -> _builtins.int:
1446
1448
  """
1447
1449
  SBS Volume IOPS, only with volume_type as sbs_volume
1448
1450
  """
1449
1451
  return pulumi.get(self, "sbs_iops")
1450
1452
 
1451
- @property
1453
+ @_builtins.property
1452
1454
  @pulumi.getter(name="sizeInGb")
1453
- def size_in_gb(self) -> builtins.int:
1455
+ def size_in_gb(self) -> _builtins.int:
1454
1456
  """
1455
1457
  Size of the root volume in gigabytes.
1456
1458
  """
1457
1459
  return pulumi.get(self, "size_in_gb")
1458
1460
 
1459
- @property
1461
+ @_builtins.property
1460
1462
  @pulumi.getter(name="volumeId")
1461
- def volume_id(self) -> builtins.str:
1463
+ def volume_id(self) -> _builtins.str:
1462
1464
  """
1463
1465
  The volume ID of the root volume of the server.
1464
1466
  """
1465
1467
  return pulumi.get(self, "volume_id")
1466
1468
 
1467
- @property
1469
+ @_builtins.property
1468
1470
  @pulumi.getter(name="volumeType")
1469
- def volume_type(self) -> builtins.str:
1471
+ def volume_type(self) -> _builtins.str:
1470
1472
  """
1471
1473
  Volume type of the root volume
1472
1474
  """
1473
1475
  return pulumi.get(self, "volume_type")
1474
1476
 
1475
1477
 
1478
+ @pulumi.output_type
1479
+ class GetServerTypeCapabilityResult(dict):
1480
+ def __init__(__self__, *,
1481
+ boot_types: Sequence[_builtins.str],
1482
+ max_file_systems: _builtins.int):
1483
+ """
1484
+ :param Sequence[_builtins.str] boot_types: The boot types allowed for the server type.
1485
+ :param _builtins.int max_file_systems: The maximum number of file systems that can be attached on the server type.
1486
+ """
1487
+ pulumi.set(__self__, "boot_types", boot_types)
1488
+ pulumi.set(__self__, "max_file_systems", max_file_systems)
1489
+
1490
+ @_builtins.property
1491
+ @pulumi.getter(name="bootTypes")
1492
+ def boot_types(self) -> Sequence[_builtins.str]:
1493
+ """
1494
+ The boot types allowed for the server type.
1495
+ """
1496
+ return pulumi.get(self, "boot_types")
1497
+
1498
+ @_builtins.property
1499
+ @pulumi.getter(name="maxFileSystems")
1500
+ def max_file_systems(self) -> _builtins.int:
1501
+ """
1502
+ The maximum number of file systems that can be attached on the server type.
1503
+ """
1504
+ return pulumi.get(self, "max_file_systems")
1505
+
1506
+
1507
+ @pulumi.output_type
1508
+ class GetServerTypeNetworkResult(dict):
1509
+ def __init__(__self__, *,
1510
+ block_bandwidth: _builtins.int,
1511
+ internal_bandwidth: _builtins.int,
1512
+ public_bandwidth: _builtins.int):
1513
+ """
1514
+ :param _builtins.int block_bandwidth: The block bandwidth of the server type (in bytes/second).
1515
+ :param _builtins.int internal_bandwidth: The internal bandwidth of the server type (in bytes/second).
1516
+ :param _builtins.int public_bandwidth: The public bandwidth of the server type (in bytes/second).
1517
+ """
1518
+ pulumi.set(__self__, "block_bandwidth", block_bandwidth)
1519
+ pulumi.set(__self__, "internal_bandwidth", internal_bandwidth)
1520
+ pulumi.set(__self__, "public_bandwidth", public_bandwidth)
1521
+
1522
+ @_builtins.property
1523
+ @pulumi.getter(name="blockBandwidth")
1524
+ def block_bandwidth(self) -> _builtins.int:
1525
+ """
1526
+ The block bandwidth of the server type (in bytes/second).
1527
+ """
1528
+ return pulumi.get(self, "block_bandwidth")
1529
+
1530
+ @_builtins.property
1531
+ @pulumi.getter(name="internalBandwidth")
1532
+ def internal_bandwidth(self) -> _builtins.int:
1533
+ """
1534
+ The internal bandwidth of the server type (in bytes/second).
1535
+ """
1536
+ return pulumi.get(self, "internal_bandwidth")
1537
+
1538
+ @_builtins.property
1539
+ @pulumi.getter(name="publicBandwidth")
1540
+ def public_bandwidth(self) -> _builtins.int:
1541
+ """
1542
+ The public bandwidth of the server type (in bytes/second).
1543
+ """
1544
+ return pulumi.get(self, "public_bandwidth")
1545
+
1546
+
1547
+ @pulumi.output_type
1548
+ class GetServerTypeVolumeResult(dict):
1549
+ def __init__(__self__, *,
1550
+ block_storage: _builtins.bool,
1551
+ max_size_per_local_volume: _builtins.int,
1552
+ max_size_total: _builtins.int,
1553
+ min_size_per_local_volume: _builtins.int,
1554
+ min_size_total: _builtins.int,
1555
+ scratch_storage_max_size: _builtins.int):
1556
+ """
1557
+ :param _builtins.bool block_storage: Whether block storage is allowed on the server type.
1558
+ :param _builtins.int max_size_per_local_volume: The maximum size in bytes per local volume allowed on the server type.
1559
+ :param _builtins.int max_size_total: The maximum total size in bytes of volumes allowed on the server type.
1560
+ :param _builtins.int min_size_per_local_volume: The minimum size in bytes per local volume allowed on the server type.
1561
+ :param _builtins.int min_size_total: The minimum total size in bytes of volumes allowed on the server type.
1562
+ :param _builtins.int scratch_storage_max_size: The maximum size in bytes of the scratch volume allowed on the server type.
1563
+ """
1564
+ pulumi.set(__self__, "block_storage", block_storage)
1565
+ pulumi.set(__self__, "max_size_per_local_volume", max_size_per_local_volume)
1566
+ pulumi.set(__self__, "max_size_total", max_size_total)
1567
+ pulumi.set(__self__, "min_size_per_local_volume", min_size_per_local_volume)
1568
+ pulumi.set(__self__, "min_size_total", min_size_total)
1569
+ pulumi.set(__self__, "scratch_storage_max_size", scratch_storage_max_size)
1570
+
1571
+ @_builtins.property
1572
+ @pulumi.getter(name="blockStorage")
1573
+ def block_storage(self) -> _builtins.bool:
1574
+ """
1575
+ Whether block storage is allowed on the server type.
1576
+ """
1577
+ return pulumi.get(self, "block_storage")
1578
+
1579
+ @_builtins.property
1580
+ @pulumi.getter(name="maxSizePerLocalVolume")
1581
+ def max_size_per_local_volume(self) -> _builtins.int:
1582
+ """
1583
+ The maximum size in bytes per local volume allowed on the server type.
1584
+ """
1585
+ return pulumi.get(self, "max_size_per_local_volume")
1586
+
1587
+ @_builtins.property
1588
+ @pulumi.getter(name="maxSizeTotal")
1589
+ def max_size_total(self) -> _builtins.int:
1590
+ """
1591
+ The maximum total size in bytes of volumes allowed on the server type.
1592
+ """
1593
+ return pulumi.get(self, "max_size_total")
1594
+
1595
+ @_builtins.property
1596
+ @pulumi.getter(name="minSizePerLocalVolume")
1597
+ def min_size_per_local_volume(self) -> _builtins.int:
1598
+ """
1599
+ The minimum size in bytes per local volume allowed on the server type.
1600
+ """
1601
+ return pulumi.get(self, "min_size_per_local_volume")
1602
+
1603
+ @_builtins.property
1604
+ @pulumi.getter(name="minSizeTotal")
1605
+ def min_size_total(self) -> _builtins.int:
1606
+ """
1607
+ The minimum total size in bytes of volumes allowed on the server type.
1608
+ """
1609
+ return pulumi.get(self, "min_size_total")
1610
+
1611
+ @_builtins.property
1612
+ @pulumi.getter(name="scratchStorageMaxSize")
1613
+ def scratch_storage_max_size(self) -> _builtins.int:
1614
+ """
1615
+ The maximum size in bytes of the scratch volume allowed on the server type.
1616
+ """
1617
+ return pulumi.get(self, "scratch_storage_max_size")
1618
+
1619
+
1476
1620
  @pulumi.output_type
1477
1621
  class GetServersServerResult(dict):
1478
1622
  def __init__(__self__, *,
1479
- boot_type: builtins.str,
1480
- bootscript_id: builtins.str,
1481
- enable_dynamic_ip: builtins.bool,
1482
- enable_ipv6: builtins.bool,
1483
- id: builtins.str,
1484
- image: builtins.str,
1485
- ipv6_address: builtins.str,
1486
- ipv6_gateway: builtins.str,
1487
- ipv6_prefix_length: builtins.int,
1488
- name: builtins.str,
1489
- organization_id: builtins.str,
1490
- placement_group_id: builtins.str,
1491
- placement_group_policy_respected: builtins.bool,
1492
- private_ip: builtins.str,
1623
+ boot_type: _builtins.str,
1624
+ bootscript_id: _builtins.str,
1625
+ enable_dynamic_ip: _builtins.bool,
1626
+ enable_ipv6: _builtins.bool,
1627
+ id: _builtins.str,
1628
+ image: _builtins.str,
1629
+ ipv6_address: _builtins.str,
1630
+ ipv6_gateway: _builtins.str,
1631
+ ipv6_prefix_length: _builtins.int,
1632
+ name: _builtins.str,
1633
+ organization_id: _builtins.str,
1634
+ placement_group_id: _builtins.str,
1635
+ placement_group_policy_respected: _builtins.bool,
1636
+ private_ip: _builtins.str,
1493
1637
  private_ips: Sequence['outputs.GetServersServerPrivateIpResult'],
1494
- project_id: builtins.str,
1495
- public_ip: builtins.str,
1638
+ project_id: _builtins.str,
1639
+ public_ip: _builtins.str,
1496
1640
  public_ips: Sequence['outputs.GetServersServerPublicIpResult'],
1497
- security_group_id: builtins.str,
1498
- state: builtins.str,
1499
- tags: Sequence[builtins.str],
1500
- type: builtins.str,
1501
- zone: builtins.str):
1502
- """
1503
- :param builtins.str boot_type: The boot Type of the server. Possible values are: `local`, `bootscript` or `rescue`.
1504
- :param builtins.str bootscript_id: UUID of the bootscript
1505
- :param builtins.bool enable_dynamic_ip: If true a dynamic IP will be attached to the server.
1506
- :param builtins.bool enable_ipv6: Determines if IPv6 is enabled for the server.
1507
- :param builtins.str id: The ID of the IP
1508
- :param builtins.str image: The UUID or the label of the base image used by the server.
1509
- :param builtins.str ipv6_address: The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true )
1510
- :param builtins.str ipv6_gateway: The ipv6 gateway address. ( Only set when enable_ipv6 is set to true )
1511
- :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 )
1512
- :param builtins.str name: The server name used as filter. Servers with a name like it are listed.
1513
- :param builtins.str organization_id: The organization ID the server is associated with.
1514
- :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.
1515
- :param builtins.bool placement_group_policy_respected: Whether the placement group policy respected or not
1516
- :param builtins.str private_ip: The Scaleway internal IP address of the server.
1641
+ security_group_id: _builtins.str,
1642
+ state: _builtins.str,
1643
+ tags: Sequence[_builtins.str],
1644
+ type: _builtins.str,
1645
+ zone: Optional[_builtins.str] = None):
1646
+ """
1647
+ :param _builtins.str boot_type: The boot Type of the server. Possible values are: `local`, `bootscript` or `rescue`.
1648
+ :param _builtins.str bootscript_id: UUID of the bootscript
1649
+ :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
+ :param _builtins.str id: The ID of the IP
1652
+ :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
+ :param _builtins.str name: The server name used as filter. Servers with a name like it are listed.
1657
+ :param _builtins.str organization_id: The organization ID the server is associated with.
1658
+ :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
+ :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.
1517
1661
  :param Sequence['GetServersServerPrivateIpArgs'] private_ips: The list of private IPv4 and IPv6 addresses associated with the server.
1518
- :param builtins.str project_id: The ID of the project the server is associated with.
1519
- :param builtins.str public_ip: The public IP address of the server.
1662
+ :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.
1520
1664
  :param Sequence['GetServersServerPublicIpArgs'] public_ips: The list of public IPs of the server
1521
- :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.
1522
- :param builtins.str state: The state of the server. Possible values are: `started`, `stopped` or `standby`.
1523
- :param Sequence[builtins.str] tags: List of tags used as filter. Servers with these exact tags are listed.
1524
- :param builtins.str type: The commercial type of the server.
1525
- :param builtins.str zone: `zone`) The zone in which servers exist.
1665
+ :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
+ :param _builtins.str state: The state of the server. Possible values are: `started`, `stopped` or `standby`.
1667
+ :param Sequence[_builtins.str] tags: List of tags used as filter. Servers with these exact tags are listed.
1668
+ :param _builtins.str type: The commercial type of the server.
1669
+ :param _builtins.str zone: `zone`) The zone in which servers exist.
1526
1670
  """
1527
1671
  pulumi.set(__self__, "boot_type", boot_type)
1528
1672
  pulumi.set(__self__, "bootscript_id", bootscript_id)
@@ -1546,122 +1690,123 @@ class GetServersServerResult(dict):
1546
1690
  pulumi.set(__self__, "state", state)
1547
1691
  pulumi.set(__self__, "tags", tags)
1548
1692
  pulumi.set(__self__, "type", type)
1549
- pulumi.set(__self__, "zone", zone)
1693
+ if zone is not None:
1694
+ pulumi.set(__self__, "zone", zone)
1550
1695
 
1551
- @property
1696
+ @_builtins.property
1552
1697
  @pulumi.getter(name="bootType")
1553
- def boot_type(self) -> builtins.str:
1698
+ def boot_type(self) -> _builtins.str:
1554
1699
  """
1555
1700
  The boot Type of the server. Possible values are: `local`, `bootscript` or `rescue`.
1556
1701
  """
1557
1702
  return pulumi.get(self, "boot_type")
1558
1703
 
1559
- @property
1704
+ @_builtins.property
1560
1705
  @pulumi.getter(name="bootscriptId")
1561
1706
  @_utilities.deprecated("""bootscript are not supported""")
1562
- def bootscript_id(self) -> builtins.str:
1707
+ def bootscript_id(self) -> _builtins.str:
1563
1708
  """
1564
1709
  UUID of the bootscript
1565
1710
  """
1566
1711
  return pulumi.get(self, "bootscript_id")
1567
1712
 
1568
- @property
1713
+ @_builtins.property
1569
1714
  @pulumi.getter(name="enableDynamicIp")
1570
- def enable_dynamic_ip(self) -> builtins.bool:
1715
+ def enable_dynamic_ip(self) -> _builtins.bool:
1571
1716
  """
1572
1717
  If true a dynamic IP will be attached to the server.
1573
1718
  """
1574
1719
  return pulumi.get(self, "enable_dynamic_ip")
1575
1720
 
1576
- @property
1721
+ @_builtins.property
1577
1722
  @pulumi.getter(name="enableIpv6")
1578
- def enable_ipv6(self) -> builtins.bool:
1723
+ def enable_ipv6(self) -> _builtins.bool:
1579
1724
  """
1580
1725
  Determines if IPv6 is enabled for the server.
1581
1726
  """
1582
1727
  return pulumi.get(self, "enable_ipv6")
1583
1728
 
1584
- @property
1729
+ @_builtins.property
1585
1730
  @pulumi.getter
1586
- def id(self) -> builtins.str:
1731
+ def id(self) -> _builtins.str:
1587
1732
  """
1588
1733
  The ID of the IP
1589
1734
  """
1590
1735
  return pulumi.get(self, "id")
1591
1736
 
1592
- @property
1737
+ @_builtins.property
1593
1738
  @pulumi.getter
1594
- def image(self) -> builtins.str:
1739
+ def image(self) -> _builtins.str:
1595
1740
  """
1596
1741
  The UUID or the label of the base image used by the server.
1597
1742
  """
1598
1743
  return pulumi.get(self, "image")
1599
1744
 
1600
- @property
1745
+ @_builtins.property
1601
1746
  @pulumi.getter(name="ipv6Address")
1602
- def ipv6_address(self) -> builtins.str:
1747
+ def ipv6_address(self) -> _builtins.str:
1603
1748
  """
1604
1749
  The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true )
1605
1750
  """
1606
1751
  return pulumi.get(self, "ipv6_address")
1607
1752
 
1608
- @property
1753
+ @_builtins.property
1609
1754
  @pulumi.getter(name="ipv6Gateway")
1610
- def ipv6_gateway(self) -> builtins.str:
1755
+ def ipv6_gateway(self) -> _builtins.str:
1611
1756
  """
1612
1757
  The ipv6 gateway address. ( Only set when enable_ipv6 is set to true )
1613
1758
  """
1614
1759
  return pulumi.get(self, "ipv6_gateway")
1615
1760
 
1616
- @property
1761
+ @_builtins.property
1617
1762
  @pulumi.getter(name="ipv6PrefixLength")
1618
- def ipv6_prefix_length(self) -> builtins.int:
1763
+ def ipv6_prefix_length(self) -> _builtins.int:
1619
1764
  """
1620
1765
  The prefix length of the ipv6 subnet routed to the server. ( Only set when enable_ipv6 is set to true )
1621
1766
  """
1622
1767
  return pulumi.get(self, "ipv6_prefix_length")
1623
1768
 
1624
- @property
1769
+ @_builtins.property
1625
1770
  @pulumi.getter
1626
- def name(self) -> builtins.str:
1771
+ def name(self) -> _builtins.str:
1627
1772
  """
1628
1773
  The server name used as filter. Servers with a name like it are listed.
1629
1774
  """
1630
1775
  return pulumi.get(self, "name")
1631
1776
 
1632
- @property
1777
+ @_builtins.property
1633
1778
  @pulumi.getter(name="organizationId")
1634
- def organization_id(self) -> builtins.str:
1779
+ def organization_id(self) -> _builtins.str:
1635
1780
  """
1636
1781
  The organization ID the server is associated with.
1637
1782
  """
1638
1783
  return pulumi.get(self, "organization_id")
1639
1784
 
1640
- @property
1785
+ @_builtins.property
1641
1786
  @pulumi.getter(name="placementGroupId")
1642
- def placement_group_id(self) -> builtins.str:
1787
+ def placement_group_id(self) -> _builtins.str:
1643
1788
  """
1644
1789
  The [placement group](https://developers.scaleway.com/en/products/instance/api/#placement-groups-d8f653) the server is attached to.
1645
1790
  """
1646
1791
  return pulumi.get(self, "placement_group_id")
1647
1792
 
1648
- @property
1793
+ @_builtins.property
1649
1794
  @pulumi.getter(name="placementGroupPolicyRespected")
1650
- def placement_group_policy_respected(self) -> builtins.bool:
1795
+ def placement_group_policy_respected(self) -> _builtins.bool:
1651
1796
  """
1652
1797
  Whether the placement group policy respected or not
1653
1798
  """
1654
1799
  return pulumi.get(self, "placement_group_policy_respected")
1655
1800
 
1656
- @property
1801
+ @_builtins.property
1657
1802
  @pulumi.getter(name="privateIp")
1658
- def private_ip(self) -> builtins.str:
1803
+ def private_ip(self) -> _builtins.str:
1659
1804
  """
1660
1805
  The Scaleway internal IP address of the server.
1661
1806
  """
1662
1807
  return pulumi.get(self, "private_ip")
1663
1808
 
1664
- @property
1809
+ @_builtins.property
1665
1810
  @pulumi.getter(name="privateIps")
1666
1811
  def private_ips(self) -> Sequence['outputs.GetServersServerPrivateIpResult']:
1667
1812
  """
@@ -1669,24 +1814,24 @@ class GetServersServerResult(dict):
1669
1814
  """
1670
1815
  return pulumi.get(self, "private_ips")
1671
1816
 
1672
- @property
1817
+ @_builtins.property
1673
1818
  @pulumi.getter(name="projectId")
1674
- def project_id(self) -> builtins.str:
1819
+ def project_id(self) -> _builtins.str:
1675
1820
  """
1676
1821
  The ID of the project the server is associated with.
1677
1822
  """
1678
1823
  return pulumi.get(self, "project_id")
1679
1824
 
1680
- @property
1825
+ @_builtins.property
1681
1826
  @pulumi.getter(name="publicIp")
1682
1827
  @_utilities.deprecated("""Use public_ips instead""")
1683
- def public_ip(self) -> builtins.str:
1828
+ def public_ip(self) -> _builtins.str:
1684
1829
  """
1685
1830
  The public IP address of the server.
1686
1831
  """
1687
1832
  return pulumi.get(self, "public_ip")
1688
1833
 
1689
- @property
1834
+ @_builtins.property
1690
1835
  @pulumi.getter(name="publicIps")
1691
1836
  def public_ips(self) -> Sequence['outputs.GetServersServerPublicIpResult']:
1692
1837
  """
@@ -1694,41 +1839,41 @@ class GetServersServerResult(dict):
1694
1839
  """
1695
1840
  return pulumi.get(self, "public_ips")
1696
1841
 
1697
- @property
1842
+ @_builtins.property
1698
1843
  @pulumi.getter(name="securityGroupId")
1699
- def security_group_id(self) -> builtins.str:
1844
+ def security_group_id(self) -> _builtins.str:
1700
1845
  """
1701
1846
  The [security group](https://developers.scaleway.com/en/products/instance/api/#security-groups-8d7f89) the server is attached to.
1702
1847
  """
1703
1848
  return pulumi.get(self, "security_group_id")
1704
1849
 
1705
- @property
1850
+ @_builtins.property
1706
1851
  @pulumi.getter
1707
- def state(self) -> builtins.str:
1852
+ def state(self) -> _builtins.str:
1708
1853
  """
1709
1854
  The state of the server. Possible values are: `started`, `stopped` or `standby`.
1710
1855
  """
1711
1856
  return pulumi.get(self, "state")
1712
1857
 
1713
- @property
1858
+ @_builtins.property
1714
1859
  @pulumi.getter
1715
- def tags(self) -> Sequence[builtins.str]:
1860
+ def tags(self) -> Sequence[_builtins.str]:
1716
1861
  """
1717
1862
  List of tags used as filter. Servers with these exact tags are listed.
1718
1863
  """
1719
1864
  return pulumi.get(self, "tags")
1720
1865
 
1721
- @property
1866
+ @_builtins.property
1722
1867
  @pulumi.getter
1723
- def type(self) -> builtins.str:
1868
+ def type(self) -> _builtins.str:
1724
1869
  """
1725
1870
  The commercial type of the server.
1726
1871
  """
1727
1872
  return pulumi.get(self, "type")
1728
1873
 
1729
- @property
1874
+ @_builtins.property
1730
1875
  @pulumi.getter
1731
- def zone(self) -> builtins.str:
1876
+ def zone(self) -> Optional[_builtins.str]:
1732
1877
  """
1733
1878
  `zone`) The zone in which servers exist.
1734
1879
  """
@@ -1738,26 +1883,26 @@ class GetServersServerResult(dict):
1738
1883
  @pulumi.output_type
1739
1884
  class GetServersServerPrivateIpResult(dict):
1740
1885
  def __init__(__self__, *,
1741
- address: builtins.str,
1742
- id: builtins.str):
1886
+ address: _builtins.str,
1887
+ id: _builtins.str):
1743
1888
  """
1744
- :param builtins.str address: The address of the IP
1745
- :param builtins.str id: The ID of the IP
1889
+ :param _builtins.str address: The address of the IP
1890
+ :param _builtins.str id: The ID of the IP
1746
1891
  """
1747
1892
  pulumi.set(__self__, "address", address)
1748
1893
  pulumi.set(__self__, "id", id)
1749
1894
 
1750
- @property
1895
+ @_builtins.property
1751
1896
  @pulumi.getter
1752
- def address(self) -> builtins.str:
1897
+ def address(self) -> _builtins.str:
1753
1898
  """
1754
1899
  The address of the IP
1755
1900
  """
1756
1901
  return pulumi.get(self, "address")
1757
1902
 
1758
- @property
1903
+ @_builtins.property
1759
1904
  @pulumi.getter
1760
- def id(self) -> builtins.str:
1905
+ def id(self) -> _builtins.str:
1761
1906
  """
1762
1907
  The ID of the IP
1763
1908
  """
@@ -1767,26 +1912,26 @@ class GetServersServerPrivateIpResult(dict):
1767
1912
  @pulumi.output_type
1768
1913
  class GetServersServerPublicIpResult(dict):
1769
1914
  def __init__(__self__, *,
1770
- address: builtins.str,
1771
- id: builtins.str):
1915
+ address: _builtins.str,
1916
+ id: _builtins.str):
1772
1917
  """
1773
- :param builtins.str address: The address of the IP
1774
- :param builtins.str id: The ID of the IP
1918
+ :param _builtins.str address: The address of the IP
1919
+ :param _builtins.str id: The ID of the IP
1775
1920
  """
1776
1921
  pulumi.set(__self__, "address", address)
1777
1922
  pulumi.set(__self__, "id", id)
1778
1923
 
1779
- @property
1924
+ @_builtins.property
1780
1925
  @pulumi.getter
1781
- def address(self) -> builtins.str:
1926
+ def address(self) -> _builtins.str:
1782
1927
  """
1783
1928
  The address of the IP
1784
1929
  """
1785
1930
  return pulumi.get(self, "address")
1786
1931
 
1787
- @property
1932
+ @_builtins.property
1788
1933
  @pulumi.getter
1789
- def id(self) -> builtins.str:
1934
+ def id(self) -> _builtins.str:
1790
1935
  """
1791
1936
  The ID of the IP
1792
1937
  """
@@ -1796,26 +1941,26 @@ class GetServersServerPublicIpResult(dict):
1796
1941
  @pulumi.output_type
1797
1942
  class GetSnapshotImportResult(dict):
1798
1943
  def __init__(__self__, *,
1799
- bucket: builtins.str,
1800
- key: builtins.str):
1944
+ bucket: _builtins.str,
1945
+ key: _builtins.str):
1801
1946
  """
1802
- :param builtins.str bucket: Bucket containing qcow
1803
- :param builtins.str key: Key of the qcow file in the specified bucket
1947
+ :param _builtins.str bucket: Bucket containing qcow
1948
+ :param _builtins.str key: Key of the qcow file in the specified bucket
1804
1949
  """
1805
1950
  pulumi.set(__self__, "bucket", bucket)
1806
1951
  pulumi.set(__self__, "key", key)
1807
1952
 
1808
- @property
1953
+ @_builtins.property
1809
1954
  @pulumi.getter
1810
- def bucket(self) -> builtins.str:
1955
+ def bucket(self) -> _builtins.str:
1811
1956
  """
1812
1957
  Bucket containing qcow
1813
1958
  """
1814
1959
  return pulumi.get(self, "bucket")
1815
1960
 
1816
- @property
1961
+ @_builtins.property
1817
1962
  @pulumi.getter
1818
- def key(self) -> builtins.str:
1963
+ def key(self) -> _builtins.str:
1819
1964
  """
1820
1965
  Key of the qcow file in the specified bucket
1821
1966
  """