pulumiverse-scaleway 1.23.0a1736837529__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.

Potentially problematic release.


This version of pulumiverse-scaleway might be problematic. Click here for more details.

Files changed (205) hide show
  1. pulumiverse_scaleway/__init__.py +1065 -0
  2. pulumiverse_scaleway/_inputs.py +8688 -0
  3. pulumiverse_scaleway/_utilities.py +327 -0
  4. pulumiverse_scaleway/account_project.py +316 -0
  5. pulumiverse_scaleway/account_ssh_key.py +454 -0
  6. pulumiverse_scaleway/apple_silicon_server.py +564 -0
  7. pulumiverse_scaleway/baremetal_server.py +1579 -0
  8. pulumiverse_scaleway/block_snapshot.py +401 -0
  9. pulumiverse_scaleway/block_volume.py +527 -0
  10. pulumiverse_scaleway/cockpit.py +314 -0
  11. pulumiverse_scaleway/cockpit_alert_manager.py +401 -0
  12. pulumiverse_scaleway/cockpit_grafana_user.py +362 -0
  13. pulumiverse_scaleway/cockpit_source.py +567 -0
  14. pulumiverse_scaleway/cockpit_token.py +479 -0
  15. pulumiverse_scaleway/config/__init__.py +8 -0
  16. pulumiverse_scaleway/config/__init__.pyi +56 -0
  17. pulumiverse_scaleway/config/vars.py +78 -0
  18. pulumiverse_scaleway/container.py +1373 -0
  19. pulumiverse_scaleway/container_cron.py +458 -0
  20. pulumiverse_scaleway/container_domain.py +406 -0
  21. pulumiverse_scaleway/container_namespace.py +636 -0
  22. pulumiverse_scaleway/container_token.py +452 -0
  23. pulumiverse_scaleway/container_trigger.py +480 -0
  24. pulumiverse_scaleway/database.py +407 -0
  25. pulumiverse_scaleway/database_acl.py +332 -0
  26. pulumiverse_scaleway/database_backup.py +574 -0
  27. pulumiverse_scaleway/database_instance.py +1641 -0
  28. pulumiverse_scaleway/database_privilege.py +422 -0
  29. pulumiverse_scaleway/database_read_replica.py +528 -0
  30. pulumiverse_scaleway/database_user.py +446 -0
  31. pulumiverse_scaleway/domain_record.py +1116 -0
  32. pulumiverse_scaleway/domain_zone.py +430 -0
  33. pulumiverse_scaleway/flexible_ip.py +702 -0
  34. pulumiverse_scaleway/flexible_ip_mac_address.py +510 -0
  35. pulumiverse_scaleway/function.py +1103 -0
  36. pulumiverse_scaleway/function_cron.py +462 -0
  37. pulumiverse_scaleway/function_domain.py +370 -0
  38. pulumiverse_scaleway/function_namespace.py +580 -0
  39. pulumiverse_scaleway/function_token.py +460 -0
  40. pulumiverse_scaleway/function_trigger.py +480 -0
  41. pulumiverse_scaleway/get_account_project.py +170 -0
  42. pulumiverse_scaleway/get_account_ssh_key.py +205 -0
  43. pulumiverse_scaleway/get_availability_zones.py +139 -0
  44. pulumiverse_scaleway/get_baremetal_offer.py +245 -0
  45. pulumiverse_scaleway/get_baremetal_option.py +168 -0
  46. pulumiverse_scaleway/get_baremetal_os.py +174 -0
  47. pulumiverse_scaleway/get_baremetal_server.py +422 -0
  48. pulumiverse_scaleway/get_billing_consumptions.py +134 -0
  49. pulumiverse_scaleway/get_billing_invoices.py +154 -0
  50. pulumiverse_scaleway/get_block_snapshot.py +174 -0
  51. pulumiverse_scaleway/get_block_volume.py +188 -0
  52. pulumiverse_scaleway/get_cockpit.py +204 -0
  53. pulumiverse_scaleway/get_cockpit_plan.py +125 -0
  54. pulumiverse_scaleway/get_cockpit_source.py +262 -0
  55. pulumiverse_scaleway/get_config.py +180 -0
  56. pulumiverse_scaleway/get_container.py +522 -0
  57. pulumiverse_scaleway/get_container_namespace.py +283 -0
  58. pulumiverse_scaleway/get_database.py +187 -0
  59. pulumiverse_scaleway/get_database_acl.py +143 -0
  60. pulumiverse_scaleway/get_database_backup.py +253 -0
  61. pulumiverse_scaleway/get_database_instance.py +404 -0
  62. pulumiverse_scaleway/get_database_privilege.py +181 -0
  63. pulumiverse_scaleway/get_domain_record.py +340 -0
  64. pulumiverse_scaleway/get_domain_zone.py +201 -0
  65. pulumiverse_scaleway/get_flexible_ip.py +247 -0
  66. pulumiverse_scaleway/get_flexible_ips.py +240 -0
  67. pulumiverse_scaleway/get_function.py +365 -0
  68. pulumiverse_scaleway/get_function_namespace.py +238 -0
  69. pulumiverse_scaleway/get_iam_api_key.py +210 -0
  70. pulumiverse_scaleway/get_iam_application.py +210 -0
  71. pulumiverse_scaleway/get_iam_group.py +236 -0
  72. pulumiverse_scaleway/get_iam_ssh_key.py +212 -0
  73. pulumiverse_scaleway/get_iam_user.py +177 -0
  74. pulumiverse_scaleway/get_instance_image.py +305 -0
  75. pulumiverse_scaleway/get_instance_ip.py +204 -0
  76. pulumiverse_scaleway/get_instance_placement_group.py +212 -0
  77. pulumiverse_scaleway/get_instance_private_nic.py +226 -0
  78. pulumiverse_scaleway/get_instance_security_group.py +268 -0
  79. pulumiverse_scaleway/get_instance_server.py +502 -0
  80. pulumiverse_scaleway/get_instance_servers.py +187 -0
  81. pulumiverse_scaleway/get_instance_snapshot.py +248 -0
  82. pulumiverse_scaleway/get_instance_volume.py +215 -0
  83. pulumiverse_scaleway/get_iot_device.py +257 -0
  84. pulumiverse_scaleway/get_iot_hub.py +322 -0
  85. pulumiverse_scaleway/get_ipam_ip.py +419 -0
  86. pulumiverse_scaleway/get_ipam_ips.py +358 -0
  87. pulumiverse_scaleway/get_k8s_version.py +196 -0
  88. pulumiverse_scaleway/get_kubernetes_cluster.py +417 -0
  89. pulumiverse_scaleway/get_kubernetes_node_pool.py +436 -0
  90. pulumiverse_scaleway/get_lb_acls.py +198 -0
  91. pulumiverse_scaleway/get_lb_backend.py +486 -0
  92. pulumiverse_scaleway/get_lb_backends.py +196 -0
  93. pulumiverse_scaleway/get_lb_frontend.py +274 -0
  94. pulumiverse_scaleway/get_lb_frontends.py +196 -0
  95. pulumiverse_scaleway/get_lb_ips.py +198 -0
  96. pulumiverse_scaleway/get_lb_route.py +217 -0
  97. pulumiverse_scaleway/get_lb_routes.py +179 -0
  98. pulumiverse_scaleway/get_lbs.py +187 -0
  99. pulumiverse_scaleway/get_loadbalancer.py +339 -0
  100. pulumiverse_scaleway/get_loadbalancer_certificate.py +230 -0
  101. pulumiverse_scaleway/get_loadbalancer_ip.py +228 -0
  102. pulumiverse_scaleway/get_marketplace_image.py +147 -0
  103. pulumiverse_scaleway/get_mnq_sns.py +150 -0
  104. pulumiverse_scaleway/get_mnq_sqs.py +150 -0
  105. pulumiverse_scaleway/get_mongo_db_instance.py +324 -0
  106. pulumiverse_scaleway/get_object_bucket.py +290 -0
  107. pulumiverse_scaleway/get_object_bucket_policy.py +163 -0
  108. pulumiverse_scaleway/get_redis_cluster.py +347 -0
  109. pulumiverse_scaleway/get_registry_image.py +239 -0
  110. pulumiverse_scaleway/get_registry_image_tag.py +229 -0
  111. pulumiverse_scaleway/get_registry_namespace.py +199 -0
  112. pulumiverse_scaleway/get_secret.py +338 -0
  113. pulumiverse_scaleway/get_secret_version.py +340 -0
  114. pulumiverse_scaleway/get_tem_domain.py +378 -0
  115. pulumiverse_scaleway/get_vpc.py +246 -0
  116. pulumiverse_scaleway/get_vpc_gateway_network.py +287 -0
  117. pulumiverse_scaleway/get_vpc_private_network.py +282 -0
  118. pulumiverse_scaleway/get_vpc_public_gateway.py +304 -0
  119. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +305 -0
  120. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +382 -0
  121. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +199 -0
  122. pulumiverse_scaleway/get_vpc_public_pat_rule.py +313 -0
  123. pulumiverse_scaleway/get_vpc_routes.py +208 -0
  124. pulumiverse_scaleway/get_vpcs.py +174 -0
  125. pulumiverse_scaleway/get_web_host_offer.py +192 -0
  126. pulumiverse_scaleway/get_webhosting.py +332 -0
  127. pulumiverse_scaleway/iam_api_key.py +620 -0
  128. pulumiverse_scaleway/iam_application.py +417 -0
  129. pulumiverse_scaleway/iam_group.py +566 -0
  130. pulumiverse_scaleway/iam_group_membership.py +323 -0
  131. pulumiverse_scaleway/iam_policy.py +773 -0
  132. pulumiverse_scaleway/iam_ssh_key.py +455 -0
  133. pulumiverse_scaleway/iam_user.py +513 -0
  134. pulumiverse_scaleway/inference_deployment.py +822 -0
  135. pulumiverse_scaleway/instance_image.py +750 -0
  136. pulumiverse_scaleway/instance_ip.py +483 -0
  137. pulumiverse_scaleway/instance_ip_reverse_dns.py +308 -0
  138. pulumiverse_scaleway/instance_placement_group.py +479 -0
  139. pulumiverse_scaleway/instance_private_nic.py +555 -0
  140. pulumiverse_scaleway/instance_security_group.py +720 -0
  141. pulumiverse_scaleway/instance_security_group_rules.py +439 -0
  142. pulumiverse_scaleway/instance_server.py +2006 -0
  143. pulumiverse_scaleway/instance_snapshot.py +669 -0
  144. pulumiverse_scaleway/instance_user_data.py +435 -0
  145. pulumiverse_scaleway/instance_volume.py +535 -0
  146. pulumiverse_scaleway/iot_device.py +750 -0
  147. pulumiverse_scaleway/iot_hub.py +896 -0
  148. pulumiverse_scaleway/iot_network.py +472 -0
  149. pulumiverse_scaleway/iot_route.py +660 -0
  150. pulumiverse_scaleway/ipam_ip.py +757 -0
  151. pulumiverse_scaleway/ipam_ip_reverse_dns.py +318 -0
  152. pulumiverse_scaleway/job_definition.py +692 -0
  153. pulumiverse_scaleway/kubernetes_cluster.py +1538 -0
  154. pulumiverse_scaleway/kubernetes_node_pool.py +1255 -0
  155. pulumiverse_scaleway/loadbalancer.py +1061 -0
  156. pulumiverse_scaleway/loadbalancer_acl.py +520 -0
  157. pulumiverse_scaleway/loadbalancer_backend.py +1588 -0
  158. pulumiverse_scaleway/loadbalancer_certificate.py +460 -0
  159. pulumiverse_scaleway/loadbalancer_frontend.py +829 -0
  160. pulumiverse_scaleway/loadbalancer_ip.py +514 -0
  161. pulumiverse_scaleway/loadbalancer_route.py +523 -0
  162. pulumiverse_scaleway/mnq_nats_account.py +334 -0
  163. pulumiverse_scaleway/mnq_nats_credentials.py +330 -0
  164. pulumiverse_scaleway/mnq_sns.py +306 -0
  165. pulumiverse_scaleway/mnq_sns_credentials.py +413 -0
  166. pulumiverse_scaleway/mnq_sns_topic.py +659 -0
  167. pulumiverse_scaleway/mnq_sns_topic_subscription.py +699 -0
  168. pulumiverse_scaleway/mnq_sqs.py +304 -0
  169. pulumiverse_scaleway/mnq_sqs_credentials.py +413 -0
  170. pulumiverse_scaleway/mnq_sqs_queue.py +800 -0
  171. pulumiverse_scaleway/mongo_db_instance.py +907 -0
  172. pulumiverse_scaleway/mongo_db_snapshot.py +521 -0
  173. pulumiverse_scaleway/object_bucket.py +874 -0
  174. pulumiverse_scaleway/object_bucket_acl.py +596 -0
  175. pulumiverse_scaleway/object_bucket_lock_configuration.py +395 -0
  176. pulumiverse_scaleway/object_bucket_policy.py +673 -0
  177. pulumiverse_scaleway/object_bucket_website_configuration.py +534 -0
  178. pulumiverse_scaleway/object_item.py +776 -0
  179. pulumiverse_scaleway/outputs.py +11808 -0
  180. pulumiverse_scaleway/provider.py +327 -0
  181. pulumiverse_scaleway/pulumi-plugin.json +6 -0
  182. pulumiverse_scaleway/py.typed +0 -0
  183. pulumiverse_scaleway/redis_cluster.py +1201 -0
  184. pulumiverse_scaleway/registry_namespace.py +458 -0
  185. pulumiverse_scaleway/sdb_database.py +432 -0
  186. pulumiverse_scaleway/secret.py +663 -0
  187. pulumiverse_scaleway/secret_version.py +487 -0
  188. pulumiverse_scaleway/tem_domain.py +1030 -0
  189. pulumiverse_scaleway/tem_domain_validation.py +303 -0
  190. pulumiverse_scaleway/tem_webhook.py +640 -0
  191. pulumiverse_scaleway/vpc.py +536 -0
  192. pulumiverse_scaleway/vpc_gateway_network.py +866 -0
  193. pulumiverse_scaleway/vpc_private_network.py +734 -0
  194. pulumiverse_scaleway/vpc_public_gateway.py +789 -0
  195. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +933 -0
  196. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +514 -0
  197. pulumiverse_scaleway/vpc_public_gateway_ip.py +457 -0
  198. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +306 -0
  199. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +591 -0
  200. pulumiverse_scaleway/vpc_route.py +577 -0
  201. pulumiverse_scaleway/webhosting.py +805 -0
  202. pulumiverse_scaleway-1.23.0a1736837529.dist-info/METADATA +77 -0
  203. pulumiverse_scaleway-1.23.0a1736837529.dist-info/RECORD +205 -0
  204. pulumiverse_scaleway-1.23.0a1736837529.dist-info/WHEEL +5 -0
  205. pulumiverse_scaleway-1.23.0a1736837529.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1065 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ from . import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from .account_project import *
