pulumiverse-scaleway 1.35.0a1759392423__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.0a1759392423.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.0a1759392423.dist-info/RECORD +0 -499
  498. {pulumiverse_scaleway-1.35.0a1759392423.dist-info → pulumiverse_scaleway-1.35.0a1760445454.dist-info}/WHEEL +0 -0
  499. {pulumiverse_scaleway-1.35.0a1759392423.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,27 +34,27 @@ __all__ = [
35
34
  @pulumi.output_type
36
35
  class AclAclRule(dict):
37
36
  def __init__(__self__, *,
38
- ip: builtins.str,
39
- description: Optional[builtins.str] = None):
37
+ ip: _builtins.str,
38
+ description: Optional[_builtins.str] = None):
40
39
  """
41
- :param builtins.str ip: The IP range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
42
- :param builtins.str description: A text describing this rule. Default description: `IP allowed`
40
+ :param _builtins.str ip: The IP range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
41
+ :param _builtins.str description: A text describing this rule. Default description: `IP allowed`
43
42
  """
44
43
  pulumi.set(__self__, "ip", ip)
45
44
  if description is not None:
46
45
  pulumi.set(__self__, "description", description)
47
46
 
48
- @property
47
+ @_builtins.property
49
48
  @pulumi.getter
50
- def ip(self) -> builtins.str:
49
+ def ip(self) -> _builtins.str:
51
50
  """
52
51
  The IP range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
53
52
  """
54
53
  return pulumi.get(self, "ip")
55
54
 
56
- @property
55
+ @_builtins.property
57
56
  @pulumi.getter
58
- def description(self) -> Optional[builtins.str]:
57
+ def description(self) -> Optional[_builtins.str]:
59
58
  """
60
59
  A text describing this rule. Default description: `IP allowed`
61
60
  """
@@ -82,17 +81,17 @@ class InstanceLoadBalancer(dict):
82
81
  return super().get(key, default)
83
82
 
84
83
  def __init__(__self__, *,
85
- endpoint_id: Optional[builtins.str] = None,
86
- hostname: Optional[builtins.str] = None,
87
- ip: Optional[builtins.str] = None,
88
- name: Optional[builtins.str] = None,
89
- port: Optional[builtins.int] = None):
90
- """
91
- :param builtins.str endpoint_id: The ID of the endpoint.
92
- :param builtins.str hostname: Hostname of the endpoint.
93
- :param builtins.str ip: IPv4 address on the network.
94
- :param builtins.str name: The name of the Database Instance.
95
- :param builtins.int port: Port in the Private Network.
84
+ endpoint_id: Optional[_builtins.str] = None,
85
+ hostname: Optional[_builtins.str] = None,
86
+ ip: Optional[_builtins.str] = None,
87
+ name: Optional[_builtins.str] = None,
88
+ port: Optional[_builtins.int] = None):
89
+ """
90
+ :param _builtins.str endpoint_id: The ID of the endpoint.
91
+ :param _builtins.str hostname: Hostname of the endpoint.
92
+ :param _builtins.str ip: IPv4 address on the network.
93
+ :param _builtins.str name: The name of the Database Instance.
94
+ :param _builtins.int port: Port in the Private Network.
96
95
  """
97
96
  if endpoint_id is not None:
98
97
  pulumi.set(__self__, "endpoint_id", endpoint_id)
@@ -105,41 +104,41 @@ class InstanceLoadBalancer(dict):
105
104
  if port is not None:
106
105
  pulumi.set(__self__, "port", port)
107
106
 
108
- @property
107
+ @_builtins.property
109
108
  @pulumi.getter(name="endpointId")
110
- def endpoint_id(self) -> Optional[builtins.str]:
109
+ def endpoint_id(self) -> Optional[_builtins.str]:
111
110
  """
112
111
  The ID of the endpoint.
113
112
  """
114
113
  return pulumi.get(self, "endpoint_id")
115
114
 
116
- @property
115
+ @_builtins.property
117
116
  @pulumi.getter
118
- def hostname(self) -> Optional[builtins.str]:
117
+ def hostname(self) -> Optional[_builtins.str]:
119
118
  """
120
119
  Hostname of the endpoint.
121
120
  """
122
121
  return pulumi.get(self, "hostname")
123
122
 
124
- @property
123
+ @_builtins.property
125
124
  @pulumi.getter
126
- def ip(self) -> Optional[builtins.str]:
125
+ def ip(self) -> Optional[_builtins.str]:
127
126
  """
128
127
  IPv4 address on the network.
129
128
  """
130
129
  return pulumi.get(self, "ip")
131
130
 
132
- @property
131
+ @_builtins.property
133
132
  @pulumi.getter
134
- def name(self) -> Optional[builtins.str]:
133
+ def name(self) -> Optional[_builtins.str]:
135
134
  """
136
135
  The name of the Database Instance.
137
136
  """
138
137
  return pulumi.get(self, "name")
139
138
 
140
- @property
139
+ @_builtins.property
141
140
  @pulumi.getter
142
- def port(self) -> Optional[builtins.int]:
141
+ def port(self) -> Optional[_builtins.int]:
143
142
  """
144
143
  Port in the Private Network.
145
144
  """
@@ -168,28 +167,28 @@ class InstanceLogsPolicy(dict):
168
167
  return super().get(key, default)
169
168
 
170
169
  def __init__(__self__, *,
171
- max_age_retention: Optional[builtins.int] = None,
172
- total_disk_retention: Optional[builtins.int] = None):
170
+ max_age_retention: Optional[_builtins.int] = None,
171
+ total_disk_retention: Optional[_builtins.int] = None):
173
172
  """
174
- :param builtins.int max_age_retention: The max age (in days) of remote logs to keep on the Database Instance
175
- :param builtins.int total_disk_retention: The max disk size of remote logs to keep on the Database Instance.
173
+ :param _builtins.int max_age_retention: The max age (in days) of remote logs to keep on the Database Instance
174
+ :param _builtins.int total_disk_retention: The max disk size of remote logs to keep on the Database Instance.
176
175
  """
177
176
  if max_age_retention is not None:
178
177
  pulumi.set(__self__, "max_age_retention", max_age_retention)
179
178
  if total_disk_retention is not None:
180
179
  pulumi.set(__self__, "total_disk_retention", total_disk_retention)
181
180
 
182
- @property
181
+ @_builtins.property
183
182
  @pulumi.getter(name="maxAgeRetention")
184
- def max_age_retention(self) -> Optional[builtins.int]:
183
+ def max_age_retention(self) -> Optional[_builtins.int]:
185
184
  """
186
185
  The max age (in days) of remote logs to keep on the Database Instance
187
186
  """
188
187
  return pulumi.get(self, "max_age_retention")
189
188
 
190
- @property
189
+ @_builtins.property
191
190
  @pulumi.getter(name="totalDiskRetention")
192
- def total_disk_retention(self) -> Optional[builtins.int]:
191
+ def total_disk_retention(self) -> Optional[_builtins.int]:
193
192
  """
194
193
  The max disk size of remote logs to keep on the Database Instance.
195
194
  """
@@ -199,28 +198,28 @@ class InstanceLogsPolicy(dict):
199
198
  @pulumi.output_type
200
199
  class InstancePrivateIp(dict):
201
200
  def __init__(__self__, *,
202
- address: Optional[builtins.str] = None,
203
- id: Optional[builtins.str] = None):
201
+ address: Optional[_builtins.str] = None,
202
+ id: Optional[_builtins.str] = None):
204
203
  """
205
- :param builtins.str address: The private IPv4 address.
206
- :param builtins.str id: The ID of the IPv4 address resource.
204
+ :param _builtins.str address: The private IPv4 address.
205
+ :param _builtins.str id: The ID of the IPv4 address resource.
207
206
  """
208
207
  if address is not None:
209
208
  pulumi.set(__self__, "address", address)
210
209
  if id is not None:
211
210
  pulumi.set(__self__, "id", id)
212
211
 
213
- @property
212
+ @_builtins.property
214
213
  @pulumi.getter
215
- def address(self) -> Optional[builtins.str]:
214
+ def address(self) -> Optional[_builtins.str]:
216
215
  """
217
216
  The private IPv4 address.
218
217
  """
219
218
  return pulumi.get(self, "address")
220
219
 
221
- @property
220
+ @_builtins.property
222
221
  @pulumi.getter
223
- def id(self) -> Optional[builtins.str]:
222
+ def id(self) -> Optional[_builtins.str]:
224
223
  """
225
224
  The ID of the IPv4 address resource.
226
225
  """
@@ -253,25 +252,25 @@ class InstancePrivateNetwork(dict):
253
252
  return super().get(key, default)
254
253
 
255
254
  def __init__(__self__, *,
256
- pn_id: builtins.str,
257
- enable_ipam: Optional[builtins.bool] = None,
258
- endpoint_id: Optional[builtins.str] = None,
259
- hostname: Optional[builtins.str] = None,
260
- ip: Optional[builtins.str] = None,
261
- ip_net: Optional[builtins.str] = None,
262
- name: Optional[builtins.str] = None,
263
- port: Optional[builtins.int] = None,
264
- zone: Optional[builtins.str] = None):
265
- """
266
- :param builtins.str pn_id: The private network ID
267
- :param builtins.bool enable_ipam: Whether or not the private network endpoint should be configured with IPAM
268
- :param builtins.str endpoint_id: The ID of the endpoint.
269
- :param builtins.str hostname: Hostname of the endpoint.
270
- :param builtins.str ip: IPv4 address on the network.
271
- :param builtins.str ip_net: The IP with the given mask within the private subnet
272
- :param builtins.str name: The name of the Database Instance.
273
- :param builtins.int port: Port in the Private Network.
274
- :param builtins.str zone: The zone you want to attach the resource to
255
+ pn_id: _builtins.str,
256
+ enable_ipam: Optional[_builtins.bool] = None,
257
+ endpoint_id: Optional[_builtins.str] = None,
258
+ hostname: Optional[_builtins.str] = None,
259
+ ip: Optional[_builtins.str] = None,
260
+ ip_net: Optional[_builtins.str] = None,
261
+ name: Optional[_builtins.str] = None,
262
+ port: Optional[_builtins.int] = None,
263
+ zone: Optional[_builtins.str] = None):
264
+ """
265
+ :param _builtins.str pn_id: The private network ID
266
+ :param _builtins.bool enable_ipam: Whether or not the private network endpoint should be configured with IPAM
267
+ :param _builtins.str endpoint_id: The ID of the endpoint.
268
+ :param _builtins.str hostname: Hostname of the endpoint.
269
+ :param _builtins.str ip: IPv4 address on the network.
270
+ :param _builtins.str ip_net: The IP with the given mask within the private subnet
271
+ :param _builtins.str name: The name of the Database Instance.
272
+ :param _builtins.int port: Port in the Private Network.
273
+ :param _builtins.str zone: The zone you want to attach the resource to
275
274
  """
