pulumiverse-scaleway 1.30.0a1748337252__py3-none-any.whl → 1.30.0a1752168858__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 (490) hide show
  1. pulumiverse_scaleway/__init__.py +11 -1
  2. pulumiverse_scaleway/_inputs.py +2252 -2143
  3. pulumiverse_scaleway/_utilities.py +1 -1
  4. pulumiverse_scaleway/account/__init__.py +2 -1
  5. pulumiverse_scaleway/account/get_availability_zones.py +9 -8
  6. pulumiverse_scaleway/account/get_project.py +21 -20
  7. pulumiverse_scaleway/account/get_projects.py +28 -21
  8. pulumiverse_scaleway/account/get_ssh_key.py +24 -23
  9. pulumiverse_scaleway/account/outputs.py +20 -19
  10. pulumiverse_scaleway/account/project.py +59 -57
  11. pulumiverse_scaleway/account/ssh_key.py +87 -85
  12. pulumiverse_scaleway/account_project.py +59 -57
  13. pulumiverse_scaleway/account_ssh_key.py +87 -85
  14. pulumiverse_scaleway/apple_silicon_server.py +204 -155
  15. pulumiverse_scaleway/applesilicon/__init__.py +2 -1
  16. pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
  17. pulumiverse_scaleway/applesilicon/outputs.py +54 -21
  18. pulumiverse_scaleway/applesilicon/server.py +204 -155
  19. pulumiverse_scaleway/baremetal_server.py +262 -260
  20. pulumiverse_scaleway/billing/__init__.py +2 -1
  21. pulumiverse_scaleway/billing/get_consumptions.py +10 -9
  22. pulumiverse_scaleway/billing/get_invoices.py +19 -18
  23. pulumiverse_scaleway/billing/outputs.py +73 -72
  24. pulumiverse_scaleway/block/__init__.py +2 -1
  25. pulumiverse_scaleway/block/_inputs.py +12 -11
  26. pulumiverse_scaleway/block/get_snapshot.py +29 -28
  27. pulumiverse_scaleway/block/get_volume.py +28 -27
  28. pulumiverse_scaleway/block/outputs.py +14 -13
  29. pulumiverse_scaleway/block/snapshot.py +73 -71
  30. pulumiverse_scaleway/block/volume.py +115 -113
  31. pulumiverse_scaleway/block_snapshot.py +73 -71
  32. pulumiverse_scaleway/block_volume.py +115 -113
  33. pulumiverse_scaleway/cockpit.py +38 -36
  34. pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
  35. pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
  36. pulumiverse_scaleway/cockpit_source.py +115 -113
  37. pulumiverse_scaleway/cockpit_token.py +66 -64
  38. pulumiverse_scaleway/config/__init__.py +2 -1
  39. pulumiverse_scaleway/config/__init__.pyi +2 -1
  40. pulumiverse_scaleway/config/vars.py +2 -1
  41. pulumiverse_scaleway/container.py +573 -343
  42. pulumiverse_scaleway/container_cron.py +80 -78
  43. pulumiverse_scaleway/container_domain.py +52 -50
  44. pulumiverse_scaleway/container_namespace.py +211 -140
  45. pulumiverse_scaleway/container_token.py +80 -78
  46. pulumiverse_scaleway/container_trigger.py +59 -57
  47. pulumiverse_scaleway/containers/__init__.py +2 -1
  48. pulumiverse_scaleway/containers/_inputs.py +72 -71
  49. pulumiverse_scaleway/containers/container.py +573 -343
  50. pulumiverse_scaleway/containers/cron.py +80 -78
  51. pulumiverse_scaleway/containers/domain.py +52 -50
  52. pulumiverse_scaleway/containers/get_container.py +87 -42
  53. pulumiverse_scaleway/containers/get_namespace.py +43 -31
  54. pulumiverse_scaleway/containers/namespace.py +211 -140
  55. pulumiverse_scaleway/containers/outputs.py +62 -61
  56. pulumiverse_scaleway/containers/token.py +80 -78
  57. pulumiverse_scaleway/containers/trigger.py +59 -57
  58. pulumiverse_scaleway/database.py +66 -64
  59. pulumiverse_scaleway/database_acl.py +31 -29
  60. pulumiverse_scaleway/database_backup.py +101 -99
  61. pulumiverse_scaleway/database_instance.py +297 -295
  62. pulumiverse_scaleway/database_privilege.py +73 -71
  63. pulumiverse_scaleway/database_read_replica.py +45 -43
  64. pulumiverse_scaleway/database_user.py +73 -71
  65. pulumiverse_scaleway/databases/__init__.py +2 -1
  66. pulumiverse_scaleway/databases/_inputs.py +191 -190
  67. pulumiverse_scaleway/databases/acl.py +31 -29
  68. pulumiverse_scaleway/databases/database.py +66 -64
  69. pulumiverse_scaleway/databases/database_backup.py +101 -99
  70. pulumiverse_scaleway/databases/get_acl.py +13 -12
  71. pulumiverse_scaleway/databases/get_database.py +19 -18
  72. pulumiverse_scaleway/databases/get_database_backup.py +34 -33
  73. pulumiverse_scaleway/databases/get_instance.py +43 -42
  74. pulumiverse_scaleway/databases/get_privilege.py +24 -23
  75. pulumiverse_scaleway/databases/instance.py +297 -295
  76. pulumiverse_scaleway/databases/outputs.py +188 -187
  77. pulumiverse_scaleway/databases/privilege.py +73 -71
  78. pulumiverse_scaleway/databases/read_replica.py +45 -43
  79. pulumiverse_scaleway/databases/serverless_database.py +80 -78
  80. pulumiverse_scaleway/databases/snapshot.py +101 -99
  81. pulumiverse_scaleway/databases/user.py +73 -71
  82. pulumiverse_scaleway/domain/__init__.py +2 -1
  83. pulumiverse_scaleway/domain/_inputs.py +531 -530
  84. pulumiverse_scaleway/domain/get_record.py +38 -37
  85. pulumiverse_scaleway/domain/get_zone.py +24 -23
  86. pulumiverse_scaleway/domain/outputs.py +358 -357
  87. pulumiverse_scaleway/domain/record.py +129 -127
  88. pulumiverse_scaleway/domain/registration.py +94 -92
  89. pulumiverse_scaleway/domain/zone.py +87 -85
  90. pulumiverse_scaleway/domain_record.py +129 -127
  91. pulumiverse_scaleway/domain_zone.py +87 -85
  92. pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
  93. pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
  94. pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
  95. pulumiverse_scaleway/edge_services_head_stage.py +31 -29
  96. pulumiverse_scaleway/edge_services_pipeline.py +66 -64
  97. pulumiverse_scaleway/edge_services_plan.py +31 -29
  98. pulumiverse_scaleway/edge_services_route_stage.py +59 -57
  99. pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
  100. pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
  101. pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
  102. pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
  103. pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
  104. pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
  105. pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
  106. pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
  107. pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
  108. pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
  109. pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
  110. pulumiverse_scaleway/elasticmetal/ip.py +139 -137
  111. pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
  112. pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
  113. pulumiverse_scaleway/elasticmetal/server.py +262 -260
  114. pulumiverse_scaleway/file_filesystem.py +552 -0
  115. pulumiverse_scaleway/flexible_ip.py +139 -137
  116. pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
  117. pulumiverse_scaleway/function.py +394 -284
  118. pulumiverse_scaleway/function_cron.py +80 -78
  119. pulumiverse_scaleway/function_domain.py +52 -50
  120. pulumiverse_scaleway/function_namespace.py +197 -126
  121. pulumiverse_scaleway/function_token.py +80 -78
  122. pulumiverse_scaleway/function_trigger.py +59 -57
  123. pulumiverse_scaleway/functions/__init__.py +2 -1
  124. pulumiverse_scaleway/functions/_inputs.py +42 -41
  125. pulumiverse_scaleway/functions/cron.py +80 -78
  126. pulumiverse_scaleway/functions/domain.py +52 -50
  127. pulumiverse_scaleway/functions/function.py +394 -284
  128. pulumiverse_scaleway/functions/get_function.py +69 -46
  129. pulumiverse_scaleway/functions/get_namespace.py +42 -30
  130. pulumiverse_scaleway/functions/namespace.py +197 -126
  131. pulumiverse_scaleway/functions/outputs.py +26 -25
  132. pulumiverse_scaleway/functions/token.py +80 -78
  133. pulumiverse_scaleway/functions/trigger.py +59 -57
  134. pulumiverse_scaleway/get_account_project.py +21 -20
  135. pulumiverse_scaleway/get_account_ssh_key.py +24 -23
  136. pulumiverse_scaleway/get_availability_zones.py +9 -8
  137. pulumiverse_scaleway/get_baremetal_offer.py +29 -28
  138. pulumiverse_scaleway/get_baremetal_option.py +19 -18
  139. pulumiverse_scaleway/get_baremetal_os.py +23 -22
  140. pulumiverse_scaleway/get_baremetal_server.py +39 -38
  141. pulumiverse_scaleway/get_billing_consumptions.py +10 -9
  142. pulumiverse_scaleway/get_billing_invoices.py +19 -18
  143. pulumiverse_scaleway/get_block_snapshot.py +29 -28
  144. pulumiverse_scaleway/get_block_volume.py +28 -27
  145. pulumiverse_scaleway/get_cockpit.py +10 -9
  146. pulumiverse_scaleway/get_cockpit_source.py +33 -32
  147. pulumiverse_scaleway/get_config.py +13 -12
  148. pulumiverse_scaleway/get_container.py +87 -42
  149. pulumiverse_scaleway/get_container_namespace.py +43 -31
  150. pulumiverse_scaleway/get_database.py +19 -18
  151. pulumiverse_scaleway/get_database_acl.py +13 -12
  152. pulumiverse_scaleway/get_database_backup.py +34 -33
  153. pulumiverse_scaleway/get_database_instance.py +43 -42
  154. pulumiverse_scaleway/get_database_privilege.py +24 -23
  155. pulumiverse_scaleway/get_domain_record.py +38 -37
  156. pulumiverse_scaleway/get_domain_zone.py +24 -23
  157. pulumiverse_scaleway/get_flexible_ip.py +56 -39
  158. pulumiverse_scaleway/get_flexible_ips.py +24 -23
  159. pulumiverse_scaleway/get_function.py +69 -46
  160. pulumiverse_scaleway/get_function_namespace.py +42 -30
  161. pulumiverse_scaleway/get_iam_api_key.py +17 -16
  162. pulumiverse_scaleway/get_iam_application.py +23 -22
  163. pulumiverse_scaleway/get_iam_group.py +25 -24
  164. pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
  165. pulumiverse_scaleway/get_iam_user.py +23 -22
  166. pulumiverse_scaleway/get_instance_image.py +42 -41
  167. pulumiverse_scaleway/get_instance_ip.py +20 -19
  168. pulumiverse_scaleway/get_instance_placement_group.py +28 -27
  169. pulumiverse_scaleway/get_instance_private_nic.py +31 -30
  170. pulumiverse_scaleway/get_instance_security_group.py +31 -30
  171. pulumiverse_scaleway/get_instance_server.py +59 -47
  172. pulumiverse_scaleway/get_instance_servers.py +24 -23
  173. pulumiverse_scaleway/get_instance_snapshot.py +29 -28
  174. pulumiverse_scaleway/get_instance_volume.py +30 -29
  175. pulumiverse_scaleway/get_iot_device.py +31 -30
  176. pulumiverse_scaleway/get_iot_hub.py +39 -38
  177. pulumiverse_scaleway/get_ipam_ip.py +51 -50
  178. pulumiverse_scaleway/get_ipam_ips.py +44 -43
  179. pulumiverse_scaleway/get_k8s_version.py +16 -15
  180. pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
  181. pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
  182. pulumiverse_scaleway/get_lb_acls.py +22 -21
  183. pulumiverse_scaleway/get_lb_backend.py +43 -42
  184. pulumiverse_scaleway/get_lb_backends.py +22 -21
  185. pulumiverse_scaleway/get_lb_frontend.py +26 -25
  186. pulumiverse_scaleway/get_lb_frontends.py +22 -21
  187. pulumiverse_scaleway/get_lb_ips.py +29 -28
  188. pulumiverse_scaleway/get_lb_route.py +16 -15
  189. pulumiverse_scaleway/get_lb_routes.py +17 -16
  190. pulumiverse_scaleway/get_lbs.py +24 -23
  191. pulumiverse_scaleway/get_loadbalancer.py +36 -35
  192. pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
  193. pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
  194. pulumiverse_scaleway/get_marketplace_image.py +23 -22
  195. pulumiverse_scaleway/get_mnq_sns.py +14 -13
  196. pulumiverse_scaleway/get_mnq_sqs.py +14 -13
  197. pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
  198. pulumiverse_scaleway/get_object_bucket.py +22 -21
  199. pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
  200. pulumiverse_scaleway/get_redis_cluster.py +34 -33
  201. pulumiverse_scaleway/get_registry_image.py +37 -36
  202. pulumiverse_scaleway/get_registry_image_tag.py +33 -32
  203. pulumiverse_scaleway/get_registry_namespace.py +27 -26
  204. pulumiverse_scaleway/get_secret.py +41 -40
  205. pulumiverse_scaleway/get_secret_version.py +34 -33
  206. pulumiverse_scaleway/get_tem_domain.py +43 -42
  207. pulumiverse_scaleway/get_vpc.py +35 -34
  208. pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
  209. pulumiverse_scaleway/get_vpc_private_network.py +32 -31
  210. pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
  211. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
  212. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
  213. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
  214. pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
  215. pulumiverse_scaleway/get_vpc_routes.py +38 -37
  216. pulumiverse_scaleway/get_vpcs.py +24 -23
  217. pulumiverse_scaleway/get_web_host_offer.py +25 -24
  218. pulumiverse_scaleway/get_webhosting.py +36 -35
  219. pulumiverse_scaleway/hosting/__init__.py +2 -1
  220. pulumiverse_scaleway/hosting/_inputs.py +61 -60
  221. pulumiverse_scaleway/hosting/get_hosting.py +36 -35
  222. pulumiverse_scaleway/hosting/get_offer.py +25 -24
  223. pulumiverse_scaleway/hosting/hosting.py +164 -162
  224. pulumiverse_scaleway/hosting/outputs.py +139 -138
  225. pulumiverse_scaleway/iam/__init__.py +2 -1
  226. pulumiverse_scaleway/iam/_inputs.py +22 -21
  227. pulumiverse_scaleway/iam/api_key.py +115 -113
  228. pulumiverse_scaleway/iam/application.py +80 -78
  229. pulumiverse_scaleway/iam/get_api_key.py +17 -16
  230. pulumiverse_scaleway/iam/get_application.py +23 -22
  231. pulumiverse_scaleway/iam/get_group.py +25 -24
  232. pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
  233. pulumiverse_scaleway/iam/get_user.py +23 -22
  234. pulumiverse_scaleway/iam/group.py +115 -113
  235. pulumiverse_scaleway/iam/group_membership.py +45 -43
  236. pulumiverse_scaleway/iam/outputs.py +14 -13
  237. pulumiverse_scaleway/iam/policy.py +136 -134
  238. pulumiverse_scaleway/iam/ssh_key.py +87 -85
  239. pulumiverse_scaleway/iam/user.py +284 -273
  240. pulumiverse_scaleway/iam_api_key.py +115 -113
  241. pulumiverse_scaleway/iam_application.py +80 -78
  242. pulumiverse_scaleway/iam_group.py +115 -113
  243. pulumiverse_scaleway/iam_group_membership.py +45 -43
  244. pulumiverse_scaleway/iam_policy.py +136 -134
  245. pulumiverse_scaleway/iam_ssh_key.py +87 -85
  246. pulumiverse_scaleway/iam_user.py +284 -273
  247. pulumiverse_scaleway/inference/__init__.py +2 -1
  248. pulumiverse_scaleway/inference/_inputs.py +116 -61
  249. pulumiverse_scaleway/inference/deployment.py +225 -176
  250. pulumiverse_scaleway/inference/get_model.py +27 -26
  251. pulumiverse_scaleway/inference/model.py +129 -127
  252. pulumiverse_scaleway/inference/outputs.py +82 -49
  253. pulumiverse_scaleway/inference_deployment.py +225 -176
  254. pulumiverse_scaleway/instance/__init__.py +2 -1
  255. pulumiverse_scaleway/instance/_inputs.py +296 -295
  256. pulumiverse_scaleway/instance/get_image.py +42 -41
  257. pulumiverse_scaleway/instance/get_ip.py +20 -19
  258. pulumiverse_scaleway/instance/get_placement_group.py +28 -27
  259. pulumiverse_scaleway/instance/get_private_nic.py +31 -30
  260. pulumiverse_scaleway/instance/get_security_group.py +31 -30
  261. pulumiverse_scaleway/instance/get_server.py +59 -47
  262. pulumiverse_scaleway/instance/get_servers.py +24 -23
  263. pulumiverse_scaleway/instance/get_snapshot.py +29 -28
  264. pulumiverse_scaleway/instance/get_volume.py +30 -29
  265. pulumiverse_scaleway/instance/image.py +150 -148
  266. pulumiverse_scaleway/instance/ip.py +94 -92
  267. pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
  268. pulumiverse_scaleway/instance/outputs.py +349 -348
  269. pulumiverse_scaleway/instance/placement_group.py +101 -99
  270. pulumiverse_scaleway/instance/private_nic.py +94 -92
  271. pulumiverse_scaleway/instance/security_group.py +150 -148
  272. pulumiverse_scaleway/instance/security_group_rules.py +17 -15
  273. pulumiverse_scaleway/instance/server.py +393 -330
  274. pulumiverse_scaleway/instance/snapshot.py +108 -106
  275. pulumiverse_scaleway/instance/user_data.py +59 -57
  276. pulumiverse_scaleway/instance/volume.py +129 -127
  277. pulumiverse_scaleway/instance_image.py +150 -148
  278. pulumiverse_scaleway/instance_ip.py +94 -92
  279. pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
  280. pulumiverse_scaleway/instance_placement_group.py +101 -99
  281. pulumiverse_scaleway/instance_private_nic.py +94 -92
  282. pulumiverse_scaleway/instance_security_group.py +150 -148
  283. pulumiverse_scaleway/instance_security_group_rules.py +17 -15
  284. pulumiverse_scaleway/instance_server.py +393 -330
  285. pulumiverse_scaleway/instance_snapshot.py +108 -106
  286. pulumiverse_scaleway/instance_user_data.py +59 -57
  287. pulumiverse_scaleway/instance_volume.py +129 -127
  288. pulumiverse_scaleway/iot/__init__.py +2 -1
  289. pulumiverse_scaleway/iot/_inputs.py +98 -97
  290. pulumiverse_scaleway/iot/device.py +122 -120
  291. pulumiverse_scaleway/iot/get_device.py +31 -30
  292. pulumiverse_scaleway/iot/get_hub.py +39 -38
  293. pulumiverse_scaleway/iot/hub.py +206 -204
  294. pulumiverse_scaleway/iot/network.py +94 -92
  295. pulumiverse_scaleway/iot/outputs.py +78 -77
  296. pulumiverse_scaleway/iot/route.py +66 -64
  297. pulumiverse_scaleway/iot_device.py +122 -120
  298. pulumiverse_scaleway/iot_hub.py +206 -204
  299. pulumiverse_scaleway/iot_network.py +94 -92
  300. pulumiverse_scaleway/iot_route.py +66 -64
  301. pulumiverse_scaleway/ipam/__init__.py +2 -1
  302. pulumiverse_scaleway/ipam/_inputs.py +87 -86
  303. pulumiverse_scaleway/ipam/get_ip.py +51 -50
  304. pulumiverse_scaleway/ipam/get_ips.py +44 -43
  305. pulumiverse_scaleway/ipam/ip.py +94 -92
  306. pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
  307. pulumiverse_scaleway/ipam/outputs.py +90 -89
  308. pulumiverse_scaleway/ipam_ip.py +94 -92
  309. pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
  310. pulumiverse_scaleway/job/__init__.py +2 -1
  311. pulumiverse_scaleway/job/_inputs.py +38 -37
  312. pulumiverse_scaleway/job/definition.py +143 -141
  313. pulumiverse_scaleway/job/outputs.py +24 -23
  314. pulumiverse_scaleway/job_definition.py +143 -141
  315. pulumiverse_scaleway/kubernetes/__init__.py +2 -1
  316. pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
  317. pulumiverse_scaleway/kubernetes/acl.py +45 -43
  318. pulumiverse_scaleway/kubernetes/cluster.py +234 -232
  319. pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
  320. pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
  321. pulumiverse_scaleway/kubernetes/get_version.py +16 -15
  322. pulumiverse_scaleway/kubernetes/outputs.py +217 -216
  323. pulumiverse_scaleway/kubernetes/pool.py +290 -288
  324. pulumiverse_scaleway/kubernetes_cluster.py +234 -232
  325. pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
  326. pulumiverse_scaleway/loadbalancer.py +199 -197
  327. pulumiverse_scaleway/loadbalancer_acl.py +73 -71
  328. pulumiverse_scaleway/loadbalancer_backend.py +381 -379
  329. pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
  330. pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
  331. pulumiverse_scaleway/loadbalancer_ip.py +101 -99
  332. pulumiverse_scaleway/loadbalancer_route.py +101 -99
  333. pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
  334. pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
  335. pulumiverse_scaleway/loadbalancers/acl.py +73 -71
  336. pulumiverse_scaleway/loadbalancers/backend.py +381 -379
  337. pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
  338. pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
  339. pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
  340. pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
  341. pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
  342. pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
  343. pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
  344. pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
  345. pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
  346. pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
  347. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
  348. pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
  349. pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
  350. pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
  351. pulumiverse_scaleway/loadbalancers/ip.py +101 -99
  352. pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
  353. pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
  354. pulumiverse_scaleway/loadbalancers/route.py +101 -99
  355. pulumiverse_scaleway/mnq/__init__.py +2 -1
  356. pulumiverse_scaleway/mnq/_inputs.py +32 -31
  357. pulumiverse_scaleway/mnq/get_sns.py +14 -13
  358. pulumiverse_scaleway/mnq/get_sqs.py +14 -13
  359. pulumiverse_scaleway/mnq/nats_account.py +52 -50
  360. pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
  361. pulumiverse_scaleway/mnq/outputs.py +20 -19
  362. pulumiverse_scaleway/mnq/sns.py +38 -36
  363. pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
  364. pulumiverse_scaleway/mnq/sns_topic.py +143 -141
  365. pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
  366. pulumiverse_scaleway/mnq/sqs.py +38 -36
  367. pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
  368. pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
  369. pulumiverse_scaleway/mnq_nats_account.py +52 -50
  370. pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
  371. pulumiverse_scaleway/mnq_sns.py +38 -36
  372. pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
  373. pulumiverse_scaleway/mnq_sns_topic.py +143 -141
  374. pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
  375. pulumiverse_scaleway/mnq_sqs.py +38 -36
  376. pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
  377. pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
  378. pulumiverse_scaleway/mongo_db_instance.py +199 -197
  379. pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
  380. pulumiverse_scaleway/mongodb/__init__.py +2 -1
  381. pulumiverse_scaleway/mongodb/_inputs.py +53 -52
  382. pulumiverse_scaleway/mongodb/get_instance.py +35 -34
  383. pulumiverse_scaleway/mongodb/instance.py +199 -197
  384. pulumiverse_scaleway/mongodb/outputs.py +64 -63
  385. pulumiverse_scaleway/mongodb/snapshot.py +101 -99
  386. pulumiverse_scaleway/network/__init__.py +2 -1
  387. pulumiverse_scaleway/network/_inputs.py +140 -139
  388. pulumiverse_scaleway/network/acl.py +59 -57
  389. pulumiverse_scaleway/network/gateway_network.py +143 -141
  390. pulumiverse_scaleway/network/get_gateway_network.py +28 -27
  391. pulumiverse_scaleway/network/get_private_network.py +32 -31
  392. pulumiverse_scaleway/network/get_public_gateway.py +36 -35
  393. pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
  394. pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
  395. pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
  396. pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
  397. pulumiverse_scaleway/network/get_routes.py +38 -37
  398. pulumiverse_scaleway/network/get_vpc.py +35 -34
  399. pulumiverse_scaleway/network/get_vpcs.py +24 -23
  400. pulumiverse_scaleway/network/outputs.py +206 -205
  401. pulumiverse_scaleway/network/private_network.py +122 -120
  402. pulumiverse_scaleway/network/public_gateway.py +213 -211
  403. pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
  404. pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
  405. pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
  406. pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
  407. pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
  408. pulumiverse_scaleway/network/route.py +115 -113
  409. pulumiverse_scaleway/network/vpc.py +101 -99
  410. pulumiverse_scaleway/object/__init__.py +2 -1
  411. pulumiverse_scaleway/object/_inputs.py +127 -126
  412. pulumiverse_scaleway/object/bucket.py +115 -113
  413. pulumiverse_scaleway/object/bucket_acl.py +73 -71
  414. pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
  415. pulumiverse_scaleway/object/bucket_policy.py +59 -57
  416. pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
  417. pulumiverse_scaleway/object/get_bucket.py +22 -21
  418. pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
  419. pulumiverse_scaleway/object/item.py +232 -183
  420. pulumiverse_scaleway/object/outputs.py +114 -113
  421. pulumiverse_scaleway/object_bucket.py +115 -113
  422. pulumiverse_scaleway/object_bucket_acl.py +73 -71
  423. pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
  424. pulumiverse_scaleway/object_bucket_policy.py +59 -57
  425. pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
  426. pulumiverse_scaleway/object_item.py +232 -183
  427. pulumiverse_scaleway/observability/__init__.py +2 -1
  428. pulumiverse_scaleway/observability/_inputs.py +89 -88
  429. pulumiverse_scaleway/observability/alert_manager.py +52 -50
  430. pulumiverse_scaleway/observability/cockpit.py +38 -36
  431. pulumiverse_scaleway/observability/get_instance.py +10 -9
  432. pulumiverse_scaleway/observability/get_source.py +33 -32
  433. pulumiverse_scaleway/observability/grafana_user.py +59 -57
  434. pulumiverse_scaleway/observability/outputs.py +77 -76
  435. pulumiverse_scaleway/observability/source.py +115 -113
  436. pulumiverse_scaleway/observability/token.py +66 -64
  437. pulumiverse_scaleway/outputs.py +2797 -2732
  438. pulumiverse_scaleway/provider.py +87 -65
  439. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  440. pulumiverse_scaleway/rdb_snapshot.py +101 -99
  441. pulumiverse_scaleway/redis/__init__.py +2 -1
  442. pulumiverse_scaleway/redis/_inputs.py +63 -62
  443. pulumiverse_scaleway/redis/cluster.py +178 -176
  444. pulumiverse_scaleway/redis/get_cluster.py +34 -33
  445. pulumiverse_scaleway/redis/outputs.py +74 -73
  446. pulumiverse_scaleway/redis_cluster.py +178 -176
  447. pulumiverse_scaleway/registry/__init__.py +2 -1
  448. pulumiverse_scaleway/registry/get_image.py +37 -36
  449. pulumiverse_scaleway/registry/get_image_tag.py +33 -32
  450. pulumiverse_scaleway/registry/get_namespace.py +27 -26
  451. pulumiverse_scaleway/registry/namespace.py +87 -85
  452. pulumiverse_scaleway/registry_namespace.py +87 -85
  453. pulumiverse_scaleway/sdb_database.py +80 -78
  454. pulumiverse_scaleway/secret.py +143 -141
  455. pulumiverse_scaleway/secret_version.py +87 -85
  456. pulumiverse_scaleway/secrets/__init__.py +2 -1
  457. pulumiverse_scaleway/secrets/_inputs.py +53 -52
  458. pulumiverse_scaleway/secrets/get_secret.py +41 -40
  459. pulumiverse_scaleway/secrets/get_version.py +34 -33
  460. pulumiverse_scaleway/secrets/outputs.py +64 -63
  461. pulumiverse_scaleway/secrets/secret.py +143 -141
  462. pulumiverse_scaleway/secrets/version.py +87 -85
  463. pulumiverse_scaleway/tem/__init__.py +2 -1
  464. pulumiverse_scaleway/tem/_inputs.py +28 -27
  465. pulumiverse_scaleway/tem/blocked_list.py +87 -85
  466. pulumiverse_scaleway/tem/domain.py +199 -197
  467. pulumiverse_scaleway/tem/domain_validation.py +52 -50
  468. pulumiverse_scaleway/tem/get_domain.py +43 -42
  469. pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
  470. pulumiverse_scaleway/tem/outputs.py +34 -33
  471. pulumiverse_scaleway/tem/webhook.py +108 -106
  472. pulumiverse_scaleway/tem_domain.py +199 -197
  473. pulumiverse_scaleway/tem_domain_validation.py +52 -50
  474. pulumiverse_scaleway/tem_webhook.py +108 -106
  475. pulumiverse_scaleway/vpc.py +101 -99
  476. pulumiverse_scaleway/vpc_gateway_network.py +143 -141
  477. pulumiverse_scaleway/vpc_private_network.py +122 -120
  478. pulumiverse_scaleway/vpc_public_gateway.py +213 -211
  479. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
  480. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
  481. pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
  482. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
  483. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
  484. pulumiverse_scaleway/vpc_route.py +115 -113
  485. pulumiverse_scaleway/webhosting.py +164 -162
  486. {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
  487. pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
  488. pulumiverse_scaleway-1.30.0a1748337252.dist-info/RECORD +0 -492
  489. {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
  490. {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -65,7 +66,7 @@ class GetRegistryImageResult:
65
66
 
66
67
  @property
67
68
  @pulumi.getter
68
- def id(self) -> str:
69
+ def id(self) -> builtins.str:
69
70
  """
70
71
  The provider-assigned unique ID for this managed resource.
71
72
  """
@@ -73,22 +74,22 @@ class GetRegistryImageResult:
73
74
 
74
75
  @property
75
76
  @pulumi.getter(name="imageId")
76
- def image_id(self) -> Optional[str]:
77
+ def image_id(self) -> Optional[builtins.str]:
77
78
  return pulumi.get(self, "image_id")
78
79
 
79
80
  @property
80
81
  @pulumi.getter
81
- def name(self) -> Optional[str]:
82
+ def name(self) -> Optional[builtins.str]:
82
83
  return pulumi.get(self, "name")
83
84
 
84
85
  @property
85
86
  @pulumi.getter(name="namespaceId")
86
- def namespace_id(self) -> str:
87
+ def namespace_id(self) -> builtins.str:
87
88
  return pulumi.get(self, "namespace_id")
88
89
 
89
90
  @property
90
91
  @pulumi.getter(name="organizationId")
91
- def organization_id(self) -> str:
92
+ def organization_id(self) -> builtins.str:
92
93
  """
93
94
  The organization ID the image is associated with.
94
95
  """
@@ -96,17 +97,17 @@ class GetRegistryImageResult:
96
97
 
97
98
  @property
98
99
  @pulumi.getter(name="projectId")
99
- def project_id(self) -> str:
100
+ def project_id(self) -> builtins.str:
100
101
  return pulumi.get(self, "project_id")
101
102
 
102
103
  @property
103
104
  @pulumi.getter
104
- def region(self) -> str:
105
+ def region(self) -> builtins.str:
105
106
  return pulumi.get(self, "region")
106
107
 
107
108
  @property
108
109
  @pulumi.getter
109
- def size(self) -> int:
110
+ def size(self) -> builtins.int:
110
111
  """
111
112
  The size of the registry image.
112
113
  """
@@ -114,7 +115,7 @@ class GetRegistryImageResult:
114
115
 
115
116
  @property
116
117
  @pulumi.getter
117
- def tags(self) -> Sequence[str]:
118
+ def tags(self) -> Sequence[builtins.str]:
118
119
  """
119
120
  The tags associated with the registry image
120
121
  """
@@ -122,7 +123,7 @@ class GetRegistryImageResult:
122
123
 
123
124
  @property
124
125
  @pulumi.getter(name="updatedAt")
125
- def updated_at(self) -> str:
126
+ def updated_at(self) -> builtins.str:
126
127
  """
127
128
  The date the image of the last update
128
129
  """
@@ -130,7 +131,7 @@ class GetRegistryImageResult:
130
131
 
131
132
  @property
132
133
  @pulumi.getter
133
- def visibility(self) -> str:
134
+ def visibility(self) -> builtins.str:
134
135
  """
135
136
  The privacy policy of the registry image.
136
137
  """
@@ -156,25 +157,25 @@ class AwaitableGetRegistryImageResult(GetRegistryImageResult):
156
157
  visibility=self.visibility)
157
158
 
158
159
 
159
- def get_registry_image(image_id: Optional[str] = None,
160
- name: Optional[str] = None,
161
- namespace_id: Optional[str] = None,
162
- project_id: Optional[str] = None,
163
- region: Optional[str] = None,
164
- tags: Optional[Sequence[str]] = None,
160
+ def get_registry_image(image_id: Optional[builtins.str] = None,
161
+ name: Optional[builtins.str] = None,
162
+ namespace_id: Optional[builtins.str] = None,
163
+ project_id: Optional[builtins.str] = None,
164
+ region: Optional[builtins.str] = None,
165
+ tags: Optional[Sequence[builtins.str]] = None,
165
166
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegistryImageResult:
166
167
  """
167
168
  Gets information about a Container Registry image.
168
169
 
169
170
 
170
- :param str image_id: The image ID.
171
+ :param builtins.str image_id: The image ID.
171
172
 
172
173
  > **Note** You must specify at least one: `name` and/or `image_id`.
173
- :param str name: The image name.
174
- :param str namespace_id: The namespace ID in which the image is.
175
- :param str project_id: `project_id`) The ID of the project the image is associated with.
176
- :param str region: `region`) The region in which the image exists.
177
- :param Sequence[str] tags: The tags associated with the registry image
174
+ :param builtins.str name: The image name.
175
+ :param builtins.str namespace_id: The namespace ID in which the image is.
176
+ :param builtins.str project_id: `project_id`) The ID of the project the image is associated with.
177
+ :param builtins.str region: `region`) The region in which the image exists.
178
+ :param Sequence[builtins.str] tags: The tags associated with the registry image
178
179
  """
179
180
  pulumi.log.warn("""get_registry_image is deprecated: scaleway.index/getregistryimage.getRegistryImage has been deprecated in favor of scaleway.registry/getimage.getImage""")
180
181
  __args__ = dict()
@@ -199,25 +200,25 @@ def get_registry_image(image_id: Optional[str] = None,
199
200
  tags=pulumi.get(__ret__, 'tags'),
200
201
  updated_at=pulumi.get(__ret__, 'updated_at'),
201
202
  visibility=pulumi.get(__ret__, 'visibility'))
202
- def get_registry_image_output(image_id: Optional[pulumi.Input[Optional[str]]] = None,
203
- name: Optional[pulumi.Input[Optional[str]]] = None,
204
- namespace_id: Optional[pulumi.Input[Optional[str]]] = None,
205
- project_id: Optional[pulumi.Input[Optional[str]]] = None,
206
- region: Optional[pulumi.Input[Optional[str]]] = None,
207
- tags: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
203
+ def get_registry_image_output(image_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
204
+ name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
205
+ namespace_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
206
+ project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
207
+ region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
208
+ tags: Optional[pulumi.Input[Optional[Sequence[builtins.str]]]] = None,
208
209
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRegistryImageResult]:
209
210
  """
210
211
  Gets information about a Container Registry image.
211
212
 
212
213
 
213
- :param str image_id: The image ID.
214
+ :param builtins.str image_id: The image ID.
214
215
 
215
216
  > **Note** You must specify at least one: `name` and/or `image_id`.
216
- :param str name: The image name.
217
- :param str namespace_id: The namespace ID in which the image is.
218
- :param str project_id: `project_id`) The ID of the project the image is associated with.
219
- :param str region: `region`) The region in which the image exists.
220
- :param Sequence[str] tags: The tags associated with the registry image
217
+ :param builtins.str name: The image name.
218
+ :param builtins.str namespace_id: The namespace ID in which the image is.
219
+ :param builtins.str project_id: `project_id`) The ID of the project the image is associated with.
220
+ :param builtins.str region: `region`) The region in which the image exists.
221
+ :param Sequence[builtins.str] tags: The tags associated with the registry image
221
222
  """
222
223
  pulumi.log.warn("""get_registry_image is deprecated: scaleway.index/getregistryimage.getRegistryImage has been deprecated in favor of scaleway.registry/getimage.getImage""")
223
224
  __args__ = dict()
@@ -1,7 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -65,7 +66,7 @@ class GetRegistryImageTagResult:
65
66
 
66
67
  @property
67
68
  @pulumi.getter(name="createdAt")
68
- def created_at(self) -> str:
69
+ def created_at(self) -> builtins.str:
69
70
  """
70
71
  The date and time when the registry image tag was created.
71
72
  """
@@ -73,7 +74,7 @@ class GetRegistryImageTagResult:
73
74
 
74
75
  @property
75
76
  @pulumi.getter
76
- def digest(self) -> str:
77
+ def digest(self) -> builtins.str:
77
78
  """
78
79
  Hash of the tag content. Several tags of the same image may have the same digest.
79
80
  """
@@ -81,7 +82,7 @@ class GetRegistryImageTagResult:
81
82
 
82
83
  @property
83
84
  @pulumi.getter
84
- def id(self) -> str:
85
+ def id(self) -> builtins.str:
85
86
  """
86
87
  The provider-assigned unique ID for this managed resource.
87
88
  """
@@ -89,17 +90,17 @@ class GetRegistryImageTagResult:
89
90
 
90
91
  @property
91
92
  @pulumi.getter(name="imageId")
92
- def image_id(self) -> str:
93
+ def image_id(self) -> builtins.str:
93
94
  return pulumi.get(self, "image_id")
94
95
 
95
96
  @property
96
97
  @pulumi.getter
97
- def name(self) -> Optional[str]:
98
+ def name(self) -> Optional[builtins.str]:
98
99
  return pulumi.get(self, "name")
99
100
 
100
101
  @property
101
102
  @pulumi.getter(name="organizationId")
102
- def organization_id(self) -> str:
103
+ def organization_id(self) -> builtins.str:
103
104
  """
104
105
  The organization ID the image tag is associated with.
105
106
  """
@@ -107,17 +108,17 @@ class GetRegistryImageTagResult:
107
108
 
108
109
  @property
109
110
  @pulumi.getter(name="projectId")
110
- def project_id(self) -> str:
111
+ def project_id(self) -> builtins.str:
111
112
  return pulumi.get(self, "project_id")
112
113
 
113
114
  @property
114
115
  @pulumi.getter
115
- def region(self) -> str:
116
+ def region(self) -> builtins.str:
116
117
  return pulumi.get(self, "region")
117
118
 
118
119
  @property
119
120
  @pulumi.getter
120
- def status(self) -> str:
121
+ def status(self) -> builtins.str:
121
122
  """
122
123
  The status of the registry image tag.
123
124
  """
@@ -125,12 +126,12 @@ class GetRegistryImageTagResult:
125
126
 
126
127
  @property
127
128
  @pulumi.getter(name="tagId")
128
- def tag_id(self) -> Optional[str]:
129
+ def tag_id(self) -> Optional[builtins.str]:
129
130
  return pulumi.get(self, "tag_id")
130
131
 
131
132
  @property
132
133
  @pulumi.getter(name="updatedAt")
133
- def updated_at(self) -> str:
134
+ def updated_at(self) -> builtins.str:
134
135
  """
135
136
  The date and time of the last update to the registry image tag.
136
137
  """
@@ -156,21 +157,21 @@ class AwaitableGetRegistryImageTagResult(GetRegistryImageTagResult):
156
157
  updated_at=self.updated_at)
157
158
 
158
159
 
159
- def get_registry_image_tag(image_id: Optional[str] = None,
160
- name: Optional[str] = None,
161
- project_id: Optional[str] = None,
162
- region: Optional[str] = None,
163
- tag_id: Optional[str] = None,
160
+ def get_registry_image_tag(image_id: Optional[builtins.str] = None,
161
+ name: Optional[builtins.str] = None,
162
+ project_id: Optional[builtins.str] = None,
163
+ region: Optional[builtins.str] = None,
164
+ tag_id: Optional[builtins.str] = None,
164
165
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegistryImageTagResult:
165
166
  """
166
167
  Gets information about a specific tag of a Container Registry image.
167
168
 
168
169
 
169
- :param str image_id: The ID of the registry image.
170
- :param str name: The name of the registry image tag.
171
- :param str project_id: The ID of the project the image tag is associated with.
172
- :param str region: The region in which the registry image tag exists.
173
- :param str tag_id: The ID of the registry image tag.
170
+ :param builtins.str image_id: The ID of the registry image.
171
+ :param builtins.str name: The name of the registry image tag.
172
+ :param builtins.str project_id: The ID of the project the image tag is associated with.
173
+ :param builtins.str region: The region in which the registry image tag exists.
174
+ :param builtins.str tag_id: The ID of the registry image tag.
174
175
  """
175
176
  pulumi.log.warn("""get_registry_image_tag is deprecated: scaleway.index/getregistryimagetag.getRegistryImageTag has been deprecated in favor of scaleway.registry/getimagetag.getImageTag""")
176
177
  __args__ = dict()
@@ -194,21 +195,21 @@ def get_registry_image_tag(image_id: Optional[str] = None,
194
195
  status=pulumi.get(__ret__, 'status'),
195
196
  tag_id=pulumi.get(__ret__, 'tag_id'),
196
197
  updated_at=pulumi.get(__ret__, 'updated_at'))
197
- def get_registry_image_tag_output(image_id: Optional[pulumi.Input[str]] = None,
198
- name: Optional[pulumi.Input[Optional[str]]] = None,
199
- project_id: Optional[pulumi.Input[Optional[str]]] = None,
200
- region: Optional[pulumi.Input[Optional[str]]] = None,
201
- tag_id: Optional[pulumi.Input[Optional[str]]] = None,
198
+ def get_registry_image_tag_output(image_id: Optional[pulumi.Input[builtins.str]] = None,
199
+ name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
200
+ project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
201
+ region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
202
+ tag_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
202
203
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRegistryImageTagResult]:
203
204
  """
204
205
  Gets information about a specific tag of a Container Registry image.
205
206
 
206
207
 
207
- :param str image_id: The ID of the registry image.
208
- :param str name: The name of the registry image tag.
209
- :param str project_id: The ID of the project the image tag is associated with.
210
- :param str region: The region in which the registry image tag exists.
211
- :param str tag_id: The ID of the registry image tag.
208
+ :param builtins.str image_id: The ID of the registry image.
209
+ :param builtins.str name: The name of the registry image tag.
210
+ :param builtins.str project_id: The ID of the project the image tag is associated with.
211
+ :param builtins.str region: The region in which the registry image tag exists.
212
+ :param builtins.str tag_id: The ID of the registry image tag.
212
213
  """
213
214
  pulumi.log.warn("""get_registry_image_tag is deprecated: scaleway.index/getregistryimagetag.getRegistryImageTag has been deprecated in favor of scaleway.registry/getimagetag.getImageTag""")
214
215
  __args__ = dict()
@@ -1,7 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -59,12 +60,12 @@ class GetRegistryNamespaceResult:
59
60
 
60
61
  @property
61
62
  @pulumi.getter
62
- def description(self) -> str:
63
+ def description(self) -> builtins.str:
63
64
  return pulumi.get(self, "description")
64
65
 
65
66
  @property
66
67
  @pulumi.getter
67
- def endpoint(self) -> str:
68
+ def endpoint(self) -> builtins.str:
68
69
  """
69
70
  The endpoint of the Registry Namespace.
70
71
  """
@@ -72,7 +73,7 @@ class GetRegistryNamespaceResult:
72
73
 
73
74
  @property
74
75
  @pulumi.getter
75
- def id(self) -> str:
76
+ def id(self) -> builtins.str:
76
77
  """
77
78
  The provider-assigned unique ID for this managed resource.
78
79
  """
@@ -80,7 +81,7 @@ class GetRegistryNamespaceResult:
80
81
 
81
82
  @property
82
83
  @pulumi.getter(name="isPublic")
83
- def is_public(self) -> bool:
84
+ def is_public(self) -> builtins.bool:
84
85
  """
85
86
  The Namespace Privacy Policy: whether or not the images are public.
86
87
  """
@@ -88,17 +89,17 @@ class GetRegistryNamespaceResult:
88
89
 
89
90
  @property
90
91
  @pulumi.getter
91
- def name(self) -> Optional[str]:
92
+ def name(self) -> Optional[builtins.str]:
92
93
  return pulumi.get(self, "name")
93
94
 
94
95
  @property
95
96
  @pulumi.getter(name="namespaceId")
96
- def namespace_id(self) -> Optional[str]:
97
+ def namespace_id(self) -> Optional[builtins.str]:
97
98
  return pulumi.get(self, "namespace_id")
98
99
 
99
100
  @property
100
101
  @pulumi.getter(name="organizationId")
101
- def organization_id(self) -> str:
102
+ def organization_id(self) -> builtins.str:
102
103
  """
103
104
  The organization ID the namespace is associated with.
104
105
  """
@@ -106,12 +107,12 @@ class GetRegistryNamespaceResult:
106
107
 
107
108
  @property
108
109
  @pulumi.getter(name="projectId")
109
- def project_id(self) -> Optional[str]:
110
+ def project_id(self) -> Optional[builtins.str]:
110
111
  return pulumi.get(self, "project_id")
111
112
 
112
113
  @property
113
114
  @pulumi.getter
114
- def region(self) -> Optional[str]:
115
+ def region(self) -> Optional[builtins.str]:
115
116
  return pulumi.get(self, "region")
116
117
 
117
118
 
@@ -132,21 +133,21 @@ class AwaitableGetRegistryNamespaceResult(GetRegistryNamespaceResult):
132
133
  region=self.region)
133
134
 
134
135
 
135
- def get_registry_namespace(name: Optional[str] = None,
136
- namespace_id: Optional[str] = None,
137
- project_id: Optional[str] = None,
138
- region: Optional[str] = None,
136
+ def get_registry_namespace(name: Optional[builtins.str] = None,
137
+ namespace_id: Optional[builtins.str] = None,
138
+ project_id: Optional[builtins.str] = None,
139
+ region: Optional[builtins.str] = None,
139
140
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegistryNamespaceResult:
140
141
  """
141
142
  Gets information about a registry namespace.
142
143
 
143
144
 
144
- :param str name: The namespace name.
145
- :param str namespace_id: The namespace id.
145
+ :param builtins.str name: The namespace name.
146
+ :param builtins.str namespace_id: The namespace id.
146
147
 
147
148
  > **Note** You must specify at least one: `name` and/or `image_id`.
148
- :param str project_id: `project_id`) The ID of the project the namespace is associated with.
149
- :param str region: `region`) The region in which the namespace exists.
149
+ :param builtins.str project_id: `project_id`) The ID of the project the namespace is associated with.
150
+ :param builtins.str region: `region`) The region in which the namespace exists.
150
151
  """
151
152
  pulumi.log.warn("""get_registry_namespace is deprecated: scaleway.index/getregistrynamespace.getRegistryNamespace has been deprecated in favor of scaleway.registry/getnamespace.getNamespace""")
152
153
  __args__ = dict()
@@ -167,21 +168,21 @@ def get_registry_namespace(name: Optional[str] = None,
167
168
  organization_id=pulumi.get(__ret__, 'organization_id'),
168
169
  project_id=pulumi.get(__ret__, 'project_id'),
169
170
  region=pulumi.get(__ret__, 'region'))
170
- def get_registry_namespace_output(name: Optional[pulumi.Input[Optional[str]]] = None,
171
- namespace_id: Optional[pulumi.Input[Optional[str]]] = None,
172
- project_id: Optional[pulumi.Input[Optional[str]]] = None,
173
- region: Optional[pulumi.Input[Optional[str]]] = None,
171
+ def get_registry_namespace_output(name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
172
+ namespace_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
173
+ project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
174
+ region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
174
175
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRegistryNamespaceResult]:
175
176
  """
176
177
  Gets information about a registry namespace.
177
178
 
178
179
 
179
- :param str name: The namespace name.
180
- :param str namespace_id: The namespace id.
180
+ :param builtins.str name: The namespace name.
181
+ :param builtins.str namespace_id: The namespace id.
181
182
 
182
183
  > **Note** You must specify at least one: `name` and/or `image_id`.
183
- :param str project_id: `project_id`) The ID of the project the namespace is associated with.
184
- :param str region: `region`) The region in which the namespace exists.
184
+ :param builtins.str project_id: `project_id`) The ID of the project the namespace is associated with.
185
+ :param builtins.str region: `region`) The region in which the namespace exists.
185
186
  """
186
187
  pulumi.log.warn("""get_registry_namespace is deprecated: scaleway.index/getregistrynamespace.getRegistryNamespace has been deprecated in favor of scaleway.registry/getnamespace.getNamespace""")
187
188
  __args__ = dict()
@@ -1,7 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -84,12 +85,12 @@ class GetSecretResult:
84
85
 
85
86
  @property
86
87
  @pulumi.getter(name="createdAt")
87
- def created_at(self) -> str:
88
+ def created_at(self) -> builtins.str:
88
89
  return pulumi.get(self, "created_at")
89
90
 
90
91
  @property
91
92
  @pulumi.getter
92
- def description(self) -> str:
93
+ def description(self) -> builtins.str:
93
94
  return pulumi.get(self, "description")
94
95
 
95
96
  @property
@@ -99,7 +100,7 @@ class GetSecretResult:
99
100
 
100
101
  @property
101
102
  @pulumi.getter
102
- def id(self) -> str:
103
+ def id(self) -> builtins.str:
103
104
  """
104
105
  The provider-assigned unique ID for this managed resource.
105
106
  """
@@ -107,62 +108,62 @@ class GetSecretResult:
107
108
 
108
109
  @property
109
110
  @pulumi.getter
110
- def name(self) -> Optional[str]:
111
+ def name(self) -> Optional[builtins.str]:
111
112
  return pulumi.get(self, "name")
112
113
 
113
114
  @property
114
115
  @pulumi.getter(name="organizationId")
115
- def organization_id(self) -> str:
116
+ def organization_id(self) -> builtins.str:
116
117
  return pulumi.get(self, "organization_id")
117
118
 
118
119
  @property
119
120
  @pulumi.getter
120
- def path(self) -> Optional[str]:
121
+ def path(self) -> Optional[builtins.str]:
121
122
  return pulumi.get(self, "path")
122
123
 
123
124
  @property
124
125
  @pulumi.getter(name="projectId")
125
- def project_id(self) -> Optional[str]:
126
+ def project_id(self) -> Optional[builtins.str]:
126
127
  return pulumi.get(self, "project_id")
127
128
 
128
129
  @property
129
130
  @pulumi.getter
130
- def protected(self) -> bool:
131
+ def protected(self) -> builtins.bool:
131
132
  return pulumi.get(self, "protected")
132
133
 
133
134
  @property
134
135
  @pulumi.getter
135
- def region(self) -> Optional[str]:
136
+ def region(self) -> Optional[builtins.str]:
136
137
  return pulumi.get(self, "region")
137
138
 
138
139
  @property
139
140
  @pulumi.getter(name="secretId")
140
- def secret_id(self) -> Optional[str]:
141
+ def secret_id(self) -> Optional[builtins.str]:
141
142
  return pulumi.get(self, "secret_id")
142
143
 
143
144
  @property
144
145
  @pulumi.getter
145
- def status(self) -> str:
146
+ def status(self) -> builtins.str:
146
147
  return pulumi.get(self, "status")
147
148
 
148
149
  @property
149
150
  @pulumi.getter
150
- def tags(self) -> Sequence[str]:
151
+ def tags(self) -> Sequence[builtins.str]:
151
152
  return pulumi.get(self, "tags")
152
153
 
153
154
  @property
154
155
  @pulumi.getter
155
- def type(self) -> str:
156
+ def type(self) -> builtins.str:
156
157
  return pulumi.get(self, "type")
157
158
 
158
159
  @property
159
160
  @pulumi.getter(name="updatedAt")
160
- def updated_at(self) -> str:
161
+ def updated_at(self) -> builtins.str:
161
162
  return pulumi.get(self, "updated_at")
162
163
 
163
164
  @property
164
165
  @pulumi.getter(name="versionCount")
165
- def version_count(self) -> int:
166
+ def version_count(self) -> builtins.int:
166
167
  return pulumi.get(self, "version_count")
167
168
 
168
169
  @property
@@ -196,12 +197,12 @@ class AwaitableGetSecretResult(GetSecretResult):
196
197
  versions=self.versions)
197
198
 
198
199
 
199
- def get_secret(name: Optional[str] = None,
200
- organization_id: Optional[str] = None,
201
- path: Optional[str] = None,
202
- project_id: Optional[str] = None,
203
- region: Optional[str] = None,
204
- secret_id: Optional[str] = None,
200
+ def get_secret(name: Optional[builtins.str] = None,
201
+ organization_id: Optional[builtins.str] = None,
202
+ path: Optional[builtins.str] = None,
203
+ project_id: Optional[builtins.str] = None,
204
+ region: Optional[builtins.str] = None,
205
+ secret_id: Optional[builtins.str] = None,
205
206
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecretResult:
206
207
  """
207
208
  The `secrets.Secret` data source is used to get information about a specific secret in Scaleway's Secret Manager.
@@ -234,15 +235,15 @@ def get_secret(name: Optional[str] = None,
234
235
  ```
235
236
 
236
237
 
237
- :param str name: The name of the secret.
238
+ :param builtins.str name: The name of the secret.
238
239
  Only one of `name` and `secret_id` should be specified.
239
- :param str organization_id: The ID of the Scaleway Organization the Project is associated with. If no default `organization_id` is set, it must be set explicitly in this data source.
240
- :param str path: The path of the secret.
240
+ :param builtins.str organization_id: The ID of the Scaleway Organization the Project is associated with. If no default `organization_id` is set, it must be set explicitly in this data source.
241
+ :param builtins.str path: The path of the secret.
241
242
  Conflicts with `secret_id`.
242
- :param str project_id: ). The ID of the
243
+ :param builtins.str project_id: ). The ID of the
243
244
  Project the secret is associated with.
244
- :param str region: ). The region in which the secret exists.
245
- :param str secret_id: The ID of the secret.
245
+ :param builtins.str region: ). The region in which the secret exists.
246
+ :param builtins.str secret_id: The ID of the secret.
246
247
  Only one of `name` and `secret_id` should be specified.
247
248
  """
248
249
  pulumi.log.warn("""get_secret is deprecated: scaleway.index/getsecret.getSecret has been deprecated in favor of scaleway.secrets/getsecret.getSecret""")
@@ -274,12 +275,12 @@ def get_secret(name: Optional[str] = None,
274
275
  updated_at=pulumi.get(__ret__, 'updated_at'),
275
276
  version_count=pulumi.get(__ret__, 'version_count'),
276
277
  versions=pulumi.get(__ret__, 'versions'))
277
- def get_secret_output(name: Optional[pulumi.Input[Optional[str]]] = None,
278
- organization_id: Optional[pulumi.Input[Optional[str]]] = None,
279
- path: Optional[pulumi.Input[Optional[str]]] = None,
280
- project_id: Optional[pulumi.Input[Optional[str]]] = None,
281
- region: Optional[pulumi.Input[Optional[str]]] = None,
282
- secret_id: Optional[pulumi.Input[Optional[str]]] = None,
278
+ def get_secret_output(name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
279
+ organization_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
280
+ path: Optional[pulumi.Input[Optional[builtins.str]]] = None,
281
+ project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
282
+ region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
283
+ secret_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
283
284
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSecretResult]:
284
285
  """
285
286
  The `secrets.Secret` data source is used to get information about a specific secret in Scaleway's Secret Manager.
@@ -312,15 +313,15 @@ def get_secret_output(name: Optional[pulumi.Input[Optional[str]]] = None,
312
313
  ```
313
314
 
314
315
 
315
- :param str name: The name of the secret.
316
+ :param builtins.str name: The name of the secret.
316
317
  Only one of `name` and `secret_id` should be specified.
317
- :param str organization_id: The ID of the Scaleway Organization the Project is associated with. If no default `organization_id` is set, it must be set explicitly in this data source.
318
- :param str path: The path of the secret.
318
+ :param builtins.str organization_id: The ID of the Scaleway Organization the Project is associated with. If no default `organization_id` is set, it must be set explicitly in this data source.
319
+ :param builtins.str path: The path of the secret.
319
320
  Conflicts with `secret_id`.
320
- :param str project_id: ). The ID of the
321
+ :param builtins.str project_id: ). The ID of the
321
322
  Project the secret is associated with.
322
- :param str region: ). The region in which the secret exists.
323
- :param str secret_id: The ID of the secret.
323
+ :param builtins.str region: ). The region in which the secret exists.
324
+ :param builtins.str secret_id: The ID of the secret.
324
325
  Only one of `name` and `secret_id` should be specified.
325
326
  """
326
327
  pulumi.log.warn("""get_secret is deprecated: scaleway.index/getsecret.getSecret has been deprecated in favor of scaleway.secrets/getsecret.getSecret""")