pulumiverse-scaleway 1.27.0a1744869119__py3-none-any.whl → 1.39.0a1764841480__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.
- pulumiverse_scaleway/__init__.py +109 -2
- pulumiverse_scaleway/_inputs.py +3936 -2603
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +4 -1
- pulumiverse_scaleway/account/get_availability_zones.py +12 -12
- pulumiverse_scaleway/account/get_project.py +28 -28
- pulumiverse_scaleway/account/get_projects.py +241 -0
- pulumiverse_scaleway/account/get_ssh_key.py +34 -34
- pulumiverse_scaleway/account/outputs.py +95 -0
- pulumiverse_scaleway/account/project.py +72 -71
- pulumiverse_scaleway/account/ssh_key.py +107 -106
- pulumiverse_scaleway/account_project.py +72 -71
- pulumiverse_scaleway/account_ssh_key.py +107 -106
- pulumiverse_scaleway/apple_silicon_server.py +334 -201
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +105 -51
- pulumiverse_scaleway/applesilicon/outputs.py +65 -33
- pulumiverse_scaleway/applesilicon/server.py +334 -201
- pulumiverse_scaleway/audittrail/__init__.py +10 -0
- pulumiverse_scaleway/audittrail/get_event.py +410 -0
- pulumiverse_scaleway/audittrail/outputs.py +234 -0
- pulumiverse_scaleway/autoscaling/__init__.py +13 -0
- pulumiverse_scaleway/autoscaling/_inputs.py +558 -0
- pulumiverse_scaleway/autoscaling/instance_group.py +807 -0
- pulumiverse_scaleway/autoscaling/instance_policy.py +634 -0
- pulumiverse_scaleway/autoscaling/instance_template.py +878 -0
- pulumiverse_scaleway/autoscaling/outputs.py +438 -0
- pulumiverse_scaleway/baremetal_server.py +622 -524
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +19 -15
- pulumiverse_scaleway/billing/get_invoices.py +25 -25
- pulumiverse_scaleway/billing/outputs.py +96 -96
- pulumiverse_scaleway/block/__init__.py +4 -1
- pulumiverse_scaleway/block/_inputs.py +125 -0
- pulumiverse_scaleway/block/get_snapshot.py +60 -37
- pulumiverse_scaleway/block/get_volume.py +38 -38
- pulumiverse_scaleway/block/outputs.py +139 -0
- pulumiverse_scaleway/block/snapshot.py +272 -98
- pulumiverse_scaleway/block/volume.py +145 -144
- pulumiverse_scaleway/block_snapshot.py +272 -98
- pulumiverse_scaleway/block_volume.py +145 -144
- pulumiverse_scaleway/cockpit.py +71 -49
- pulumiverse_scaleway/cockpit_alert_manager.py +66 -65
- pulumiverse_scaleway/cockpit_grafana_user.py +72 -113
- pulumiverse_scaleway/cockpit_source.py +142 -141
- pulumiverse_scaleway/cockpit_token.py +84 -83
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -2
- pulumiverse_scaleway/config/vars.py +11 -11
- pulumiverse_scaleway/container.py +653 -424
- pulumiverse_scaleway/container_cron.py +97 -96
- pulumiverse_scaleway/container_domain.py +63 -62
- pulumiverse_scaleway/container_namespace.py +251 -172
- pulumiverse_scaleway/container_token.py +97 -96
- pulumiverse_scaleway/container_trigger.py +77 -76
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +87 -87
- pulumiverse_scaleway/containers/container.py +653 -424
- pulumiverse_scaleway/containers/cron.py +97 -96
- pulumiverse_scaleway/containers/domain.py +63 -62
- pulumiverse_scaleway/containers/get_container.py +117 -73
- pulumiverse_scaleway/containers/get_namespace.py +56 -45
- pulumiverse_scaleway/containers/namespace.py +251 -172
- pulumiverse_scaleway/containers/outputs.py +84 -84
- pulumiverse_scaleway/containers/token.py +97 -96
- pulumiverse_scaleway/containers/trigger.py +77 -76
- pulumiverse_scaleway/database.py +81 -80
- pulumiverse_scaleway/database_acl.py +148 -39
- pulumiverse_scaleway/database_backup.py +124 -123
- pulumiverse_scaleway/database_instance.py +531 -436
- pulumiverse_scaleway/database_privilege.py +88 -87
- pulumiverse_scaleway/database_read_replica.py +60 -59
- pulumiverse_scaleway/database_user.py +171 -98
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +364 -216
- pulumiverse_scaleway/databases/acl.py +148 -39
- pulumiverse_scaleway/databases/database.py +81 -80
- pulumiverse_scaleway/databases/database_backup.py +124 -123
- pulumiverse_scaleway/databases/get_acl.py +17 -17
- pulumiverse_scaleway/databases/get_database.py +26 -26
- pulumiverse_scaleway/databases/get_database_backup.py +46 -46
- pulumiverse_scaleway/databases/get_instance.py +95 -73
- pulumiverse_scaleway/databases/get_privilege.py +30 -30
- pulumiverse_scaleway/databases/instance.py +531 -436
- pulumiverse_scaleway/databases/outputs.py +419 -232
- pulumiverse_scaleway/databases/privilege.py +88 -87
- pulumiverse_scaleway/databases/read_replica.py +60 -59
- pulumiverse_scaleway/databases/serverless_database.py +97 -96
- pulumiverse_scaleway/databases/snapshot.py +127 -126
- pulumiverse_scaleway/databases/user.py +171 -98
- pulumiverse_scaleway/datawarehouse/__init__.py +13 -0
- pulumiverse_scaleway/datawarehouse/_inputs.py +149 -0
- pulumiverse_scaleway/datawarehouse/database.py +338 -0
- pulumiverse_scaleway/datawarehouse/deployment.py +821 -0
- pulumiverse_scaleway/datawarehouse/outputs.py +113 -0
- pulumiverse_scaleway/datawarehouse/user.py +451 -0
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +661 -661
- pulumiverse_scaleway/domain/get_record.py +53 -64
- pulumiverse_scaleway/domain/get_zone.py +36 -30
- pulumiverse_scaleway/domain/outputs.py +501 -501
- pulumiverse_scaleway/domain/record.py +156 -202
- pulumiverse_scaleway/domain/registration.py +123 -122
- pulumiverse_scaleway/domain/zone.py +108 -107
- pulumiverse_scaleway/domain_record.py +156 -202
- pulumiverse_scaleway/domain_zone.py +108 -107
- pulumiverse_scaleway/edge_services_backend_stage.py +61 -60
- pulumiverse_scaleway/edge_services_cache_stage.py +283 -111
- pulumiverse_scaleway/edge_services_dns_stage.py +169 -140
- pulumiverse_scaleway/edge_services_head_stage.py +37 -36
- pulumiverse_scaleway/edge_services_pipeline.py +125 -82
- pulumiverse_scaleway/edge_services_plan.py +37 -36
- pulumiverse_scaleway/edge_services_route_stage.py +75 -74
- pulumiverse_scaleway/edge_services_tls_stage.py +219 -124
- pulumiverse_scaleway/edge_services_waf_stage.py +106 -105
- pulumiverse_scaleway/elasticmetal/__init__.py +3 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +203 -129
- pulumiverse_scaleway/elasticmetal/get_ip.py +70 -54
- pulumiverse_scaleway/elasticmetal/get_ips.py +31 -31
- pulumiverse_scaleway/elasticmetal/get_offer.py +43 -41
- pulumiverse_scaleway/elasticmetal/get_option.py +24 -24
- pulumiverse_scaleway/elasticmetal/get_os.py +28 -28
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +215 -0
- pulumiverse_scaleway/elasticmetal/get_server.py +101 -68
- pulumiverse_scaleway/elasticmetal/ip.py +170 -169
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +107 -106
- pulumiverse_scaleway/elasticmetal/outputs.py +379 -287
- pulumiverse_scaleway/elasticmetal/server.py +622 -524
- pulumiverse_scaleway/file_filesystem.py +555 -0
- pulumiverse_scaleway/flexible_ip.py +170 -169
- pulumiverse_scaleway/flexible_ip_mac_address.py +107 -106
- pulumiverse_scaleway/function.py +457 -348
- pulumiverse_scaleway/function_cron.py +97 -96
- pulumiverse_scaleway/function_domain.py +63 -62
- pulumiverse_scaleway/function_namespace.py +234 -155
- pulumiverse_scaleway/function_token.py +97 -96
- pulumiverse_scaleway/function_trigger.py +77 -76
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +50 -50
- pulumiverse_scaleway/functions/cron.py +97 -96
- pulumiverse_scaleway/functions/domain.py +63 -62
- pulumiverse_scaleway/functions/function.py +457 -348
- pulumiverse_scaleway/functions/get_function.py +93 -71
- pulumiverse_scaleway/functions/get_namespace.py +54 -43
- pulumiverse_scaleway/functions/namespace.py +234 -155
- pulumiverse_scaleway/functions/outputs.py +34 -34
- pulumiverse_scaleway/functions/token.py +97 -96
- pulumiverse_scaleway/functions/trigger.py +77 -76
- pulumiverse_scaleway/get_account_project.py +28 -28
- pulumiverse_scaleway/get_account_ssh_key.py +34 -34
- pulumiverse_scaleway/get_availability_zones.py +12 -12
- pulumiverse_scaleway/get_baremetal_offer.py +43 -41
- pulumiverse_scaleway/get_baremetal_option.py +24 -24
- pulumiverse_scaleway/get_baremetal_os.py +28 -28
- pulumiverse_scaleway/get_baremetal_server.py +101 -68
- pulumiverse_scaleway/get_billing_consumptions.py +19 -15
- pulumiverse_scaleway/get_billing_invoices.py +25 -25
- pulumiverse_scaleway/get_block_snapshot.py +60 -37
- pulumiverse_scaleway/get_block_volume.py +38 -38
- pulumiverse_scaleway/get_cockpit.py +16 -16
- pulumiverse_scaleway/get_cockpit_source.py +88 -45
- pulumiverse_scaleway/get_config.py +24 -24
- pulumiverse_scaleway/get_container.py +117 -73
- pulumiverse_scaleway/get_container_namespace.py +56 -45
- pulumiverse_scaleway/get_database.py +26 -26
- pulumiverse_scaleway/get_database_acl.py +17 -17
- pulumiverse_scaleway/get_database_backup.py +46 -46
- pulumiverse_scaleway/get_database_instance.py +95 -73
- pulumiverse_scaleway/get_database_privilege.py +30 -30
- pulumiverse_scaleway/get_domain_record.py +53 -64
- pulumiverse_scaleway/get_domain_zone.py +36 -30
- pulumiverse_scaleway/get_flexible_ip.py +70 -54
- pulumiverse_scaleway/get_flexible_ips.py +31 -31
- pulumiverse_scaleway/get_function.py +93 -71
- pulumiverse_scaleway/get_function_namespace.py +54 -43
- pulumiverse_scaleway/get_iam_api_key.py +28 -28
- pulumiverse_scaleway/get_iam_application.py +32 -32
- pulumiverse_scaleway/get_iam_group.py +36 -36
- pulumiverse_scaleway/get_iam_ssh_key.py +34 -34
- pulumiverse_scaleway/get_iam_user.py +30 -30
- pulumiverse_scaleway/get_instance_image.py +58 -58
- pulumiverse_scaleway/get_instance_ip.py +42 -30
- pulumiverse_scaleway/get_instance_placement_group.py +38 -38
- pulumiverse_scaleway/get_instance_private_nic.py +53 -41
- pulumiverse_scaleway/get_instance_security_group.py +46 -46
- pulumiverse_scaleway/get_instance_server.py +108 -145
- pulumiverse_scaleway/get_instance_servers.py +31 -31
- pulumiverse_scaleway/get_instance_snapshot.py +41 -41
- pulumiverse_scaleway/get_instance_volume.py +42 -42
- pulumiverse_scaleway/get_iot_device.py +46 -46
- pulumiverse_scaleway/get_iot_hub.py +60 -60
- pulumiverse_scaleway/get_ipam_ip.py +65 -65
- pulumiverse_scaleway/get_ipam_ips.py +56 -56
- pulumiverse_scaleway/get_k8s_version.py +34 -23
- pulumiverse_scaleway/get_kubernetes_cluster.py +98 -65
- pulumiverse_scaleway/get_kubernetes_node_pool.py +86 -75
- pulumiverse_scaleway/get_lb_acls.py +29 -29
- pulumiverse_scaleway/get_lb_backend.py +75 -75
- pulumiverse_scaleway/get_lb_backends.py +29 -29
- pulumiverse_scaleway/get_lb_frontend.py +76 -43
- pulumiverse_scaleway/get_lb_frontends.py +29 -29
- pulumiverse_scaleway/get_lb_ips.py +37 -37
- pulumiverse_scaleway/get_lb_route.py +36 -25
- pulumiverse_scaleway/get_lb_routes.py +23 -23
- pulumiverse_scaleway/get_lbs.py +31 -31
- pulumiverse_scaleway/get_loadbalancer.py +78 -56
- pulumiverse_scaleway/get_loadbalancer_certificate.py +96 -36
- pulumiverse_scaleway/get_loadbalancer_ip.py +40 -40
- pulumiverse_scaleway/get_marketplace_image.py +28 -28
- pulumiverse_scaleway/get_mnq_sns.py +18 -18
- pulumiverse_scaleway/get_mnq_sqs.py +18 -18
- pulumiverse_scaleway/get_mongo_db_instance.py +110 -55
- pulumiverse_scaleway/get_object_bucket.py +35 -35
- pulumiverse_scaleway/get_object_bucket_policy.py +22 -22
- pulumiverse_scaleway/get_redis_cluster.py +65 -54
- pulumiverse_scaleway/get_registry_image.py +48 -48
- pulumiverse_scaleway/get_registry_image_tag.py +44 -44
- pulumiverse_scaleway/get_registry_namespace.py +36 -36
- pulumiverse_scaleway/get_secret.py +58 -58
- pulumiverse_scaleway/get_secret_version.py +46 -46
- pulumiverse_scaleway/get_tem_domain.py +103 -70
- pulumiverse_scaleway/get_vpc.py +58 -47
- pulumiverse_scaleway/get_vpc_gateway_network.py +55 -44
- pulumiverse_scaleway/get_vpc_private_network.py +58 -47
- pulumiverse_scaleway/get_vpc_public_gateway.py +56 -56
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +44 -44
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +44 -44
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +24 -24
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +32 -32
- pulumiverse_scaleway/get_vpc_routes.py +47 -47
- pulumiverse_scaleway/get_vpcs.py +31 -31
- pulumiverse_scaleway/get_web_host_offer.py +34 -34
- pulumiverse_scaleway/get_webhosting.py +58 -58
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +117 -75
- pulumiverse_scaleway/hosting/get_hosting.py +58 -58
- pulumiverse_scaleway/hosting/get_offer.py +34 -34
- pulumiverse_scaleway/hosting/hosting.py +213 -212
- pulumiverse_scaleway/hosting/outputs.py +276 -192
- pulumiverse_scaleway/iam/__init__.py +3 -1
- pulumiverse_scaleway/iam/_inputs.py +26 -26
- pulumiverse_scaleway/iam/api_key.py +142 -141
- pulumiverse_scaleway/iam/application.py +98 -97
- pulumiverse_scaleway/iam/get_api_key.py +28 -28
- pulumiverse_scaleway/iam/get_application.py +32 -32
- pulumiverse_scaleway/iam/get_group.py +36 -36
- pulumiverse_scaleway/iam/get_policy.py +293 -0
- pulumiverse_scaleway/iam/get_ssh_key.py +34 -34
- pulumiverse_scaleway/iam/get_user.py +30 -30
- pulumiverse_scaleway/iam/group.py +140 -139
- pulumiverse_scaleway/iam/group_membership.py +54 -53
- pulumiverse_scaleway/iam/outputs.py +70 -18
- pulumiverse_scaleway/iam/policy.py +169 -168
- pulumiverse_scaleway/iam/ssh_key.py +107 -106
- pulumiverse_scaleway/iam/user.py +598 -134
- pulumiverse_scaleway/iam_api_key.py +142 -141
- pulumiverse_scaleway/iam_application.py +98 -97
- pulumiverse_scaleway/iam_group.py +140 -139
- pulumiverse_scaleway/iam_group_membership.py +54 -53
- pulumiverse_scaleway/iam_policy.py +169 -168
- pulumiverse_scaleway/iam_ssh_key.py +107 -106
- pulumiverse_scaleway/iam_user.py +598 -134
- pulumiverse_scaleway/inference/__init__.py +4 -1
- pulumiverse_scaleway/inference/_inputs.py +232 -50
- pulumiverse_scaleway/inference/deployment.py +319 -220
- pulumiverse_scaleway/inference/get_model.py +299 -0
- pulumiverse_scaleway/inference/model.py +684 -0
- pulumiverse_scaleway/inference/outputs.py +250 -34
- pulumiverse_scaleway/inference_deployment.py +319 -220
- pulumiverse_scaleway/instance/__init__.py +3 -1
- pulumiverse_scaleway/instance/_inputs.py +650 -437
- pulumiverse_scaleway/instance/get_image.py +58 -58
- pulumiverse_scaleway/instance/get_ip.py +42 -30
- pulumiverse_scaleway/instance/get_placement_group.py +38 -38
- pulumiverse_scaleway/instance/get_private_nic.py +53 -41
- pulumiverse_scaleway/instance/get_security_group.py +46 -46
- pulumiverse_scaleway/instance/get_server.py +108 -145
- pulumiverse_scaleway/instance/get_server_type.py +271 -0
- pulumiverse_scaleway/instance/get_servers.py +31 -31
- pulumiverse_scaleway/instance/get_snapshot.py +41 -41
- pulumiverse_scaleway/instance/get_volume.py +42 -42
- pulumiverse_scaleway/instance/image.py +260 -205
- pulumiverse_scaleway/instance/ip.py +116 -115
- pulumiverse_scaleway/instance/ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/instance/outputs.py +981 -548
- pulumiverse_scaleway/instance/placement_group.py +123 -122
- pulumiverse_scaleway/instance/private_nic.py +163 -113
- pulumiverse_scaleway/instance/security_group.py +188 -187
- pulumiverse_scaleway/instance/security_group_rules.py +42 -41
- pulumiverse_scaleway/instance/server.py +590 -562
- pulumiverse_scaleway/instance/snapshot.py +150 -157
- pulumiverse_scaleway/instance/user_data.py +75 -74
- pulumiverse_scaleway/instance/volume.py +174 -159
- pulumiverse_scaleway/instance_image.py +260 -205
- pulumiverse_scaleway/instance_ip.py +116 -115
- pulumiverse_scaleway/instance_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/instance_placement_group.py +123 -122
- pulumiverse_scaleway/instance_private_nic.py +163 -113
- pulumiverse_scaleway/instance_security_group.py +188 -187
- pulumiverse_scaleway/instance_security_group_rules.py +42 -41
- pulumiverse_scaleway/instance_server.py +590 -562
- pulumiverse_scaleway/instance_snapshot.py +150 -157
- pulumiverse_scaleway/instance_user_data.py +75 -74
- pulumiverse_scaleway/instance_volume.py +174 -159
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +119 -119
- pulumiverse_scaleway/iot/device.py +156 -193
- pulumiverse_scaleway/iot/get_device.py +46 -46
- pulumiverse_scaleway/iot/get_hub.py +60 -60
- pulumiverse_scaleway/iot/hub.py +259 -258
- pulumiverse_scaleway/iot/network.py +115 -114
- pulumiverse_scaleway/iot/outputs.py +107 -107
- pulumiverse_scaleway/iot/route.py +109 -108
- pulumiverse_scaleway/iot_device.py +156 -193
- pulumiverse_scaleway/iot_hub.py +259 -258
- pulumiverse_scaleway/iot_network.py +115 -114
- pulumiverse_scaleway/iot_route.py +109 -108
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +108 -108
- pulumiverse_scaleway/ipam/get_ip.py +65 -65
- pulumiverse_scaleway/ipam/get_ips.py +56 -56
- pulumiverse_scaleway/ipam/ip.py +160 -131
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +141 -70
- pulumiverse_scaleway/ipam/outputs.py +122 -122
- pulumiverse_scaleway/ipam_ip.py +160 -131
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +141 -70
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +127 -14
- pulumiverse_scaleway/job/definition.py +283 -175
- pulumiverse_scaleway/job/outputs.py +98 -10
- pulumiverse_scaleway/job_definition.py +283 -175
- pulumiverse_scaleway/key_manager_key.py +939 -0
- pulumiverse_scaleway/kubernetes/__init__.py +3 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +388 -185
- pulumiverse_scaleway/kubernetes/acl.py +447 -0
- pulumiverse_scaleway/kubernetes/cluster.py +594 -307
- pulumiverse_scaleway/kubernetes/get_cluster.py +98 -65
- pulumiverse_scaleway/kubernetes/get_pool.py +86 -75
- pulumiverse_scaleway/kubernetes/get_version.py +34 -23
- pulumiverse_scaleway/kubernetes/outputs.py +444 -250
- pulumiverse_scaleway/kubernetes/pool.py +427 -365
- pulumiverse_scaleway/kubernetes_cluster.py +594 -307
- pulumiverse_scaleway/kubernetes_node_pool.py +427 -365
- pulumiverse_scaleway/loadbalancer.py +329 -246
- pulumiverse_scaleway/loadbalancer_acl.py +102 -101
- pulumiverse_scaleway/loadbalancer_backend.py +534 -487
- pulumiverse_scaleway/loadbalancer_certificate.py +97 -96
- pulumiverse_scaleway/loadbalancer_frontend.py +271 -167
- pulumiverse_scaleway/loadbalancer_ip.py +124 -123
- pulumiverse_scaleway/loadbalancer_route.py +244 -119
- pulumiverse_scaleway/loadbalancers/__init__.py +3 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +367 -273
- pulumiverse_scaleway/loadbalancers/acl.py +102 -101
- pulumiverse_scaleway/loadbalancers/backend.py +534 -487
- pulumiverse_scaleway/loadbalancers/certificate.py +97 -96
- pulumiverse_scaleway/loadbalancers/frontend.py +271 -167
- pulumiverse_scaleway/loadbalancers/get_acls.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_backend.py +75 -75
- pulumiverse_scaleway/loadbalancers/get_backends.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_certificate.py +96 -36
- pulumiverse_scaleway/loadbalancers/get_frontend.py +76 -43
- pulumiverse_scaleway/loadbalancers/get_frontends.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_ip.py +40 -40
- pulumiverse_scaleway/loadbalancers/get_ips.py +37 -37
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +78 -56
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +31 -31
- pulumiverse_scaleway/loadbalancers/get_route.py +36 -25
- pulumiverse_scaleway/loadbalancers/get_routes.py +23 -23
- pulumiverse_scaleway/loadbalancers/ip.py +124 -123
- pulumiverse_scaleway/loadbalancers/load_balancer.py +329 -246
- pulumiverse_scaleway/loadbalancers/outputs.py +870 -716
- pulumiverse_scaleway/loadbalancers/private_network.py +505 -0
- pulumiverse_scaleway/loadbalancers/route.py +244 -119
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +90 -38
- pulumiverse_scaleway/mnq/get_sns.py +18 -18
- pulumiverse_scaleway/mnq/get_sqs.py +18 -18
- pulumiverse_scaleway/mnq/nats_account.py +63 -62
- pulumiverse_scaleway/mnq/nats_credentials.py +63 -62
- pulumiverse_scaleway/mnq/outputs.py +73 -26
- pulumiverse_scaleway/mnq/sns.py +46 -45
- pulumiverse_scaleway/mnq/sns_credentials.py +82 -81
- pulumiverse_scaleway/mnq/sns_topic.py +174 -173
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +182 -181
- pulumiverse_scaleway/mnq/sqs.py +46 -45
- pulumiverse_scaleway/mnq/sqs_credentials.py +82 -81
- pulumiverse_scaleway/mnq/sqs_queue.py +392 -232
- pulumiverse_scaleway/mnq_nats_account.py +63 -62
- pulumiverse_scaleway/mnq_nats_credentials.py +63 -62
- pulumiverse_scaleway/mnq_sns.py +46 -45
- pulumiverse_scaleway/mnq_sns_credentials.py +82 -81
- pulumiverse_scaleway/mnq_sns_topic.py +174 -173
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +182 -181
- pulumiverse_scaleway/mnq_sqs.py +46 -45
- pulumiverse_scaleway/mnq_sqs_credentials.py +82 -81
- pulumiverse_scaleway/mnq_sqs_queue.py +392 -232
- pulumiverse_scaleway/mongo_db_instance.py +569 -268
- pulumiverse_scaleway/mongo_db_snapshot.py +127 -126
- pulumiverse_scaleway/mongodb/__init__.py +3 -1
- pulumiverse_scaleway/mongodb/_inputs.py +178 -51
- pulumiverse_scaleway/mongodb/get_instance.py +110 -55
- pulumiverse_scaleway/mongodb/instance.py +569 -268
- pulumiverse_scaleway/mongodb/outputs.py +192 -68
- pulumiverse_scaleway/mongodb/snapshot.py +127 -126
- pulumiverse_scaleway/mongodb/user.py +507 -0
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +209 -155
- pulumiverse_scaleway/network/acl.py +100 -101
- pulumiverse_scaleway/network/gateway_network.py +228 -180
- pulumiverse_scaleway/network/get_gateway_network.py +55 -44
- pulumiverse_scaleway/network/get_private_network.py +58 -47
- pulumiverse_scaleway/network/get_public_gateway.py +56 -56
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +44 -44
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +44 -44
- pulumiverse_scaleway/network/get_public_gateway_ip.py +24 -24
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +32 -32
- pulumiverse_scaleway/network/get_routes.py +47 -47
- pulumiverse_scaleway/network/get_vpc.py +58 -47
- pulumiverse_scaleway/network/get_vpcs.py +31 -31
- pulumiverse_scaleway/network/outputs.py +338 -270
- pulumiverse_scaleway/network/private_network.py +203 -155
- pulumiverse_scaleway/network/public_gateway.py +261 -260
- pulumiverse_scaleway/network/public_gateway_dhcp.py +285 -284
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +107 -106
- pulumiverse_scaleway/network/public_gateway_ip.py +107 -106
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +132 -131
- pulumiverse_scaleway/network/route.py +230 -141
- pulumiverse_scaleway/network/vpc.py +172 -124
- pulumiverse_scaleway/object/__init__.py +3 -1
- pulumiverse_scaleway/object/_inputs.py +202 -166
- pulumiverse_scaleway/object/bucket.py +162 -148
- pulumiverse_scaleway/object/bucket_acl.py +97 -94
- pulumiverse_scaleway/object/bucket_lock_configuration.py +57 -56
- pulumiverse_scaleway/object/bucket_policy.py +71 -134
- pulumiverse_scaleway/object/bucket_website_configuration.py +104 -85
- pulumiverse_scaleway/object/get.py +290 -0
- pulumiverse_scaleway/object/get_bucket.py +35 -35
- pulumiverse_scaleway/object/get_bucket_policy.py +22 -22
- pulumiverse_scaleway/object/item.py +301 -223
- pulumiverse_scaleway/object/outputs.py +210 -166
- pulumiverse_scaleway/object_bucket.py +162 -148
- pulumiverse_scaleway/object_bucket_acl.py +97 -94
- pulumiverse_scaleway/object_bucket_lock_configuration.py +57 -56
- pulumiverse_scaleway/object_bucket_policy.py +71 -134
- pulumiverse_scaleway/object_bucket_website_configuration.py +104 -85
- pulumiverse_scaleway/object_item.py +301 -223
- pulumiverse_scaleway/observability/__init__.py +4 -2
- pulumiverse_scaleway/observability/_inputs.py +106 -106
- pulumiverse_scaleway/observability/alert_manager.py +66 -65
- pulumiverse_scaleway/observability/cockpit.py +71 -49
- pulumiverse_scaleway/observability/get_grafana.py +103 -0
- pulumiverse_scaleway/observability/get_instance.py +16 -16
- pulumiverse_scaleway/observability/get_source.py +88 -45
- pulumiverse_scaleway/observability/get_sources.py +375 -0
- pulumiverse_scaleway/observability/grafana_user.py +72 -113
- pulumiverse_scaleway/observability/outputs.py +241 -101
- pulumiverse_scaleway/observability/source.py +142 -141
- pulumiverse_scaleway/observability/token.py +84 -83
- pulumiverse_scaleway/outputs.py +5235 -3665
- pulumiverse_scaleway/provider.py +107 -82
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +127 -126
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +163 -69
- pulumiverse_scaleway/redis/cluster.py +273 -225
- pulumiverse_scaleway/redis/get_cluster.py +65 -54
- pulumiverse_scaleway/redis/outputs.py +199 -87
- pulumiverse_scaleway/redis_cluster.py +273 -225
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +48 -48
- pulumiverse_scaleway/registry/get_image_tag.py +44 -44
- pulumiverse_scaleway/registry/get_namespace.py +36 -36
- pulumiverse_scaleway/registry/namespace.py +106 -105
- pulumiverse_scaleway/registry_namespace.py +106 -105
- pulumiverse_scaleway/sdb_database.py +97 -96
- pulumiverse_scaleway/secret.py +188 -179
- pulumiverse_scaleway/secret_version.py +107 -106
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +63 -63
- pulumiverse_scaleway/secrets/get_secret.py +58 -58
- pulumiverse_scaleway/secrets/get_version.py +46 -46
- pulumiverse_scaleway/secrets/outputs.py +84 -84
- pulumiverse_scaleway/secrets/secret.py +188 -179
- pulumiverse_scaleway/secrets/version.py +107 -106
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +33 -33
- pulumiverse_scaleway/tem/blocked_list.py +105 -104
- pulumiverse_scaleway/tem/domain.py +384 -257
- pulumiverse_scaleway/tem/domain_validation.py +63 -62
- pulumiverse_scaleway/tem/get_domain.py +103 -70
- pulumiverse_scaleway/tem/get_offer_subscription.py +34 -34
- pulumiverse_scaleway/tem/outputs.py +44 -44
- pulumiverse_scaleway/tem/webhook.py +132 -131
- pulumiverse_scaleway/tem_domain.py +384 -257
- pulumiverse_scaleway/tem_domain_validation.py +63 -62
- pulumiverse_scaleway/tem_webhook.py +132 -131
- pulumiverse_scaleway/vpc.py +172 -124
- pulumiverse_scaleway/vpc_gateway_network.py +228 -180
- pulumiverse_scaleway/vpc_private_network.py +203 -155
- pulumiverse_scaleway/vpc_public_gateway.py +261 -260
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +285 -284
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +107 -106
- pulumiverse_scaleway/vpc_public_gateway_ip.py +107 -106
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +132 -131
- pulumiverse_scaleway/vpc_route.py +230 -141
- pulumiverse_scaleway/webhosting.py +213 -212
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.39.0a1764841480.dist-info/RECORD +513 -0
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/WHEEL +1 -1
- pulumiverse_scaleway/get_cockpit_plan.py +0 -129
- pulumiverse_scaleway/observability/get_plan.py +0 -125
- pulumiverse_scaleway-1.27.0a1744869119.dist-info/RECORD +0 -483
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -21,20 +21,20 @@ __all__ = ['IotRouteArgs', 'IotRoute']
|
|
|
21
21
|
@pulumi.input_type
|
|
22
22
|
class IotRouteArgs:
|
|
23
23
|
def __init__(__self__, *,
|
|
24
|
-
hub_id: pulumi.Input[str],
|
|
25
|
-
topic: pulumi.Input[str],
|
|
24
|
+
hub_id: pulumi.Input[_builtins.str],
|
|
25
|
+
topic: pulumi.Input[_builtins.str],
|
|
26
26
|
database: Optional[pulumi.Input['IotRouteDatabaseArgs']] = None,
|
|
27
|
-
name: Optional[pulumi.Input[str]] = None,
|
|
28
|
-
region: Optional[pulumi.Input[str]] = None,
|
|
27
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
29
|
rest: Optional[pulumi.Input['IotRouteRestArgs']] = None,
|
|
30
30
|
s3: Optional[pulumi.Input['IotRouteS3Args']] = None):
|
|
31
31
|
"""
|
|
32
32
|
The set of arguments for constructing a IotRoute resource.
|
|
33
|
-
:param pulumi.Input[str] hub_id: The hub ID to which the Route will be attached to.
|
|
34
|
-
:param pulumi.Input[str] topic: The topic the Route subscribes to, wildcards allowed (e.g. `thelab/+/temperature/#`).
|
|
33
|
+
:param pulumi.Input[_builtins.str] hub_id: The hub ID to which the Route will be attached to.
|
|
34
|
+
:param pulumi.Input[_builtins.str] topic: The topic the Route subscribes to, wildcards allowed (e.g. `thelab/+/temperature/#`).
|
|
35
35
|
:param pulumi.Input['IotRouteDatabaseArgs'] database: Configuration block for the database routes. See [product documentation](https://www.scaleway.com/en/docs/iot-hub/how-to/create-route/) for a better understanding of the parameters.
|
|
36
|
-
:param pulumi.Input[str] name: The name of the IoT Route you want to create (e.g. `my-route`).
|
|
37
|
-
:param pulumi.Input[str] region: (Defaults to provider `region`) The region in which the Route is attached to.
|
|
36
|
+
:param pulumi.Input[_builtins.str] name: The name of the IoT Route you want to create (e.g. `my-route`).
|
|
37
|
+
:param pulumi.Input[_builtins.str] region: (Defaults to provider `region`) The region in which the Route is attached to.
|
|
38
38
|
:param pulumi.Input['IotRouteRestArgs'] rest: Configuration block for the rest routes. See [product documentation](https://www.scaleway.com/en/docs/iot-hub/how-to/create-route/) for a better understanding of the parameters.
|
|
39
39
|
:param pulumi.Input['IotRouteS3Args'] s3: Configuration block for the S3 routes. See [product documentation](https://www.scaleway.com/en/docs/iot-hub/how-to/create-route/) for a better understanding of the parameters.
|
|
40
40
|
"""
|
|
@@ -51,31 +51,31 @@ class IotRouteArgs:
|
|
|
51
51
|
if s3 is not None:
|
|
52
52
|
pulumi.set(__self__, "s3", s3)
|
|
53
53
|
|
|
54
|
-
@property
|
|
54
|
+
@_builtins.property
|
|
55
55
|
@pulumi.getter(name="hubId")
|
|
56
|
-
def hub_id(self) -> pulumi.Input[str]:
|
|
56
|
+
def hub_id(self) -> pulumi.Input[_builtins.str]:
|
|
57
57
|
"""
|
|
58
58
|
The hub ID to which the Route will be attached to.
|
|
59
59
|
"""
|
|
60
60
|
return pulumi.get(self, "hub_id")
|
|
61
61
|
|
|
62
62
|
@hub_id.setter
|
|
63
|
-
def hub_id(self, value: pulumi.Input[str]):
|
|
63
|
+
def hub_id(self, value: pulumi.Input[_builtins.str]):
|
|
64
64
|
pulumi.set(self, "hub_id", value)
|
|
65
65
|
|
|
66
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
67
67
|
@pulumi.getter
|
|
68
|
-
def topic(self) -> pulumi.Input[str]:
|
|
68
|
+
def topic(self) -> pulumi.Input[_builtins.str]:
|
|
69
69
|
"""
|
|
70
70
|
The topic the Route subscribes to, wildcards allowed (e.g. `thelab/+/temperature/#`).
|
|
71
71
|
"""
|
|
72
72
|
return pulumi.get(self, "topic")
|
|
73
73
|
|
|
74
74
|
@topic.setter
|
|
75
|
-
def topic(self, value: pulumi.Input[str]):
|
|
75
|
+
def topic(self, value: pulumi.Input[_builtins.str]):
|
|
76
76
|
pulumi.set(self, "topic", value)
|
|
77
77
|
|
|
78
|
-
@property
|
|
78
|
+
@_builtins.property
|
|
79
79
|
@pulumi.getter
|
|
80
80
|
def database(self) -> Optional[pulumi.Input['IotRouteDatabaseArgs']]:
|
|
81
81
|
"""
|
|
@@ -87,31 +87,31 @@ class IotRouteArgs:
|
|
|
87
87
|
def database(self, value: Optional[pulumi.Input['IotRouteDatabaseArgs']]):
|
|
88
88
|
pulumi.set(self, "database", value)
|
|
89
89
|
|
|
90
|
-
@property
|
|
90
|
+
@_builtins.property
|
|
91
91
|
@pulumi.getter
|
|
92
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
|
92
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
93
93
|
"""
|
|
94
94
|
The name of the IoT Route you want to create (e.g. `my-route`).
|
|
95
95
|
"""
|
|
96
96
|
return pulumi.get(self, "name")
|
|
97
97
|
|
|
98
98
|
@name.setter
|
|
99
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
|
99
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
100
100
|
pulumi.set(self, "name", value)
|
|
101
101
|
|
|
102
|
-
@property
|
|
102
|
+
@_builtins.property
|
|
103
103
|
@pulumi.getter
|
|
104
|
-
def region(self) -> Optional[pulumi.Input[str]]:
|
|
104
|
+
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
105
105
|
"""
|
|
106
106
|
(Defaults to provider `region`) The region in which the Route is attached to.
|
|
107
107
|
"""
|
|
108
108
|
return pulumi.get(self, "region")
|
|
109
109
|
|
|
110
110
|
@region.setter
|
|
111
|
-
def region(self, value: Optional[pulumi.Input[str]]):
|
|
111
|
+
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
112
112
|
pulumi.set(self, "region", value)
|
|
113
113
|
|
|
114
|
-
@property
|
|
114
|
+
@_builtins.property
|
|
115
115
|
@pulumi.getter
|
|
116
116
|
def rest(self) -> Optional[pulumi.Input['IotRouteRestArgs']]:
|
|
117
117
|
"""
|
|
@@ -123,7 +123,7 @@ class IotRouteArgs:
|
|
|
123
123
|
def rest(self, value: Optional[pulumi.Input['IotRouteRestArgs']]):
|
|
124
124
|
pulumi.set(self, "rest", value)
|
|
125
125
|
|
|
126
|
-
@property
|
|
126
|
+
@_builtins.property
|
|
127
127
|
@pulumi.getter
|
|
128
128
|
def s3(self) -> Optional[pulumi.Input['IotRouteS3Args']]:
|
|
129
129
|
"""
|
|
@@ -139,24 +139,24 @@ class IotRouteArgs:
|
|
|
139
139
|
@pulumi.input_type
|
|
140
140
|
class _IotRouteState:
|
|
141
141
|
def __init__(__self__, *,
|
|
142
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
|
142
|
+
created_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
143
143
|
database: Optional[pulumi.Input['IotRouteDatabaseArgs']] = None,
|
|
144
|
-
hub_id: Optional[pulumi.Input[str]] = None,
|
|
145
|
-
name: Optional[pulumi.Input[str]] = None,
|
|
146
|
-
region: Optional[pulumi.Input[str]] = None,
|
|
144
|
+
hub_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
145
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
146
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
147
147
|
rest: Optional[pulumi.Input['IotRouteRestArgs']] = None,
|
|
148
148
|
s3: Optional[pulumi.Input['IotRouteS3Args']] = None,
|
|
149
|
-
topic: Optional[pulumi.Input[str]] = None):
|
|
149
|
+
topic: Optional[pulumi.Input[_builtins.str]] = None):
|
|
150
150
|
"""
|
|
151
151
|
Input properties used for looking up and filtering IotRoute resources.
|
|
152
|
-
:param pulumi.Input[str] created_at: The date and time the Route was created.
|
|
152
|
+
:param pulumi.Input[_builtins.str] created_at: The date and time the Route was created.
|
|
153
153
|
:param pulumi.Input['IotRouteDatabaseArgs'] database: Configuration block for the database routes. See [product documentation](https://www.scaleway.com/en/docs/iot-hub/how-to/create-route/) for a better understanding of the parameters.
|
|
154
|
-
:param pulumi.Input[str] hub_id: The hub ID to which the Route will be attached to.
|
|
155
|
-
:param pulumi.Input[str] name: The name of the IoT Route you want to create (e.g. `my-route`).
|
|
156
|
-
:param pulumi.Input[str] region: (Defaults to provider `region`) The region in which the Route is attached to.
|
|
154
|
+
:param pulumi.Input[_builtins.str] hub_id: The hub ID to which the Route will be attached to.
|
|
155
|
+
:param pulumi.Input[_builtins.str] name: The name of the IoT Route you want to create (e.g. `my-route`).
|
|
156
|
+
:param pulumi.Input[_builtins.str] region: (Defaults to provider `region`) The region in which the Route is attached to.
|
|
157
157
|
:param pulumi.Input['IotRouteRestArgs'] rest: Configuration block for the rest routes. See [product documentation](https://www.scaleway.com/en/docs/iot-hub/how-to/create-route/) for a better understanding of the parameters.
|
|
158
158
|
:param pulumi.Input['IotRouteS3Args'] s3: Configuration block for the S3 routes. See [product documentation](https://www.scaleway.com/en/docs/iot-hub/how-to/create-route/) for a better understanding of the parameters.
|
|
159
|
-
:param pulumi.Input[str] topic: The topic the Route subscribes to, wildcards allowed (e.g. `thelab/+/temperature/#`).
|
|
159
|
+
:param pulumi.Input[_builtins.str] topic: The topic the Route subscribes to, wildcards allowed (e.g. `thelab/+/temperature/#`).
|
|
160
160
|
"""
|
|
161
161
|
if created_at is not None:
|
|
162
162
|
pulumi.set(__self__, "created_at", created_at)
|
|
@@ -175,19 +175,19 @@ class _IotRouteState:
|
|
|
175
175
|
if topic is not None:
|
|
176
176
|
pulumi.set(__self__, "topic", topic)
|
|
177
177
|
|
|
178
|
-
@property
|
|
178
|
+
@_builtins.property
|
|
179
179
|
@pulumi.getter(name="createdAt")
|
|
180
|
-
def created_at(self) -> Optional[pulumi.Input[str]]:
|
|
180
|
+
def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
181
181
|
"""
|
|
182
182
|
The date and time the Route was created.
|
|
183
183
|
"""
|
|
184
184
|
return pulumi.get(self, "created_at")
|
|
185
185
|
|
|
186
186
|
@created_at.setter
|
|
187
|
-
def created_at(self, value: Optional[pulumi.Input[str]]):
|
|
187
|
+
def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
188
188
|
pulumi.set(self, "created_at", value)
|
|
189
189
|
|
|
190
|
-
@property
|
|
190
|
+
@_builtins.property
|
|
191
191
|
@pulumi.getter
|
|
192
192
|
def database(self) -> Optional[pulumi.Input['IotRouteDatabaseArgs']]:
|
|
193
193
|
"""
|
|
@@ -199,43 +199,43 @@ class _IotRouteState:
|
|
|
199
199
|
def database(self, value: Optional[pulumi.Input['IotRouteDatabaseArgs']]):
|
|
200
200
|
pulumi.set(self, "database", value)
|
|
201
201
|
|
|
202
|
-
@property
|
|
202
|
+
@_builtins.property
|
|
203
203
|
@pulumi.getter(name="hubId")
|
|
204
|
-
def hub_id(self) -> Optional[pulumi.Input[str]]:
|
|
204
|
+
def hub_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
205
205
|
"""
|
|
206
206
|
The hub ID to which the Route will be attached to.
|
|
207
207
|
"""
|
|
208
208
|
return pulumi.get(self, "hub_id")
|
|
209
209
|
|
|
210
210
|
@hub_id.setter
|
|
211
|
-
def hub_id(self, value: Optional[pulumi.Input[str]]):
|
|
211
|
+
def hub_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
212
212
|
pulumi.set(self, "hub_id", value)
|
|
213
213
|
|
|
214
|
-
@property
|
|
214
|
+
@_builtins.property
|
|
215
215
|
@pulumi.getter
|
|
216
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
|
216
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
217
217
|
"""
|
|
218
218
|
The name of the IoT Route you want to create (e.g. `my-route`).
|
|
219
219
|
"""
|
|
220
220
|
return pulumi.get(self, "name")
|
|
221
221
|
|
|
222
222
|
@name.setter
|
|
223
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
|
223
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
224
224
|
pulumi.set(self, "name", value)
|
|
225
225
|
|
|
226
|
-
@property
|
|
226
|
+
@_builtins.property
|
|
227
227
|
@pulumi.getter
|
|
228
|
-
def region(self) -> Optional[pulumi.Input[str]]:
|
|
228
|
+
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
229
229
|
"""
|
|
230
230
|
(Defaults to provider `region`) The region in which the Route is attached to.
|
|
231
231
|
"""
|
|
232
232
|
return pulumi.get(self, "region")
|
|
233
233
|
|
|
234
234
|
@region.setter
|
|
235
|
-
def region(self, value: Optional[pulumi.Input[str]]):
|
|
235
|
+
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
236
236
|
pulumi.set(self, "region", value)
|
|
237
237
|
|
|
238
|
-
@property
|
|
238
|
+
@_builtins.property
|
|
239
239
|
@pulumi.getter
|
|
240
240
|
def rest(self) -> Optional[pulumi.Input['IotRouteRestArgs']]:
|
|
241
241
|
"""
|
|
@@ -247,7 +247,7 @@ class _IotRouteState:
|
|
|
247
247
|
def rest(self, value: Optional[pulumi.Input['IotRouteRestArgs']]):
|
|
248
248
|
pulumi.set(self, "rest", value)
|
|
249
249
|
|
|
250
|
-
@property
|
|
250
|
+
@_builtins.property
|
|
251
251
|
@pulumi.getter
|
|
252
252
|
def s3(self) -> Optional[pulumi.Input['IotRouteS3Args']]:
|
|
253
253
|
"""
|
|
@@ -259,22 +259,23 @@ class _IotRouteState:
|
|
|
259
259
|
def s3(self, value: Optional[pulumi.Input['IotRouteS3Args']]):
|
|
260
260
|
pulumi.set(self, "s3", value)
|
|
261
261
|
|
|
262
|
-
@property
|
|
262
|
+
@_builtins.property
|
|
263
263
|
@pulumi.getter
|
|
264
|
-
def topic(self) -> Optional[pulumi.Input[str]]:
|
|
264
|
+
def topic(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
265
265
|
"""
|
|
266
266
|
The topic the Route subscribes to, wildcards allowed (e.g. `thelab/+/temperature/#`).
|
|
267
267
|
"""
|
|
268
268
|
return pulumi.get(self, "topic")
|
|
269
269
|
|
|
270
270
|
@topic.setter
|
|
271
|
-
def topic(self, value: Optional[pulumi.Input[str]]):
|
|
271
|
+
def topic(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
272
272
|
pulumi.set(self, "topic", value)
|
|
273
273
|
|
|
274
274
|
|
|
275
275
|
warnings.warn("""scaleway.index/iotroute.IotRoute has been deprecated in favor of scaleway.iot/route.Route""", DeprecationWarning)
|
|
276
276
|
|
|
277
277
|
|
|
278
|
+
@pulumi.type_token("scaleway:index/iotRoute:IotRoute")
|
|
278
279
|
class IotRoute(pulumi.CustomResource):
|
|
279
280
|
warnings.warn("""scaleway.index/iotroute.IotRoute has been deprecated in favor of scaleway.iot/route.Route""", DeprecationWarning)
|
|
280
281
|
|
|
@@ -283,12 +284,12 @@ class IotRoute(pulumi.CustomResource):
|
|
|
283
284
|
resource_name: str,
|
|
284
285
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
285
286
|
database: Optional[pulumi.Input[Union['IotRouteDatabaseArgs', 'IotRouteDatabaseArgsDict']]] = None,
|
|
286
|
-
hub_id: Optional[pulumi.Input[str]] = None,
|
|
287
|
-
name: Optional[pulumi.Input[str]] = None,
|
|
288
|
-
region: Optional[pulumi.Input[str]] = None,
|
|
287
|
+
hub_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
288
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
289
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
289
290
|
rest: Optional[pulumi.Input[Union['IotRouteRestArgs', 'IotRouteRestArgsDict']]] = None,
|
|
290
291
|
s3: Optional[pulumi.Input[Union['IotRouteS3Args', 'IotRouteS3ArgsDict']]] = None,
|
|
291
|
-
topic: Optional[pulumi.Input[str]] = None,
|
|
292
|
+
topic: Optional[pulumi.Input[_builtins.str]] = None,
|
|
292
293
|
__props__=None):
|
|
293
294
|
"""
|
|
294
295
|
## Example Usage
|
|
@@ -314,17 +315,17 @@ class IotRoute(pulumi.CustomResource):
|
|
|
314
315
|
topic="#",
|
|
315
316
|
database={
|
|
316
317
|
"query": \"\"\"INSERT INTO measurements(
|
|
317
|
-
\\
|
|
318
|
-
\\
|
|
319
|
-
\\
|
|
320
|
-
\\
|
|
321
|
-
\\
|
|
318
|
+
\\tpush_time,
|
|
319
|
+
\\treport_time,
|
|
320
|
+
\\tstation_id,
|
|
321
|
+
\\ttemperature,
|
|
322
|
+
\\thumidity
|
|
322
323
|
) VALUES (
|
|
323
|
-
\\
|
|
324
|
-
\\
|
|
325
|
-
\\
|
|
326
|
-
\\
|
|
327
|
-
\\
|
|
324
|
+
\\tNOW(),
|
|
325
|
+
\\tTIMESTAMP 'epoch' + (($PAYLOAD::jsonb->'last_reported')::integer * INTERVAL '1 second'),
|
|
326
|
+
\\t($PAYLOAD::jsonb->'station_id')::uuid,
|
|
327
|
+
\\t($PAYLOAD::jsonb->'temperature')::decimal,
|
|
328
|
+
\\t($PAYLOAD::jsonb->'humidity'):decimal:
|
|
328
329
|
);
|
|
329
330
|
\"\"\",
|
|
330
331
|
"host": iot.endpoint_ip,
|
|
@@ -394,12 +395,12 @@ class IotRoute(pulumi.CustomResource):
|
|
|
394
395
|
:param str resource_name: The name of the resource.
|
|
395
396
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
396
397
|
:param pulumi.Input[Union['IotRouteDatabaseArgs', 'IotRouteDatabaseArgsDict']] database: Configuration block for the database routes. See [product documentation](https://www.scaleway.com/en/docs/iot-hub/how-to/create-route/) for a better understanding of the parameters.
|
|
397
|
-
:param pulumi.Input[str] hub_id: The hub ID to which the Route will be attached to.
|
|
398
|
-
:param pulumi.Input[str] name: The name of the IoT Route you want to create (e.g. `my-route`).
|
|
399
|
-
:param pulumi.Input[str] region: (Defaults to provider `region`) The region in which the Route is attached to.
|
|
398
|
+
:param pulumi.Input[_builtins.str] hub_id: The hub ID to which the Route will be attached to.
|
|
399
|
+
:param pulumi.Input[_builtins.str] name: The name of the IoT Route you want to create (e.g. `my-route`).
|
|
400
|
+
:param pulumi.Input[_builtins.str] region: (Defaults to provider `region`) The region in which the Route is attached to.
|
|
400
401
|
:param pulumi.Input[Union['IotRouteRestArgs', 'IotRouteRestArgsDict']] rest: Configuration block for the rest routes. See [product documentation](https://www.scaleway.com/en/docs/iot-hub/how-to/create-route/) for a better understanding of the parameters.
|
|
401
402
|
:param pulumi.Input[Union['IotRouteS3Args', 'IotRouteS3ArgsDict']] s3: Configuration block for the S3 routes. See [product documentation](https://www.scaleway.com/en/docs/iot-hub/how-to/create-route/) for a better understanding of the parameters.
|
|
402
|
-
:param pulumi.Input[str] topic: The topic the Route subscribes to, wildcards allowed (e.g. `thelab/+/temperature/#`).
|
|
403
|
+
:param pulumi.Input[_builtins.str] topic: The topic the Route subscribes to, wildcards allowed (e.g. `thelab/+/temperature/#`).
|
|
403
404
|
"""
|
|
404
405
|
...
|
|
405
406
|
@overload
|
|
@@ -431,17 +432,17 @@ class IotRoute(pulumi.CustomResource):
|
|
|
431
432
|
topic="#",
|
|
432
433
|
database={
|
|
433
434
|
"query": \"\"\"INSERT INTO measurements(
|
|
434
|
-
\\
|
|
435
|
-
\\
|
|
436
|
-
\\
|
|
437
|
-
\\
|
|
438
|
-
\\
|
|
435
|
+
\\tpush_time,
|
|
436
|
+
\\treport_time,
|
|
437
|
+
\\tstation_id,
|
|
438
|
+
\\ttemperature,
|
|
439
|
+
\\thumidity
|
|
439
440
|
) VALUES (
|
|
440
|
-
\\
|
|
441
|
-
\\
|
|
442
|
-
\\
|
|
443
|
-
\\
|
|
444
|
-
\\
|
|
441
|
+
\\tNOW(),
|
|
442
|
+
\\tTIMESTAMP 'epoch' + (($PAYLOAD::jsonb->'last_reported')::integer * INTERVAL '1 second'),
|
|
443
|
+
\\t($PAYLOAD::jsonb->'station_id')::uuid,
|
|
444
|
+
\\t($PAYLOAD::jsonb->'temperature')::decimal,
|
|
445
|
+
\\t($PAYLOAD::jsonb->'humidity'):decimal:
|
|
445
446
|
);
|
|
446
447
|
\"\"\",
|
|
447
448
|
"host": iot.endpoint_ip,
|
|
@@ -524,12 +525,12 @@ class IotRoute(pulumi.CustomResource):
|
|
|
524
525
|
resource_name: str,
|
|
525
526
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
526
527
|
database: Optional[pulumi.Input[Union['IotRouteDatabaseArgs', 'IotRouteDatabaseArgsDict']]] = None,
|
|
527
|
-
hub_id: Optional[pulumi.Input[str]] = None,
|
|
528
|
-
name: Optional[pulumi.Input[str]] = None,
|
|
529
|
-
region: Optional[pulumi.Input[str]] = None,
|
|
528
|
+
hub_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
529
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
530
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
530
531
|
rest: Optional[pulumi.Input[Union['IotRouteRestArgs', 'IotRouteRestArgsDict']]] = None,
|
|
531
532
|
s3: Optional[pulumi.Input[Union['IotRouteS3Args', 'IotRouteS3ArgsDict']]] = None,
|
|
532
|
-
topic: Optional[pulumi.Input[str]] = None,
|
|
533
|
+
topic: Optional[pulumi.Input[_builtins.str]] = None,
|
|
533
534
|
__props__=None):
|
|
534
535
|
pulumi.log.warn("""IotRoute is deprecated: scaleway.index/iotroute.IotRoute has been deprecated in favor of scaleway.iot/route.Route""")
|
|
535
536
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -562,14 +563,14 @@ class IotRoute(pulumi.CustomResource):
|
|
|
562
563
|
def get(resource_name: str,
|
|
563
564
|
id: pulumi.Input[str],
|
|
564
565
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
565
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
|
566
|
+
created_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
566
567
|
database: Optional[pulumi.Input[Union['IotRouteDatabaseArgs', 'IotRouteDatabaseArgsDict']]] = None,
|
|
567
|
-
hub_id: Optional[pulumi.Input[str]] = None,
|
|
568
|
-
name: Optional[pulumi.Input[str]] = None,
|
|
569
|
-
region: Optional[pulumi.Input[str]] = None,
|
|
568
|
+
hub_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
569
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
570
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
570
571
|
rest: Optional[pulumi.Input[Union['IotRouteRestArgs', 'IotRouteRestArgsDict']]] = None,
|
|
571
572
|
s3: Optional[pulumi.Input[Union['IotRouteS3Args', 'IotRouteS3ArgsDict']]] = None,
|
|
572
|
-
topic: Optional[pulumi.Input[str]] = None) -> 'IotRoute':
|
|
573
|
+
topic: Optional[pulumi.Input[_builtins.str]] = None) -> 'IotRoute':
|
|
573
574
|
"""
|
|
574
575
|
Get an existing IotRoute resource's state with the given name, id, and optional extra
|
|
575
576
|
properties used to qualify the lookup.
|
|
@@ -577,14 +578,14 @@ class IotRoute(pulumi.CustomResource):
|
|
|
577
578
|
:param str resource_name: The unique name of the resulting resource.
|
|
578
579
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
579
580
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
580
|
-
:param pulumi.Input[str] created_at: The date and time the Route was created.
|
|
581
|
+
:param pulumi.Input[_builtins.str] created_at: The date and time the Route was created.
|
|
581
582
|
:param pulumi.Input[Union['IotRouteDatabaseArgs', 'IotRouteDatabaseArgsDict']] database: Configuration block for the database routes. See [product documentation](https://www.scaleway.com/en/docs/iot-hub/how-to/create-route/) for a better understanding of the parameters.
|
|
582
|
-
:param pulumi.Input[str] hub_id: The hub ID to which the Route will be attached to.
|
|
583
|
-
:param pulumi.Input[str] name: The name of the IoT Route you want to create (e.g. `my-route`).
|
|
584
|
-
:param pulumi.Input[str] region: (Defaults to provider `region`) The region in which the Route is attached to.
|
|
583
|
+
:param pulumi.Input[_builtins.str] hub_id: The hub ID to which the Route will be attached to.
|
|
584
|
+
:param pulumi.Input[_builtins.str] name: The name of the IoT Route you want to create (e.g. `my-route`).
|
|
585
|
+
:param pulumi.Input[_builtins.str] region: (Defaults to provider `region`) The region in which the Route is attached to.
|
|
585
586
|
:param pulumi.Input[Union['IotRouteRestArgs', 'IotRouteRestArgsDict']] rest: Configuration block for the rest routes. See [product documentation](https://www.scaleway.com/en/docs/iot-hub/how-to/create-route/) for a better understanding of the parameters.
|
|
586
587
|
:param pulumi.Input[Union['IotRouteS3Args', 'IotRouteS3ArgsDict']] s3: Configuration block for the S3 routes. See [product documentation](https://www.scaleway.com/en/docs/iot-hub/how-to/create-route/) for a better understanding of the parameters.
|
|
587
|
-
:param pulumi.Input[str] topic: The topic the Route subscribes to, wildcards allowed (e.g. `thelab/+/temperature/#`).
|
|
588
|
+
:param pulumi.Input[_builtins.str] topic: The topic the Route subscribes to, wildcards allowed (e.g. `thelab/+/temperature/#`).
|
|
588
589
|
"""
|
|
589
590
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
590
591
|
|
|
@@ -600,15 +601,15 @@ class IotRoute(pulumi.CustomResource):
|
|
|
600
601
|
__props__.__dict__["topic"] = topic
|
|
601
602
|
return IotRoute(resource_name, opts=opts, __props__=__props__)
|
|
602
603
|
|
|
603
|
-
@property
|
|
604
|
+
@_builtins.property
|
|
604
605
|
@pulumi.getter(name="createdAt")
|
|
605
|
-
def created_at(self) -> pulumi.Output[str]:
|
|
606
|
+
def created_at(self) -> pulumi.Output[_builtins.str]:
|
|
606
607
|
"""
|
|
607
608
|
The date and time the Route was created.
|
|
608
609
|
"""
|
|
609
610
|
return pulumi.get(self, "created_at")
|
|
610
611
|
|
|
611
|
-
@property
|
|
612
|
+
@_builtins.property
|
|
612
613
|
@pulumi.getter
|
|
613
614
|
def database(self) -> pulumi.Output[Optional['outputs.IotRouteDatabase']]:
|
|
614
615
|
"""
|
|
@@ -616,31 +617,31 @@ class IotRoute(pulumi.CustomResource):
|
|
|
616
617
|
"""
|
|
617
618
|
return pulumi.get(self, "database")
|
|
618
619
|
|
|
619
|
-
@property
|
|
620
|
+
@_builtins.property
|
|
620
621
|
@pulumi.getter(name="hubId")
|
|
621
|
-
def hub_id(self) -> pulumi.Output[str]:
|
|
622
|
+
def hub_id(self) -> pulumi.Output[_builtins.str]:
|
|
622
623
|
"""
|
|
623
624
|
The hub ID to which the Route will be attached to.
|
|
624
625
|
"""
|
|
625
626
|
return pulumi.get(self, "hub_id")
|
|
626
627
|
|
|
627
|
-
@property
|
|
628
|
+
@_builtins.property
|
|
628
629
|
@pulumi.getter
|
|
629
|
-
def name(self) -> pulumi.Output[str]:
|
|
630
|
+
def name(self) -> pulumi.Output[_builtins.str]:
|
|
630
631
|
"""
|
|
631
632
|
The name of the IoT Route you want to create (e.g. `my-route`).
|
|
632
633
|
"""
|
|
633
634
|
return pulumi.get(self, "name")
|
|
634
635
|
|
|
635
|
-
@property
|
|
636
|
+
@_builtins.property
|
|
636
637
|
@pulumi.getter
|
|
637
|
-
def region(self) -> pulumi.Output[str]:
|
|
638
|
+
def region(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
638
639
|
"""
|
|
639
640
|
(Defaults to provider `region`) The region in which the Route is attached to.
|
|
640
641
|
"""
|
|
641
642
|
return pulumi.get(self, "region")
|
|
642
643
|
|
|
643
|
-
@property
|
|
644
|
+
@_builtins.property
|
|
644
645
|
@pulumi.getter
|
|
645
646
|
def rest(self) -> pulumi.Output[Optional['outputs.IotRouteRest']]:
|
|
646
647
|
"""
|
|
@@ -648,7 +649,7 @@ class IotRoute(pulumi.CustomResource):
|
|
|
648
649
|
"""
|
|
649
650
|
return pulumi.get(self, "rest")
|
|
650
651
|
|
|
651
|
-
@property
|
|
652
|
+
@_builtins.property
|
|
652
653
|
@pulumi.getter
|
|
653
654
|
def s3(self) -> pulumi.Output[Optional['outputs.IotRouteS3']]:
|
|
654
655
|
"""
|
|
@@ -656,9 +657,9 @@ class IotRoute(pulumi.CustomResource):
|
|
|
656
657
|
"""
|
|
657
658
|
return pulumi.get(self, "s3")
|
|
658
659
|
|
|
659
|
-
@property
|
|
660
|
+
@_builtins.property
|
|
660
661
|
@pulumi.getter
|
|
661
|
-
def topic(self) -> pulumi.Output[str]:
|
|
662
|
+
def topic(self) -> pulumi.Output[_builtins.str]:
|
|
662
663
|
"""
|
|
663
664
|
The topic the Route subscribes to, wildcards allowed (e.g. `thelab/+/temperature/#`).
|
|
664
665
|
"""
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
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 as _builtins
|
|
5
6
|
from .. import _utilities
|
|
6
7
|
import typing
|
|
7
8
|
# Export this package's modules as members:
|