276
275
  pulumi.set(__self__, "pn_id", pn_id)
277
276
  if enable_ipam is not None:
@@ -291,73 +290,73 @@ class InstancePrivateNetwork(dict):
291
290
  if zone is not None:
292
291
  pulumi.set(__self__, "zone", zone)
293
292
 
294
- @property
293
+ @_builtins.property
295
294
  @pulumi.getter(name="pnId")
296
- def pn_id(self) -> builtins.str:
295
+ def pn_id(self) -> _builtins.str:
297
296
  """
298
297
  The private network ID
299
298
  """
300
299
  return pulumi.get(self, "pn_id")
301
300
 
302
- @property
301
+ @_builtins.property
303
302
  @pulumi.getter(name="enableIpam")
304
- def enable_ipam(self) -> Optional[builtins.bool]:
303
+ def enable_ipam(self) -> Optional[_builtins.bool]:
305
304
  """
306
305
  Whether or not the private network endpoint should be configured with IPAM
307
306
  """
308
307
  return pulumi.get(self, "enable_ipam")
309
308
 
310
- @property
309
+ @_builtins.property
311
310
  @pulumi.getter(name="endpointId")
312
- def endpoint_id(self) -> Optional[builtins.str]:
311
+ def endpoint_id(self) -> Optional[_builtins.str]:
313
312
  """
314
313
  The ID of the endpoint.
315
314
  """
