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
|
|
@@ -26,7 +26,7 @@ class GetFunctionResult:
|
|
|
26
26
|
"""
|
|
27
27
|
A collection of values returned by getFunction.
|
|
28
28
|
"""
|
|
29
|
-
def __init__(__self__, cpu_limit=None, deploy=None, description=None, domain_name=None, environment_variables=None, function_id=None, handler=None, http_option=None, id=None, max_scale=None, memory_limit=None, min_scale=None, name=None, namespace_id=None, organization_id=None, privacy=None, project_id=None, region=None, runtime=None, sandbox=None, secret_environment_variables=None, timeout=None, zip_file=None, zip_hash=None):
|
|
29
|
+
def __init__(__self__, cpu_limit=None, deploy=None, description=None, domain_name=None, environment_variables=None, function_id=None, handler=None, http_option=None, id=None, max_scale=None, memory_limit=None, min_scale=None, name=None, namespace_id=None, organization_id=None, privacy=None, private_network_id=None, project_id=None, region=None, runtime=None, sandbox=None, secret_environment_variables=None, tags=None, timeout=None, zip_file=None, zip_hash=None):
|
|
30
30
|
if cpu_limit and not isinstance(cpu_limit, int):
|
|
31
31
|
raise TypeError("Expected argument 'cpu_limit' to be a int")
|
|
32
32
|
pulumi.set(__self__, "cpu_limit", cpu_limit)
|
|
@@ -75,6 +75,9 @@ class GetFunctionResult:
|
|
|
75
75
|
if privacy and not isinstance(privacy, str):
|
|
76
76
|
raise TypeError("Expected argument 'privacy' to be a str")
|
|
77
77
|
pulumi.set(__self__, "privacy", privacy)
|
|
78
|
+
if private_network_id and not isinstance(private_network_id, str):
|
|
79
|
+
raise TypeError("Expected argument 'private_network_id' to be a str")
|
|
80
|
+
pulumi.set(__self__, "private_network_id", private_network_id)
|
|
78
81
|
if project_id and not isinstance(project_id, str):
|
|
79
82
|
raise TypeError("Expected argument 'project_id' to be a str")
|
|
80
83
|
pulumi.set(__self__, "project_id", project_id)
|
|
@@ -90,6 +93,9 @@ class GetFunctionResult:
|
|
|
90
93
|
if secret_environment_variables and not isinstance(secret_environment_variables, dict):
|
|
91
94
|
raise TypeError("Expected argument 'secret_environment_variables' to be a dict")
|
|
92
95
|
pulumi.set(__self__, "secret_environment_variables", secret_environment_variables)
|
|
96
|
+
if tags and not isinstance(tags, list):
|
|
97
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
|
98
|
+
pulumi.set(__self__, "tags", tags)
|
|
93
99
|
if timeout and not isinstance(timeout, int):
|
|
94
100
|
raise TypeError("Expected argument 'timeout' to be a int")
|
|
95
101
|
pulumi.set(__self__, "timeout", timeout)
|
|
@@ -100,127 +106,137 @@ class GetFunctionResult:
|
|
|
100
106
|
raise TypeError("Expected argument 'zip_hash' to be a str")
|
|
101
107
|
pulumi.set(__self__, "zip_hash", zip_hash)
|
|
102
108
|
|
|
103
|
-
@property
|
|
109
|
+
@_builtins.property
|
|
104
110
|
@pulumi.getter(name="cpuLimit")
|
|
105
|
-
def cpu_limit(self) -> int:
|
|
111
|
+
def cpu_limit(self) -> _builtins.int:
|
|
106
112
|
return pulumi.get(self, "cpu_limit")
|
|
107
113
|
|
|
108
|
-
@property
|
|
114
|
+
@_builtins.property
|
|
109
115
|
@pulumi.getter
|
|
110
|
-
def deploy(self) -> bool:
|
|
116
|
+
def deploy(self) -> _builtins.bool:
|
|
111
117
|
return pulumi.get(self, "deploy")
|
|
112
118
|
|
|
113
|
-
@property
|
|
119
|
+
@_builtins.property
|
|
114
120
|
@pulumi.getter
|
|
115
|
-
def description(self) -> str:
|
|
121
|
+
def description(self) -> _builtins.str:
|
|
116
122
|
return pulumi.get(self, "description")
|
|
117
123
|
|
|
118
|
-
@property
|
|
124
|
+
@_builtins.property
|
|
119
125
|
@pulumi.getter(name="domainName")
|
|
120
|
-
def domain_name(self) -> str:
|
|
126
|
+
def domain_name(self) -> _builtins.str:
|
|
121
127
|
return pulumi.get(self, "domain_name")
|
|
122
128
|
|
|
123
|
-
@property
|
|
129
|
+
@_builtins.property
|
|
124
130
|
@pulumi.getter(name="environmentVariables")
|
|
125
|
-
def environment_variables(self) -> Mapping[str, str]:
|
|
131
|
+
def environment_variables(self) -> Mapping[str, _builtins.str]:
|
|
126
132
|
return pulumi.get(self, "environment_variables")
|
|
127
133
|
|
|
128
|
-
@property
|
|
134
|
+
@_builtins.property
|
|
129
135
|
@pulumi.getter(name="functionId")
|
|
130
|
-
def function_id(self) -> Optional[str]:
|
|
136
|
+
def function_id(self) -> Optional[_builtins.str]:
|
|
131
137
|
return pulumi.get(self, "function_id")
|
|
132
138
|
|
|
133
|
-
@property
|
|
139
|
+
@_builtins.property
|
|
134
140
|
@pulumi.getter
|
|
135
|
-
def handler(self) -> str:
|
|
141
|
+
def handler(self) -> _builtins.str:
|
|
136
142
|
return pulumi.get(self, "handler")
|
|
137
143
|
|
|
138
|
-
@property
|
|
144
|
+
@_builtins.property
|
|
139
145
|
@pulumi.getter(name="httpOption")
|
|
140
|
-
def http_option(self) -> str:
|
|
146
|
+
def http_option(self) -> _builtins.str:
|
|
141
147
|
return pulumi.get(self, "http_option")
|
|
142
148
|
|
|
143
|
-
@property
|
|
149
|
+
@_builtins.property
|
|
144
150
|
@pulumi.getter
|
|
145
|
-
def id(self) -> str:
|
|
151
|
+
def id(self) -> _builtins.str:
|
|
146
152
|
"""
|
|
147
153
|
The provider-assigned unique ID for this managed resource.
|
|
148
154
|
"""
|
|
149
155
|
return pulumi.get(self, "id")
|
|
150
156
|
|
|
151
|
-
@property
|
|
157
|
+
@_builtins.property
|
|
152
158
|
@pulumi.getter(name="maxScale")
|
|
153
|
-
def max_scale(self) -> int:
|
|
159
|
+
def max_scale(self) -> _builtins.int:
|
|
154
160
|
return pulumi.get(self, "max_scale")
|
|
155
161
|
|
|
156
|
-
@property
|
|
162
|
+
@_builtins.property
|
|
157
163
|
@pulumi.getter(name="memoryLimit")
|
|
158
|
-
def memory_limit(self) -> int:
|
|
164
|
+
def memory_limit(self) -> _builtins.int:
|
|
159
165
|
return pulumi.get(self, "memory_limit")
|
|
160
166
|
|
|
161
|
-
@property
|
|
167
|
+
@_builtins.property
|
|
162
168
|
@pulumi.getter(name="minScale")
|
|
163
|
-
def min_scale(self) -> int:
|
|
169
|
+
def min_scale(self) -> _builtins.int:
|
|
164
170
|
return pulumi.get(self, "min_scale")
|
|
165
171
|
|
|
166
|
-
@property
|
|
172
|
+
@_builtins.property
|
|
167
173
|
@pulumi.getter
|
|
168
|
-
def name(self) -> Optional[str]:
|
|
174
|
+
def name(self) -> Optional[_builtins.str]:
|
|
169
175
|
return pulumi.get(self, "name")
|
|
170
176
|
|
|
171
|
-
@property
|
|
177
|
+
@_builtins.property
|
|
172
178
|
@pulumi.getter(name="namespaceId")
|
|
173
|
-
def namespace_id(self) -> str:
|
|
179
|
+
def namespace_id(self) -> _builtins.str:
|
|
174
180
|
return pulumi.get(self, "namespace_id")
|
|
175
181
|
|
|
176
|
-
@property
|
|
182
|
+
@_builtins.property
|
|
177
183
|
@pulumi.getter(name="organizationId")
|
|
178
|
-
def organization_id(self) -> str:
|
|
184
|
+
def organization_id(self) -> _builtins.str:
|
|
179
185
|
return pulumi.get(self, "organization_id")
|
|
180
186
|
|
|
181
|
-
@property
|
|
187
|
+
@_builtins.property
|
|
182
188
|
@pulumi.getter
|
|
183
|
-
def privacy(self) -> str:
|
|
189
|
+
def privacy(self) -> _builtins.str:
|
|
184
190
|
return pulumi.get(self, "privacy")
|
|
185
191
|
|
|
186
|
-
@property
|
|
192
|
+
@_builtins.property
|
|
193
|
+
@pulumi.getter(name="privateNetworkId")
|
|
194
|
+
def private_network_id(self) -> _builtins.str:
|
|
195
|
+
return pulumi.get(self, "private_network_id")
|
|
196
|
+
|
|
197
|
+
@_builtins.property
|
|
187
198
|
@pulumi.getter(name="projectId")
|
|
188
|
-
def project_id(self) -> Optional[str]:
|
|
199
|
+
def project_id(self) -> Optional[_builtins.str]:
|
|
189
200
|
return pulumi.get(self, "project_id")
|
|
190
201
|
|
|
191
|
-
@property
|
|
202
|
+
@_builtins.property
|
|
192
203
|
@pulumi.getter
|
|
193
|
-
def region(self) -> Optional[str]:
|
|
204
|
+
def region(self) -> Optional[_builtins.str]:
|
|
194
205
|
return pulumi.get(self, "region")
|
|
195
206
|
|
|
196
|
-
@property
|
|
207
|
+
@_builtins.property
|
|
197
208
|
@pulumi.getter
|
|
198
|
-
def runtime(self) -> str:
|
|
209
|
+
def runtime(self) -> _builtins.str:
|
|
199
210
|
return pulumi.get(self, "runtime")
|
|
200
211
|
|
|
201
|
-
@property
|
|
212
|
+
@_builtins.property
|
|
202
213
|
@pulumi.getter
|
|
203
|
-
def sandbox(self) -> str:
|
|
214
|
+
def sandbox(self) -> _builtins.str:
|
|
204
215
|
return pulumi.get(self, "sandbox")
|
|
205
216
|
|
|
206
|
-
@property
|
|
217
|
+
@_builtins.property
|
|
207
218
|
@pulumi.getter(name="secretEnvironmentVariables")
|
|
208
|
-
def secret_environment_variables(self) -> Mapping[str, str]:
|
|
219
|
+
def secret_environment_variables(self) -> Mapping[str, _builtins.str]:
|
|
209
220
|
return pulumi.get(self, "secret_environment_variables")
|
|
210
221
|
|
|
211
|
-
@property
|
|
222
|
+
@_builtins.property
|
|
223
|
+
@pulumi.getter
|
|
224
|
+
def tags(self) -> Sequence[_builtins.str]:
|
|
225
|
+
return pulumi.get(self, "tags")
|
|
226
|
+
|
|
227
|
+
@_builtins.property
|
|
212
228
|
@pulumi.getter
|
|
213
|
-
def timeout(self) -> int:
|
|
229
|
+
def timeout(self) -> _builtins.int:
|
|
214
230
|
return pulumi.get(self, "timeout")
|
|
215
231
|
|
|
216
|
-
@property
|
|
232
|
+
@_builtins.property
|
|
217
233
|
@pulumi.getter(name="zipFile")
|
|
218
|
-
def zip_file(self) -> str:
|
|
234
|
+
def zip_file(self) -> _builtins.str:
|
|
219
235
|
return pulumi.get(self, "zip_file")
|
|
220
236
|
|
|
221
|
-
@property
|
|
237
|
+
@_builtins.property
|
|
222
238
|
@pulumi.getter(name="zipHash")
|
|
223
|
-
def zip_hash(self) -> str:
|
|
239
|
+
def zip_hash(self) -> _builtins.str:
|
|
224
240
|
return pulumi.get(self, "zip_hash")
|
|
225
241
|
|
|
226
242
|
|
|
@@ -246,21 +262,23 @@ class AwaitableGetFunctionResult(GetFunctionResult):
|
|
|
246
262
|
namespace_id=self.namespace_id,
|
|
247
263
|
organization_id=self.organization_id,
|
|
248
264
|
privacy=self.privacy,
|
|
265
|
+
private_network_id=self.private_network_id,
|
|
249
266
|
project_id=self.project_id,
|
|
250
267
|
region=self.region,
|
|
251
268
|
runtime=self.runtime,
|
|
252
269
|
sandbox=self.sandbox,
|
|
253
270
|
secret_environment_variables=self.secret_environment_variables,
|
|
271
|
+
tags=self.tags,
|
|
254
272
|
timeout=self.timeout,
|
|
255
273
|
zip_file=self.zip_file,
|
|
256
274
|
zip_hash=self.zip_hash)
|
|
257
275
|
|
|
258
276
|
|
|
259
|
-
def get_function(function_id: Optional[str] = None,
|
|
260
|
-
name: Optional[str] = None,
|
|
261
|
-
namespace_id: Optional[str] = None,
|
|
262
|
-
project_id: Optional[str] = None,
|
|
263
|
-
region: Optional[str] = None,
|
|
277
|
+
def get_function(function_id: Optional[_builtins.str] = None,
|
|
278
|
+
name: Optional[_builtins.str] = None,
|
|
279
|
+
namespace_id: Optional[_builtins.str] = None,
|
|
280
|
+
project_id: Optional[_builtins.str] = None,
|
|
281
|
+
region: Optional[_builtins.str] = None,
|
|
264
282
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFunctionResult:
|
|
265
283
|
"""
|
|
266
284
|
The `functions.Function` data source is used to retrieve information about a Serverless Function.
|
|
@@ -270,11 +288,11 @@ def get_function(function_id: Optional[str] = None,
|
|
|
270
288
|
For more information on the limitations of Serverless Functions, refer to the [dedicated documentation](https://www.scaleway.com/en/docs/compute/functions/reference-content/functions-limitations/).
|
|
271
289
|
|
|
272
290
|
|
|
273
|
-
:param str function_id: The unique identifier of the function. Only one of `name` and `function_id` should be specified.
|
|
274
|
-
:param str name: The name of the function. Only one of `name` and `namespace_id` should be specified.
|
|
275
|
-
:param str namespace_id: The namespace ID associated with this function.
|
|
276
|
-
:param str project_id: The unique identifier of the project with which the function is associated.
|
|
277
|
-
:param str region: `region`) The region in which the container exists.
|
|
291
|
+
:param _builtins.str function_id: The unique identifier of the function. Only one of `name` and `function_id` should be specified.
|
|
292
|
+
:param _builtins.str name: The name of the function. Only one of `name` and `namespace_id` should be specified.
|
|
293
|
+
:param _builtins.str namespace_id: The namespace ID associated with this function.
|
|
294
|
+
:param _builtins.str project_id: The unique identifier of the project with which the function is associated.
|
|
295
|
+
:param _builtins.str region: `region`) The region in which the container exists.
|
|
278
296
|
"""
|
|
279
297
|
__args__ = dict()
|
|
280
298
|
__args__['functionId'] = function_id
|
|
@@ -302,19 +320,21 @@ def get_function(function_id: Optional[str] = None,
|
|
|
302
320
|
namespace_id=pulumi.get(__ret__, 'namespace_id'),
|
|
303
321
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
304
322
|
privacy=pulumi.get(__ret__, 'privacy'),
|
|
323
|
+
private_network_id=pulumi.get(__ret__, 'private_network_id'),
|
|
305
324
|
project_id=pulumi.get(__ret__, 'project_id'),
|
|
306
325
|
region=pulumi.get(__ret__, 'region'),
|
|
307
326
|
runtime=pulumi.get(__ret__, 'runtime'),
|
|
308
327
|
sandbox=pulumi.get(__ret__, 'sandbox'),
|
|
309
328
|
secret_environment_variables=pulumi.get(__ret__, 'secret_environment_variables'),
|
|
329
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
310
330
|
timeout=pulumi.get(__ret__, 'timeout'),
|
|
311
331
|
zip_file=pulumi.get(__ret__, 'zip_file'),
|
|
312
332
|
zip_hash=pulumi.get(__ret__, 'zip_hash'))
|
|
313
|
-
def get_function_output(function_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
314
|
-
name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
315
|
-
namespace_id: Optional[pulumi.Input[str]] = None,
|
|
316
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
317
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
333
|
+
def get_function_output(function_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
334
|
+
name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
335
|
+
namespace_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
336
|
+
project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
337
|
+
region: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
318
338
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFunctionResult]:
|
|
319
339
|
"""
|
|
320
340
|
The `functions.Function` data source is used to retrieve information about a Serverless Function.
|
|
@@ -324,11 +344,11 @@ def get_function_output(function_id: Optional[pulumi.Input[Optional[str]]] = Non
|
|
|
324
344
|
For more information on the limitations of Serverless Functions, refer to the [dedicated documentation](https://www.scaleway.com/en/docs/compute/functions/reference-content/functions-limitations/).
|
|
325
345
|
|
|
326
346
|
|
|
327
|
-
:param str function_id: The unique identifier of the function. Only one of `name` and `function_id` should be specified.
|
|
328
|
-
:param str name: The name of the function. Only one of `name` and `namespace_id` should be specified.
|
|
329
|
-
:param str namespace_id: The namespace ID associated with this function.
|
|
330
|
-
:param str project_id: The unique identifier of the project with which the function is associated.
|
|
331
|
-
:param str region: `region`) The region in which the container exists.
|
|
347
|
+
:param _builtins.str function_id: The unique identifier of the function. Only one of `name` and `function_id` should be specified.
|
|
348
|
+
:param _builtins.str name: The name of the function. Only one of `name` and `namespace_id` should be specified.
|
|
349
|
+
:param _builtins.str namespace_id: The namespace ID associated with this function.
|
|
350
|
+
:param _builtins.str project_id: The unique identifier of the project with which the function is associated.
|
|
351
|
+
:param _builtins.str region: `region`) The region in which the container exists.
|
|
332
352
|
"""
|
|
333
353
|
__args__ = dict()
|
|
334
354
|
__args__['functionId'] = function_id
|
|
@@ -355,11 +375,13 @@ def get_function_output(function_id: Optional[pulumi.Input[Optional[str]]] = Non
|
|
|
355
375
|
namespace_id=pulumi.get(__response__, 'namespace_id'),
|
|
356
376
|
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
357
377
|
privacy=pulumi.get(__response__, 'privacy'),
|
|
378
|
+
private_network_id=pulumi.get(__response__, 'private_network_id'),
|
|
358
379
|
project_id=pulumi.get(__response__, 'project_id'),
|
|
359
380
|
region=pulumi.get(__response__, 'region'),
|
|
360
381
|
runtime=pulumi.get(__response__, 'runtime'),
|
|
361
382
|
sandbox=pulumi.get(__response__, 'sandbox'),
|
|
362
383
|
secret_environment_variables=pulumi.get(__response__, 'secret_environment_variables'),
|
|
384
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
363
385
|
timeout=pulumi.get(__response__, 'timeout'),
|
|
364
386
|
zip_file=pulumi.get(__response__, 'zip_file'),
|
|
365
387
|
zip_hash=pulumi.get(__response__, 'zip_hash')))
|
|
@@ -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
|
|
@@ -26,7 +26,10 @@ class GetNamespaceResult:
|
|
|
26
26
|
"""
|
|
27
27
|
A collection of values returned by getNamespace.
|
|
28
28
|
"""
|
|
29
|
-
def __init__(__self__, description=None, environment_variables=None, id=None, name=None, namespace_id=None, organization_id=None, project_id=None, region=None, registry_endpoint=None, registry_namespace_id=None, secret_environment_variables=None, tags=None):
|
|
29
|
+
def __init__(__self__, activate_vpc_integration=None, description=None, environment_variables=None, id=None, name=None, namespace_id=None, organization_id=None, project_id=None, region=None, registry_endpoint=None, registry_namespace_id=None, secret_environment_variables=None, tags=None):
|
|
30
|
+
if activate_vpc_integration and not isinstance(activate_vpc_integration, bool):
|
|
31
|
+
raise TypeError("Expected argument 'activate_vpc_integration' to be a bool")
|
|
32
|
+
pulumi.set(__self__, "activate_vpc_integration", activate_vpc_integration)
|
|
30
33
|
if description and not isinstance(description, str):
|
|
31
34
|
raise TypeError("Expected argument 'description' to be a str")
|
|
32
35
|
pulumi.set(__self__, "description", description)
|
|
@@ -64,82 +67,87 @@ class GetNamespaceResult:
|
|
|
64
67
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
65
68
|
pulumi.set(__self__, "tags", tags)
|
|
66
69
|
|
|
67
|
-
@property
|
|
70
|
+
@_builtins.property
|
|
71
|
+
@pulumi.getter(name="activateVpcIntegration")
|
|
72
|
+
def activate_vpc_integration(self) -> _builtins.bool:
|
|
73
|
+
return pulumi.get(self, "activate_vpc_integration")
|
|
74
|
+
|
|
75
|
+
@_builtins.property
|
|
68
76
|
@pulumi.getter
|
|
69
|
-
def description(self) -> str:
|
|
77
|
+
def description(self) -> _builtins.str:
|
|
70
78
|
"""
|
|
71
79
|
The description of the namespace.
|
|
72
80
|
"""
|
|
73
81
|
return pulumi.get(self, "description")
|
|
74
82
|
|
|
75
|
-
@property
|
|
83
|
+
@_builtins.property
|
|
76
84
|
@pulumi.getter(name="environmentVariables")
|
|
77
|
-
def environment_variables(self) -> Mapping[str, str]:
|
|
85
|
+
def environment_variables(self) -> Mapping[str, _builtins.str]:
|
|
78
86
|
"""
|
|
79
87
|
The environment variables of the namespace.
|
|
80
88
|
"""
|
|
81
89
|
return pulumi.get(self, "environment_variables")
|
|
82
90
|
|
|
83
|
-
@property
|
|
91
|
+
@_builtins.property
|
|
84
92
|
@pulumi.getter
|
|
85
|
-
def id(self) -> str:
|
|
93
|
+
def id(self) -> _builtins.str:
|
|
86
94
|
"""
|
|
87
95
|
The provider-assigned unique ID for this managed resource.
|
|
88
96
|
"""
|
|
89
97
|
return pulumi.get(self, "id")
|
|
90
98
|
|
|
91
|
-
@property
|
|
99
|
+
@_builtins.property
|
|
92
100
|
@pulumi.getter
|
|
93
|
-
def name(self) -> Optional[str]:
|
|
101
|
+
def name(self) -> Optional[_builtins.str]:
|
|
94
102
|
return pulumi.get(self, "name")
|
|
95
103
|
|
|
96
|
-
@property
|
|
104
|
+
@_builtins.property
|
|
97
105
|
@pulumi.getter(name="namespaceId")
|
|
98
|
-
def namespace_id(self) -> Optional[str]:
|
|
106
|
+
def namespace_id(self) -> Optional[_builtins.str]:
|
|
99
107
|
return pulumi.get(self, "namespace_id")
|
|
100
108
|
|
|
101
|
-
@property
|
|
109
|
+
@_builtins.property
|
|
102
110
|
@pulumi.getter(name="organizationId")
|
|
103
|
-
def organization_id(self) -> str:
|
|
111
|
+
def organization_id(self) -> _builtins.str:
|
|
104
112
|
"""
|
|
105
113
|
The unique identifier of the organization with which the namespace is associated.
|
|
106
114
|
"""
|
|
107
115
|
return pulumi.get(self, "organization_id")
|
|
108
116
|
|
|
109
|
-
@property
|
|
117
|
+
@_builtins.property
|
|
110
118
|
@pulumi.getter(name="projectId")
|
|
111
|
-
def project_id(self) -> Optional[str]:
|
|
119
|
+
def project_id(self) -> Optional[_builtins.str]:
|
|
112
120
|
return pulumi.get(self, "project_id")
|
|
113
121
|
|
|
114
|
-
@property
|
|
122
|
+
@_builtins.property
|
|
115
123
|
@pulumi.getter
|
|
116
|
-
def region(self) -> Optional[str]:
|
|
124
|
+
def region(self) -> Optional[_builtins.str]:
|
|
117
125
|
return pulumi.get(self, "region")
|
|
118
126
|
|
|
119
|
-
@property
|
|
127
|
+
@_builtins.property
|
|
120
128
|
@pulumi.getter(name="registryEndpoint")
|
|
121
|
-
def registry_endpoint(self) -> str:
|
|
129
|
+
def registry_endpoint(self) -> _builtins.str:
|
|
122
130
|
"""
|
|
123
131
|
The registry endpoint of the namespace.
|
|
124
132
|
"""
|
|
125
133
|
return pulumi.get(self, "registry_endpoint")
|
|
126
134
|
|
|
127
|
-
@property
|
|
135
|
+
@_builtins.property
|
|
128
136
|
@pulumi.getter(name="registryNamespaceId")
|
|
129
|
-
def registry_namespace_id(self) -> str:
|
|
137
|
+
def registry_namespace_id(self) -> _builtins.str:
|
|
130
138
|
"""
|
|
131
139
|
The unique identifier of the registry namespace of the Serverless Functions namespace.
|
|
132
140
|
"""
|
|
133
141
|
return pulumi.get(self, "registry_namespace_id")
|
|
134
142
|
|
|
135
|
-
@property
|
|
143
|
+
@_builtins.property
|
|
136
144
|
@pulumi.getter(name="secretEnvironmentVariables")
|
|
137
|
-
def secret_environment_variables(self) -> Mapping[str, str]:
|
|
145
|
+
def secret_environment_variables(self) -> Mapping[str, _builtins.str]:
|
|
138
146
|
return pulumi.get(self, "secret_environment_variables")
|
|
139
147
|
|
|
140
|
-
@property
|
|
148
|
+
@_builtins.property
|
|
141
149
|
@pulumi.getter
|
|
142
|
-
def tags(self) -> Sequence[str]:
|
|
150
|
+
def tags(self) -> Sequence[_builtins.str]:
|
|
143
151
|
return pulumi.get(self, "tags")
|
|
144
152
|
|
|
145
153
|
|
|
@@ -149,6 +157,7 @@ class AwaitableGetNamespaceResult(GetNamespaceResult):
|
|
|
149
157
|
if False:
|
|
150
158
|
yield self
|
|
151
159
|
return GetNamespaceResult(
|
|
160
|
+
activate_vpc_integration=self.activate_vpc_integration,
|
|
152
161
|
description=self.description,
|
|
153
162
|
environment_variables=self.environment_variables,
|
|
154
163
|
id=self.id,
|
|
@@ -163,10 +172,10 @@ class AwaitableGetNamespaceResult(GetNamespaceResult):
|
|
|
163
172
|
tags=self.tags)
|
|
164
173
|
|
|
165
174
|
|
|
166
|
-
def get_namespace(name: Optional[str] = None,
|
|
167
|
-
namespace_id: Optional[str] = None,
|
|
168
|
-
project_id: Optional[str] = None,
|
|
169
|
-
region: Optional[str] = None,
|
|
175
|
+
def get_namespace(name: Optional[_builtins.str] = None,
|
|
176
|
+
namespace_id: Optional[_builtins.str] = None,
|
|
177
|
+
project_id: Optional[_builtins.str] = None,
|
|
178
|
+
region: Optional[_builtins.str] = None,
|
|
170
179
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNamespaceResult:
|
|
171
180
|
"""
|
|
172
181
|
The `functions.Namespace` data source is used to retrieve information about a Serverless Functions namespace.
|
|
@@ -174,10 +183,10 @@ def get_namespace(name: Optional[str] = None,
|
|
|
174
183
|
Refer to the Serverless Functions [product documentation](https://www.scaleway.com/en/docs/serverless/functions/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-functions/) for more information.
|
|
175
184
|
|
|
176
185
|
|
|
177
|
-
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
178
|
-
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
179
|
-
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
|
180
|
-
:param str region: `region`) The region in which the namespace exists.
|
|
186
|
+
:param _builtins.str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
187
|
+
:param _builtins.str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
188
|
+
:param _builtins.str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
|
189
|
+
:param _builtins.str region: `region`) The region in which the namespace exists.
|
|
181
190
|
"""
|
|
182
191
|
__args__ = dict()
|
|
183
192
|
__args__['name'] = name
|
|
@@ -188,6 +197,7 @@ def get_namespace(name: Optional[str] = None,
|
|
|
188
197
|
__ret__ = pulumi.runtime.invoke('scaleway:functions/getNamespace:getNamespace', __args__, opts=opts, typ=GetNamespaceResult).value
|
|
189
198
|
|
|
190
199
|
return AwaitableGetNamespaceResult(
|
|
200
|
+
activate_vpc_integration=pulumi.get(__ret__, 'activate_vpc_integration'),
|
|
191
201
|
description=pulumi.get(__ret__, 'description'),
|
|
192
202
|
environment_variables=pulumi.get(__ret__, 'environment_variables'),
|
|
193
203
|
id=pulumi.get(__ret__, 'id'),
|
|
@@ -200,10 +210,10 @@ def get_namespace(name: Optional[str] = None,
|
|
|
200
210
|
registry_namespace_id=pulumi.get(__ret__, 'registry_namespace_id'),
|
|
201
211
|
secret_environment_variables=pulumi.get(__ret__, 'secret_environment_variables'),
|
|
202
212
|
tags=pulumi.get(__ret__, 'tags'))
|
|
203
|
-
def get_namespace_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
204
|
-
namespace_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
205
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
206
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
213
|
+
def get_namespace_output(name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
214
|
+
namespace_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
215
|
+
project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
216
|
+
region: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
207
217
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNamespaceResult]:
|
|
208
218
|
"""
|
|
209
219
|
The `functions.Namespace` data source is used to retrieve information about a Serverless Functions namespace.
|
|
@@ -211,10 +221,10 @@ def get_namespace_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
211
221
|
Refer to the Serverless Functions [product documentation](https://www.scaleway.com/en/docs/serverless/functions/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-functions/) for more information.
|
|
212
222
|
|
|
213
223
|
|
|
214
|
-
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
215
|
-
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
216
|
-
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
|
217
|
-
:param str region: `region`) The region in which the namespace exists.
|
|
224
|
+
:param _builtins.str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
225
|
+
:param _builtins.str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
226
|
+
:param _builtins.str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
|
227
|
+
:param _builtins.str region: `region`) The region in which the namespace exists.
|
|
218
228
|
"""
|
|
219
229
|
__args__ = dict()
|
|
220
230
|
__args__['name'] = name
|
|
@@ -224,6 +234,7 @@ def get_namespace_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
224
234
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
225
235
|
__ret__ = pulumi.runtime.invoke_output('scaleway:functions/getNamespace:getNamespace', __args__, opts=opts, typ=GetNamespaceResult)
|
|
226
236
|
return __ret__.apply(lambda __response__: GetNamespaceResult(
|
|
237
|
+
activate_vpc_integration=pulumi.get(__response__, 'activate_vpc_integration'),
|
|
227
238
|
description=pulumi.get(__response__, 'description'),
|
|
228
239
|
environment_variables=pulumi.get(__response__, 'environment_variables'),
|
|
229
240
|
id=pulumi.get(__response__, 'id'),
|