9
+ from .account_ssh_key import *
10
+ from .apple_silicon_server import *
11
+ from .baremetal_server import *
12
+ from .block_snapshot import *
13
+ from .block_volume import *
14
+ from .cockpit import *
15
+ from .cockpit_alert_manager import *
16
+ from .cockpit_grafana_user import *
17
+ from .cockpit_source import *
18
+ from .cockpit_token import *
19
+ from .container import *
20
+ from .container_cron import *
21
+ from .container_domain import *
22
+ from .container_namespace import *
23
+ from .container_token import *
24
+ from .container_trigger import *
25
+ from .database import *
26
+ from .database_acl import *
27
+ from .database_backup import *
28
+ from .database_instance import *
29
+ from .database_privilege import *
30
+ from .database_read_replica import *
31
+ from .database_user import *
32
+ from .domain_record import *
33
+ from .domain_zone import *
34
+ from .flexible_ip import *
35
+ from .flexible_ip_mac_address import *
36
+ from .function import *
37
+ from .function_cron import *
38
+ from .function_domain import *
39
+ from .function_namespace import *
40
+ from .function_token import *
41
+ from .function_trigger import *
42
+ from .get_account_project import *
43
+ from .get_account_ssh_key import *
44
+ from .get_availability_zones import *
45
+ from .get_baremetal_offer import *
46
+ from .get_baremetal_option import *
47
+ from .get_baremetal_os import *
48
+ from .get_baremetal_server import *
49
+ from .get_billing_consumptions import *
50
+ from .get_billing_invoices import *
51
+ from .get_block_snapshot import *
52
+ from .get_block_volume import *
53
+ from .get_cockpit import *
54
+ from .get_cockpit_plan import *
55
+ from .get_cockpit_source import *
56
+ from .get_config import *
57
+ from .get_container import *
58
+ from .get_container_namespace import *
59
+ from .get_database import *
60
+ from .get_database_acl import *
61
+ from .get_database_backup import *
62
+ from .get_database_instance import *
63
+ from .get_database_privilege import *
64
+ from .get_domain_record import *
65
+ from .get_domain_zone import *
66
+ from .get_flexible_ip import *
67
+ from .get_flexible_ips import *
68
+ from .get_function import *
69
+ from .get_function_namespace import *
70
+ from .get_iam_api_key import *
71
+ from .get_iam_application import *
72
+ from .get_iam_group import *
73
+ from .get_iam_ssh_key import *
74
+ from .get_iam_user import *
75
+ from .get_instance_image import *
76
+ from .get_instance_ip import *
77
+ from .get_instance_placement_group import *
78
+ from .get_instance_private_nic import *
79
+ from .get_instance_security_group import *
80
+ from .get_instance_server import *
81
+ from .get_instance_servers import *
82
+ from .get_instance_snapshot import *
83
+ from .get_instance_volume import *
84
+ from .get_iot_device import *
85
+ from .get_iot_hub import *
86
+ from .get_ipam_ip import *
87
+ from .get_ipam_ips import *
88
+ from .get_k8s_version import *
89
+ from .get_kubernetes_cluster import *
90
+ from .get_kubernetes_node_pool import *
91
+ from .get_lb_acls import *
92
+ from .get_lb_backend import *
93
+ from .get_lb_backends import *
94
+ from .get_lb_frontend import *
95
+ from .get_lb_frontends import *
96
+ from .get_lb_ips import *
97
+ from .get_lb_route import *
98
+ from .get_lb_routes import *
99
+ from .get_lbs import *
100
+ from .get_loadbalancer import *
101
+ from .get_loadbalancer_certificate import *
102
+ from .get_loadbalancer_ip import *
103
+ from .get_marketplace_image import *
104
+ from .get_mnq_sns import *
105
+ from .get_mnq_sqs import *
106
+ from .get_mongo_db_instance import *
107
+ from .get_object_bucket import *
108
+ from .get_object_bucket_policy import *
109
+ from .get_redis_cluster import *
110
+ from .get_registry_image import *
111
+ from .get_registry_image_tag import *
112
+ from .get_registry_namespace import *
113
+ from .get_secret import *
114
+ from .get_secret_version import *
115
+ from .get_tem_domain import *
116
+ from .get_vpc import *
117
+ from .get_vpc_gateway_network import *
118
+ from .get_vpc_private_network import *
119
+ from .get_vpc_public_gateway import *
120
+ from .get_vpc_public_gateway_dhcp import *
121
+ from .get_vpc_public_gateway_dhcp_reservation import *
122
+ from .get_vpc_public_gateway_ip import *
123
+ from .get_vpc_public_pat_rule import *
124
+ from .get_vpc_routes import *
125
+ from .get_vpcs import *
126
+ from .get_web_host_offer import *
127
+ from .get_webhosting import *
128
+ from .iam_api_key import *
129
+ from .iam_application import *
130
+ from .iam_group import *
131
+ from .iam_group_membership import *
132
+ from .iam_policy import *
133
+ from .iam_ssh_key import *
134
+ from .iam_user import *
135
+ from .inference_deployment import *
136
+ from .instance_image import *
137
+ from .instance_ip import *
138
+ from .instance_ip_reverse_dns import *
139
+ from .instance_placement_group import *
140
+ from .instance_private_nic import *
141
+ from .instance_security_group import *
142
+ from .instance_security_group_rules import *
143
+ from .instance_server import *
144
+ from .instance_snapshot import *
145
+ from .instance_user_data import *
146
+ from .instance_volume import *
147
+ from .iot_device import *
148
+ from .iot_hub import *
149
+ from .iot_network import *
150
+ from .iot_route import *
151
+ from .ipam_ip import *
152
+ from .ipam_ip_reverse_dns import *
153
+ from .job_definition import *
154
+ from .kubernetes_cluster import *
155
+ from .kubernetes_node_pool import *
156
+ from .loadbalancer import *
157
+ from .loadbalancer_acl import *
158
+ from .loadbalancer_backend import *
159
+ from .loadbalancer_certificate import *
160
+ from .loadbalancer_frontend import *
161
+ from .loadbalancer_ip import *
162
+ from .loadbalancer_route import *
163
+ from .mnq_nats_account import *
164
+ from .mnq_nats_credentials import *
165
+ from .mnq_sns import *
166
+ from .mnq_sns_credentials import *
167
+ from .mnq_sns_topic import *
168
+ from .mnq_sns_topic_subscription import *
169
+ from .mnq_sqs import *
170
+ from .mnq_sqs_credentials import *
171
+ from .mnq_sqs_queue import *
172
+ from .mongo_db_instance import *
173
+ from .mongo_db_snapshot import *
174
+ from .object_bucket import *
175
+ from .object_bucket_acl import *
176
+ from .object_bucket_lock_configuration import *
177
+ from .object_bucket_policy import *
178
+ from .object_bucket_website_configuration import *
179
+ from .object_item import *
180
+ from .provider import *
181
+ from .redis_cluster import *
182
+ from .registry_namespace import *
183
+ from .sdb_database import *
184
+ from .secret import *
185
+ from .secret_version import *
186
+ from .tem_domain import *
187
+ from .tem_domain_validation import *
188
+ from .tem_webhook import *
189
+ from .vpc import *
190
+ from .vpc_gateway_network import *
191
+ from .vpc_private_network import *
192
+ from .vpc_public_gateway import *
193
+ from .vpc_public_gateway_dhcp import *
194
+ from .vpc_public_gateway_dhcp_reservation import *
195
+ from .vpc_public_gateway_ip import *
196
+ from .vpc_public_gateway_ip_reverse_dns import *
197
+ from .vpc_public_gateway_pat_rule import *
198
+ from .vpc_route import *
199
+ from .webhosting import *
200
+ from ._inputs import *
201
+ from . import outputs
202
+
203
+ # Make subpackages available:
204
+ if typing.TYPE_CHECKING:
205
+ import pulumiverse_scaleway.config as __config
206
+ config = __config
207
+ else:
208
+ config = _utilities.lazy_import('pulumiverse_scaleway.config')
209
+
210
+ _utilities.register(
211
+ resource_modules="""
212
+ [
213
+ {
214
+ "pkg": "scaleway",
215
+ "mod": "index/accountProject",
216
+ "fqn": "pulumiverse_scaleway",
217
+ "classes": {
218
+ "scaleway:index/accountProject:AccountProject": "AccountProject"
219
+ }
220
+ },
221
+ {
222
+ "pkg": "scaleway",
223
+ "mod": "index/accountSshKey",
224
+ "fqn": "pulumiverse_scaleway",
225
+ "classes": {
226
+ "scaleway:index/accountSshKey:AccountSshKey": "AccountSshKey"
227
+ }
228
+ },
229
+ {
230
+ "pkg": "scaleway",
231
+ "mod": "index/appleSiliconServer",
232
+ "fqn": "pulumiverse_scaleway",
233
+ "classes": {
234
+ "scaleway:index/appleSiliconServer:AppleSiliconServer": "AppleSiliconServer"
235
+ }
236
+ },
237
+ {
238
+ "pkg": "scaleway",
239
+ "mod": "index/baremetalServer",
240
+ "fqn": "pulumiverse_scaleway",
241
+ "classes": {
242
+ "scaleway:index/baremetalServer:BaremetalServer": "BaremetalServer"
243
+ }
244
+ },
245
+ {
246
+ "pkg": "scaleway",
247
+ "mod": "index/blockSnapshot",
248
+ "fqn": "pulumiverse_scaleway",
249
+ "classes": {
250
+ "scaleway:index/blockSnapshot:BlockSnapshot": "BlockSnapshot"
251
+ }
252
+ },
253
+ {
254
+ "pkg": "scaleway",
255
+ "mod": "index/blockVolume",
256
+ "fqn": "pulumiverse_scaleway",
257
+ "classes": {
258
+ "scaleway:index/blockVolume:BlockVolume": "BlockVolume"
259
+ }
260
+ },
261
+ {
262
+ "pkg": "scaleway",
263
+ "mod": "index/cockpit",
264
+ "fqn": "pulumiverse_scaleway",
265
+ "classes": {
266
+ "scaleway:index/cockpit:Cockpit": "Cockpit"
267
+ }
268
+ },
269
+ {
270
+ "pkg": "scaleway",
271
+ "mod": "index/cockpitAlertManager",
272
+ "fqn": "pulumiverse_scaleway",
273
+ "classes": {
274
+ "scaleway:index/cockpitAlertManager:CockpitAlertManager": "CockpitAlertManager"
275
+ }
276
+ },
277
+ {
278
+ "pkg": "scaleway",
279
+ "mod": "index/cockpitGrafanaUser",
280
+ "fqn": "pulumiverse_scaleway",
281
+ "classes": {
282
+ "scaleway:index/cockpitGrafanaUser:CockpitGrafanaUser": "CockpitGrafanaUser"
283
+ }
284
+ },
285
+ {
286
+ "pkg": "scaleway",
287
+ "mod": "index/cockpitSource",
288
+ "fqn": "pulumiverse_scaleway",
289
+ "classes": {
290
+ "scaleway:index/cockpitSource:CockpitSource": "CockpitSource"
291
+ }
292
+ },
293
+ {
294
+ "pkg": "scaleway",
295
+ "mod": "index/cockpitToken",
296
+ "fqn": "pulumiverse_scaleway",
297
+ "classes": {
298
+ "scaleway:index/cockpitToken:CockpitToken": "CockpitToken"
299
+ }
300
+ },
301
+ {
302
+ "pkg": "scaleway",
303
+ "mod": "index/container",
304
+ "fqn": "pulumiverse_scaleway",
305
+ "classes": {
306
+ "scaleway:index/container:Container": "Container"
307
+ }
308
+ },
309
+ {
310
+ "pkg": "scaleway",
311
+ "mod": "index/containerCron",
312
+ "fqn": "pulumiverse_scaleway",
313
+ "classes": {
314
+ "scaleway:index/containerCron:ContainerCron": "ContainerCron"
315
+ }
316
+ },
317
+ {
318
+ "pkg": "scaleway",
319
+ "mod": "index/containerDomain",
320
+ "fqn": "pulumiverse_scaleway",
321
+ "classes": {
322
+ "scaleway:index/containerDomain:ContainerDomain": "ContainerDomain"
323
+ }
324
+ },
325
+ {
326
+ "pkg": "scaleway",
327
+ "mod": "index/containerNamespace",
328
+ "fqn": "pulumiverse_scaleway",
329
+ "classes": {
330
+ "scaleway:index/containerNamespace:ContainerNamespace": "ContainerNamespace"
331
+ }
332
+ },
333
+ {
334
+ "pkg": "scaleway",
335
+ "mod": "index/containerToken",
336
+ "fqn": "pulumiverse_scaleway",
337
+ "classes": {
338
+ "scaleway:index/containerToken:ContainerToken": "ContainerToken"
339
+ }
340
+ },
341
+ {
342
+ "pkg": "scaleway",
343
+ "mod": "index/containerTrigger",
344
+ "fqn": "pulumiverse_scaleway",
345
+ "classes": {
346
+ "scaleway:index/containerTrigger:ContainerTrigger": "ContainerTrigger"
347
+ }
348
+ },
349
+ {
350
+ "pkg": "scaleway",
351
+ "mod": "index/database",
352
+ "fqn": "pulumiverse_scaleway",
353
+ "classes": {
354
+ "scaleway:index/database:Database": "Database"
355
+ }
356
+ },
357
+ {
358
+ "pkg": "scaleway",
359
+ "mod": "index/databaseAcl",
360
+ "fqn": "pulumiverse_scaleway",
361
+ "classes": {
362
+ "scaleway:index/databaseAcl:DatabaseAcl": "DatabaseAcl"
363
+ }
364
+ },
365
+ {
366
+ "pkg": "scaleway",
367
+ "mod": "index/databaseBackup",
368
+ "fqn": "pulumiverse_scaleway",
369
+ "classes": {
370
+ "scaleway:index/databaseBackup:DatabaseBackup": "DatabaseBackup"
371
+ }
372
+ },
373
+ {
374
+ "pkg": "scaleway",
375
+ "mod": "index/databaseInstance",
376
+ "fqn": "pulumiverse_scaleway",
377
+ "classes": {
378
+ "scaleway:index/databaseInstance:DatabaseInstance": "DatabaseInstance"
379
+ }
380
+ },
381
+ {
382
+ "pkg": "scaleway",
383
+ "mod": "index/databasePrivilege",
384
+ "fqn": "pulumiverse_scaleway",
385
+ "classes": {
386
+ "scaleway:index/databasePrivilege:DatabasePrivilege": "DatabasePrivilege"
387
+ }
388
+ },
389
+ {
390
+ "pkg": "scaleway",
391
+ "mod": "index/databaseReadReplica",
392
+ "fqn": "pulumiverse_scaleway",
393
+ "classes": {
394
+ "scaleway:index/databaseReadReplica:DatabaseReadReplica": "DatabaseReadReplica"
395
+ }
396
+ },
397
+ {
398
+ "pkg": "scaleway",
399
+ "mod": "index/databaseUser",
400
+ "fqn": "pulumiverse_scaleway",
401
+ "classes": {
402
+ "scaleway:index/databaseUser:DatabaseUser": "DatabaseUser"
403
+ }
404
+ },
405
+ {
406
+ "pkg": "scaleway",
407
+ "mod": "index/domainRecord",
408
+ "fqn": "pulumiverse_scaleway",
409
+ "classes": {
410
+ "scaleway:index/domainRecord:DomainRecord": "DomainRecord"
411
+ }
412
+ },
413
+ {
414
+ "pkg": "scaleway",
415
+ "mod": "index/domainZone",
416
+ "fqn": "pulumiverse_scaleway",
417
+ "classes": {
418
+ "scaleway:index/domainZone:DomainZone": "DomainZone"
419
+ }
420
+ },
421
+ {
422
+ "pkg": "scaleway",
423
+ "mod": "index/flexibleIp",
424
+ "fqn": "pulumiverse_scaleway",
425
+ "classes": {
426
+ "scaleway:index/flexibleIp:FlexibleIp": "FlexibleIp"
427
+ }
428
+ },
429
+ {
430
+ "pkg": "scaleway",
431
+ "mod": "index/flexibleIpMacAddress",
432
+ "fqn": "pulumiverse_scaleway",
433
+ "classes": {
434
+ "scaleway:index/flexibleIpMacAddress:FlexibleIpMacAddress": "FlexibleIpMacAddress"
435
+ }
436
+ },
437
+ {
438
+ "pkg": "scaleway",
439
+ "mod": "index/function",
440
+ "fqn": "pulumiverse_scaleway",
441
+ "classes": {
442
+ "scaleway:index/function:Function": "Function"
443
+ }
444
+ },
445
+ {
446
+ "pkg": "scaleway",
447
+ "mod": "index/functionCron",
448
+ "fqn": "pulumiverse_scaleway",
449
+ "classes": {
450
+ "scaleway:index/functionCron:FunctionCron": "FunctionCron"
451
+ }
452
+ },
453
+ {
454
+ "pkg": "scaleway",
455
+ "mod": "index/functionDomain",
456
+ "fqn": "pulumiverse_scaleway",
457
+ "classes": {
458
+ "scaleway:index/functionDomain:FunctionDomain": "FunctionDomain"
459
+ }
460
+ },
461
+ {
462
+ "pkg": "scaleway",
463
+ "mod": "index/functionNamespace",
464
+ "fqn": "pulumiverse_scaleway",
465
+ "classes": {
466
+ "scaleway:index/functionNamespace:FunctionNamespace": "FunctionNamespace"
467
+ }
468
+ },
469
+ {
470
+ "pkg": "scaleway",
471
+ "mod": "index/functionToken",
472
+ "fqn": "pulumiverse_scaleway",
473
+ "classes": {
474
+ "scaleway:index/functionToken:FunctionToken": "FunctionToken"
475
+ }
476
+ },
477
+ {
478
+ "pkg": "scaleway",
479
+ "mod": "index/functionTrigger",
480
+ "fqn": "pulumiverse_scaleway",
481
+ "classes": {
482
+ "scaleway:index/functionTrigger:FunctionTrigger": "FunctionTrigger"
483
+ }
484
+ },
485
+ {
486
+ "pkg": "scaleway",
487
+ "mod": "index/iamApiKey",
488
+ "fqn": "pulumiverse_scaleway",
489
+ "classes": {
490
+ "scaleway:index/iamApiKey:IamApiKey": "IamApiKey"
491
+ }
492
+ },
493
+ {
494
+ "pkg": "scaleway",
495
+ "mod": "index/iamApplication",
496
+ "fqn": "pulumiverse_scaleway",
497
+ "classes": {
498
+ "scaleway:index/iamApplication:IamApplication": "IamApplication"
499
+ }
500
+ },
501
+ {
502
+ "pkg": "scaleway",
503
+ "mod": "index/iamGroup",
504
+ "fqn": "pulumiverse_scaleway",
505
+ "classes": {
506
+ "scaleway:index/iamGroup:IamGroup": "IamGroup"
507
+ }
508
+ },
509
+ {
510
+ "pkg": "scaleway",
511
+ "mod": "index/iamGroupMembership",
512
+ "fqn": "pulumiverse_scaleway",
513
+ "classes": {
514
+ "scaleway:index/iamGroupMembership:IamGroupMembership": "IamGroupMembership"
515
+ }
516
+ },
517
+ {
518
+ "pkg": "scaleway",
519
+ "mod": "index/iamPolicy",
520
+ "fqn": "pulumiverse_scaleway",
521
+ "classes": {
522
+ "scaleway:index/iamPolicy:IamPolicy": "IamPolicy"
523
+ }
524
+ },
525
+ {
526
+ "pkg": "scaleway",
527
+ "mod": "index/iamSshKey",
528
+ "fqn": "pulumiverse_scaleway",
529
+ "classes": {
530
+ "scaleway:index/iamSshKey:IamSshKey": "IamSshKey"
531
+ }
532
+ },
533
+ {
534
+ "pkg": "scaleway",
535
+ "mod": "index/iamUser",
536
+ "fqn": "pulumiverse_scaleway",
537
+ "classes": {
538
+ "scaleway:index/iamUser:IamUser": "IamUser"
539
+ }
540
+ },
541
+ {
542
+ "pkg": "scaleway",
543
+ "mod": "index/inferenceDeployment",
544
+ "fqn": "pulumiverse_scaleway",
545
+ "classes": {
546
+ "scaleway:index/inferenceDeployment:InferenceDeployment": "InferenceDeployment"
547
+ }
548
+ },
549
+ {
550
+ "pkg": "scaleway",
551
+ "mod": "index/instanceImage",
552
+ "fqn": "pulumiverse_scaleway",
553
+ "classes": {
554
+ "scaleway:index/instanceImage:InstanceImage": "InstanceImage"
555
+ }
556
+ },
557
+ {
558
+ "pkg": "scaleway",
559
+ "mod": "index/instanceIp",
560
+ "fqn": "pulumiverse_scaleway",
561
+ "classes": {
562
+ "scaleway:index/instanceIp:InstanceIp": "InstanceIp"
563
+ }
564
+ },
565
+ {
566
+ "pkg": "scaleway",
567
+ "mod": "index/instanceIpReverseDns",
568
+ "fqn": "pulumiverse_scaleway",
569
+ "classes": {
570
+ "scaleway:index/instanceIpReverseDns:InstanceIpReverseDns": "InstanceIpReverseDns"
571
+ }
572
+ },
573
+ {
574
+ "pkg": "scaleway",
575
+ "mod": "index/instancePlacementGroup",
576
+ "fqn": "pulumiverse_scaleway",
577
+ "classes": {
578
+ "scaleway:index/instancePlacementGroup:InstancePlacementGroup": "InstancePlacementGroup"
579
+ }
580
+ },
581
+ {
582
+ "pkg": "scaleway",
583
+ "mod": "index/instancePrivateNic",
584
+ "fqn": "pulumiverse_scaleway",
585
+ "classes": {
586
+ "scaleway:index/instancePrivateNic:InstancePrivateNic": "InstancePrivateNic"
587
+ }
588
+ },
589
+ {
590
+ "pkg": "scaleway",
591
+ "mod": "index/instanceSecurityGroup",
592
+ "fqn": "pulumiverse_scaleway",
593
+ "classes": {
594
+ "scaleway:index/instanceSecurityGroup:InstanceSecurityGroup": "InstanceSecurityGroup"
595
+ }
596
+ },
597
+ {
598
+ "pkg": "scaleway",
599
+ "mod": "index/instanceSecurityGroupRules",
600
+ "fqn": "pulumiverse_scaleway",
601
+ "classes": {
602
+ "scaleway:index/instanceSecurityGroupRules:InstanceSecurityGroupRules": "InstanceSecurityGroupRules"
603
+ }
604
+ },
605
+ {
606
+ "pkg": "scaleway",
607
+ "mod": "index/instanceServer",
608
+ "fqn": "pulumiverse_scaleway",
609
+ "classes": {
610
+ "scaleway:index/instanceServer:InstanceServer": "InstanceServer"
611
+ }
612
+ },
613
+ {
614
+ "pkg": "scaleway",
615
+ "mod": "index/instanceSnapshot",
616
+ "fqn": "pulumiverse_scaleway",
617
+ "classes": {
618
+ "scaleway:index/instanceSnapshot:InstanceSnapshot": "InstanceSnapshot"
619
+ }
620
+ },
621
+ {
622
+ "pkg": "scaleway",
623
+ "mod": "index/instanceUserData",
624
+ "fqn": "pulumiverse_scaleway",
625
+ "classes": {
626
+ "scaleway:index/instanceUserData:InstanceUserData": "InstanceUserData"
627
+ }
628
+ },
629
+ {
630
+ "pkg": "scaleway",
631
+ "mod": "index/instanceVolume",
632
+ "fqn": "pulumiverse_scaleway",
633
+ "classes": {
634
+ "scaleway:index/instanceVolume:InstanceVolume": "InstanceVolume"
635
+ }
636
+ },
637
+ {
638
+ "pkg": "scaleway",
639
+ "mod": "index/iotDevice",
640
+ "fqn": "pulumiverse_scaleway",
641
+ "classes": {
642
+ "scaleway:index/iotDevice:IotDevice": "IotDevice"
643
+ }
644
+ },
645
+ {
646
+ "pkg": "scaleway",
647
+ "mod": "index/iotHub",
648
+ "fqn": "pulumiverse_scaleway",
649
+ "classes": {
650
+ "scaleway:index/iotHub:IotHub": "IotHub"
651
+ }
652
+ },
653
+ {
654
+ "pkg": "scaleway",
655
+ "mod": "index/iotNetwork",
656
+ "fqn": "pulumiverse_scaleway",
657
+ "classes": {
658
+ "scaleway:index/iotNetwork:IotNetwork": "IotNetwork"
659
+ }
660
+ },
661
+ {
662
+ "pkg": "scaleway",
663
+ "mod": "index/iotRoute",
664
+ "fqn": "pulumiverse_scaleway",
665
+ "classes": {
666
+ "scaleway:index/iotRoute:IotRoute": "IotRoute"
667
+ }
668
+ },
669
+ {
670
+ "pkg": "scaleway",
671
+ "mod": "index/ipamIp",
672
+ "fqn": "pulumiverse_scaleway",
673
+ "classes": {
674
+ "scaleway:index/ipamIp:IpamIp": "IpamIp"
675
+ }
676
+ },
677
+ {
678
+ "pkg": "scaleway",
679
+ "mod": "index/ipamIpReverseDns",
680
+ "fqn": "pulumiverse_scaleway",
681
+ "classes": {
682
+ "scaleway:index/ipamIpReverseDns:IpamIpReverseDns": "IpamIpReverseDns"
683
+ }
684
+ },
685
+ {
686
+ "pkg": "scaleway",
687
+ "mod": "index/jobDefinition",
688
+ "fqn": "pulumiverse_scaleway",
689
+ "classes": {
690
+ "scaleway:index/jobDefinition:JobDefinition": "JobDefinition"
691
+ }
692
+ },
693
+ {
694
+ "pkg": "scaleway",
695
+ "mod": "index/kubernetesCluster",
696
+ "fqn": "pulumiverse_scaleway",
697
+ "classes": {
698
+ "scaleway:index/kubernetesCluster:KubernetesCluster": "KubernetesCluster"
699
+ }
700
+ },
701
+ {
702
+ "pkg": "scaleway",
703
+ "mod": "index/kubernetesNodePool",
704
+ "fqn": "pulumiverse_scaleway",
705
+ "classes": {
706
+ "scaleway:index/kubernetesNodePool:KubernetesNodePool": "KubernetesNodePool"
707
+ }
708
+ },
709
+ {
710
+ "pkg": "scaleway",
711
+ "mod": "index/loadbalancer",
712
+ "fqn": "pulumiverse_scaleway",
713
+ "classes": {
714
+ "scaleway:index/loadbalancer:Loadbalancer": "Loadbalancer"
715
+ }
716
+ },
717
+ {
718
+ "pkg": "scaleway",
719
+ "mod": "index/loadbalancerAcl",
720
+ "fqn": "pulumiverse_scaleway",
721
+ "classes": {
722
+ "scaleway:index/loadbalancerAcl:LoadbalancerAcl": "LoadbalancerAcl"
723
+ }
724
+ },
725
+ {
726
+ "pkg": "scaleway",
727
+ "mod": "index/loadbalancerBackend",
728
+ "fqn": "pulumiverse_scaleway",
729
+ "classes": {
730
+ "scaleway:index/loadbalancerBackend:LoadbalancerBackend": "LoadbalancerBackend"
731
+ }
732
+ },
733
+ {
734
+ "pkg": "scaleway",
735
+ "mod": "index/loadbalancerCertificate",
736
+ "fqn": "pulumiverse_scaleway",
737
+ "classes": {
738
+ "scaleway:index/loadbalancerCertificate:LoadbalancerCertificate": "LoadbalancerCertificate"
739
+ }
740
+ },
741
+ {
742
+ "pkg": "scaleway",
743
+ "mod": "index/loadbalancerFrontend",
744
+ "fqn": "pulumiverse_scaleway",
745
+ "classes": {
746
+ "scaleway:index/loadbalancerFrontend:LoadbalancerFrontend": "LoadbalancerFrontend"
747
+ }
748
+ },
749
+ {
750
+ "pkg": "scaleway",
751
+ "mod": "index/loadbalancerIp",
752
+ "fqn": "pulumiverse_scaleway",
753
+ "classes": {
754
+ "scaleway:index/loadbalancerIp:LoadbalancerIp": "LoadbalancerIp"
755
+ }
756
+ },
757
+ {
758
+ "pkg": "scaleway",
759
+ "mod": "index/loadbalancerRoute",
760
+ "fqn": "pulumiverse_scaleway",
761
+ "classes": {
762
+ "scaleway:index/loadbalancerRoute:LoadbalancerRoute": "LoadbalancerRoute"
763
+ }
764
+ },
765
+ {
766
+ "pkg": "scaleway",
767
+ "mod": "index/mnqNatsAccount",
768
+ "fqn": "pulumiverse_scaleway",
769
+ "classes": {
770
+ "scaleway:index/mnqNatsAccount:MnqNatsAccount": "MnqNatsAccount"
771
+ }
772
+ },
773
+ {
774
+ "pkg": "scaleway",
775
+ "mod": "index/mnqNatsCredentials",
776
+ "fqn": "pulumiverse_scaleway",
777
+ "classes": {
778
+ "scaleway:index/mnqNatsCredentials:MnqNatsCredentials": "MnqNatsCredentials"
779
+ }
780
+ },
781
+ {
782
+ "pkg": "scaleway",
783
+ "mod": "index/mnqSns",
784
+ "fqn": "pulumiverse_scaleway",
785
+ "classes": {
786
+ "scaleway:index/mnqSns:MnqSns": "MnqSns"
787
+ }
788
+ },
789
+ {
790
+ "pkg": "scaleway",
791
+ "mod": "index/mnqSnsCredentials",
792
+ "fqn": "pulumiverse_scaleway",
793
+ "classes": {
794
+ "scaleway:index/mnqSnsCredentials:MnqSnsCredentials": "MnqSnsCredentials"
795
+ }
796
+ },
797
+ {
798
+ "pkg": "scaleway",
799
+ "mod": "index/mnqSnsTopic",
800
+ "fqn": "pulumiverse_scaleway",
801
+ "classes": {
802
+ "scaleway:index/mnqSnsTopic:MnqSnsTopic": "MnqSnsTopic"
803
+ }
804
+ },
805
+ {
806
+ "pkg": "scaleway",
807
+ "mod": "index/mnqSnsTopicSubscription",
808
+ "fqn": "pulumiverse_scaleway",
809
+ "classes": {
810
+ "scaleway:index/mnqSnsTopicSubscription:MnqSnsTopicSubscription": "MnqSnsTopicSubscription"
811
+ }
812
+ },
813
+ {
814
+ "pkg": "scaleway",
815
+ "mod": "index/mnqSqs",
816
+ "fqn": "pulumiverse_scaleway",
817
+ "classes": {
818
+ "scaleway:index/mnqSqs:MnqSqs": "MnqSqs"
819
+ }
820
+ },
821
+ {
822
+ "pkg": "scaleway",
823
+ "mod": "index/mnqSqsCredentials",
824
+ "fqn": "pulumiverse_scaleway",
825
+ "classes": {
826
+ "scaleway:index/mnqSqsCredentials:MnqSqsCredentials": "MnqSqsCredentials"
827
+ }
828
+ },
829
+ {
830
+ "pkg": "scaleway",
831
+ "mod": "index/mnqSqsQueue",
832
+ "fqn": "pulumiverse_scaleway",
833
+ "classes": {
834
+ "scaleway:index/mnqSqsQueue:MnqSqsQueue": "MnqSqsQueue"
835
+ }
836
+ },
837
+ {
838
+ "pkg": "scaleway",
839
+ "mod": "index/mongoDbInstance",
840
+ "fqn": "pulumiverse_scaleway",
841
+ "classes": {
842
+ "scaleway:index/mongoDbInstance:MongoDbInstance": "MongoDbInstance"
843
+ }
844
+ },
845
+ {
846
+ "pkg": "scaleway",
847
+ "mod": "index/mongoDbSnapshot",
848
+ "fqn": "pulumiverse_scaleway",
849
+ "classes": {
850
+ "scaleway:index/mongoDbSnapshot:MongoDbSnapshot": "MongoDbSnapshot"
851
+ }
852
+ },
853
+ {
854
+ "pkg": "scaleway",
855
+ "mod": "index/objectBucket",
856
+ "fqn": "pulumiverse_scaleway",
857
+ "classes": {
858
+ "scaleway:index/objectBucket:ObjectBucket": "ObjectBucket"
859
+ }
860
+ },
861
+ {
862
+ "pkg": "scaleway",
863
+ "mod": "index/objectBucketAcl",
864
+ "fqn": "pulumiverse_scaleway",
865
+ "classes": {
866
+ "scaleway:index/objectBucketAcl:ObjectBucketAcl": "ObjectBucketAcl"
867
+ }
868
+ },
869
+ {
870
+ "pkg": "scaleway",
871
+ "mod": "index/objectBucketLockConfiguration",
872
+ "fqn": "pulumiverse_scaleway",
873
+ "classes": {
874
+ "scaleway:index/objectBucketLockConfiguration:ObjectBucketLockConfiguration": "ObjectBucketLockConfiguration"
875
+ }
876
+ },
877
+ {
878
+ "pkg": "scaleway",
879
+ "mod": "index/objectBucketPolicy",
880
+ "fqn": "pulumiverse_scaleway",
881
+ "classes": {
882
+ "scaleway:index/objectBucketPolicy:ObjectBucketPolicy": "ObjectBucketPolicy"
883
+ }
884
+ },
885
+ {
886
+ "pkg": "scaleway",
887
+ "mod": "index/objectBucketWebsiteConfiguration",
888
+ "fqn": "pulumiverse_scaleway",
889
+ "classes": {
890
+ "scaleway:index/objectBucketWebsiteConfiguration:ObjectBucketWebsiteConfiguration": "ObjectBucketWebsiteConfiguration"
891
+ }
892
+ },
893
+ {
894
+ "pkg": "scaleway",
895
+ "mod": "index/objectItem",
896
+ "fqn": "pulumiverse_scaleway",
897
+ "classes": {
898
+ "scaleway:index/objectItem:ObjectItem": "ObjectItem"
899
+ }
900
+ },
901
+ {
902
+ "pkg": "scaleway",
903
+ "mod": "index/redisCluster",
904
+ "fqn": "pulumiverse_scaleway",
905
+ "classes": {
906
+ "scaleway:index/redisCluster:RedisCluster": "RedisCluster"
907
+ }
908
+ },
909
+ {
910
+ "pkg": "scaleway",
911
+ "mod": "index/registryNamespace",
912
+ "fqn": "pulumiverse_scaleway",
913
+ "classes": {
914
+ "scaleway:index/registryNamespace:RegistryNamespace": "RegistryNamespace"
915
+ }
916
+ },
917
+ {
918
+ "pkg": "scaleway",
919
+ "mod": "index/sdbDatabase",
920
+ "fqn": "pulumiverse_scaleway",
921
+ "classes": {
922
+ "scaleway:index/sdbDatabase:SdbDatabase": "SdbDatabase"
923
+ }
924
+ },
925
+ {
926
+ "pkg": "scaleway",
927
+ "mod": "index/secret",
928
+ "fqn": "pulumiverse_scaleway",
929
+ "classes": {
930
+ "scaleway:index/secret:Secret": "Secret"
931
+ }
932
+ },
933
+ {
934
+ "pkg": "scaleway",
935
+ "mod": "index/secretVersion",
936
+ "fqn": "pulumiverse_scaleway",
937
+ "classes": {
938
+ "scaleway:index/secretVersion:SecretVersion": "SecretVersion"
939
+ }
940
+ },
941
+ {
942
+ "pkg": "scaleway",
943
+ "mod": "index/temDomain",
944
+ "fqn": "pulumiverse_scaleway",
945
+ "classes": {
946
+ "scaleway:index/temDomain:TemDomain": "TemDomain"
947
+ }
948
+ },
949
+ {
950
+ "pkg": "scaleway",
951
+ "mod": "index/temDomainValidation",
952
+ "fqn": "pulumiverse_scaleway",
953
+ "classes": {
954
+ "scaleway:index/temDomainValidation:TemDomainValidation": "TemDomainValidation"
955
+ }
956
+ },
957
+ {
958
+ "pkg": "scaleway",
959
+ "mod": "index/temWebhook",
960
+ "fqn": "pulumiverse_scaleway",
961
+ "classes": {
962
+ "scaleway:index/temWebhook:TemWebhook": "TemWebhook"
963
+ }
964
+ },
965
+ {
966
+ "pkg": "scaleway",
967
+ "mod": "index/vpc",
968
+ "fqn": "pulumiverse_scaleway",
969
+ "classes": {
970
+ "scaleway:index/vpc:Vpc": "Vpc"
971
+ }
972
+ },
973
+ {
974
+ "pkg": "scaleway",
975
+ "mod": "index/vpcGatewayNetwork",
976
+ "fqn": "pulumiverse_scaleway",
977
+ "classes": {
978
+ "scaleway:index/vpcGatewayNetwork:VpcGatewayNetwork": "VpcGatewayNetwork"
979
+ }
980
+ },
981
+ {
982
+ "pkg": "scaleway",
983
+ "mod": "index/vpcPrivateNetwork",
984
+ "fqn": "pulumiverse_scaleway",
985
+ "classes": {
986
+ "scaleway:index/vpcPrivateNetwork:VpcPrivateNetwork": "VpcPrivateNetwork"
987
+ }
988
+ },
989
+ {
990
+ "pkg": "scaleway",
991
+ "mod": "index/vpcPublicGateway",
992
+ "fqn": "pulumiverse_scaleway",
993
+ "classes": {
994
+ "scaleway:index/vpcPublicGateway:VpcPublicGateway": "VpcPublicGateway"
995
+ }
996
+ },
997
+ {
998
+ "pkg": "scaleway",
999
+ "mod": "index/vpcPublicGatewayDhcp",
1000
+ "fqn": "pulumiverse_scaleway",
1001
+ "classes": {
1002
+ "scaleway:index/vpcPublicGatewayDhcp:VpcPublicGatewayDhcp": "VpcPublicGatewayDhcp"
1003
+ }
1004
+ },
1005
+ {
1006
+ "pkg": "scaleway",
1007
+ "mod": "index/vpcPublicGatewayDhcpReservation",
1008
+ "fqn": "pulumiverse_scaleway",
1009
+ "classes": {
1010
+ "scaleway:index/vpcPublicGatewayDhcpReservation:VpcPublicGatewayDhcpReservation": "VpcPublicGatewayDhcpReservation"
1011
+ }
1012
+ },
1013
+ {
1014
+ "pkg": "scaleway",
1015
+ "mod": "index/vpcPublicGatewayIp",
1016
+ "fqn": "pulumiverse_scaleway",
1017
+ "classes": {
1018
+ "scaleway:index/vpcPublicGatewayIp:VpcPublicGatewayIp": "VpcPublicGatewayIp"
1019
+ }
1020
+ },
1021
+ {
1022
+ "pkg": "scaleway",
1023
+ "mod": "index/vpcPublicGatewayIpReverseDns",
1024
+ "fqn": "pulumiverse_scaleway",
1025
+ "classes": {
1026
+ "scaleway:index/vpcPublicGatewayIpReverseDns:VpcPublicGatewayIpReverseDns": "VpcPublicGatewayIpReverseDns"
1027
+ }
1028
+ },
1029
+ {
1030
+ "pkg": "scaleway",
1031
+ "mod": "index/vpcPublicGatewayPatRule",
1032
+ "fqn": "pulumiverse_scaleway",
1033
+ "classes": {
1034
+ "scaleway:index/vpcPublicGatewayPatRule:VpcPublicGatewayPatRule": "VpcPublicGatewayPatRule"
1035
+ }
1036
+ },
1037
+ {
1038
+ "pkg": "scaleway",
1039
+ "mod": "index/vpcRoute",
1040
+ "fqn": "pulumiverse_scaleway",
1041
+ "classes": {
1042
+ "scaleway:index/vpcRoute:VpcRoute": "VpcRoute"
1043
+ }
1044
+ },
1045
+ {
1046
+ "pkg": "scaleway",
1047
+ "mod": "index/webhosting",
1048
+ "fqn": "pulumiverse_scaleway",
1049
+ "classes": {
1050
+ "scaleway:index/webhosting:Webhosting": "Webhosting"
1051
+ }
1052
+ }
1053
+ ]
1054
+ """,
1055
+ resource_packages="""
1056
+ [
1057
+ {
1058
+ "pkg": "scaleway",
1059
+ "token": "pulumi:providers:scaleway",
1060
+ "fqn": "pulumiverse_scaleway",
1061
+ "class": "Provider"
1062
+ }
1063
+ ]
1064
+ """
1065
+ )