316
315
  return pulumi.get(self, "endpoint_id")
317
316
 
318
- @property
317
+ @_builtins.property
319
318
  @pulumi.getter
320
- def hostname(self) -> Optional[builtins.str]:
319
+ def hostname(self) -> Optional[_builtins.str]:
321
320
  """
322
321
  Hostname of the endpoint.
323
322
  """
324
323
  return pulumi.get(self, "hostname")
325
324
 
326
- @property
325
+ @_builtins.property
327
326
  @pulumi.getter
328
- def ip(self) -> Optional[builtins.str]:
327
+ def ip(self) -> Optional[_builtins.str]:
329
328
  """
330
329
  IPv4 address on the network.
331
330
  """
332
331
  return pulumi.get(self, "ip")
333
332
 
334
- @property
333
+ @_builtins.property
335
334
  @pulumi.getter(name="ipNet")
336
- def ip_net(self) -> Optional[builtins.str]:
335
+ def ip_net(self) -> Optional[_builtins.str]:
337
336
  """
338
337
  The IP with the given mask within the private subnet
339
338
  """
340
339
  return pulumi.get(self, "ip_net")
341
340
 
342
- @property
341
+ @_builtins.property
343
342
  @pulumi.getter
344
- def name(self) -> Optional[builtins.str]:
343
+ def name(self) -> Optional[_builtins.str]:
345
344
  """
346
345
  The name of the Database Instance.
347
346
  """
348
347
  return pulumi.get(self, "name")
349
348
 
350
- @property
349
+ @_builtins.property
351
350
  @pulumi.getter
352
- def port(self) -> Optional[builtins.int]:
351
+ def port(self) -> Optional[_builtins.int]:
353
352
  """
354
353
  Port in the Private Network.
355
354
  """
356
355
  return pulumi.get(self, "port")
357
356
 
358
- @property
357
+ @_builtins.property
359
358
  @pulumi.getter
360
- def zone(self) -> Optional[builtins.str]:
359
+ def zone(self) -> Optional[_builtins.str]:
361
360
  """
362
361
  The zone you want to attach the resource to
363
362
  """
@@ -367,13 +366,13 @@ class InstancePrivateNetwork(dict):
367
366
  @pulumi.output_type
368
367
  class InstanceReadReplica(dict):
369
368
  def __init__(__self__, *,
370
- ip: Optional[builtins.str] = None,
371
- name: Optional[builtins.str] = None,
372
- port: Optional[builtins.int] = None):
369
+ ip: Optional[_builtins.str] = None,
370
+ name: Optional[_builtins.str] = None,
371
+ port: Optional[_builtins.int] = None):
373
372
  """
374
- :param builtins.str ip: IPv4 address on the network.
375
- :param builtins.str name: The name of the Database Instance.
376
- :param builtins.int port: Port in the Private Network.
373
+ :param _builtins.str ip: IPv4 address on the network.
374
+ :param _builtins.str name: The name of the Database Instance.
375
+ :param _builtins.int port: Port in the Private Network.
377
376
  """
378
377
  if ip is not None:
379
378
  pulumi.set(__self__, "ip", ip)
