pulumiverse-scaleway 1.30.0a1750140900__py3-none-any.whl → 1.31.0__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 +38 -1
- pulumiverse_scaleway/_inputs.py +2331 -2160
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +2 -1
- pulumiverse_scaleway/account/get_availability_zones.py +9 -8
- pulumiverse_scaleway/account/get_project.py +21 -20
- pulumiverse_scaleway/account/get_projects.py +28 -21
- pulumiverse_scaleway/account/get_ssh_key.py +24 -23
- pulumiverse_scaleway/account/outputs.py +20 -19
- pulumiverse_scaleway/account/project.py +59 -57
- pulumiverse_scaleway/account/ssh_key.py +87 -85
- pulumiverse_scaleway/account_project.py +59 -57
- pulumiverse_scaleway/account_ssh_key.py +87 -85
- pulumiverse_scaleway/apple_silicon_server.py +251 -155
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
- pulumiverse_scaleway/applesilicon/outputs.py +54 -21
- pulumiverse_scaleway/applesilicon/server.py +251 -155
- pulumiverse_scaleway/autoscaling/__init__.py +13 -0
- pulumiverse_scaleway/autoscaling/_inputs.py +559 -0
- pulumiverse_scaleway/autoscaling/instance_group.py +808 -0
- pulumiverse_scaleway/autoscaling/instance_policy.py +635 -0
- pulumiverse_scaleway/autoscaling/instance_template.py +879 -0
- pulumiverse_scaleway/autoscaling/outputs.py +439 -0
- pulumiverse_scaleway/baremetal_server.py +262 -260
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +10 -9
- pulumiverse_scaleway/billing/get_invoices.py +19 -18
- pulumiverse_scaleway/billing/outputs.py +73 -72
- pulumiverse_scaleway/block/__init__.py +2 -1
- pulumiverse_scaleway/block/_inputs.py +12 -11
- pulumiverse_scaleway/block/get_snapshot.py +29 -28
- pulumiverse_scaleway/block/get_volume.py +28 -27
- pulumiverse_scaleway/block/outputs.py +14 -13
- pulumiverse_scaleway/block/snapshot.py +73 -71
- pulumiverse_scaleway/block/volume.py +115 -113
- pulumiverse_scaleway/block_snapshot.py +73 -71
- pulumiverse_scaleway/block_volume.py +115 -113
- pulumiverse_scaleway/cockpit.py +38 -36
- pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
- pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
- pulumiverse_scaleway/cockpit_source.py +115 -113
- pulumiverse_scaleway/cockpit_token.py +66 -64
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -1
- pulumiverse_scaleway/config/vars.py +2 -1
- pulumiverse_scaleway/container.py +573 -343
- pulumiverse_scaleway/container_cron.py +80 -78
- pulumiverse_scaleway/container_domain.py +52 -50
- pulumiverse_scaleway/container_namespace.py +211 -140
- pulumiverse_scaleway/container_token.py +80 -78
- pulumiverse_scaleway/container_trigger.py +59 -57
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +72 -71
- pulumiverse_scaleway/containers/container.py +573 -343
- pulumiverse_scaleway/containers/cron.py +80 -78
- pulumiverse_scaleway/containers/domain.py +52 -50
- pulumiverse_scaleway/containers/get_container.py +87 -42
- pulumiverse_scaleway/containers/get_namespace.py +43 -31
- pulumiverse_scaleway/containers/namespace.py +211 -140
- pulumiverse_scaleway/containers/outputs.py +62 -61
- pulumiverse_scaleway/containers/token.py +80 -78
- pulumiverse_scaleway/containers/trigger.py +59 -57
- pulumiverse_scaleway/database.py +66 -64
- pulumiverse_scaleway/database_acl.py +31 -29
- pulumiverse_scaleway/database_backup.py +101 -99
- pulumiverse_scaleway/database_instance.py +297 -295
- pulumiverse_scaleway/database_privilege.py +73 -71
- pulumiverse_scaleway/database_read_replica.py +45 -43
- pulumiverse_scaleway/database_user.py +73 -71
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +191 -190
- pulumiverse_scaleway/databases/acl.py +31 -29
- pulumiverse_scaleway/databases/database.py +66 -64
- pulumiverse_scaleway/databases/database_backup.py +101 -99
- pulumiverse_scaleway/databases/get_acl.py +13 -12
- pulumiverse_scaleway/databases/get_database.py +19 -18
- pulumiverse_scaleway/databases/get_database_backup.py +34 -33
- pulumiverse_scaleway/databases/get_instance.py +43 -42
- pulumiverse_scaleway/databases/get_privilege.py +24 -23
- pulumiverse_scaleway/databases/instance.py +297 -295
- pulumiverse_scaleway/databases/outputs.py +188 -187
- pulumiverse_scaleway/databases/privilege.py +73 -71
- pulumiverse_scaleway/databases/read_replica.py +45 -43
- pulumiverse_scaleway/databases/serverless_database.py +80 -78
- pulumiverse_scaleway/databases/snapshot.py +101 -99
- pulumiverse_scaleway/databases/user.py +73 -71
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +531 -530
- pulumiverse_scaleway/domain/get_record.py +38 -37
- pulumiverse_scaleway/domain/get_zone.py +24 -23
- pulumiverse_scaleway/domain/outputs.py +358 -357
- pulumiverse_scaleway/domain/record.py +129 -127
- pulumiverse_scaleway/domain/registration.py +94 -92
- pulumiverse_scaleway/domain/zone.py +87 -85
- pulumiverse_scaleway/domain_record.py +129 -127
- pulumiverse_scaleway/domain_zone.py +87 -85
- pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
- pulumiverse_scaleway/edge_services_cache_stage.py +162 -113
- pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
- pulumiverse_scaleway/edge_services_head_stage.py +31 -29
- pulumiverse_scaleway/edge_services_pipeline.py +66 -64
- pulumiverse_scaleway/edge_services_plan.py +31 -29
- pulumiverse_scaleway/edge_services_route_stage.py +59 -57
- pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
- pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
- pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
- pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
- pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
- pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
- pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
- pulumiverse_scaleway/elasticmetal/ip.py +139 -137
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
- pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
- pulumiverse_scaleway/elasticmetal/server.py +262 -260
- pulumiverse_scaleway/file_filesystem.py +552 -0
- pulumiverse_scaleway/flexible_ip.py +139 -137
- pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
- pulumiverse_scaleway/function.py +394 -284
- pulumiverse_scaleway/function_cron.py +80 -78
- pulumiverse_scaleway/function_domain.py +52 -50
- pulumiverse_scaleway/function_namespace.py +197 -126
- pulumiverse_scaleway/function_token.py +80 -78
- pulumiverse_scaleway/function_trigger.py +59 -57
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +42 -41
- pulumiverse_scaleway/functions/cron.py +80 -78
- pulumiverse_scaleway/functions/domain.py +52 -50
- pulumiverse_scaleway/functions/function.py +394 -284
- pulumiverse_scaleway/functions/get_function.py +69 -46
- pulumiverse_scaleway/functions/get_namespace.py +42 -30
- pulumiverse_scaleway/functions/namespace.py +197 -126
- pulumiverse_scaleway/functions/outputs.py +26 -25
- pulumiverse_scaleway/functions/token.py +80 -78
- pulumiverse_scaleway/functions/trigger.py +59 -57
- pulumiverse_scaleway/get_account_project.py +21 -20
- pulumiverse_scaleway/get_account_ssh_key.py +24 -23
- pulumiverse_scaleway/get_availability_zones.py +9 -8
- pulumiverse_scaleway/get_baremetal_offer.py +29 -28
- pulumiverse_scaleway/get_baremetal_option.py +19 -18
- pulumiverse_scaleway/get_baremetal_os.py +23 -22
- pulumiverse_scaleway/get_baremetal_server.py +39 -38
- pulumiverse_scaleway/get_billing_consumptions.py +10 -9
- pulumiverse_scaleway/get_billing_invoices.py +19 -18
- pulumiverse_scaleway/get_block_snapshot.py +29 -28
- pulumiverse_scaleway/get_block_volume.py +28 -27
- pulumiverse_scaleway/get_cockpit.py +10 -9
- pulumiverse_scaleway/get_cockpit_source.py +77 -33
- pulumiverse_scaleway/get_config.py +13 -12
- pulumiverse_scaleway/get_container.py +87 -42
- pulumiverse_scaleway/get_container_namespace.py +43 -31
- pulumiverse_scaleway/get_database.py +19 -18
- pulumiverse_scaleway/get_database_acl.py +13 -12
- pulumiverse_scaleway/get_database_backup.py +34 -33
- pulumiverse_scaleway/get_database_instance.py +43 -42
- pulumiverse_scaleway/get_database_privilege.py +24 -23
- pulumiverse_scaleway/get_domain_record.py +38 -37
- pulumiverse_scaleway/get_domain_zone.py +24 -23
- pulumiverse_scaleway/get_flexible_ip.py +56 -39
- pulumiverse_scaleway/get_flexible_ips.py +24 -23
- pulumiverse_scaleway/get_function.py +69 -46
- pulumiverse_scaleway/get_function_namespace.py +42 -30
- pulumiverse_scaleway/get_iam_api_key.py +17 -16
- pulumiverse_scaleway/get_iam_application.py +23 -22
- pulumiverse_scaleway/get_iam_group.py +25 -24
- pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
- pulumiverse_scaleway/get_iam_user.py +23 -22
- pulumiverse_scaleway/get_instance_image.py +42 -41
- pulumiverse_scaleway/get_instance_ip.py +20 -19
- pulumiverse_scaleway/get_instance_placement_group.py +28 -27
- pulumiverse_scaleway/get_instance_private_nic.py +31 -30
- pulumiverse_scaleway/get_instance_security_group.py +31 -30
- pulumiverse_scaleway/get_instance_server.py +59 -47
- pulumiverse_scaleway/get_instance_servers.py +24 -23
- pulumiverse_scaleway/get_instance_snapshot.py +29 -28
- pulumiverse_scaleway/get_instance_volume.py +30 -29
- pulumiverse_scaleway/get_iot_device.py +31 -30
- pulumiverse_scaleway/get_iot_hub.py +39 -38
- pulumiverse_scaleway/get_ipam_ip.py +51 -50
- pulumiverse_scaleway/get_ipam_ips.py +44 -43
- pulumiverse_scaleway/get_k8s_version.py +16 -15
- pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
- pulumiverse_scaleway/get_kubernetes_node_pool.py +59 -47
- pulumiverse_scaleway/get_lb_acls.py +22 -21
- pulumiverse_scaleway/get_lb_backend.py +43 -42
- pulumiverse_scaleway/get_lb_backends.py +22 -21
- pulumiverse_scaleway/get_lb_frontend.py +26 -25
- pulumiverse_scaleway/get_lb_frontends.py +22 -21
- pulumiverse_scaleway/get_lb_ips.py +29 -28
- pulumiverse_scaleway/get_lb_route.py +16 -15
- pulumiverse_scaleway/get_lb_routes.py +17 -16
- pulumiverse_scaleway/get_lbs.py +24 -23
- pulumiverse_scaleway/get_loadbalancer.py +36 -35
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
- pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
- pulumiverse_scaleway/get_marketplace_image.py +23 -22
- pulumiverse_scaleway/get_mnq_sns.py +14 -13
- pulumiverse_scaleway/get_mnq_sqs.py +14 -13
- pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
- pulumiverse_scaleway/get_object_bucket.py +22 -21
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
- pulumiverse_scaleway/get_redis_cluster.py +34 -33
- pulumiverse_scaleway/get_registry_image.py +37 -36
- pulumiverse_scaleway/get_registry_image_tag.py +33 -32
- pulumiverse_scaleway/get_registry_namespace.py +27 -26
- pulumiverse_scaleway/get_secret.py +41 -40
- pulumiverse_scaleway/get_secret_version.py +34 -33
- pulumiverse_scaleway/get_tem_domain.py +43 -42
- pulumiverse_scaleway/get_vpc.py +47 -35
- pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
- pulumiverse_scaleway/get_vpc_private_network.py +44 -32
- pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
- pulumiverse_scaleway/get_vpc_routes.py +38 -37
- pulumiverse_scaleway/get_vpcs.py +24 -23
- pulumiverse_scaleway/get_web_host_offer.py +25 -24
- pulumiverse_scaleway/get_webhosting.py +36 -35
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +61 -60
- pulumiverse_scaleway/hosting/get_hosting.py +36 -35
- pulumiverse_scaleway/hosting/get_offer.py +25 -24
- pulumiverse_scaleway/hosting/hosting.py +164 -162
- pulumiverse_scaleway/hosting/outputs.py +139 -138
- pulumiverse_scaleway/iam/__init__.py +2 -1
- pulumiverse_scaleway/iam/_inputs.py +22 -21
- pulumiverse_scaleway/iam/api_key.py +115 -113
- pulumiverse_scaleway/iam/application.py +80 -78
- pulumiverse_scaleway/iam/get_api_key.py +17 -16
- pulumiverse_scaleway/iam/get_application.py +23 -22
- pulumiverse_scaleway/iam/get_group.py +25 -24
- pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
- pulumiverse_scaleway/iam/get_user.py +23 -22
- pulumiverse_scaleway/iam/group.py +115 -113
- pulumiverse_scaleway/iam/group_membership.py +45 -43
- pulumiverse_scaleway/iam/outputs.py +14 -13
- pulumiverse_scaleway/iam/policy.py +136 -134
- pulumiverse_scaleway/iam/ssh_key.py +87 -85
- pulumiverse_scaleway/iam/user.py +284 -273
- pulumiverse_scaleway/iam_api_key.py +115 -113
- pulumiverse_scaleway/iam_application.py +80 -78
- pulumiverse_scaleway/iam_group.py +115 -113
- pulumiverse_scaleway/iam_group_membership.py +45 -43
- pulumiverse_scaleway/iam_policy.py +136 -134
- pulumiverse_scaleway/iam_ssh_key.py +87 -85
- pulumiverse_scaleway/iam_user.py +284 -273
- pulumiverse_scaleway/inference/__init__.py +2 -1
- pulumiverse_scaleway/inference/_inputs.py +116 -61
- pulumiverse_scaleway/inference/deployment.py +225 -176
- pulumiverse_scaleway/inference/get_model.py +27 -26
- pulumiverse_scaleway/inference/model.py +129 -127
- pulumiverse_scaleway/inference/outputs.py +82 -49
- pulumiverse_scaleway/inference_deployment.py +225 -176
- pulumiverse_scaleway/instance/__init__.py +2 -1
- pulumiverse_scaleway/instance/_inputs.py +296 -295
- pulumiverse_scaleway/instance/get_image.py +42 -41
- pulumiverse_scaleway/instance/get_ip.py +20 -19
- pulumiverse_scaleway/instance/get_placement_group.py +28 -27
- pulumiverse_scaleway/instance/get_private_nic.py +31 -30
- pulumiverse_scaleway/instance/get_security_group.py +31 -30
- pulumiverse_scaleway/instance/get_server.py +59 -47
- pulumiverse_scaleway/instance/get_servers.py +24 -23
- pulumiverse_scaleway/instance/get_snapshot.py +29 -28
- pulumiverse_scaleway/instance/get_volume.py +30 -29
- pulumiverse_scaleway/instance/image.py +150 -148
- pulumiverse_scaleway/instance/ip.py +94 -92
- pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance/outputs.py +349 -348
- pulumiverse_scaleway/instance/placement_group.py +101 -99
- pulumiverse_scaleway/instance/private_nic.py +94 -92
- pulumiverse_scaleway/instance/security_group.py +150 -148
- pulumiverse_scaleway/instance/security_group_rules.py +17 -15
- pulumiverse_scaleway/instance/server.py +393 -330
- pulumiverse_scaleway/instance/snapshot.py +108 -106
- pulumiverse_scaleway/instance/user_data.py +59 -57
- pulumiverse_scaleway/instance/volume.py +129 -127
- pulumiverse_scaleway/instance_image.py +150 -148
- pulumiverse_scaleway/instance_ip.py +94 -92
- pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance_placement_group.py +101 -99
- pulumiverse_scaleway/instance_private_nic.py +94 -92
- pulumiverse_scaleway/instance_security_group.py +150 -148
- pulumiverse_scaleway/instance_security_group_rules.py +17 -15
- pulumiverse_scaleway/instance_server.py +393 -330
- pulumiverse_scaleway/instance_snapshot.py +108 -106
- pulumiverse_scaleway/instance_user_data.py +59 -57
- pulumiverse_scaleway/instance_volume.py +129 -127
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +98 -97
- pulumiverse_scaleway/iot/device.py +122 -120
- pulumiverse_scaleway/iot/get_device.py +31 -30
- pulumiverse_scaleway/iot/get_hub.py +39 -38
- pulumiverse_scaleway/iot/hub.py +206 -204
- pulumiverse_scaleway/iot/network.py +94 -92
- pulumiverse_scaleway/iot/outputs.py +78 -77
- pulumiverse_scaleway/iot/route.py +66 -64
- pulumiverse_scaleway/iot_device.py +122 -120
- pulumiverse_scaleway/iot_hub.py +206 -204
- pulumiverse_scaleway/iot_network.py +94 -92
- pulumiverse_scaleway/iot_route.py +66 -64
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +87 -86
- pulumiverse_scaleway/ipam/get_ip.py +51 -50
- pulumiverse_scaleway/ipam/get_ips.py +44 -43
- pulumiverse_scaleway/ipam/ip.py +94 -92
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/ipam/outputs.py +90 -89
- pulumiverse_scaleway/ipam_ip.py +94 -92
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +38 -37
- pulumiverse_scaleway/job/definition.py +143 -141
- pulumiverse_scaleway/job/outputs.py +24 -23
- pulumiverse_scaleway/job_definition.py +143 -141
- pulumiverse_scaleway/kubernetes/__init__.py +2 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
- pulumiverse_scaleway/kubernetes/acl.py +45 -43
- pulumiverse_scaleway/kubernetes/cluster.py +234 -232
- pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
- pulumiverse_scaleway/kubernetes/get_pool.py +59 -47
- pulumiverse_scaleway/kubernetes/get_version.py +16 -15
- pulumiverse_scaleway/kubernetes/outputs.py +217 -216
- pulumiverse_scaleway/kubernetes/pool.py +351 -288
- pulumiverse_scaleway/kubernetes_cluster.py +234 -232
- pulumiverse_scaleway/kubernetes_node_pool.py +351 -288
- pulumiverse_scaleway/loadbalancer.py +199 -197
- pulumiverse_scaleway/loadbalancer_acl.py +80 -78
- pulumiverse_scaleway/loadbalancer_backend.py +381 -379
- pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
- pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
- pulumiverse_scaleway/loadbalancer_ip.py +101 -99
- pulumiverse_scaleway/loadbalancer_route.py +101 -99
- pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +263 -222
- pulumiverse_scaleway/loadbalancers/acl.py +80 -78
- pulumiverse_scaleway/loadbalancers/backend.py +381 -379
- pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
- pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
- pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
- pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
- pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
- pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
- pulumiverse_scaleway/loadbalancers/ip.py +101 -99
- pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
- pulumiverse_scaleway/loadbalancers/outputs.py +581 -530
- pulumiverse_scaleway/loadbalancers/route.py +101 -99
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +32 -31
- pulumiverse_scaleway/mnq/get_sns.py +14 -13
- pulumiverse_scaleway/mnq/get_sqs.py +14 -13
- pulumiverse_scaleway/mnq/nats_account.py +52 -50
- pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq/outputs.py +20 -19
- pulumiverse_scaleway/mnq/sns.py +38 -36
- pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sns_topic.py +143 -141
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq/sqs.py +38 -36
- pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
- pulumiverse_scaleway/mnq_nats_account.py +52 -50
- pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq_sns.py +38 -36
- pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sns_topic.py +143 -141
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq_sqs.py +38 -36
- pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
- pulumiverse_scaleway/mongo_db_instance.py +199 -197
- pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
- pulumiverse_scaleway/mongodb/__init__.py +2 -1
- pulumiverse_scaleway/mongodb/_inputs.py +53 -52
- pulumiverse_scaleway/mongodb/get_instance.py +35 -34
- pulumiverse_scaleway/mongodb/instance.py +199 -197
- pulumiverse_scaleway/mongodb/outputs.py +64 -63
- pulumiverse_scaleway/mongodb/snapshot.py +101 -99
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +140 -139
- pulumiverse_scaleway/network/acl.py +59 -57
- pulumiverse_scaleway/network/gateway_network.py +143 -141
- pulumiverse_scaleway/network/get_gateway_network.py +28 -27
- pulumiverse_scaleway/network/get_private_network.py +44 -32
- pulumiverse_scaleway/network/get_public_gateway.py +36 -35
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
- pulumiverse_scaleway/network/get_routes.py +38 -37
- pulumiverse_scaleway/network/get_vpc.py +47 -35
- pulumiverse_scaleway/network/get_vpcs.py +24 -23
- pulumiverse_scaleway/network/outputs.py +206 -205
- pulumiverse_scaleway/network/private_network.py +170 -121
- pulumiverse_scaleway/network/public_gateway.py +213 -211
- pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/network/route.py +115 -113
- pulumiverse_scaleway/network/vpc.py +149 -100
- pulumiverse_scaleway/object/__init__.py +2 -1
- pulumiverse_scaleway/object/_inputs.py +157 -134
- pulumiverse_scaleway/object/bucket.py +115 -113
- pulumiverse_scaleway/object/bucket_acl.py +79 -75
- pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object/bucket_policy.py +59 -57
- pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object/get_bucket.py +22 -21
- pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
- pulumiverse_scaleway/object/item.py +232 -183
- pulumiverse_scaleway/object/outputs.py +133 -118
- pulumiverse_scaleway/object_bucket.py +115 -113
- pulumiverse_scaleway/object_bucket_acl.py +79 -75
- pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object_bucket_policy.py +59 -57
- pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object_item.py +232 -183
- pulumiverse_scaleway/observability/__init__.py +2 -1
- pulumiverse_scaleway/observability/_inputs.py +89 -88
- pulumiverse_scaleway/observability/alert_manager.py +52 -50
- pulumiverse_scaleway/observability/cockpit.py +38 -36
- pulumiverse_scaleway/observability/get_instance.py +10 -9
- pulumiverse_scaleway/observability/get_source.py +77 -33
- pulumiverse_scaleway/observability/grafana_user.py +59 -57
- pulumiverse_scaleway/observability/outputs.py +77 -76
- pulumiverse_scaleway/observability/source.py +115 -113
- pulumiverse_scaleway/observability/token.py +66 -64
- pulumiverse_scaleway/outputs.py +2870 -2741
- pulumiverse_scaleway/provider.py +87 -65
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +101 -99
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +63 -62
- pulumiverse_scaleway/redis/cluster.py +178 -176
- pulumiverse_scaleway/redis/get_cluster.py +34 -33
- pulumiverse_scaleway/redis/outputs.py +74 -73
- pulumiverse_scaleway/redis_cluster.py +178 -176
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +37 -36
- pulumiverse_scaleway/registry/get_image_tag.py +33 -32
- pulumiverse_scaleway/registry/get_namespace.py +27 -26
- pulumiverse_scaleway/registry/namespace.py +87 -85
- pulumiverse_scaleway/registry_namespace.py +87 -85
- pulumiverse_scaleway/sdb_database.py +80 -78
- pulumiverse_scaleway/secret.py +143 -141
- pulumiverse_scaleway/secret_version.py +87 -85
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +53 -52
- pulumiverse_scaleway/secrets/get_secret.py +41 -40
- pulumiverse_scaleway/secrets/get_version.py +34 -33
- pulumiverse_scaleway/secrets/outputs.py +64 -63
- pulumiverse_scaleway/secrets/secret.py +143 -141
- pulumiverse_scaleway/secrets/version.py +87 -85
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +28 -27
- pulumiverse_scaleway/tem/blocked_list.py +87 -85
- pulumiverse_scaleway/tem/domain.py +199 -197
- pulumiverse_scaleway/tem/domain_validation.py +52 -50
- pulumiverse_scaleway/tem/get_domain.py +43 -42
- pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
- pulumiverse_scaleway/tem/outputs.py +34 -33
- pulumiverse_scaleway/tem/webhook.py +108 -106
- pulumiverse_scaleway/tem_domain.py +199 -197
- pulumiverse_scaleway/tem_domain_validation.py +52 -50
- pulumiverse_scaleway/tem_webhook.py +108 -106
- pulumiverse_scaleway/vpc.py +149 -100
- pulumiverse_scaleway/vpc_gateway_network.py +143 -141
- pulumiverse_scaleway/vpc_private_network.py +170 -121
- pulumiverse_scaleway/vpc_public_gateway.py +213 -211
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/vpc_route.py +115 -113
- pulumiverse_scaleway/webhosting.py +164 -162
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.31.0.dist-info/RECORD +496 -0
- pulumiverse_scaleway/elasticmetal/get_easy_partitioning.py +0 -177
- pulumiverse_scaleway/get_cockpit_plan.py +0 -94
- pulumiverse_scaleway/observability/get_plan.py +0 -90
- pulumiverse_scaleway-1.30.0a1750140900.dist-info/RECORD +0 -492
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/top_level.txt +0 -0
@@ -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
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -54,7 +55,7 @@ class GetFlexibleIpsResult:
|
|
54
55
|
|
55
56
|
@property
|
56
57
|
@pulumi.getter
|
57
|
-
def id(self) -> str:
|
58
|
+
def id(self) -> builtins.str:
|
58
59
|
"""
|
59
60
|
The provider-assigned unique ID for this managed resource.
|
60
61
|
"""
|
@@ -70,7 +71,7 @@ class GetFlexibleIpsResult:
|
|
70
71
|
|
71
72
|
@property
|
72
73
|
@pulumi.getter(name="organizationId")
|
73
|
-
def organization_id(self) -> str:
|
74
|
+
def organization_id(self) -> builtins.str:
|
74
75
|
"""
|
75
76
|
(Defaults to provider `organization_id`) The ID of the organization the IP is in.
|
76
77
|
"""
|
@@ -78,7 +79,7 @@ class GetFlexibleIpsResult:
|
|
78
79
|
|
79
80
|
@property
|
80
81
|
@pulumi.getter(name="projectId")
|
81
|
-
def project_id(self) -> str:
|
82
|
+
def project_id(self) -> builtins.str:
|
82
83
|
"""
|
83
84
|
(Defaults to provider `project_id`) The ID of the project the IP is in.
|
84
85
|
"""
|
@@ -86,12 +87,12 @@ class GetFlexibleIpsResult:
|
|
86
87
|
|
87
88
|
@property
|
88
89
|
@pulumi.getter(name="serverIds")
|
89
|
-
def server_ids(self) -> Optional[Sequence[str]]:
|
90
|
+
def server_ids(self) -> Optional[Sequence[builtins.str]]:
|
90
91
|
return pulumi.get(self, "server_ids")
|
91
92
|
|
92
93
|
@property
|
93
94
|
@pulumi.getter
|
94
|
-
def tags(self) -> Optional[Sequence[str]]:
|
95
|
+
def tags(self) -> Optional[Sequence[builtins.str]]:
|
95
96
|
"""
|
96
97
|
The list of tags which are attached to the flexible IP.
|
97
98
|
"""
|
@@ -99,7 +100,7 @@ class GetFlexibleIpsResult:
|
|
99
100
|
|
100
101
|
@property
|
101
102
|
@pulumi.getter
|
102
|
-
def zone(self) -> str:
|
103
|
+
def zone(self) -> builtins.str:
|
103
104
|
"""
|
104
105
|
(Defaults to provider `zone`) The zone in which the MAC address exist.
|
105
106
|
"""
|
@@ -121,10 +122,10 @@ class AwaitableGetFlexibleIpsResult(GetFlexibleIpsResult):
|
|
121
122
|
zone=self.zone)
|
122
123
|
|
123
124
|
|
124
|
-
def get_flexible_ips(project_id: Optional[str] = None,
|
125
|
-
server_ids: Optional[Sequence[str]] = None,
|
126
|
-
tags: Optional[Sequence[str]] = None,
|
127
|
-
zone: Optional[str] = None,
|
125
|
+
def get_flexible_ips(project_id: Optional[builtins.str] = None,
|
126
|
+
server_ids: Optional[Sequence[builtins.str]] = None,
|
127
|
+
tags: Optional[Sequence[builtins.str]] = None,
|
128
|
+
zone: Optional[builtins.str] = None,
|
128
129
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFlexibleIpsResult:
|
129
130
|
"""
|
130
131
|
Gets information about multiple Flexible IPs.
|
@@ -160,10 +161,10 @@ def get_flexible_ips(project_id: Optional[str] = None,
|
|
160
161
|
```
|
161
162
|
|
162
163
|
|
163
|
-
:param str project_id: (Defaults to provider `project_id`) The ID of the project the IP is in.
|
164
|
-
:param Sequence[str] server_ids: List of server IDs used as filter. IPs with these exact server IDs are listed.
|
165
|
-
:param Sequence[str] tags: List of tags used as filter. IPs with these exact tags are listed.
|
166
|
-
:param str zone: `zone`) The zone in which IPs exist.
|
164
|
+
:param builtins.str project_id: (Defaults to provider `project_id`) The ID of the project the IP is in.
|
165
|
+
:param Sequence[builtins.str] server_ids: List of server IDs used as filter. IPs with these exact server IDs are listed.
|
166
|
+
:param Sequence[builtins.str] tags: List of tags used as filter. IPs with these exact tags are listed.
|
167
|
+
:param builtins.str zone: `zone`) The zone in which IPs exist.
|
167
168
|
"""
|
168
169
|
pulumi.log.warn("""get_flexible_ips is deprecated: scaleway.index/getflexibleips.getFlexibleIps has been deprecated in favor of scaleway.elasticmetal/getips.getIps""")
|
169
170
|
__args__ = dict()
|
@@ -182,10 +183,10 @@ def get_flexible_ips(project_id: Optional[str] = None,
|
|
182
183
|
server_ids=pulumi.get(__ret__, 'server_ids'),
|
183
184
|
tags=pulumi.get(__ret__, 'tags'),
|
184
185
|
zone=pulumi.get(__ret__, 'zone'))
|
185
|
-
def get_flexible_ips_output(project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
186
|
-
server_ids: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
187
|
-
tags: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
188
|
-
zone: Optional[pulumi.Input[Optional[str]]] = None,
|
186
|
+
def get_flexible_ips_output(project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
187
|
+
server_ids: Optional[pulumi.Input[Optional[Sequence[builtins.str]]]] = None,
|
188
|
+
tags: Optional[pulumi.Input[Optional[Sequence[builtins.str]]]] = None,
|
189
|
+
zone: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
189
190
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFlexibleIpsResult]:
|
190
191
|
"""
|
191
192
|
Gets information about multiple Flexible IPs.
|
@@ -221,10 +222,10 @@ def get_flexible_ips_output(project_id: Optional[pulumi.Input[Optional[str]]] =
|
|
221
222
|
```
|
222
223
|
|
223
224
|
|
224
|
-
:param str project_id: (Defaults to provider `project_id`) The ID of the project the IP is in.
|
225
|
-
:param Sequence[str] server_ids: List of server IDs used as filter. IPs with these exact server IDs are listed.
|
226
|
-
:param Sequence[str] tags: List of tags used as filter. IPs with these exact tags are listed.
|
227
|
-
:param str zone: `zone`) The zone in which IPs exist.
|
225
|
+
:param builtins.str project_id: (Defaults to provider `project_id`) The ID of the project the IP is in.
|
226
|
+
:param Sequence[builtins.str] server_ids: List of server IDs used as filter. IPs with these exact server IDs are listed.
|
227
|
+
:param Sequence[builtins.str] tags: List of tags used as filter. IPs with these exact tags are listed.
|
228
|
+
:param builtins.str zone: `zone`) The zone in which IPs exist.
|
228
229
|
"""
|
229
230
|
pulumi.log.warn("""get_flexible_ips is deprecated: scaleway.index/getflexibleips.getFlexibleIps has been deprecated in favor of scaleway.elasticmetal/getips.getIps""")
|
230
231
|
__args__ = dict()
|
@@ -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
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -28,7 +29,7 @@ class GetFunctionResult:
|
|
28
29
|
"""
|
29
30
|
A collection of values returned by getFunction.
|
30
31
|
"""
|
31
|
-
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):
|
32
|
+
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):
|
32
33
|
if cpu_limit and not isinstance(cpu_limit, int):
|
33
34
|
raise TypeError("Expected argument 'cpu_limit' to be a int")
|
34
35
|
pulumi.set(__self__, "cpu_limit", cpu_limit)
|
@@ -77,6 +78,9 @@ class GetFunctionResult:
|
|
77
78
|
if privacy and not isinstance(privacy, str):
|
78
79
|
raise TypeError("Expected argument 'privacy' to be a str")
|
79
80
|
pulumi.set(__self__, "privacy", privacy)
|
81
|
+
if private_network_id and not isinstance(private_network_id, str):
|
82
|
+
raise TypeError("Expected argument 'private_network_id' to be a str")
|
83
|
+
pulumi.set(__self__, "private_network_id", private_network_id)
|
80
84
|
if project_id and not isinstance(project_id, str):
|
81
85
|
raise TypeError("Expected argument 'project_id' to be a str")
|
82
86
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -92,6 +96,9 @@ class GetFunctionResult:
|
|
92
96
|
if secret_environment_variables and not isinstance(secret_environment_variables, dict):
|
93
97
|
raise TypeError("Expected argument 'secret_environment_variables' to be a dict")
|
94
98
|
pulumi.set(__self__, "secret_environment_variables", secret_environment_variables)
|
99
|
+
if tags and not isinstance(tags, list):
|
100
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
101
|
+
pulumi.set(__self__, "tags", tags)
|
95
102
|
if timeout and not isinstance(timeout, int):
|
96
103
|
raise TypeError("Expected argument 'timeout' to be a int")
|
97
104
|
pulumi.set(__self__, "timeout", timeout)
|
@@ -104,47 +111,47 @@ class GetFunctionResult:
|
|
104
111
|
|
105
112
|
@property
|
106
113
|
@pulumi.getter(name="cpuLimit")
|
107
|
-
def cpu_limit(self) -> int:
|
114
|
+
def cpu_limit(self) -> builtins.int:
|
108
115
|
return pulumi.get(self, "cpu_limit")
|
109
116
|
|
110
117
|
@property
|
111
118
|
@pulumi.getter
|
112
|
-
def deploy(self) -> bool:
|
119
|
+
def deploy(self) -> builtins.bool:
|
113
120
|
return pulumi.get(self, "deploy")
|
114
121
|
|
115
122
|
@property
|
116
123
|
@pulumi.getter
|
117
|
-
def description(self) -> str:
|
124
|
+
def description(self) -> builtins.str:
|
118
125
|
return pulumi.get(self, "description")
|
119
126
|
|
120
127
|
@property
|
121
128
|
@pulumi.getter(name="domainName")
|
122
|
-
def domain_name(self) -> str:
|
129
|
+
def domain_name(self) -> builtins.str:
|
123
130
|
return pulumi.get(self, "domain_name")
|
124
131
|
|
125
132
|
@property
|
126
133
|
@pulumi.getter(name="environmentVariables")
|
127
|
-
def environment_variables(self) -> Mapping[str, str]:
|
134
|
+
def environment_variables(self) -> Mapping[str, builtins.str]:
|
128
135
|
return pulumi.get(self, "environment_variables")
|
129
136
|
|
130
137
|
@property
|
131
138
|
@pulumi.getter(name="functionId")
|
132
|
-
def function_id(self) -> Optional[str]:
|
139
|
+
def function_id(self) -> Optional[builtins.str]:
|
133
140
|
return pulumi.get(self, "function_id")
|
134
141
|
|
135
142
|
@property
|
136
143
|
@pulumi.getter
|
137
|
-
def handler(self) -> str:
|
144
|
+
def handler(self) -> builtins.str:
|
138
145
|
return pulumi.get(self, "handler")
|
139
146
|
|
140
147
|
@property
|
141
148
|
@pulumi.getter(name="httpOption")
|
142
|
-
def http_option(self) -> str:
|
149
|
+
def http_option(self) -> builtins.str:
|
143
150
|
return pulumi.get(self, "http_option")
|
144
151
|
|
145
152
|
@property
|
146
153
|
@pulumi.getter
|
147
|
-
def id(self) -> str:
|
154
|
+
def id(self) -> builtins.str:
|
148
155
|
"""
|
149
156
|
The provider-assigned unique ID for this managed resource.
|
150
157
|
"""
|
@@ -152,77 +159,87 @@ class GetFunctionResult:
|
|
152
159
|
|
153
160
|
@property
|
154
161
|
@pulumi.getter(name="maxScale")
|
155
|
-
def max_scale(self) -> int:
|
162
|
+
def max_scale(self) -> builtins.int:
|
156
163
|
return pulumi.get(self, "max_scale")
|
157
164
|
|
158
165
|
@property
|
159
166
|
@pulumi.getter(name="memoryLimit")
|
160
|
-
def memory_limit(self) -> int:
|
167
|
+
def memory_limit(self) -> builtins.int:
|
161
168
|
return pulumi.get(self, "memory_limit")
|
162
169
|
|
163
170
|
@property
|
164
171
|
@pulumi.getter(name="minScale")
|
165
|
-
def min_scale(self) -> int:
|
172
|
+
def min_scale(self) -> builtins.int:
|
166
173
|
return pulumi.get(self, "min_scale")
|
167
174
|
|
168
175
|
@property
|
169
176
|
@pulumi.getter
|
170
|
-
def name(self) -> Optional[str]:
|
177
|
+
def name(self) -> Optional[builtins.str]:
|
171
178
|
return pulumi.get(self, "name")
|
172
179
|
|
173
180
|
@property
|
174
181
|
@pulumi.getter(name="namespaceId")
|
175
|
-
def namespace_id(self) -> str:
|
182
|
+
def namespace_id(self) -> builtins.str:
|
176
183
|
return pulumi.get(self, "namespace_id")
|
177
184
|
|
178
185
|
@property
|
179
186
|
@pulumi.getter(name="organizationId")
|
180
|
-
def organization_id(self) -> str:
|
187
|
+
def organization_id(self) -> builtins.str:
|
181
188
|
return pulumi.get(self, "organization_id")
|
182
189
|
|
183
190
|
@property
|
184
191
|
@pulumi.getter
|
185
|
-
def privacy(self) -> str:
|
192
|
+
def privacy(self) -> builtins.str:
|
186
193
|
return pulumi.get(self, "privacy")
|
187
194
|
|
195
|
+
@property
|
196
|
+
@pulumi.getter(name="privateNetworkId")
|
197
|
+
def private_network_id(self) -> builtins.str:
|
198
|
+
return pulumi.get(self, "private_network_id")
|
199
|
+
|
188
200
|
@property
|
189
201
|
@pulumi.getter(name="projectId")
|
190
|
-
def project_id(self) -> Optional[str]:
|
202
|
+
def project_id(self) -> Optional[builtins.str]:
|
191
203
|
return pulumi.get(self, "project_id")
|
192
204
|
|
193
205
|
@property
|
194
206
|
@pulumi.getter
|
195
|
-
def region(self) -> Optional[str]:
|
207
|
+
def region(self) -> Optional[builtins.str]:
|
196
208
|
return pulumi.get(self, "region")
|
197
209
|
|
198
210
|
@property
|
199
211
|
@pulumi.getter
|
200
|
-
def runtime(self) -> str:
|
212
|
+
def runtime(self) -> builtins.str:
|
201
213
|
return pulumi.get(self, "runtime")
|
202
214
|
|
203
215
|
@property
|
204
216
|
@pulumi.getter
|
205
|
-
def sandbox(self) -> str:
|
217
|
+
def sandbox(self) -> builtins.str:
|
206
218
|
return pulumi.get(self, "sandbox")
|
207
219
|
|
208
220
|
@property
|
209
221
|
@pulumi.getter(name="secretEnvironmentVariables")
|
210
|
-
def secret_environment_variables(self) -> Mapping[str, str]:
|
222
|
+
def secret_environment_variables(self) -> Mapping[str, builtins.str]:
|
211
223
|
return pulumi.get(self, "secret_environment_variables")
|
212
224
|
|
213
225
|
@property
|
214
226
|
@pulumi.getter
|
215
|
-
def
|
227
|
+
def tags(self) -> Sequence[builtins.str]:
|
228
|
+
return pulumi.get(self, "tags")
|
229
|
+
|
230
|
+
@property
|
231
|
+
@pulumi.getter
|
232
|
+
def timeout(self) -> builtins.int:
|
216
233
|
return pulumi.get(self, "timeout")
|
217
234
|
|
218
235
|
@property
|
219
236
|
@pulumi.getter(name="zipFile")
|
220
|
-
def zip_file(self) -> str:
|
237
|
+
def zip_file(self) -> builtins.str:
|
221
238
|
return pulumi.get(self, "zip_file")
|
222
239
|
|
223
240
|
@property
|
224
241
|
@pulumi.getter(name="zipHash")
|
225
|
-
def zip_hash(self) -> str:
|
242
|
+
def zip_hash(self) -> builtins.str:
|
226
243
|
return pulumi.get(self, "zip_hash")
|
227
244
|
|
228
245
|
|
@@ -248,21 +265,23 @@ class AwaitableGetFunctionResult(GetFunctionResult):
|
|
248
265
|
namespace_id=self.namespace_id,
|
249
266
|
organization_id=self.organization_id,
|
250
267
|
privacy=self.privacy,
|
268
|
+
private_network_id=self.private_network_id,
|
251
269
|
project_id=self.project_id,
|
252
270
|
region=self.region,
|
253
271
|
runtime=self.runtime,
|
254
272
|
sandbox=self.sandbox,
|
255
273
|
secret_environment_variables=self.secret_environment_variables,
|
274
|
+
tags=self.tags,
|
256
275
|
timeout=self.timeout,
|
257
276
|
zip_file=self.zip_file,
|
258
277
|
zip_hash=self.zip_hash)
|
259
278
|
|
260
279
|
|
261
|
-
def get_function(function_id: Optional[str] = None,
|
262
|
-
name: Optional[str] = None,
|
263
|
-
namespace_id: Optional[str] = None,
|
264
|
-
project_id: Optional[str] = None,
|
265
|
-
region: Optional[str] = None,
|
280
|
+
def get_function(function_id: Optional[builtins.str] = None,
|
281
|
+
name: Optional[builtins.str] = None,
|
282
|
+
namespace_id: Optional[builtins.str] = None,
|
283
|
+
project_id: Optional[builtins.str] = None,
|
284
|
+
region: Optional[builtins.str] = None,
|
266
285
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFunctionResult:
|
267
286
|
"""
|
268
287
|
The `functions.Function` data source is used to retrieve information about a Serverless Function.
|
@@ -272,11 +291,11 @@ def get_function(function_id: Optional[str] = None,
|
|
272
291
|
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/).
|
273
292
|
|
274
293
|
|
275
|
-
:param str function_id: The unique identifier of the function. Only one of `name` and `function_id` should be specified.
|
276
|
-
:param str name: The name of the function. Only one of `name` and `namespace_id` should be specified.
|
277
|
-
:param str namespace_id: The namespace ID associated with this function.
|
278
|
-
:param str project_id: The unique identifier of the project with which the function is associated.
|
279
|
-
:param str region: `region`) The region in which the container exists.
|
294
|
+
:param builtins.str function_id: The unique identifier of the function. Only one of `name` and `function_id` should be specified.
|
295
|
+
:param builtins.str name: The name of the function. Only one of `name` and `namespace_id` should be specified.
|
296
|
+
:param builtins.str namespace_id: The namespace ID associated with this function.
|
297
|
+
:param builtins.str project_id: The unique identifier of the project with which the function is associated.
|
298
|
+
:param builtins.str region: `region`) The region in which the container exists.
|
280
299
|
"""
|
281
300
|
pulumi.log.warn("""get_function is deprecated: scaleway.index/getfunction.getFunction has been deprecated in favor of scaleway.functions/getfunction.getFunction""")
|
282
301
|
__args__ = dict()
|
@@ -305,19 +324,21 @@ def get_function(function_id: Optional[str] = None,
|
|
305
324
|
namespace_id=pulumi.get(__ret__, 'namespace_id'),
|
306
325
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
307
326
|
privacy=pulumi.get(__ret__, 'privacy'),
|
327
|
+
private_network_id=pulumi.get(__ret__, 'private_network_id'),
|
308
328
|
project_id=pulumi.get(__ret__, 'project_id'),
|
309
329
|
region=pulumi.get(__ret__, 'region'),
|
310
330
|
runtime=pulumi.get(__ret__, 'runtime'),
|
311
331
|
sandbox=pulumi.get(__ret__, 'sandbox'),
|
312
332
|
secret_environment_variables=pulumi.get(__ret__, 'secret_environment_variables'),
|
333
|
+
tags=pulumi.get(__ret__, 'tags'),
|
313
334
|
timeout=pulumi.get(__ret__, 'timeout'),
|
314
335
|
zip_file=pulumi.get(__ret__, 'zip_file'),
|
315
336
|
zip_hash=pulumi.get(__ret__, 'zip_hash'))
|
316
|
-
def get_function_output(function_id: Optional[pulumi.Input[Optional[str]]] = None,
|
317
|
-
name: Optional[pulumi.Input[Optional[str]]] = None,
|
318
|
-
namespace_id: Optional[pulumi.Input[str]] = None,
|
319
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
320
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
337
|
+
def get_function_output(function_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
338
|
+
name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
339
|
+
namespace_id: Optional[pulumi.Input[builtins.str]] = None,
|
340
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
341
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
321
342
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFunctionResult]:
|
322
343
|
"""
|
323
344
|
The `functions.Function` data source is used to retrieve information about a Serverless Function.
|
@@ -327,11 +348,11 @@ def get_function_output(function_id: Optional[pulumi.Input[Optional[str]]] = Non
|
|
327
348
|
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/).
|
328
349
|
|
329
350
|
|
330
|
-
:param str function_id: The unique identifier of the function. Only one of `name` and `function_id` should be specified.
|
331
|
-
:param str name: The name of the function. Only one of `name` and `namespace_id` should be specified.
|
332
|
-
:param str namespace_id: The namespace ID associated with this function.
|
333
|
-
:param str project_id: The unique identifier of the project with which the function is associated.
|
334
|
-
:param str region: `region`) The region in which the container exists.
|
351
|
+
:param builtins.str function_id: The unique identifier of the function. Only one of `name` and `function_id` should be specified.
|
352
|
+
:param builtins.str name: The name of the function. Only one of `name` and `namespace_id` should be specified.
|
353
|
+
:param builtins.str namespace_id: The namespace ID associated with this function.
|
354
|
+
:param builtins.str project_id: The unique identifier of the project with which the function is associated.
|
355
|
+
:param builtins.str region: `region`) The region in which the container exists.
|
335
356
|
"""
|
336
357
|
pulumi.log.warn("""get_function is deprecated: scaleway.index/getfunction.getFunction has been deprecated in favor of scaleway.functions/getfunction.getFunction""")
|
337
358
|
__args__ = dict()
|
@@ -359,11 +380,13 @@ def get_function_output(function_id: Optional[pulumi.Input[Optional[str]]] = Non
|
|
359
380
|
namespace_id=pulumi.get(__response__, 'namespace_id'),
|
360
381
|
organization_id=pulumi.get(__response__, 'organization_id'),
|
361
382
|
privacy=pulumi.get(__response__, 'privacy'),
|
383
|
+
private_network_id=pulumi.get(__response__, 'private_network_id'),
|
362
384
|
project_id=pulumi.get(__response__, 'project_id'),
|
363
385
|
region=pulumi.get(__response__, 'region'),
|
364
386
|
runtime=pulumi.get(__response__, 'runtime'),
|
365
387
|
sandbox=pulumi.get(__response__, 'sandbox'),
|
366
388
|
secret_environment_variables=pulumi.get(__response__, 'secret_environment_variables'),
|
389
|
+
tags=pulumi.get(__response__, 'tags'),
|
367
390
|
timeout=pulumi.get(__response__, 'timeout'),
|
368
391
|
zip_file=pulumi.get(__response__, 'zip_file'),
|
369
392
|
zip_hash=pulumi.get(__response__, 'zip_hash')))
|
@@ -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
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -28,7 +29,10 @@ class GetFunctionNamespaceResult:
|
|
28
29
|
"""
|
29
30
|
A collection of values returned by getFunctionNamespace.
|
30
31
|
"""
|
31
|
-
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):
|
32
|
+
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):
|
33
|
+
if activate_vpc_integration and not isinstance(activate_vpc_integration, bool):
|
34
|
+
raise TypeError("Expected argument 'activate_vpc_integration' to be a bool")
|
35
|
+
pulumi.set(__self__, "activate_vpc_integration", activate_vpc_integration)
|
32
36
|
if description and not isinstance(description, str):
|
33
37
|
raise TypeError("Expected argument 'description' to be a str")
|
34
38
|
pulumi.set(__self__, "description", description)
|
@@ -66,9 +70,14 @@ class GetFunctionNamespaceResult:
|
|
66
70
|
raise TypeError("Expected argument 'tags' to be a list")
|
67
71
|
pulumi.set(__self__, "tags", tags)
|
68
72
|
|
73
|
+
@property
|
74
|
+
@pulumi.getter(name="activateVpcIntegration")
|
75
|
+
def activate_vpc_integration(self) -> builtins.bool:
|
76
|
+
return pulumi.get(self, "activate_vpc_integration")
|
77
|
+
|
69
78
|
@property
|
70
79
|
@pulumi.getter
|
71
|
-
def description(self) -> str:
|
80
|
+
def description(self) -> builtins.str:
|
72
81
|
"""
|
73
82
|
The description of the namespace.
|
74
83
|
"""
|
@@ -76,7 +85,7 @@ class GetFunctionNamespaceResult:
|
|
76
85
|
|
77
86
|
@property
|
78
87
|
@pulumi.getter(name="environmentVariables")
|
79
|
-
def environment_variables(self) -> Mapping[str, str]:
|
88
|
+
def environment_variables(self) -> Mapping[str, builtins.str]:
|
80
89
|
"""
|
81
90
|
The environment variables of the namespace.
|
82
91
|
"""
|
@@ -84,7 +93,7 @@ class GetFunctionNamespaceResult:
|
|
84
93
|
|
85
94
|
@property
|
86
95
|
@pulumi.getter
|
87
|
-
def id(self) -> str:
|
96
|
+
def id(self) -> builtins.str:
|
88
97
|
"""
|
89
98
|
The provider-assigned unique ID for this managed resource.
|
90
99
|
"""
|
@@ -92,17 +101,17 @@ class GetFunctionNamespaceResult:
|
|
92
101
|
|
93
102
|
@property
|
94
103
|
@pulumi.getter
|
95
|
-
def name(self) -> Optional[str]:
|
104
|
+
def name(self) -> Optional[builtins.str]:
|
96
105
|
return pulumi.get(self, "name")
|
97
106
|
|
98
107
|
@property
|
99
108
|
@pulumi.getter(name="namespaceId")
|
100
|
-
def namespace_id(self) -> Optional[str]:
|
109
|
+
def namespace_id(self) -> Optional[builtins.str]:
|
101
110
|
return pulumi.get(self, "namespace_id")
|
102
111
|
|
103
112
|
@property
|
104
113
|
@pulumi.getter(name="organizationId")
|
105
|
-
def organization_id(self) -> str:
|
114
|
+
def organization_id(self) -> builtins.str:
|
106
115
|
"""
|
107
116
|
The unique identifier of the organization with which the namespace is associated.
|
108
117
|
"""
|
@@ -110,17 +119,17 @@ class GetFunctionNamespaceResult:
|
|
110
119
|
|
111
120
|
@property
|
112
121
|
@pulumi.getter(name="projectId")
|
113
|
-
def project_id(self) -> Optional[str]:
|
122
|
+
def project_id(self) -> Optional[builtins.str]:
|
114
123
|
return pulumi.get(self, "project_id")
|
115
124
|
|
116
125
|
@property
|
117
126
|
@pulumi.getter
|
118
|
-
def region(self) -> Optional[str]:
|
127
|
+
def region(self) -> Optional[builtins.str]:
|
119
128
|
return pulumi.get(self, "region")
|
120
129
|
|
121
130
|
@property
|
122
131
|
@pulumi.getter(name="registryEndpoint")
|
123
|
-
def registry_endpoint(self) -> str:
|
132
|
+
def registry_endpoint(self) -> builtins.str:
|
124
133
|
"""
|
125
134
|
The registry endpoint of the namespace.
|
126
135
|
"""
|
@@ -128,7 +137,7 @@ class GetFunctionNamespaceResult:
|
|
128
137
|
|
129
138
|
@property
|
130
139
|
@pulumi.getter(name="registryNamespaceId")
|
131
|
-
def registry_namespace_id(self) -> str:
|
140
|
+
def registry_namespace_id(self) -> builtins.str:
|
132
141
|
"""
|
133
142
|
The unique identifier of the registry namespace of the Serverless Functions namespace.
|
134
143
|
"""
|
@@ -136,12 +145,12 @@ class GetFunctionNamespaceResult:
|
|
136
145
|
|
137
146
|
@property
|
138
147
|
@pulumi.getter(name="secretEnvironmentVariables")
|
139
|
-
def secret_environment_variables(self) -> Mapping[str, str]:
|
148
|
+
def secret_environment_variables(self) -> Mapping[str, builtins.str]:
|
140
149
|
return pulumi.get(self, "secret_environment_variables")
|
141
150
|
|
142
151
|
@property
|
143
152
|
@pulumi.getter
|
144
|
-
def tags(self) -> Sequence[str]:
|
153
|
+
def tags(self) -> Sequence[builtins.str]:
|
145
154
|
return pulumi.get(self, "tags")
|
146
155
|
|
147
156
|
|
@@ -151,6 +160,7 @@ class AwaitableGetFunctionNamespaceResult(GetFunctionNamespaceResult):
|
|
151
160
|
if False:
|
152
161
|
yield self
|
153
162
|
return GetFunctionNamespaceResult(
|
163
|
+
activate_vpc_integration=self.activate_vpc_integration,
|
154
164
|
description=self.description,
|
155
165
|
environment_variables=self.environment_variables,
|
156
166
|
id=self.id,
|
@@ -165,10 +175,10 @@ class AwaitableGetFunctionNamespaceResult(GetFunctionNamespaceResult):
|
|
165
175
|
tags=self.tags)
|
166
176
|
|
167
177
|
|
168
|
-
def get_function_namespace(name: Optional[str] = None,
|
169
|
-
namespace_id: Optional[str] = None,
|
170
|
-
project_id: Optional[str] = None,
|
171
|
-
region: Optional[str] = None,
|
178
|
+
def get_function_namespace(name: Optional[builtins.str] = None,
|
179
|
+
namespace_id: Optional[builtins.str] = None,
|
180
|
+
project_id: Optional[builtins.str] = None,
|
181
|
+
region: Optional[builtins.str] = None,
|
172
182
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFunctionNamespaceResult:
|
173
183
|
"""
|
174
184
|
The `functions.Namespace` data source is used to retrieve information about a Serverless Functions namespace.
|
@@ -176,10 +186,10 @@ def get_function_namespace(name: Optional[str] = None,
|
|
176
186
|
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.
|
177
187
|
|
178
188
|
|
179
|
-
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
180
|
-
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
181
|
-
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
182
|
-
:param str region: `region`) The region in which the namespace exists.
|
189
|
+
:param builtins.str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
190
|
+
:param builtins.str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
191
|
+
:param builtins.str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
192
|
+
:param builtins.str region: `region`) The region in which the namespace exists.
|
183
193
|
"""
|
184
194
|
pulumi.log.warn("""get_function_namespace is deprecated: scaleway.index/getfunctionnamespace.getFunctionNamespace has been deprecated in favor of scaleway.functions/getnamespace.getNamespace""")
|
185
195
|
__args__ = dict()
|
@@ -191,6 +201,7 @@ def get_function_namespace(name: Optional[str] = None,
|
|
191
201
|
__ret__ = pulumi.runtime.invoke('scaleway:index/getFunctionNamespace:getFunctionNamespace', __args__, opts=opts, typ=GetFunctionNamespaceResult).value
|
192
202
|
|
193
203
|
return AwaitableGetFunctionNamespaceResult(
|
204
|
+
activate_vpc_integration=pulumi.get(__ret__, 'activate_vpc_integration'),
|
194
205
|
description=pulumi.get(__ret__, 'description'),
|
195
206
|
environment_variables=pulumi.get(__ret__, 'environment_variables'),
|
196
207
|
id=pulumi.get(__ret__, 'id'),
|
@@ -203,10 +214,10 @@ def get_function_namespace(name: Optional[str] = None,
|
|
203
214
|
registry_namespace_id=pulumi.get(__ret__, 'registry_namespace_id'),
|
204
215
|
secret_environment_variables=pulumi.get(__ret__, 'secret_environment_variables'),
|
205
216
|
tags=pulumi.get(__ret__, 'tags'))
|
206
|
-
def get_function_namespace_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
207
|
-
namespace_id: Optional[pulumi.Input[Optional[str]]] = None,
|
208
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
209
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
217
|
+
def get_function_namespace_output(name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
218
|
+
namespace_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
219
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
220
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
210
221
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFunctionNamespaceResult]:
|
211
222
|
"""
|
212
223
|
The `functions.Namespace` data source is used to retrieve information about a Serverless Functions namespace.
|
@@ -214,10 +225,10 @@ def get_function_namespace_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
214
225
|
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.
|
215
226
|
|
216
227
|
|
217
|
-
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
218
|
-
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
219
|
-
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
220
|
-
:param str region: `region`) The region in which the namespace exists.
|
228
|
+
:param builtins.str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
229
|
+
:param builtins.str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
230
|
+
:param builtins.str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
231
|
+
:param builtins.str region: `region`) The region in which the namespace exists.
|
221
232
|
"""
|
222
233
|
pulumi.log.warn("""get_function_namespace is deprecated: scaleway.index/getfunctionnamespace.getFunctionNamespace has been deprecated in favor of scaleway.functions/getnamespace.getNamespace""")
|
223
234
|
__args__ = dict()
|
@@ -228,6 +239,7 @@ def get_function_namespace_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
228
239
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
229
240
|
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getFunctionNamespace:getFunctionNamespace', __args__, opts=opts, typ=GetFunctionNamespaceResult)
|
230
241
|
return __ret__.apply(lambda __response__: GetFunctionNamespaceResult(
|
242
|
+
activate_vpc_integration=pulumi.get(__response__, 'activate_vpc_integration'),
|
231
243
|
description=pulumi.get(__response__, 'description'),
|
232
244
|
environment_variables=pulumi.get(__response__, 'environment_variables'),
|
233
245
|
id=pulumi.get(__response__, 'id'),
|