pulumiverse-scaleway 1.16.0a1730114875__py3-none-any.whl → 1.16.0a1730122081__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.
- pulumiverse_scaleway/_inputs.py +2119 -50
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account_project.py +5 -0
- pulumiverse_scaleway/account_ssh_key.py +5 -0
- pulumiverse_scaleway/apple_silicon_server.py +5 -0
- pulumiverse_scaleway/baremetal_server.py +5 -0
- pulumiverse_scaleway/block_snapshot.py +5 -0
- pulumiverse_scaleway/block_volume.py +5 -0
- pulumiverse_scaleway/cockpit.py +5 -0
- pulumiverse_scaleway/cockpit_alert_manager.py +5 -0
- pulumiverse_scaleway/cockpit_grafana_user.py +5 -0
- pulumiverse_scaleway/cockpit_source.py +5 -0
- pulumiverse_scaleway/cockpit_token.py +5 -0
- pulumiverse_scaleway/config/__init__.pyi +5 -0
- pulumiverse_scaleway/config/vars.py +5 -0
- pulumiverse_scaleway/container.py +5 -0
- pulumiverse_scaleway/container_cron.py +5 -0
- pulumiverse_scaleway/container_domain.py +5 -0
- pulumiverse_scaleway/container_namespace.py +5 -0
- pulumiverse_scaleway/container_token.py +5 -0
- pulumiverse_scaleway/container_trigger.py +5 -0
- pulumiverse_scaleway/database.py +5 -0
- pulumiverse_scaleway/database_acl.py +5 -0
- pulumiverse_scaleway/database_backup.py +5 -0
- pulumiverse_scaleway/database_instance.py +56 -2
- pulumiverse_scaleway/database_privilege.py +5 -0
- pulumiverse_scaleway/database_read_replica.py +5 -0
- pulumiverse_scaleway/database_user.py +5 -0
- pulumiverse_scaleway/documentdb_database.py +5 -0
- pulumiverse_scaleway/documentdb_instance.py +5 -0
- pulumiverse_scaleway/documentdb_private_network_endpoint.py +5 -0
- pulumiverse_scaleway/documentdb_privilege.py +5 -0
- pulumiverse_scaleway/documentdb_read_replica.py +5 -0
- pulumiverse_scaleway/documentdb_user.py +5 -0
- pulumiverse_scaleway/domain_record.py +5 -0
- pulumiverse_scaleway/domain_zone.py +5 -0
- pulumiverse_scaleway/flexible_ip.py +5 -0
- pulumiverse_scaleway/flexible_ip_mac_address.py +5 -0
- pulumiverse_scaleway/function.py +5 -0
- pulumiverse_scaleway/function_cron.py +5 -0
- pulumiverse_scaleway/function_domain.py +5 -0
- pulumiverse_scaleway/function_namespace.py +5 -0
- pulumiverse_scaleway/function_token.py +5 -0
- pulumiverse_scaleway/function_trigger.py +5 -0
- pulumiverse_scaleway/get_account_project.py +19 -4
- pulumiverse_scaleway/get_account_ssh_key.py +22 -4
- pulumiverse_scaleway/get_availability_zones.py +13 -4
- pulumiverse_scaleway/get_baremetal_offer.py +26 -4
- pulumiverse_scaleway/get_baremetal_option.py +17 -4
- pulumiverse_scaleway/get_baremetal_os.py +18 -4
- pulumiverse_scaleway/get_baremetal_server.py +40 -4
- pulumiverse_scaleway/get_billing_consumptions.py +15 -4
- pulumiverse_scaleway/get_billing_invoices.py +18 -4
- pulumiverse_scaleway/get_block_snapshot.py +21 -4
- pulumiverse_scaleway/get_block_volume.py +22 -4
- pulumiverse_scaleway/get_cockpit.py +15 -4
- pulumiverse_scaleway/get_cockpit_plan.py +12 -4
- pulumiverse_scaleway/get_config.py +20 -4
- pulumiverse_scaleway/get_container.py +41 -4
- pulumiverse_scaleway/get_container_namespace.py +25 -4
- pulumiverse_scaleway/get_database.py +19 -4
- pulumiverse_scaleway/get_database_acl.py +15 -4
- pulumiverse_scaleway/get_database_backup.py +26 -4
- pulumiverse_scaleway/get_database_instance.py +52 -5
- pulumiverse_scaleway/get_database_privilege.py +19 -4
- pulumiverse_scaleway/get_documentdb_database.py +20 -4
- pulumiverse_scaleway/get_documentdb_instance.py +27 -4
- pulumiverse_scaleway/get_documentdb_load_balancer_endpoint.py +22 -4
- pulumiverse_scaleway/get_domain_record.py +31 -4
- pulumiverse_scaleway/get_domain_zone.py +21 -4
- pulumiverse_scaleway/get_flexible_ip.py +26 -4
- pulumiverse_scaleway/get_flexible_ips.py +20 -4
- pulumiverse_scaleway/get_function.py +38 -4
- pulumiverse_scaleway/get_function_namespace.py +24 -4
- pulumiverse_scaleway/get_iam_api_key.py +21 -4
- pulumiverse_scaleway/get_iam_application.py +21 -4
- pulumiverse_scaleway/get_iam_group.py +23 -4
- pulumiverse_scaleway/get_iam_ssh_key.py +22 -4
- pulumiverse_scaleway/get_iam_user.py +16 -4
- pulumiverse_scaleway/get_instance_image.py +31 -4
- pulumiverse_scaleway/get_instance_ip.py +21 -4
- pulumiverse_scaleway/get_instance_placement_group.py +23 -4
- pulumiverse_scaleway/get_instance_private_nic.py +22 -4
- pulumiverse_scaleway/get_instance_security_group.py +28 -4
- pulumiverse_scaleway/get_instance_server.py +45 -4
- pulumiverse_scaleway/get_instance_servers.py +20 -4
- pulumiverse_scaleway/get_instance_snapshot.py +25 -4
- pulumiverse_scaleway/get_instance_volume.py +24 -4
- pulumiverse_scaleway/get_iot_device.py +28 -4
- pulumiverse_scaleway/get_iot_hub.py +34 -4
- pulumiverse_scaleway/get_ipam_ip.py +33 -4
- pulumiverse_scaleway/get_ipam_ips.py +30 -4
- pulumiverse_scaleway/get_k8s_version.py +17 -4
- pulumiverse_scaleway/get_kubernetes_cluster.py +38 -4
- pulumiverse_scaleway/get_kubernetes_node_pool.py +41 -4
- pulumiverse_scaleway/get_lb_acls.py +20 -4
- pulumiverse_scaleway/get_lb_backend.py +44 -4
- pulumiverse_scaleway/get_lb_backends.py +20 -4
- pulumiverse_scaleway/get_lb_frontend.py +24 -4
- pulumiverse_scaleway/get_lb_frontends.py +20 -4
- pulumiverse_scaleway/get_lb_ips.py +22 -4
- pulumiverse_scaleway/get_lb_route.py +18 -4
- pulumiverse_scaleway/get_lb_routes.py +18 -4
- pulumiverse_scaleway/get_lbs.py +20 -4
- pulumiverse_scaleway/get_loadbalancer.py +33 -4
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -4
- pulumiverse_scaleway/get_loadbalancer_ip.py +23 -4
- pulumiverse_scaleway/get_marketplace_image.py +16 -4
- pulumiverse_scaleway/get_mnq_sqs.py +15 -4
- pulumiverse_scaleway/get_object_bucket.py +25 -4
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -4
- pulumiverse_scaleway/get_redis_cluster.py +32 -4
- pulumiverse_scaleway/get_registry_image.py +26 -4
- pulumiverse_scaleway/get_registry_namespace.py +22 -4
- pulumiverse_scaleway/get_secret.py +28 -4
- pulumiverse_scaleway/get_secret_version.py +25 -4
- pulumiverse_scaleway/get_tem_domain.py +38 -4
- pulumiverse_scaleway/get_vpc.py +26 -4
- pulumiverse_scaleway/get_vpc_gateway_network.py +29 -4
- pulumiverse_scaleway/get_vpc_private_network.py +28 -4
- pulumiverse_scaleway/get_vpc_public_gateway.py +30 -4
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +30 -4
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +25 -4
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +20 -4
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +22 -4
- pulumiverse_scaleway/get_vpc_routes.py +25 -4
- pulumiverse_scaleway/get_vpcs.py +20 -4
- pulumiverse_scaleway/get_web_host_offer.py +19 -4
- pulumiverse_scaleway/get_webhosting.py +33 -4
- pulumiverse_scaleway/iam_api_key.py +31 -0
- pulumiverse_scaleway/iam_application.py +5 -0
- pulumiverse_scaleway/iam_group.py +5 -0
- pulumiverse_scaleway/iam_group_membership.py +5 -0
- pulumiverse_scaleway/iam_policy.py +5 -0
- pulumiverse_scaleway/iam_ssh_key.py +5 -0
- pulumiverse_scaleway/iam_user.py +5 -0
- pulumiverse_scaleway/instance_image.py +5 -0
- pulumiverse_scaleway/instance_ip.py +5 -0
- pulumiverse_scaleway/instance_ip_reverse_dns.py +5 -0
- pulumiverse_scaleway/instance_placement_group.py +5 -0
- pulumiverse_scaleway/instance_private_nic.py +5 -0
- pulumiverse_scaleway/instance_security_group.py +5 -0
- pulumiverse_scaleway/instance_security_group_rules.py +5 -0
- pulumiverse_scaleway/instance_server.py +5 -0
- pulumiverse_scaleway/instance_snapshot.py +5 -0
- pulumiverse_scaleway/instance_user_data.py +5 -0
- pulumiverse_scaleway/instance_volume.py +5 -0
- pulumiverse_scaleway/iot_device.py +5 -0
- pulumiverse_scaleway/iot_hub.py +5 -0
- pulumiverse_scaleway/iot_network.py +5 -0
- pulumiverse_scaleway/iot_route.py +5 -0
- pulumiverse_scaleway/ipam_ip.py +5 -0
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +5 -0
- pulumiverse_scaleway/job_definition.py +5 -0
- pulumiverse_scaleway/kubernetes_cluster.py +5 -0
- pulumiverse_scaleway/kubernetes_node_pool.py +5 -0
- pulumiverse_scaleway/loadbalancer.py +5 -0
- pulumiverse_scaleway/loadbalancer_acl.py +5 -0
- pulumiverse_scaleway/loadbalancer_backend.py +5 -0
- pulumiverse_scaleway/loadbalancer_certificate.py +5 -0
- pulumiverse_scaleway/loadbalancer_frontend.py +5 -0
- pulumiverse_scaleway/loadbalancer_ip.py +5 -0
- pulumiverse_scaleway/loadbalancer_route.py +5 -0
- pulumiverse_scaleway/mnq_nats_account.py +5 -0
- pulumiverse_scaleway/mnq_nats_credentials.py +5 -0
- pulumiverse_scaleway/mnq_sns.py +5 -0
- pulumiverse_scaleway/mnq_sns_credentials.py +5 -0
- pulumiverse_scaleway/mnq_sns_topic.py +5 -0
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +5 -0
- pulumiverse_scaleway/mnq_sqs.py +5 -0
- pulumiverse_scaleway/mnq_sqs_credentials.py +5 -0
- pulumiverse_scaleway/mnq_sqs_queue.py +5 -0
- pulumiverse_scaleway/object_bucket.py +5 -0
- pulumiverse_scaleway/object_bucket_acl.py +5 -0
- pulumiverse_scaleway/object_bucket_lock_configuration.py +5 -0
- pulumiverse_scaleway/object_bucket_policy.py +5 -0
- pulumiverse_scaleway/object_bucket_website_configuration.py +5 -0
- pulumiverse_scaleway/object_item.py +5 -0
- pulumiverse_scaleway/outputs.py +5 -0
- pulumiverse_scaleway/provider.py +5 -0
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/redis_cluster.py +5 -0
- pulumiverse_scaleway/registry_namespace.py +5 -0
- pulumiverse_scaleway/sdb_database.py +5 -0
- pulumiverse_scaleway/secret.py +5 -0
- pulumiverse_scaleway/secret_version.py +5 -0
- pulumiverse_scaleway/tem_domain.py +5 -0
- pulumiverse_scaleway/tem_domain_validation.py +5 -0
- pulumiverse_scaleway/vpc.py +5 -0
- pulumiverse_scaleway/vpc_gateway_network.py +5 -0
- pulumiverse_scaleway/vpc_private_network.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_ip.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +5 -0
- pulumiverse_scaleway/webhosting.py +5 -0
- {pulumiverse_scaleway-1.16.0a1730114875.dist-info → pulumiverse_scaleway-1.16.0a1730122081.dist-info}/METADATA +2 -1
- pulumiverse_scaleway-1.16.0a1730122081.dist-info/RECORD +205 -0
- pulumiverse_scaleway-1.16.0a1730114875.dist-info/RECORD +0 -205
- {pulumiverse_scaleway-1.16.0a1730114875.dist-info → pulumiverse_scaleway-1.16.0a1730122081.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.16.0a1730114875.dist-info → pulumiverse_scaleway-1.16.0a1730122081.dist-info}/top_level.txt +0 -0
|
@@ -1,205 +0,0 @@
|
|
|
1
|
-
pulumiverse_scaleway/__init__.py,sha256=4sW1-enPWeyvQhYgkxcZFYgh3HKpg-YQZUyhggOfcXs,26653
|
|
2
|
-
pulumiverse_scaleway/_inputs.py,sha256=6rYY1LecDI0CxOGCurgiYx9NsplqaT36h93I58ASI8I,247162
|
|
3
|
-
pulumiverse_scaleway/_utilities.py,sha256=WrLtyQX3NqN9G3SJjPEKw6fjrvR51KTivgFk8t8SMyw,10539
|
|
4
|
-
pulumiverse_scaleway/account_project.py,sha256=C6BDh5ttlKAZxL4RtE7z5dq3qPLEvllIEHSZXIZj_P4,12375
|
|
5
|
-
pulumiverse_scaleway/account_ssh_key.py,sha256=L1bvTXZWluhd3gFKlLB6wQJ5uU78H1QbG-nZwGKuIp8,16693
|
|
6
|
-
pulumiverse_scaleway/apple_silicon_server.py,sha256=SwBO7jbejJNbNb4Lbg5jIT1tZgttcAnAfUgc1vSZ6Mw,21172
|
|
7
|
-
pulumiverse_scaleway/baremetal_server.py,sha256=rrOcrwjpibk-F_YwyK5YcNc95zFzuV7EwcLvR1hmp6U,62023
|
|
8
|
-
pulumiverse_scaleway/block_snapshot.py,sha256=RSgfC2rQUallpOPhWolYxRD60A1YJgEQBLOX9lmZNk8,15009
|
|
9
|
-
pulumiverse_scaleway/block_volume.py,sha256=WbpzvtxKCZ8oQx9rqhq3btgggj8WE-gUREG9kTMV4gc,20355
|
|
10
|
-
pulumiverse_scaleway/cockpit.py,sha256=BkDwXuSYIO9UcPBmSnSairC8duan4oLBxVhsrvydqVA,11210
|
|
11
|
-
pulumiverse_scaleway/cockpit_alert_manager.py,sha256=dm9QSuIRTFW6XHWoLMZgwzlTnxj8SFty4WbhQ_63WNo,15960
|
|
12
|
-
pulumiverse_scaleway/cockpit_grafana_user.py,sha256=WlnjH8M7-_tgm-HgkfGxh1mlqiYXNFT_qeK0E6lcqr4,12234
|
|
13
|
-
pulumiverse_scaleway/cockpit_source.py,sha256=TDSOGOp69GVDX6wUBby-o8LjFmG_81KpUYCWFuuCRsw,18595
|
|
14
|
-
pulumiverse_scaleway/cockpit_token.py,sha256=IqPpfi80wwINnaVzFlkJp9VQAhDd5aNjzhGY5bb2s3w,17273
|
|
15
|
-
pulumiverse_scaleway/container.py,sha256=HZpT3TJ2F4jU_MHUFMjv4d9yBM7BrkhUGyWnN13h7pw,63786
|
|
16
|
-
pulumiverse_scaleway/container_cron.py,sha256=N4UUaIfPlMovKQnzJYnIsOgy4ewjMC5Ng28UJuvZRHg,18405
|
|
17
|
-
pulumiverse_scaleway/container_domain.py,sha256=5S4pZ0vdEPfsD1FRAnFKCwYMPDla8IJ1ORKAUyuhMPs,14424
|
|
18
|
-
pulumiverse_scaleway/container_namespace.py,sha256=tNAH8VTufyEWI-ShHBbBEEZM57u4i_JEoSv5zJDS33c,25892
|
|
19
|
-
pulumiverse_scaleway/container_token.py,sha256=IYHLX2qlEafzD9Z_35q9TTQ0RhOqgKrYnzMCy_6OJBY,17226
|
|
20
|
-
pulumiverse_scaleway/container_trigger.py,sha256=wSCGb49ynhXQDTjy75qLXpuazt1kp9L6t2RHpM7lzOc,18730
|
|
21
|
-
pulumiverse_scaleway/database.py,sha256=l7kMYl8NTWvJdtQTpNEcHOchJvDoyptpZVUzChfnDQE,14439
|
|
22
|
-
pulumiverse_scaleway/database_acl.py,sha256=309bIeBzCpgxzyJd0JV1kZLHcK6tzLZvUitL6eqrOZU,13182
|
|
23
|
-
pulumiverse_scaleway/database_backup.py,sha256=hZwVVBEFirjubJqAsMdZTJZ-UWxW3nl0O1KMsQK2taU,21234
|
|
24
|
-
pulumiverse_scaleway/database_instance.py,sha256=H0tj2eqkXq1I1HNj3AJbd16g2-vsMcmI-l5yDcHcqeM,71323
|
|
25
|
-
pulumiverse_scaleway/database_privilege.py,sha256=8O-0HBFqsJLXCyNxRqt-yxSGH6ripv2h3rGjkvTuAjY,16591
|
|
26
|
-
pulumiverse_scaleway/database_read_replica.py,sha256=i6aH5KC0bI3GLYaCPg0M4UBL53vGLlKzzsMPXfe518Y,21868
|
|
27
|
-
pulumiverse_scaleway/database_user.py,sha256=Vr_Si86VS5CpA0OOktbMgEOZNvlo_biu4lYhFXeepq4,16380
|
|
28
|
-
pulumiverse_scaleway/documentdb_database.py,sha256=MzlTaKMy6Fske9ISgjoK0IV0lVFiVzKfTnKrPDnny90,16433
|
|
29
|
-
pulumiverse_scaleway/documentdb_instance.py,sha256=3xkDdPc8CHAy1nOgPe6OcemUoZXv_nmxTiluPipiNB4,34934
|
|
30
|
-
pulumiverse_scaleway/documentdb_private_network_endpoint.py,sha256=PDVVs0tjjb6Go0anQUli-BFL2aYG2aXpRzQm9M63gEQ,14841
|
|
31
|
-
pulumiverse_scaleway/documentdb_privilege.py,sha256=Yeq2KhlWcWMHY7XKqeyRcXbDOIQodjZnjUt05hphxOI,15636
|
|
32
|
-
pulumiverse_scaleway/documentdb_read_replica.py,sha256=bwd3RTDM89sKTrDNAd1HnI92svftZIZZztzXODB8EH0,17302
|
|
33
|
-
pulumiverse_scaleway/documentdb_user.py,sha256=CXSZsKtOhqyZ_eZ_-zI_adbXDDtAbzSDZggKDl24Gm4,16203
|
|
34
|
-
pulumiverse_scaleway/domain_record.py,sha256=73g2rofa28h7qhLWiPrcNnZ_COF7xGVFkSaEBgqpVuo,42807
|
|
35
|
-
pulumiverse_scaleway/domain_zone.py,sha256=vqrk8E6hYAac-cy7lk6gH6EcyAI-T6uUi9ikRC4qYUU,17035
|
|
36
|
-
pulumiverse_scaleway/flexible_ip.py,sha256=N_8ysCY_041ZExuWRTWs4OEwBiyH2wDSi_IvxxjGnag,25787
|
|
37
|
-
pulumiverse_scaleway/flexible_ip_mac_address.py,sha256=IzJwpDxGuY86BZr1IGwTRGR8gE9568epAKrjOhkBQGE,20698
|
|
38
|
-
pulumiverse_scaleway/function.py,sha256=DZMAJDH5WZxEb022TLOvlrtyRZx_e-tDfRlwH1ZCUAU,52531
|
|
39
|
-
pulumiverse_scaleway/function_cron.py,sha256=xFPhzsg8f-720Go7uOi1UeaQXUPtMel84GbAEFYsIJU,17823
|
|
40
|
-
pulumiverse_scaleway/function_domain.py,sha256=vC0fFlg7hiHd0DISmddeNot-girZJNuA-sGg-cZ7aTo,14318
|
|
41
|
-
pulumiverse_scaleway/function_namespace.py,sha256=Ct_GJcp8XhLWHu1q2eJtyJ4Q0VRoFX0rHvXYlBU6pPY,23406
|
|
42
|
-
pulumiverse_scaleway/function_token.py,sha256=Bkrh_I5spcw4cfhILmHwN95mB6n4t3CXOawKKt6nlj0,17325
|
|
43
|
-
pulumiverse_scaleway/function_trigger.py,sha256=w6PDhl-BOnv_iZpRh5UlOZIdIrt7NAmrSye1oXs-ny0,18608
|
|
44
|
-
pulumiverse_scaleway/get_account_project.py,sha256=H7n5y9o8EaeJxr6KQaxEOYwC3oucZ-zmFQUjbN6AXVk,5944
|
|
45
|
-
pulumiverse_scaleway/get_account_ssh_key.py,sha256=MNoDCzmBqIkOu98atrBjDXSCKZ4H3ErH8PhDB7VMc0k,7079
|
|
46
|
-
pulumiverse_scaleway/get_availability_zones.py,sha256=wk3JXK0oRDAOZOpkB4UEs-8L_c7-m5sPnInDRCDVeAA,4101
|
|
47
|
-
pulumiverse_scaleway/get_baremetal_offer.py,sha256=qODLAucxUjC6FM2NKE37-hWL3sZKD6_10NkFp3NBUao,9117
|
|
48
|
-
pulumiverse_scaleway/get_baremetal_option.py,sha256=XkZyuJz4AvynGKMwwI06r03-Xu4eXGldMW5-SrVb93Q,5560
|
|
49
|
-
pulumiverse_scaleway/get_baremetal_os.py,sha256=k52XK4rdSAjzDJ50G030A_BfxsTd96fDMjjWANyGnlA,5890
|
|
50
|
-
pulumiverse_scaleway/get_baremetal_server.py,sha256=ajKf1nMA16QWxuf_X2VE1z_6JTEMAHZZML_ZfKpTQ9g,15172
|
|
51
|
-
pulumiverse_scaleway/get_billing_consumptions.py,sha256=ga-HXK_khW8N98SaOYVIatqphwxDPrxoZOP0pVJvqNI,4535
|
|
52
|
-
pulumiverse_scaleway/get_billing_invoices.py,sha256=TFsq79UmOJ0dyY29cV5wP8eQufG9aYrm8UzjC-TYMZc,5836
|
|
53
|
-
pulumiverse_scaleway/get_block_snapshot.py,sha256=aA2zRw7WzsM7O7yQ8aVx7-Kbq21oYc-5U7exEoOILxg,6112
|
|
54
|
-
pulumiverse_scaleway/get_block_volume.py,sha256=ngg-ui-alyCbPmjqU1z0QalvBajJWvPuf6cQ4UrqFng,6421
|
|
55
|
-
pulumiverse_scaleway/get_cockpit.py,sha256=YHR1OmNeXO2xVzsHa0x3U5fzrQX-cZcuvGen1Ttb4As,5625
|
|
56
|
-
pulumiverse_scaleway/get_cockpit_plan.py,sha256=8vQ3hrS6QxQTREfA9QeuXSzYVJip7yYb6RQ1aAgp6K4,3021
|
|
57
|
-
pulumiverse_scaleway/get_config.py,sha256=h56xKkYXvFa23niqEp-U2NorrNVSW3JkTjEAlqFAY_c,6349
|
|
58
|
-
pulumiverse_scaleway/get_container.py,sha256=kyVMu8mNs9inLR7zsvSCuaepVs2uZKqaPXI_ih5LSuU,19062
|
|
59
|
-
pulumiverse_scaleway/get_container_namespace.py,sha256=5bncJZKw9e8ER46XoEStG0H9nEk_P5gYpZSP_zNO0f0,10077
|
|
60
|
-
pulumiverse_scaleway/get_database.py,sha256=IRGLOX2IeacTiV0vpzcEqdhLF1VIt_ewFU2leKngyvk,5551
|
|
61
|
-
pulumiverse_scaleway/get_database_acl.py,sha256=J80Ay9CyhnYLogt9WL9jpqZZWnxucxoFz7c_Dux5mdA,4639
|
|
62
|
-
pulumiverse_scaleway/get_database_backup.py,sha256=C36ANcb_BQ8kobjM0dG31RBLCsPmeNNpa4SH5Yy9Dug,9118
|
|
63
|
-
pulumiverse_scaleway/get_database_instance.py,sha256=4I1Eo7hwwen9y_vzI0NN29Zsyl1Toty3B9luu-J9YBo,16056
|
|
64
|
-
pulumiverse_scaleway/get_database_privilege.py,sha256=pmJES__UIOOvD3b3OUxDetYv6NhagZBPuTA5-HDk9ug,6376
|
|
65
|
-
pulumiverse_scaleway/get_documentdb_database.py,sha256=kmIJKxEoNT_dHGHpmdY8SXjimbHFkg6FxicJ4i4jh8w,6318
|
|
66
|
-
pulumiverse_scaleway/get_documentdb_instance.py,sha256=uc_zzT18VzKF3eKwdgTK2Rv7oThHdPHegoJX3iyszrU,9174
|
|
67
|
-
pulumiverse_scaleway/get_documentdb_load_balancer_endpoint.py,sha256=clPLlaF8gryTasXKBdccXdv30Wn-vcHfGOYRGVXUCTI,7556
|
|
68
|
-
pulumiverse_scaleway/get_domain_record.py,sha256=UpKJyLe5BCyAK7B6MEPka_KIcXk976zjPpvjrQD7Hdo,11897
|
|
69
|
-
pulumiverse_scaleway/get_domain_zone.py,sha256=MsV13x6y1I2mU6FsYZf5ku7ulmiw-LzFXIvnX0P6Lqg,6934
|
|
70
|
-
pulumiverse_scaleway/get_flexible_ip.py,sha256=JC6vffqvDESrjlvevldVnWRm-KfggnweUFW6jmwDEKw,8610
|
|
71
|
-
pulumiverse_scaleway/get_flexible_ips.py,sha256=M6gcbQmoE9TIwGxtdvwefG8NyFBq1gLvJj13bNsFGok,8024
|
|
72
|
-
pulumiverse_scaleway/get_function.py,sha256=bNSVKmATJHkLfEBM93X-ud6VvjbGnzjpMW7gehmZ7Jc,13453
|
|
73
|
-
pulumiverse_scaleway/get_function_namespace.py,sha256=pL5cZBpeJqBCV6ZOmu4WAudjvNOWfEUwBkfC2FTP154,8862
|
|
74
|
-
pulumiverse_scaleway/get_iam_api_key.py,sha256=AwmfUyJ2ImMbgi8LIfMos7MRsNlduDbN4qttSeo6Noo,7337
|
|
75
|
-
pulumiverse_scaleway/get_iam_application.py,sha256=D_HAgqdOPZ4Uj7cvX4T3LdNkKOi-ugfJje5M0ttK3TI,7265
|
|
76
|
-
pulumiverse_scaleway/get_iam_group.py,sha256=pLk9ypWJJ_BQsDcn4BUUBllhpIOjPb2O2ANUPVWXEzw,8275
|
|
77
|
-
pulumiverse_scaleway/get_iam_ssh_key.py,sha256=T_kzlvYZiHkglLtD3pZrty9wUxr5IsomtlONOEvIXew,7224
|
|
78
|
-
pulumiverse_scaleway/get_iam_user.py,sha256=czDSC67nCkayk52V5HmeaEMKPZ901LtyEuX1xDZ8rv0,5263
|
|
79
|
-
pulumiverse_scaleway/get_instance_image.py,sha256=2XJxA-X_gBv0tHvyRJ50Y-vOHdRV1yJj9J2MEdreMZ0,11445
|
|
80
|
-
pulumiverse_scaleway/get_instance_ip.py,sha256=N4Jv_PMDmJjJCRtqur2i5BHRIHZbQj52OQ4qmhVTJys,6446
|
|
81
|
-
pulumiverse_scaleway/get_instance_placement_group.py,sha256=Vc7fJljiif57Q5DaybbLaYsgLGYNYajnFZZD9OMSu3A,8227
|
|
82
|
-
pulumiverse_scaleway/get_instance_private_nic.py,sha256=Ha2MQrX3viVCRCex5aH3G5fAvrx-yyH01EuIw6Dmt0k,8369
|
|
83
|
-
pulumiverse_scaleway/get_instance_security_group.py,sha256=VoHhZQEkCdsd_t1BkrhBBNsKX_AoRtc0J0LmMd2IaBI,10938
|
|
84
|
-
pulumiverse_scaleway/get_instance_server.py,sha256=qIQcnl_of0vCNpFeqwcZOYHOD5cR96zkYEKctZJN5Jw,19700
|
|
85
|
-
pulumiverse_scaleway/get_instance_servers.py,sha256=8h9X4lKRMvdmS4mbkIQTtsZbnGtnEHtQO9YjUnD90hY,6259
|
|
86
|
-
pulumiverse_scaleway/get_instance_snapshot.py,sha256=ctL8mXVNsWH-DCRrBBfaCohq8x8dMsQOpI23doQi03g,8676
|
|
87
|
-
pulumiverse_scaleway/get_instance_volume.py,sha256=YPuVHJ2-zwo1evzZMgK1LcN9fCQrzxZH-qGYmeL-sUY,7589
|
|
88
|
-
pulumiverse_scaleway/get_iot_device.py,sha256=1USpS-fjJa2KlJQNFSHNoMU9N5dCYCqNdHnVTtDkgb0,9503
|
|
89
|
-
pulumiverse_scaleway/get_iot_hub.py,sha256=i2XzJVR4WkpaMCiH3MTPgi7En7J3GHUbTdUiOQ05qtM,12062
|
|
90
|
-
pulumiverse_scaleway/get_ipam_ip.py,sha256=H_8FbOS7iABY1WnitSCoZ5koPzpKGqZ28cAS8IfajRs,15551
|
|
91
|
-
pulumiverse_scaleway/get_ipam_ips.py,sha256=mziBXV4WpSxANlRMiurtiU_kRlsqsU1qLK-3mtYtwVQ,12318
|
|
92
|
-
pulumiverse_scaleway/get_k8s_version.py,sha256=X1gIFbvFfBlDkbt__dsHLYQ5bd0O8jjmOB_TPL47jZM,6458
|
|
93
|
-
pulumiverse_scaleway/get_kubernetes_cluster.py,sha256=Ni3anbthmOGGL_Q_hQyAZk5Fd4gdpUhaY3L9Lq9h_ds,16083
|
|
94
|
-
pulumiverse_scaleway/get_kubernetes_node_pool.py,sha256=VT_16A_GIxxJkDgTeob-PF-Q7Zka5JCrTjye9_fvUbs,16417
|
|
95
|
-
pulumiverse_scaleway/get_lb_acls.py,sha256=FH0FXfspRoW9gQN0ItoRvP0SNyhlkM_bMs5hHwbR73U,7052
|
|
96
|
-
pulumiverse_scaleway/get_lb_backend.py,sha256=Z8wQ4xet8Is4qbMlbpCsTcXR18k4jKVIN7s9i7m5xIc,21003
|
|
97
|
-
pulumiverse_scaleway/get_lb_backends.py,sha256=PK0CsVDJZMQLBO9PE3XwCYCNehdm3-k5kknxu2YJoAI,6818
|
|
98
|
-
pulumiverse_scaleway/get_lb_frontend.py,sha256=2v0y25oLDv2rbmnsnfQYvgZmqbmC7QZE-pbR-eDHDS8,9904
|
|
99
|
-
pulumiverse_scaleway/get_lb_frontends.py,sha256=2yXn66gVcIQQGlzYgGt27P4MynOG_RjrFqtpbnxx8Wg,6893
|
|
100
|
-
pulumiverse_scaleway/get_lb_ips.py,sha256=SI6Nl5Xjr4jZXj7xrYgkA65NcACXcwLWF9-zDR2Ai0U,7224
|
|
101
|
-
pulumiverse_scaleway/get_lb_route.py,sha256=ub9vRP47vcSO1GLwweb3roFgyZG3W54Ogcw54NZVYxg,7250
|
|
102
|
-
pulumiverse_scaleway/get_lb_routes.py,sha256=XHIGJmu7oTHKch-8jbJSCUYEWEH2EKyrWDwxhWkmse8,6251
|
|
103
|
-
pulumiverse_scaleway/get_lbs.py,sha256=2Ts9DDwTne3N27UicZBG6w7SSWtvAfR-tw7TfrHgmcA,6490
|
|
104
|
-
pulumiverse_scaleway/get_loadbalancer.py,sha256=uXBG6aGtFqgzEpI1T-jWUfK-OQCO2S4PushmeFkuclQ,12494
|
|
105
|
-
pulumiverse_scaleway/get_loadbalancer_certificate.py,sha256=O0zkAlvraeF61-hYp771Ghoj2KBL_Z1JD65nLyX_TXY,9633
|
|
106
|
-
pulumiverse_scaleway/get_loadbalancer_ip.py,sha256=T08FRY6Kn5IhRZ8b-A-SUwTXoTaLXFQHxW30vONMmVo,7979
|
|
107
|
-
pulumiverse_scaleway/get_marketplace_image.py,sha256=eSAPSZfwq5PcjQSIHOPGmkgsP6h8cNNnuGYtSAvmZN4,5029
|
|
108
|
-
pulumiverse_scaleway/get_mnq_sqs.py,sha256=dlgsO1NAL2YbQs_cqvedj9kDmmD6okm9le0OpsnLX-Y,4331
|
|
109
|
-
pulumiverse_scaleway/get_object_bucket.py,sha256=WJT93M-Ekj28qUQgkgwNvpo7ACQrbbPhHJIwWy4DOXE,9472
|
|
110
|
-
pulumiverse_scaleway/get_object_bucket_policy.py,sha256=PcbZMgWjM5o2fR0GyiiAWIjKmswTG2-wS_qzubKQiFE,5023
|
|
111
|
-
pulumiverse_scaleway/get_redis_cluster.py,sha256=7JGjbv3WI3Sol0aKtltYO2izfqpRhagx8I8KVG05CAY,12362
|
|
112
|
-
pulumiverse_scaleway/get_registry_image.py,sha256=UNIMuuFxaecsXGaz981MerOx1KmIZ7V4GyJnUSOt3W4,8400
|
|
113
|
-
pulumiverse_scaleway/get_registry_namespace.py,sha256=fQzwBk-v-oknDFcBiSLk3eZ10Y7YWtHZvqPjVnq2pDQ,7093
|
|
114
|
-
pulumiverse_scaleway/get_secret.py,sha256=gImYzjxMUDKWd9hHxG4HSuSLn0SA46-J-qyIuhvg5wQ,10123
|
|
115
|
-
pulumiverse_scaleway/get_secret_version.py,sha256=KY9US5teVpwthJDA_NBhpsPblREHGoOnSjEhZ0kTPmU,10888
|
|
116
|
-
pulumiverse_scaleway/get_tem_domain.py,sha256=55w2fgOpJ-eRlse-6z2v34ayu7IqMGmdp0ZkYvouVdw,14100
|
|
117
|
-
pulumiverse_scaleway/get_vpc.py,sha256=OjyY6dlM5vPyKx6dh7sFUG_tMrctddP4DgdD3qIXq3w,8518
|
|
118
|
-
pulumiverse_scaleway/get_vpc_gateway_network.py,sha256=8EguvlVuD3N_asO7bMka0_SAsnRDbl8S5de7dKv56NE,10821
|
|
119
|
-
pulumiverse_scaleway/get_vpc_private_network.py,sha256=dACRWEzYXVTTLWHMo_DlQnIobBV1OZ6GQq9hpBEeY5I,10521
|
|
120
|
-
pulumiverse_scaleway/get_vpc_public_gateway.py,sha256=ONYxnmuUeWisozIorp9tCnaf4V16GvtQIjWqx2yuaxM,10990
|
|
121
|
-
pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py,sha256=0R_mfZSKgJONZBoK3Hosi5at75SKeFc-nLffIhOsQpQ,11415
|
|
122
|
-
pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py,sha256=Nl0HBX_kW961D3S3lCOgEB9AIpF8D_CV0JVZ29XOEvA,15897
|
|
123
|
-
pulumiverse_scaleway/get_vpc_public_gateway_ip.py,sha256=MACdYQWz66VbQm6jLuN8AaiNMz8OMF9JbD18YE4Q8JU,6710
|
|
124
|
-
pulumiverse_scaleway/get_vpc_public_pat_rule.py,sha256=Cg5TjvPeriQLClXoCYg89clQP291tx8te33QFLvdqAs,10889
|
|
125
|
-
pulumiverse_scaleway/get_vpc_routes.py,sha256=MM3p5yWsSV04wzcmP_PS5vLGiYDf87fgrQHc7v8WUbw,8517
|
|
126
|
-
pulumiverse_scaleway/get_vpcs.py,sha256=GWPws6bmuOBJRlVQ3pmAQy6WTVlLMK42RF4Tgs8nJ4g,5713
|
|
127
|
-
pulumiverse_scaleway/get_web_host_offer.py,sha256=ILYdzfVi-xdBwbWNA80bT3MKSpvB7NLzfGfLyCjb0fI,6275
|
|
128
|
-
pulumiverse_scaleway/get_webhosting.py,sha256=y1xZJ8a-bF7AXLHx4xmNFm8MSeWR0aQPhaHgMBeEj7A,12154
|
|
129
|
-
pulumiverse_scaleway/iam_api_key.py,sha256=cnAtzQ-04RTJZqXN_zMD8f1sLGQMOqEy3eEvAivoeII,23573
|
|
130
|
-
pulumiverse_scaleway/iam_application.py,sha256=7mWCWNZCeuYihJssfXQKgcGxi83saoA8UfROWe-DS6w,16123
|
|
131
|
-
pulumiverse_scaleway/iam_group.py,sha256=6X34wN-V3EcGdmpHGjU16PBsoh5kYQREiLOnpfoVk2k,23240
|
|
132
|
-
pulumiverse_scaleway/iam_group_membership.py,sha256=S1p2gfQjq_jcGuo9f3XQXU1VG9FDOgD_E1S7LEmLZpM,12358
|
|
133
|
-
pulumiverse_scaleway/iam_policy.py,sha256=6bS-YELo8RJ5thuZz89NVKXxeToQjhXf2bwQ9Af7nlQ,29546
|
|
134
|
-
pulumiverse_scaleway/iam_ssh_key.py,sha256=aYcQfEei0bPLOAv50gxq88VZSP-iAaqR2_aJOTPe5eU,16638
|
|
135
|
-
pulumiverse_scaleway/iam_user.py,sha256=9gfs5MLHV9fKv0PDJ6IeI7I0-oYU_cRyX-xFjrrDyqA,17992
|
|
136
|
-
pulumiverse_scaleway/instance_image.py,sha256=sdgjD7FXzGaWzc8OVTYKPKCPywZZ1zRstnH-n561L5s,30959
|
|
137
|
-
pulumiverse_scaleway/instance_ip.py,sha256=IZzggRA3N5bupXBOI7wPy_CapWlhRNJ2Z7twqsn9CMQ,18910
|
|
138
|
-
pulumiverse_scaleway/instance_ip_reverse_dns.py,sha256=q2sWY0EPRtfP6r0LHTz385_J-zJtG8rXF65R1fFzq6c,10764
|
|
139
|
-
pulumiverse_scaleway/instance_placement_group.py,sha256=TbHcRlomM-qQZubWXUTvhpUwEEpi1GguUpjwuaWEyXo,21348
|
|
140
|
-
pulumiverse_scaleway/instance_private_nic.py,sha256=JEmCB-K0eJxRA-LZPWIHnQm-XTSmN6Dc86rfxjuhmo4,17683
|
|
141
|
-
pulumiverse_scaleway/instance_security_group.py,sha256=s4wdjl9zES3BCoHFLYeQgK9eZEs5XTl2ML5BOA4sCSU,36289
|
|
142
|
-
pulumiverse_scaleway/instance_security_group_rules.py,sha256=jH_IoZwLFa2Dzscy_Y561s9-_01aQuje3THBVfCOE2s,20424
|
|
143
|
-
pulumiverse_scaleway/instance_server.py,sha256=TXonsR_wdibQDCA7GfL_xnoTUvfiOs2hncsMKp1KvmM,93266
|
|
144
|
-
pulumiverse_scaleway/instance_snapshot.py,sha256=Ux85SZwZ6jSsWEJqU8BpCsQmsUVe5-k198Z2-eVu6GI,26038
|
|
145
|
-
pulumiverse_scaleway/instance_user_data.py,sha256=bWpIEJbnmvx0l8OKDHMIFTLijUgqQxB8l5obnou5cJ0,16723
|
|
146
|
-
pulumiverse_scaleway/instance_volume.py,sha256=xz1wtyPJXxqcL_0WSukTRVf6oVSmewmoWHVJHEwv6M4,22337
|
|
147
|
-
pulumiverse_scaleway/iot_device.py,sha256=C3zpIvUN_gGNogcrkN-Di3aphR9xLuekmiU2uIgnUTE,31717
|
|
148
|
-
pulumiverse_scaleway/iot_hub.py,sha256=9SMlmmOJOe1weEby7QukqrOgQ6OqaHC_e_EVwv9AEnQ,36648
|
|
149
|
-
pulumiverse_scaleway/iot_network.py,sha256=pNjNEU3v271TTZnvMH61kT6jj9G0wHckwo0YAdGRMsQ,15636
|
|
150
|
-
pulumiverse_scaleway/iot_route.py,sha256=7eupqKJbwLgRCY5VdaJCILM-MCdJO5zK_tjdWII7Gt8,27604
|
|
151
|
-
pulumiverse_scaleway/ipam_ip.py,sha256=zOKEmpf7Ghwu7Ksrs8FBVSpnbWU3YPqdZraxhY7r6yk,24913
|
|
152
|
-
pulumiverse_scaleway/ipam_ip_reverse_dns.py,sha256=9l44FPXxS8Dq5MktRV6IwkZdE8poBTePuZKhclvpzLc,11713
|
|
153
|
-
pulumiverse_scaleway/job_definition.py,sha256=N5YD0MMiZsrGKE7XK1V83s1nLxsRBrndETVQe6dSoCw,27161
|
|
154
|
-
pulumiverse_scaleway/kubernetes_cluster.py,sha256=ioDUTCUFZaQTyZzONnBYbcPkyABDzKEF_ljgiaPMbiI,72052
|
|
155
|
-
pulumiverse_scaleway/kubernetes_node_pool.py,sha256=ldv7_Gb20ZvGXlMlnBQIQK4Bera_lEmcFlRUGZlU_FY,59002
|
|
156
|
-
pulumiverse_scaleway/loadbalancer.py,sha256=BOJYksJIMDZQU3vH9BG1Mb8oDUDGyHdSg2KmRWlSYrI,46243
|
|
157
|
-
pulumiverse_scaleway/loadbalancer_acl.py,sha256=INlSMcA3Rm2IuZ0SLGd0c0XzATwzvS4rdYUBEGjyDSQ,21004
|
|
158
|
-
pulumiverse_scaleway/loadbalancer_backend.py,sha256=Ie1bwyTBrt_-tndv43r3zMO61TAUsKFD_YlH19WRIwo,75321
|
|
159
|
-
pulumiverse_scaleway/loadbalancer_certificate.py,sha256=mdcTCFXecYluiKWh6krph3kyhX494XiGXLmAE43BfhE,20179
|
|
160
|
-
pulumiverse_scaleway/loadbalancer_frontend.py,sha256=5JB3VQwVJrymGtqJ5lQwqBAbcnAUsU0vRxtOnm_--jk,34356
|
|
161
|
-
pulumiverse_scaleway/loadbalancer_ip.py,sha256=Qvzmx4Jz2ydczhG0GineauaCZgc3b8c2XXHDI-w6P-s,19154
|
|
162
|
-
pulumiverse_scaleway/loadbalancer_route.py,sha256=JoYoqozhPDHp9efDzwudmD2fOVHab5EMckAmNqbcrrU,22463
|
|
163
|
-
pulumiverse_scaleway/mnq_nats_account.py,sha256=Z6raOvHpj_aPlpRfbI_HOzgOvQWvo8ZacQxKyriS3lA,12087
|
|
164
|
-
pulumiverse_scaleway/mnq_nats_credentials.py,sha256=JZaGBQyHqqmpSHZMpKZ_w-GYXFfWiY7H0iGaJFfKaSs,11879
|
|
165
|
-
pulumiverse_scaleway/mnq_sns.py,sha256=JUOdDcFo4cc3UWJiTefFx0twHh0UqZjsorsL5hKUieM,10646
|
|
166
|
-
pulumiverse_scaleway/mnq_sns_credentials.py,sha256=BSkReIbSNyF7TDAB84h2irorxCtSZaOJPwqyLad1tb8,16372
|
|
167
|
-
pulumiverse_scaleway/mnq_sns_topic.py,sha256=LV2d9WBanbHDNYcgPiMeKTm_5yWRw3NlM7JdqXQbTBU,27403
|
|
168
|
-
pulumiverse_scaleway/mnq_sns_topic_subscription.py,sha256=xeTp4ru4d1vhVOVs8srHEvE3ssmzyV6vd0X9AbJoCgw,28440
|
|
169
|
-
pulumiverse_scaleway/mnq_sqs.py,sha256=Vkvv4phKvK_UhwhannSFfbem0njr-OdstFX7ZO3h0Ls,10556
|
|
170
|
-
pulumiverse_scaleway/mnq_sqs_credentials.py,sha256=-y7nY9UNz15E2_5Xx808fQf3vnbARJIFwBvjM2ZObBg,16372
|
|
171
|
-
pulumiverse_scaleway/mnq_sqs_queue.py,sha256=1h4HfX_GB4DBgCtlmzF3-Q8NLUQ97e5BtoTjT3eKEcc,37343
|
|
172
|
-
pulumiverse_scaleway/object_bucket.py,sha256=lAQQPk47BdtMUEcg1HnYAyAk45m1LWij2Xc48KYkxog,41006
|
|
173
|
-
pulumiverse_scaleway/object_bucket_acl.py,sha256=YSMaaKhkriYD92hK6SU1riiNl8BH8-gkFPAYzxeHaIA,24402
|
|
174
|
-
pulumiverse_scaleway/object_bucket_lock_configuration.py,sha256=_NwFVBPeW7iV-1JPgPpYTw6GikHiQRTnbUHi-mQgOU4,15809
|
|
175
|
-
pulumiverse_scaleway/object_bucket_policy.py,sha256=7BshOYpFn6khCzhrWYtZn0CGf2YE8SKH-HjiywpBEr4,24659
|
|
176
|
-
pulumiverse_scaleway/object_bucket_website_configuration.py,sha256=o-MwrZx0QfHh2cAFtONWa4rWDxEUyeQRDKUSmPuPLr0,23468
|
|
177
|
-
pulumiverse_scaleway/object_item.py,sha256=WcW_TtvkULX4qu68SZYZF5FvDjBjovPo5UNiPKEV57w,30167
|
|
178
|
-
pulumiverse_scaleway/outputs.py,sha256=KLV54U9GG-1TALD67gOaqRGC8059CidWWr70KqN7tjg,401912
|
|
179
|
-
pulumiverse_scaleway/provider.py,sha256=IRNtLq-4hsxtmm9_7v87Gdz8cdcMYN4pM2O4uz6iF_g,12647
|
|
180
|
-
pulumiverse_scaleway/pulumi-plugin.json,sha256=AKOz6qlyYlmEjhiMkETLXeFOlpUn9oV4eZZKABRZOgo,136
|
|
181
|
-
pulumiverse_scaleway/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
|
-
pulumiverse_scaleway/redis_cluster.py,sha256=9r4cWgHbk8V5403SSNAdYvrKDrfp4Ner3Vh35ZYEoAc,52917
|
|
183
|
-
pulumiverse_scaleway/registry_namespace.py,sha256=TI_9CpczlsyWQ14TeUT3sG4_-ZZD-C05wdFjH88R_i8,17654
|
|
184
|
-
pulumiverse_scaleway/sdb_database.py,sha256=Tj9wDjhws_GkZ7EJ2fbxxexfzvVLLH1k6WU0ArTfKAg,16013
|
|
185
|
-
pulumiverse_scaleway/secret.py,sha256=WS55PByFpQVDd6bfNxA0mGn9Y_HwWJEtVH8i-RKtUHk,20362
|
|
186
|
-
pulumiverse_scaleway/secret_version.py,sha256=WkqSUUBug2Ye59MOPne80njmaFUcBFDAMrikQugwEyc,18431
|
|
187
|
-
pulumiverse_scaleway/tem_domain.py,sha256=Y3p4r7jhiPhdpsPPh9S8h6ZprfRQVR55-hLclZ_TDag,39150
|
|
188
|
-
pulumiverse_scaleway/tem_domain_validation.py,sha256=xSNf0AEYSiSK_6QXJBTTOpBt-gXkNSnf_2zljjFVQlo,13344
|
|
189
|
-
pulumiverse_scaleway/vpc.py,sha256=5Q5nt9UQG5NrMHMGhglRTsJtUYQwKqX_8wa8MyJluYY,20230
|
|
190
|
-
pulumiverse_scaleway/vpc_gateway_network.py,sha256=g9oWVwjtaQei_VkFEpPxB6F3jAk4MS1RwZvVOaCfdb8,37514
|
|
191
|
-
pulumiverse_scaleway/vpc_private_network.py,sha256=vO9I82TsOTodFa1GIbphUkwpehfabiHXyNDfjd2fJYE,30995
|
|
192
|
-
pulumiverse_scaleway/vpc_public_gateway.py,sha256=rxLhc9eFexg_7bTa4C7jD1-6LKua9e8osBzeych205s,32222
|
|
193
|
-
pulumiverse_scaleway/vpc_public_gateway_dhcp.py,sha256=9vycS_KCoQH33G5zeT0owZ-nrli3ZJnwFRUpzhKgNTI,45528
|
|
194
|
-
pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py,sha256=DvSDcfwnxmgLVgBtKxR8lBgjQyG1gqFg6K6ukWeroDQ,21799
|
|
195
|
-
pulumiverse_scaleway/vpc_public_gateway_ip.py,sha256=WlYJZgbjodYDwwQepFTSu-SwvPObf843V6NlpExNIQU,17845
|
|
196
|
-
pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py,sha256=jk9BGKfhdO3NLE2EgiySf3RsgBdSVOGWKreWU1B1e_8,11561
|
|
197
|
-
pulumiverse_scaleway/vpc_public_gateway_pat_rule.py,sha256=Kki6dulxNHBPoCtlQQjl4XbA9rF_L79ExGp4-xaSeFQ,23695
|
|
198
|
-
pulumiverse_scaleway/webhosting.py,sha256=tucnTrxf36aTAOQaNwPr_-9m9VxMltZ9sr_-N3r1eeU,31531
|
|
199
|
-
pulumiverse_scaleway/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
200
|
-
pulumiverse_scaleway/config/__init__.pyi,sha256=lBGM5Zrmv_0a6viSpq45mvuKOHUFTh_9kNWh4-dWu0A,862
|
|
201
|
-
pulumiverse_scaleway/config/vars.py,sha256=lp4QR3Bx9J0XNcpLTY2eTw6g8_MQHNX8cWFQMYE4HfI,1955
|
|
202
|
-
pulumiverse_scaleway-1.16.0a1730114875.dist-info/METADATA,sha256=IzmP6I8rJJo0UXvzs-D8nWuBxkv7UW04HqeRWb2hsss,1578
|
|
203
|
-
pulumiverse_scaleway-1.16.0a1730114875.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
204
|
-
pulumiverse_scaleway-1.16.0a1730114875.dist-info/top_level.txt,sha256=nZh5pqyc9FpoAll32zwyBXyAUg_m-XQXqk_YOJ5Ih2g,21
|
|
205
|
-
pulumiverse_scaleway-1.16.0a1730114875.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|