@@ -382,25 +381,25 @@ class InstanceReadReplica(dict):
382
381
  if port is not None:
383
382
  pulumi.set(__self__, "port", port)
384
383
 
385
- @property
384
+ @_builtins.property
386
385
  @pulumi.getter
387
- def ip(self) -> Optional[builtins.str]:
386
+ def ip(self) -> Optional[_builtins.str]:
388
387
  """
389
388
  IPv4 address on the network.
390
389
  """
391
390
  return pulumi.get(self, "ip")
392
391
 
393
- @property
392
+ @_builtins.property
394
393
  @pulumi.getter
395
- def name(self) -> Optional[builtins.str]:
394
+ def name(self) -> Optional[_builtins.str]:
396
395
  """
397
396
  The name of the Database Instance.
398
397
  """
399
398
  return pulumi.get(self, "name")
400
399
 
401
- @property
400
+ @_builtins.property
402
401
  @pulumi.getter
403
- def port(self) -> Optional[builtins.int]:
402
+ def port(self) -> Optional[_builtins.int]:
404
403
  """
405
404
  Port in the Private Network.
406
405
  """
@@ -427,17 +426,17 @@ class ReadReplicaDirectAccess(dict):
427
426
  return super().get(key, default)
428
427
 
429
428
  def __init__(__self__, *,
430
- endpoint_id: Optional[builtins.str] = None,
431
- hostname: Optional[builtins.str] = None,
432
- ip: Optional[builtins.str] = None,
433
- name: Optional[builtins.str] = None,
434
- port: Optional[builtins.int] = None):
435
- """
436
- :param builtins.str endpoint_id: The ID of the endpoint of the Read Replica.
437
- :param builtins.str hostname: Hostname of the endpoint. Only one of IP and hostname may be set.
438
- :param builtins.str ip: IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
439
- :param builtins.str name: Name of the endpoint.
440
- :param builtins.int port: TCP port of the endpoint.
429
+ endpoint_id: Optional[_builtins.str] = None,
430
+ hostname: Optional[_builtins.str] = None,
431
+ ip: Optional[_builtins.str] = None,
432
+ name: Optional[_builtins.str] = None,
433
+ port: Optional[_builtins.int] = None):
434
+ """
435
+ :param _builtins.str endpoint_id: The ID of the endpoint of the Read Replica.
436
+ :param _builtins.str hostname: Hostname of the endpoint. Only one of IP and hostname may be set.
437
+ :param _builtins.str ip: IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
438
+ :param _builtins.str name: Name of the endpoint.
439
+ :param _builtins.int port: TCP port of the endpoint.
441
440
  """
442
441
  if endpoint_id is not None:
443
442
  pulumi.set(__self__, "endpoint_id", endpoint_id)
@@ -450,41 +449,41 @@ class ReadReplicaDirectAccess(dict):
450
449
  if port is not None:
451
450
  pulumi.set(__self__, "port", port)
452
451
 
453
- @property
452
+ @_builtins.property
454
453
  @pulumi.getter(name="endpointId")
455
- def endpoint_id(self) -> Optional[builtins.str]:
454
+ def endpoint_id(self) -> Optional[_builtins.str]:
456
455
  """
457
456
  The ID of the endpoint of the Read Replica.
458
457
  """
459
458
  return pulumi.get(self, "endpoint_id")
460
459
 
461
- @property
460
+ @_builtins.property
462
461
  @pulumi.getter
463
- def hostname(self) -> Optional[builtins.str]:
462
+ def hostname(self) -> Optional[_builtins.str]:
464
463
  """
465
464
  Hostname of the endpoint. Only one of IP and hostname may be set.
466
465
  """
467
466
  return pulumi.get(self, "hostname")
468
467
 
469
- @property
468
+ @_builtins.property
470
469
  @pulumi.getter
471
- def ip(self) -> Optional[builtins.str]:
470
+ def ip(self) -> Optional[_builtins.str]:
472
471
  """
473
472
  IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
474
473
  """
475
474
  return pulumi.get(self, "ip")
476
475
 
477
- @property
476
+ @_builtins.property
478
477
  @pulumi.getter
479
- def name(self) -> Optional[builtins.str]:
478
+ def name(self) -> Optional[_builtins.str]:
480
479
  """
481
480
  Name of the endpoint.
482
481
  """
483
482
  return pulumi.get(self, "name")
484
483
 
485
- @property
484
+ @_builtins.property
486
485
  @pulumi.getter
487
- def port(self) -> Optional[builtins.int]:
486
+ def port(self) -> Optional[_builtins.int]:
488
487
  """
489
488
  TCP port of the endpoint.
490
489
  """
@@ -517,27 +516,27 @@ class ReadReplicaPrivateNetwork(dict):
517
516
  return super().get(key, default)
518
517
 
519
518
  def __init__(__self__, *,
520
- private_network_id: builtins.str,
521
- enable_ipam: Optional[builtins.bool] = None,
522
- endpoint_id: Optional[builtins.str] = None,
523
- hostname: Optional[builtins.str] = None,
524
- ip: Optional[builtins.str] = None,
525
- name: Optional[builtins.str] = None,
526
- port: Optional[builtins.int] = None,
527
- service_ip: Optional[builtins.str] = None,
528
- zone: Optional[builtins.str] = None):
529
- """
530
- :param builtins.str private_network_id: UUID of the Private Netork to be connected to the Read Replica.
531
- :param builtins.bool enable_ipam: If true, the IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
519
+ private_network_id: _builtins.str,
520
+ enable_ipam: Optional[_builtins.bool] = None,
521
+ endpoint_id: Optional[_builtins.str] = None,
522
+ hostname: Optional[_builtins.str] = None,
523
+ ip: Optional[_builtins.str] = None,
524
+ name: Optional[_builtins.str] = None,
525
+ port: Optional[_builtins.int] = None,
526
+ service_ip: Optional[_builtins.str] = None,
527
+ zone: Optional[_builtins.str] = None):
528
+ """
529
+ :param _builtins.str private_network_id: UUID of the Private Netork to be connected to the Read Replica.
530
+ :param _builtins.bool enable_ipam: If true, the IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
532
531
 
533
532
  > **Important:** One of `service_ip` or `enable_ipam=true` must be set.
534
- :param builtins.str endpoint_id: The ID of the endpoint of the Read Replica.
535
- :param builtins.str hostname: Hostname of the endpoint. Only one of IP and hostname may be set.
536
- :param builtins.str ip: IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
537
- :param builtins.str name: Name of the endpoint.
538
- :param builtins.int port: TCP port of the endpoint.
539
- :param builtins.str service_ip: The IP network address within the private subnet. This must be an IPv4 address with a CIDR notation. If not set, The IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
540
- :param builtins.str zone: Private network zone
533
+ :param _builtins.str endpoint_id: The ID of the endpoint of the Read Replica.
534
+ :param _builtins.str hostname: Hostname of the endpoint. Only one of IP and hostname may be set.
535
+ :param _builtins.str ip: IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
536
+ :param _builtins.str name: Name of the endpoint.
537
+ :param _builtins.int port: TCP port of the endpoint.
538
+ :param _builtins.str service_ip: The IP network address within the private subnet. This must be an IPv4 address with a CIDR notation. If not set, The IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
539
+ :param _builtins.str zone: Private network zone
541
540
  """
542
541
  pulumi.set(__self__, "private_network_id", private_network_id)
543
542
  if enable_ipam is not None:
@@ -557,17 +556,17 @@ class ReadReplicaPrivateNetwork(dict):
557
556
  if zone is not None:
558
557
  pulumi.set(__self__, "zone", zone)
559
558
 
560
- @property
559
+ @_builtins.property
561
560
  @pulumi.getter(name="privateNetworkId")
562
- def private_network_id(self) -> builtins.str:
561
+ def private_network_id(self) -> _builtins.str:
563
562
  """
564
563
  UUID of the Private Netork to be connected to the Read Replica.
565
564
  """
566
565
  return pulumi.get(self, "private_network_id")
567
566
 
568
- @property
567
+ @_builtins.property
569
568
  @pulumi.getter(name="enableIpam")
570
- def enable_ipam(self) -> Optional[builtins.bool]:
569
+ def enable_ipam(self) -> Optional[_builtins.bool]:
571
570
  """
572
571
  If true, the IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
573
572
 
@@ -575,57 +574,57 @@ class ReadReplicaPrivateNetwork(dict):
575
574
  """
576
575
  return pulumi.get(self, "enable_ipam")
577
576
 
578
- @property
577
+ @_builtins.property
579
578
  @pulumi.getter(name="endpointId")
580
- def endpoint_id(self) -> Optional[builtins.str]:
579
+ def endpoint_id(self) -> Optional[_builtins.str]:
581
580
  """
582
581
  The ID of the endpoint of the Read Replica.
583
582
  """
584
583
  return pulumi.get(self, "endpoint_id")
585
584
 
586
- @property
585
+ @_builtins.property
587
586
  @pulumi.getter
588
- def hostname(self) -> Optional[builtins.str]:
587
+ def hostname(self) -> Optional[_builtins.str]:
589
588
  """
590
589
  Hostname of the endpoint. Only one of IP and hostname may be set.
591
590
  """
592
591
  return pulumi.get(self, "hostname")
593
592
 
594
- @property
593
+ @_builtins.property
595
594
  @pulumi.getter
596
- def ip(self) -> Optional[builtins.str]:
595
+ def ip(self) -> Optional[_builtins.str]:
597
596
  """
598
597
  IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
599
598
  """
600
599
  return pulumi.get(self, "ip")
601
600
 
602
- @property
601
+ @_builtins.property
603
602
  @pulumi.getter
604
- def name(self) -> Optional[builtins.str]:
603
+ def name(self) -> Optional[_builtins.str]:
605
604
  """
606
605
  Name of the endpoint.
607
606
  """
608
607
  return pulumi.get(self, "name")
609
608
 
610
- @property
609
+ @_builtins.property
611
610
  @pulumi.getter
612
- def port(self) -> Optional[builtins.int]:
611
+ def port(self) -> Optional[_builtins.int]:
613
612
  """
614
613
  TCP port of the endpoint.
615
614
  """
616
615
  return pulumi.get(self, "port")
617
616
 
618
- @property
617
+ @_builtins.property
619
618
  @pulumi.getter(name="serviceIp")
620
- def service_ip(self) -> Optional[builtins.str]:
619
+ def service_ip(self) -> Optional[_builtins.str]:
621
620
  """
622
621
  The IP network address within the private subnet. This must be an IPv4 address with a CIDR notation. If not set, The IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
623
622
  """
624
623
  return pulumi.get(self, "service_ip")
625
624
 
626
- @property
625
+ @_builtins.property
627
626
  @pulumi.getter
628
- def zone(self) -> Optional[builtins.str]:
627
+ def zone(self) -> Optional[_builtins.str]:
629
628
  """
630
629
  Private network zone
631
630
  """
@@ -635,26 +634,26 @@ class ReadReplicaPrivateNetwork(dict):
635
634
  @pulumi.output_type
636
635
  class GetAclAclRuleResult(dict):
637
636
  def __init__(__self__, *,
638
- description: builtins.str,
639
- ip: builtins.str):
637
+ description: _builtins.str,
638
+ ip: _builtins.str):
640
639
  """
641
- :param builtins.str description: A simple text describing this rule
642
- :param builtins.str ip: The ip range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
640
+ :param _builtins.str description: A simple text describing this rule
641
+ :param _builtins.str ip: The ip range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
643
642
  """
644
643
  pulumi.set(__self__, "description", description)
645
644
  pulumi.set(__self__, "ip", ip)
646
645
 
647
- @property
646
+ @_builtins.property
648
647
  @pulumi.getter
649
- def description(self) -> builtins.str:
648
+ def description(self) -> _builtins.str:
650
649
  """
651
650
  A simple text describing this rule
652
651
  """
653
652
  return pulumi.get(self, "description")
654
653
 
655
- @property
654
+ @_builtins.property
656
655
  @pulumi.getter
657
- def ip(self) -> builtins.str:
656
+ def ip(self) -> _builtins.str:
658
657
  """
659
658
  The ip range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
660
659
  """
@@ -664,17 +663,17 @@ class GetAclAclRuleResult(dict):
664
663
  @pulumi.output_type
665
664
  class GetInstanceLoadBalancerResult(dict):
666
665
  def __init__(__self__, *,
667
- endpoint_id: builtins.str,
668
- hostname: builtins.str,
669
- ip: builtins.str,
670
- name: builtins.str,
671
- port: builtins.int):
672
- """
673
- :param builtins.str endpoint_id: The endpoint ID
674
- :param builtins.str hostname: The hostname of your endpoint
675
- :param builtins.str ip: The IP of your load balancer service
676
- :param builtins.str name: The name of the RDB instance.
677
- :param builtins.int port: The port of your load balancer service
666
+ endpoint_id: _builtins.str,
667
+ hostname: _builtins.str,
668
+ ip: _builtins.str,
669
+ name: _builtins.str,
670
+ port: _builtins.int):
671
+ """
672
+ :param _builtins.str endpoint_id: The endpoint ID
673
+ :param _builtins.str hostname: The hostname of your endpoint
674
+ :param _builtins.str ip: The IP of your load balancer service
675
+ :param _builtins.str name: The name of the RDB instance.
676
+ :param _builtins.int port: The port of your load balancer service
678
677
  """
679
678
  pulumi.set(__self__, "endpoint_id", endpoint_id)
680
679
  pulumi.set(__self__, "hostname", hostname)
@@ -682,41 +681,41 @@ class GetInstanceLoadBalancerResult(dict):
682
681
  pulumi.set(__self__, "name", name)
683
682
  pulumi.set(__self__, "port", port)
684
683
 
685
- @property
684
+ @_builtins.property
686
685
  @pulumi.getter(name="endpointId")
687
- def endpoint_id(self) -> builtins.str:
686
+ def endpoint_id(self) -> _builtins.str:
688
687
  """
689
688
  The endpoint ID
690
689
  """
691
690
  return pulumi.get(self, "endpoint_id")
692
691
 
693
- @property
692
+ @_builtins.property
694
693
  @pulumi.getter
695
- def hostname(self) -> builtins.str:
694
+ def hostname(self) -> _builtins.str:
696
695
  """
697
696
  The hostname of your endpoint
698
697
  """
699
698
  return pulumi.get(self, "hostname")
700
699
 
701
- @property
700
+ @_builtins.property
702
701
  @pulumi.getter
703
- def ip(self) -> builtins.str:
702
+ def ip(self) -> _builtins.str:
704
703
  """
705
704
  The IP of your load balancer service
706
705
  """
707
706
  return pulumi.get(self, "ip")
708
707
 
709
- @property
708
+ @_builtins.property
710
709
  @pulumi.getter
711
- def name(self) -> builtins.str:
710
+ def name(self) -> _builtins.str:
712
711
  """
713
712
  The name of the RDB instance.
714
713
  """
715
714
  return pulumi.get(self, "name")
716
715
 
717
- @property
716
+ @_builtins.property
718
717
  @pulumi.getter
719
- def port(self) -> builtins.int:
718
+ def port(self) -> _builtins.int:
720
719
  """
721
720
  The port of your load balancer service
722
721
  """
@@ -726,26 +725,26 @@ class GetInstanceLoadBalancerResult(dict):
726
725
  @pulumi.output_type
727
726
  class GetInstanceLogsPolicyResult(dict):
728
727
  def __init__(__self__, *,
729
- max_age_retention: builtins.int,
730
- total_disk_retention: builtins.int):
728
+ max_age_retention: _builtins.int,
729
+ total_disk_retention: _builtins.int):
731
730
  """
732
- :param builtins.int max_age_retention: The max age (in days) of remote logs to keep on the Database Instance
733
- :param builtins.int total_disk_retention: The max disk size of remote logs to keep on the Database Instance.
731
+ :param _builtins.int max_age_retention: The max age (in days) of remote logs to keep on the Database Instance
732
+ :param _builtins.int total_disk_retention: The max disk size of remote logs to keep on the Database Instance.
734
733
  """
735
734
  pulumi.set(__self__, "max_age_retention", max_age_retention)
736
735
  pulumi.set(__self__, "total_disk_retention", total_disk_retention)
737
736
 
738
- @property
737
+ @_builtins.property
739
738
  @pulumi.getter(name="maxAgeRetention")
740
- def max_age_retention(self) -> builtins.int:
739
+ def max_age_retention(self) -> _builtins.int:
741
740
  """
742
741
  The max age (in days) of remote logs to keep on the Database Instance
743
742
  """
744
743
  return pulumi.get(self, "max_age_retention")
745
744
 
746
- @property
745
+ @_builtins.property
747
746
  @pulumi.getter(name="totalDiskRetention")
748
- def total_disk_retention(self) -> builtins.int:
747
+ def total_disk_retention(self) -> _builtins.int:
749
748
  """
750
749
  The max disk size of remote logs to keep on the Database Instance.
751
750
  """
@@ -755,26 +754,26 @@ class GetInstanceLogsPolicyResult(dict):
755
754
  @pulumi.output_type
756
755
  class GetInstancePrivateIpResult(dict):
757
756
  def __init__(__self__, *,
758
- address: builtins.str,
759
- id: builtins.str):
757
+ address: _builtins.str,
758
+ id: _builtins.str):
760
759
  """
761
- :param builtins.str address: The private IPv4 address
762
- :param builtins.str id: The ID of the Database Instance.
760
+ :param _builtins.str address: The private IPv4 address
761
+ :param _builtins.str id: The ID of the Database Instance.
763
762
  """
764
763
  pulumi.set(__self__, "address", address)
765
764
  pulumi.set(__self__, "id", id)
766
765
 
767
- @property
766
+ @_builtins.property
768
767
  @pulumi.getter
769
- def address(self) -> builtins.str:
768
+ def address(self) -> _builtins.str:
770
769
  """
771
770
  The private IPv4 address
772
771
  """
773
772
  return pulumi.get(self, "address")
774
773
 
775
- @property
774
+ @_builtins.property
776
775
  @pulumi.getter
777
- def id(self) -> builtins.str:
776
+ def id(self) -> _builtins.str:
778
777
  """
779
778
  The ID of the Database Instance.
780
779
  """
@@ -784,25 +783,25 @@ class GetInstancePrivateIpResult(dict):
784
783
  @pulumi.output_type
785
784
  class GetInstancePrivateNetworkResult(dict):
786
785
  def __init__(__self__, *,
787
- enable_ipam: builtins.bool,
788
- endpoint_id: builtins.str,
789
- hostname: builtins.str,
790
- ip: builtins.str,
791
- ip_net: builtins.str,
792
- name: builtins.str,
793
- pn_id: builtins.str,
794
- port: builtins.int,
795
- zone: builtins.str):
796
- """
797
- :param builtins.bool enable_ipam: Whether or not the private network endpoint should be configured with IPAM
798
- :param builtins.str endpoint_id: The endpoint ID
799
- :param builtins.str hostname: The hostname of your endpoint
800
- :param builtins.str ip: The IP of your Instance within the private service
801
- :param builtins.str ip_net: The IP with the given mask within the private subnet
802
- :param builtins.str name: The name of the RDB instance.
803
- :param builtins.str pn_id: The private network ID
804
- :param builtins.int port: The port of your private service
805
- :param builtins.str zone: The zone you want to attach the resource to
786
+ enable_ipam: _builtins.bool,
787
+ endpoint_id: _builtins.str,
788
+ hostname: _builtins.str,
789
+ ip: _builtins.str,
790
+ ip_net: _builtins.str,
791
+ name: _builtins.str,
792
+ pn_id: _builtins.str,
793
+ port: _builtins.int,
794
+ zone: _builtins.str):
795
+ """
796
+ :param _builtins.bool enable_ipam: Whether or not the private network endpoint should be configured with IPAM
797
+ :param _builtins.str endpoint_id: The endpoint ID
798
+ :param _builtins.str hostname: The hostname of your endpoint
799
+ :param _builtins.str ip: The IP of your Instance within the private service
800
+ :param _builtins.str ip_net: The IP with the given mask within the private subnet
801
+ :param _builtins.str name: The name of the RDB instance.
802
+ :param _builtins.str pn_id: The private network ID
803
+ :param _builtins.int port: The port of your private service
804
+ :param _builtins.str zone: The zone you want to attach the resource to
806
805
  """
807
806
  pulumi.set(__self__, "enable_ipam", enable_ipam)
808
807
  pulumi.set(__self__, "endpoint_id", endpoint_id)
@@ -814,73 +813,73 @@ class GetInstancePrivateNetworkResult(dict):
814
813
  pulumi.set(__self__, "port", port)
815
814
  pulumi.set(__self__, "zone", zone)
816
815
 
817
- @property
816
+ @_builtins.property
818
817
  @pulumi.getter(name="enableIpam")
819
- def enable_ipam(self) -> builtins.bool:
818
+ def enable_ipam(self) -> _builtins.bool:
820
819
  """
821
820
  Whether or not the private network endpoint should be configured with IPAM
822
821
  """
823
822
  return pulumi.get(self, "enable_ipam")
824
823
 
825
- @property
824
+ @_builtins.property
826
825
  @pulumi.getter(name="endpointId")
827
- def endpoint_id(self) -> builtins.str:
826
+ def endpoint_id(self) -> _builtins.str:
828
827
  """
829
828
  The endpoint ID
830
829
  """
831
830
  return pulumi.get(self, "endpoint_id")
832
831
 
833
- @property
832
+ @_builtins.property
834
833
  @pulumi.getter
835
- def hostname(self) -> builtins.str:
834
+ def hostname(self) -> _builtins.str:
836
835
  """
837
836
  The hostname of your endpoint
838
837
  """
839
838
  return pulumi.get(self, "hostname")
840
839
 
841
- @property
840
+ @_builtins.property
842
841
  @pulumi.getter
843
- def ip(self) -> builtins.str:
842
+ def ip(self) -> _builtins.str:
844
843
  """
845
844
  The IP of your Instance within the private service
846
845
  """
847
846
  return pulumi.get(self, "ip")
848
847
 
849
- @property
848
+ @_builtins.property
850
849
  @pulumi.getter(name="ipNet")
851
- def ip_net(self) -> builtins.str:
850
+ def ip_net(self) -> _builtins.str:
852
851
  """
853
852
  The IP with the given mask within the private subnet
854
853
  """
855
854
  return pulumi.get(self, "ip_net")
856
855
 
857
- @property
856
+ @_builtins.property
858
857
  @pulumi.getter
859
- def name(self) -> builtins.str:
858
+ def name(self) -> _builtins.str:
860
859
  """
861
860
  The name of the RDB instance.
862
861
  """
863
862
  return pulumi.get(self, "name")
864
863
 
865
- @property
864
+ @_builtins.property
866
865
  @pulumi.getter(name="pnId")
867
- def pn_id(self) -> builtins.str:
866
+ def pn_id(self) -> _builtins.str:
868
867
  """
869
868
  The private network ID
870
869
  """
871
870
  return pulumi.get(self, "pn_id")
872
871
 
873
- @property
872
+ @_builtins.property
874
873
  @pulumi.getter
875
- def port(self) -> builtins.int:
874
+ def port(self) -> _builtins.int:
876
875
  """
877
876
  The port of your private service
878
877
  """
879
878
  return pulumi.get(self, "port")
880
879
 
881
- @property
880
+ @_builtins.property
882
881
  @pulumi.getter
883
- def zone(self) -> builtins.str:
882
+ def zone(self) -> _builtins.str:
884
883
  """
885
884
  The zone you want to attach the resource to
886
885
  """
@@ -890,37 +889,37 @@ class GetInstancePrivateNetworkResult(dict):
890
889
  @pulumi.output_type
891
890
  class GetInstanceReadReplicaResult(dict):
892
891
  def __init__(__self__, *,
893
- ip: builtins.str,
894
- name: builtins.str,
895
- port: builtins.int):
892
+ ip: _builtins.str,
893
+ name: _builtins.str,
894
+ port: _builtins.int):
896
895
  """
897
- :param builtins.str ip: IP of the replica
898
- :param builtins.str name: The name of the RDB instance.
899
- :param builtins.int port: Port of the replica
896
+ :param _builtins.str ip: IP of the replica
897
+ :param _builtins.str name: The name of the RDB instance.
898
+ :param _builtins.int port: Port of the replica
900
899
  """
901
900
  pulumi.set(__self__, "ip", ip)
902
901
  pulumi.set(__self__, "name", name)
903
902
  pulumi.set(__self__, "port", port)
904
903
 
905
- @property
904
+ @_builtins.property
906
905
  @pulumi.getter
907
- def ip(self) -> builtins.str:
906
+ def ip(self) -> _builtins.str:
908
907
  """
909
908
  IP of the replica
910
909
  """
911
910
  return pulumi.get(self, "ip")
912
911
 
913
- @property
912
+ @_builtins.property
914
913
  @pulumi.getter
915
- def name(self) -> builtins.str:
914
+ def name(self) -> _builtins.str:
916
915
  """
917
916
  The name of the RDB instance.
918
917
  """
919
918
  return pulumi.get(self, "name")
920
919
 
921
- @property
920
+ @_builtins.property
922
921
  @pulumi.getter
923
- def port(self) -> builtins.int:
922
+ def port(self) -> _builtins.int:
924
923
  """
925
924
  Port of the replica
926
925
  """