pulumiverse-scaleway 1.25.0a1742464679__py3-none-any.whl → 1.25.0a1742668904__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 +929 -0
- pulumiverse_scaleway/account/__init__.py +12 -0
- pulumiverse_scaleway/account/get_availability_zones.py +139 -0
- pulumiverse_scaleway/account/get_project.py +170 -0
- pulumiverse_scaleway/account/get_ssh_key.py +205 -0
- pulumiverse_scaleway/account/project.py +318 -0
- pulumiverse_scaleway/account/ssh_key.py +456 -0
- pulumiverse_scaleway/account_project.py +6 -0
- pulumiverse_scaleway/account_ssh_key.py +12 -6
- pulumiverse_scaleway/apple_silicon_server.py +8 -2
- pulumiverse_scaleway/applesilicon/__init__.py +10 -0
- pulumiverse_scaleway/applesilicon/_inputs.py +154 -0
- pulumiverse_scaleway/applesilicon/outputs.py +119 -0
- pulumiverse_scaleway/applesilicon/server.py +690 -0
- pulumiverse_scaleway/baremetal_server.py +64 -58
- pulumiverse_scaleway/billing/__init__.py +10 -0
- pulumiverse_scaleway/billing/get_consumptions.py +134 -0
- pulumiverse_scaleway/billing/get_invoices.py +154 -0
- pulumiverse_scaleway/billing/outputs.py +288 -0
- pulumiverse_scaleway/block/__init__.py +11 -0
- pulumiverse_scaleway/block/get_snapshot.py +174 -0
- pulumiverse_scaleway/block/get_volume.py +199 -0
- pulumiverse_scaleway/block/snapshot.py +403 -0
- pulumiverse_scaleway/block/volume.py +576 -0
- pulumiverse_scaleway/block_snapshot.py +12 -6
- pulumiverse_scaleway/block_volume.py +16 -10
- pulumiverse_scaleway/cockpit.py +10 -4
- pulumiverse_scaleway/cockpit_alert_manager.py +12 -6
- pulumiverse_scaleway/cockpit_grafana_user.py +12 -6
- pulumiverse_scaleway/cockpit_source.py +12 -6
- pulumiverse_scaleway/cockpit_token.py +16 -10
- pulumiverse_scaleway/container.py +16 -10
- pulumiverse_scaleway/container_cron.py +14 -8
- pulumiverse_scaleway/container_domain.py +24 -18
- pulumiverse_scaleway/container_namespace.py +10 -4
- pulumiverse_scaleway/container_token.py +32 -26
- pulumiverse_scaleway/container_trigger.py +12 -6
- pulumiverse_scaleway/containers/__init__.py +17 -0
- pulumiverse_scaleway/containers/_inputs.py +389 -0
- pulumiverse_scaleway/containers/container.py +1635 -0
- pulumiverse_scaleway/containers/cron.py +460 -0
- pulumiverse_scaleway/containers/domain.py +408 -0
- pulumiverse_scaleway/containers/get_container.py +562 -0
- pulumiverse_scaleway/containers/get_namespace.py +283 -0
- pulumiverse_scaleway/containers/namespace.py +638 -0
- pulumiverse_scaleway/containers/outputs.py +412 -0
- pulumiverse_scaleway/containers/token.py +454 -0
- pulumiverse_scaleway/containers/trigger.py +482 -0
- pulumiverse_scaleway/database.py +10 -4
- pulumiverse_scaleway/database_acl.py +10 -4
- pulumiverse_scaleway/database_backup.py +14 -8
- pulumiverse_scaleway/database_instance.py +24 -18
- pulumiverse_scaleway/database_privilege.py +16 -10
- pulumiverse_scaleway/database_read_replica.py +22 -16
- pulumiverse_scaleway/database_user.py +10 -4
- pulumiverse_scaleway/databases/__init__.py +23 -0
- pulumiverse_scaleway/databases/_inputs.py +822 -0
- pulumiverse_scaleway/databases/acl.py +334 -0
- pulumiverse_scaleway/databases/database.py +409 -0
- pulumiverse_scaleway/databases/database_backup.py +576 -0
- pulumiverse_scaleway/databases/get_acl.py +143 -0
- pulumiverse_scaleway/databases/get_database.py +187 -0
- pulumiverse_scaleway/databases/get_database_backup.py +253 -0
- pulumiverse_scaleway/databases/get_instance.py +415 -0
- pulumiverse_scaleway/databases/get_privilege.py +181 -0
- pulumiverse_scaleway/databases/instance.py +1696 -0
- pulumiverse_scaleway/databases/outputs.py +866 -0
- pulumiverse_scaleway/databases/privilege.py +424 -0
- pulumiverse_scaleway/databases/read_replica.py +530 -0
- pulumiverse_scaleway/databases/serverless_database.py +434 -0
- pulumiverse_scaleway/databases/snapshot.py +610 -0
- pulumiverse_scaleway/databases/user.py +448 -0
- pulumiverse_scaleway/domain/__init__.py +13 -0
- pulumiverse_scaleway/domain/_inputs.py +341 -0
- pulumiverse_scaleway/domain/get_record.py +340 -0
- pulumiverse_scaleway/domain/get_zone.py +201 -0
- pulumiverse_scaleway/domain/outputs.py +408 -0
- pulumiverse_scaleway/domain/record.py +1118 -0
- pulumiverse_scaleway/domain/zone.py +432 -0
- pulumiverse_scaleway/domain_record.py +36 -30
- pulumiverse_scaleway/domain_zone.py +6 -0
- pulumiverse_scaleway/elasticmetal/__init__.py +18 -0
- pulumiverse_scaleway/elasticmetal/_inputs.py +509 -0
- pulumiverse_scaleway/elasticmetal/get_ip.py +247 -0
- pulumiverse_scaleway/elasticmetal/get_ips.py +240 -0
- pulumiverse_scaleway/elasticmetal/get_offer.py +245 -0
- pulumiverse_scaleway/elasticmetal/get_option.py +168 -0
- pulumiverse_scaleway/elasticmetal/get_os.py +174 -0
- pulumiverse_scaleway/elasticmetal/get_server.py +422 -0
- pulumiverse_scaleway/elasticmetal/ip.py +704 -0
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +512 -0
- pulumiverse_scaleway/elasticmetal/outputs.py +974 -0
- pulumiverse_scaleway/elasticmetal/server.py +1591 -0
- pulumiverse_scaleway/flexible_ip.py +22 -16
- pulumiverse_scaleway/flexible_ip_mac_address.py +22 -16
- pulumiverse_scaleway/function.py +6 -0
- pulumiverse_scaleway/function_cron.py +16 -10
- pulumiverse_scaleway/function_domain.py +16 -10
- pulumiverse_scaleway/function_namespace.py +10 -4
- pulumiverse_scaleway/function_token.py +32 -26
- pulumiverse_scaleway/function_trigger.py +12 -6
- pulumiverse_scaleway/functions/__init__.py +17 -0
- pulumiverse_scaleway/functions/_inputs.py +211 -0
- pulumiverse_scaleway/functions/cron.py +464 -0
- pulumiverse_scaleway/functions/domain.py +372 -0
- pulumiverse_scaleway/functions/function.py +1105 -0
- pulumiverse_scaleway/functions/get_function.py +365 -0
- pulumiverse_scaleway/functions/get_namespace.py +238 -0
- pulumiverse_scaleway/functions/namespace.py +582 -0
- pulumiverse_scaleway/functions/outputs.py +168 -0
- pulumiverse_scaleway/functions/token.py +462 -0
- pulumiverse_scaleway/functions/trigger.py +482 -0
- pulumiverse_scaleway/get_account_project.py +6 -2
- pulumiverse_scaleway/get_account_ssh_key.py +6 -2
- pulumiverse_scaleway/get_availability_zones.py +8 -4
- pulumiverse_scaleway/get_baremetal_offer.py +4 -0
- pulumiverse_scaleway/get_baremetal_option.py +8 -4
- pulumiverse_scaleway/get_baremetal_os.py +8 -4
- pulumiverse_scaleway/get_baremetal_server.py +8 -4
- pulumiverse_scaleway/get_billing_consumptions.py +4 -0
- pulumiverse_scaleway/get_billing_invoices.py +4 -0
- pulumiverse_scaleway/get_block_snapshot.py +6 -2
- pulumiverse_scaleway/get_block_volume.py +6 -2
- pulumiverse_scaleway/get_cockpit.py +12 -8
- pulumiverse_scaleway/get_cockpit_plan.py +10 -6
- pulumiverse_scaleway/get_cockpit_source.py +8 -4
- pulumiverse_scaleway/get_container.py +16 -12
- pulumiverse_scaleway/get_container_namespace.py +10 -6
- pulumiverse_scaleway/get_database.py +6 -2
- pulumiverse_scaleway/get_database_acl.py +6 -2
- pulumiverse_scaleway/get_database_backup.py +10 -6
- pulumiverse_scaleway/get_database_instance.py +4 -0
- pulumiverse_scaleway/get_database_privilege.py +6 -2
- pulumiverse_scaleway/get_domain_record.py +10 -6
- pulumiverse_scaleway/get_domain_zone.py +4 -0
- pulumiverse_scaleway/get_flexible_ip.py +4 -0
- pulumiverse_scaleway/get_flexible_ips.py +16 -12
- pulumiverse_scaleway/get_function.py +6 -2
- pulumiverse_scaleway/get_function_namespace.py +6 -2
- pulumiverse_scaleway/get_iam_api_key.py +6 -2
- pulumiverse_scaleway/get_iam_application.py +8 -4
- pulumiverse_scaleway/get_iam_group.py +8 -4
- pulumiverse_scaleway/get_iam_ssh_key.py +4 -0
- pulumiverse_scaleway/get_iam_user.py +8 -4
- pulumiverse_scaleway/get_instance_image.py +4 -0
- pulumiverse_scaleway/get_instance_ip.py +4 -0
- pulumiverse_scaleway/get_instance_placement_group.py +4 -0
- pulumiverse_scaleway/get_instance_private_nic.py +10 -6
- pulumiverse_scaleway/get_instance_security_group.py +4 -0
- pulumiverse_scaleway/get_instance_server.py +4 -0
- pulumiverse_scaleway/get_instance_servers.py +4 -0
- pulumiverse_scaleway/get_instance_snapshot.py +8 -4
- pulumiverse_scaleway/get_instance_volume.py +4 -0
- pulumiverse_scaleway/get_iot_device.py +4 -0
- pulumiverse_scaleway/get_iot_hub.py +4 -0
- pulumiverse_scaleway/get_ipam_ip.py +18 -14
- pulumiverse_scaleway/get_ipam_ips.py +14 -10
- pulumiverse_scaleway/get_k8s_version.py +8 -4
- pulumiverse_scaleway/get_kubernetes_cluster.py +4 -0
- pulumiverse_scaleway/get_kubernetes_node_pool.py +4 -0
- pulumiverse_scaleway/get_lb_acls.py +8 -4
- pulumiverse_scaleway/get_lb_backend.py +18 -14
- pulumiverse_scaleway/get_lb_backends.py +8 -4
- pulumiverse_scaleway/get_lb_frontend.py +16 -12
- pulumiverse_scaleway/get_lb_frontends.py +8 -4
- pulumiverse_scaleway/get_lb_ips.py +4 -0
- pulumiverse_scaleway/get_lb_route.py +16 -12
- pulumiverse_scaleway/get_lb_routes.py +8 -4
- pulumiverse_scaleway/get_lbs.py +4 -0
- pulumiverse_scaleway/get_loadbalancer.py +8 -4
- pulumiverse_scaleway/get_loadbalancer_certificate.py +4 -0
- pulumiverse_scaleway/get_loadbalancer_ip.py +4 -0
- pulumiverse_scaleway/get_mnq_sns.py +8 -4
- pulumiverse_scaleway/get_mnq_sqs.py +8 -4
- pulumiverse_scaleway/get_mongo_db_instance.py +4 -0
- pulumiverse_scaleway/get_object_bucket.py +12 -8
- pulumiverse_scaleway/get_object_bucket_policy.py +8 -4
- pulumiverse_scaleway/get_redis_cluster.py +4 -0
- pulumiverse_scaleway/get_registry_image.py +4 -0
- pulumiverse_scaleway/get_registry_image_tag.py +4 -0
- pulumiverse_scaleway/get_registry_namespace.py +4 -0
- pulumiverse_scaleway/get_secret.py +12 -8
- pulumiverse_scaleway/get_secret_version.py +14 -10
- pulumiverse_scaleway/get_tem_domain.py +4 -0
- pulumiverse_scaleway/get_vpc.py +10 -6
- pulumiverse_scaleway/get_vpc_gateway_network.py +10 -6
- pulumiverse_scaleway/get_vpc_private_network.py +10 -6
- pulumiverse_scaleway/get_vpc_public_gateway.py +10 -6
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +8 -4
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +70 -66
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +8 -4
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +26 -22
- pulumiverse_scaleway/get_vpc_routes.py +4 -0
- pulumiverse_scaleway/get_vpcs.py +4 -0
- pulumiverse_scaleway/get_web_host_offer.py +8 -4
- pulumiverse_scaleway/get_webhosting.py +8 -4
- pulumiverse_scaleway/hosting/__init__.py +12 -0
- pulumiverse_scaleway/hosting/_inputs.py +295 -0
- pulumiverse_scaleway/hosting/get_hosting.py +354 -0
- pulumiverse_scaleway/hosting/get_offer.py +229 -0
- pulumiverse_scaleway/hosting/hosting.py +870 -0
- pulumiverse_scaleway/hosting/outputs.py +626 -0
- pulumiverse_scaleway/iam/__init__.py +21 -0
- pulumiverse_scaleway/iam/_inputs.py +138 -0
- pulumiverse_scaleway/iam/api_key.py +622 -0
- pulumiverse_scaleway/iam/application.py +419 -0
- pulumiverse_scaleway/iam/get_api_key.py +210 -0
- pulumiverse_scaleway/iam/get_application.py +210 -0
- pulumiverse_scaleway/iam/get_group.py +236 -0
- pulumiverse_scaleway/iam/get_ssh_key.py +212 -0
- pulumiverse_scaleway/iam/get_user.py +177 -0
- pulumiverse_scaleway/iam/group.py +568 -0
- pulumiverse_scaleway/iam/group_membership.py +325 -0
- pulumiverse_scaleway/iam/outputs.py +111 -0
- pulumiverse_scaleway/iam/policy.py +775 -0
- pulumiverse_scaleway/iam/ssh_key.py +457 -0
- pulumiverse_scaleway/iam/user.py +515 -0
- pulumiverse_scaleway/iam_api_key.py +16 -10
- pulumiverse_scaleway/iam_application.py +8 -2
- pulumiverse_scaleway/iam_group.py +12 -6
- pulumiverse_scaleway/iam_group_membership.py +12 -6
- pulumiverse_scaleway/iam_policy.py +18 -12
- pulumiverse_scaleway/iam_ssh_key.py +8 -2
- pulumiverse_scaleway/iam_user.py +8 -2
- pulumiverse_scaleway/inference/__init__.py +10 -0
- pulumiverse_scaleway/inference/_inputs.py +209 -0
- pulumiverse_scaleway/inference/deployment.py +824 -0
- pulumiverse_scaleway/inference/outputs.py +169 -0
- pulumiverse_scaleway/inference_deployment.py +8 -2
- pulumiverse_scaleway/instance/__init__.py +29 -0
- pulumiverse_scaleway/instance/_inputs.py +1237 -0
- pulumiverse_scaleway/instance/get_image.py +305 -0
- pulumiverse_scaleway/instance/get_ip.py +204 -0
- pulumiverse_scaleway/instance/get_placement_group.py +212 -0
- pulumiverse_scaleway/instance/get_private_nic.py +226 -0
- pulumiverse_scaleway/instance/get_security_group.py +268 -0
- pulumiverse_scaleway/instance/get_server.py +488 -0
- pulumiverse_scaleway/instance/get_servers.py +187 -0
- pulumiverse_scaleway/instance/get_snapshot.py +248 -0
- pulumiverse_scaleway/instance/get_volume.py +226 -0
- pulumiverse_scaleway/instance/image.py +752 -0
- pulumiverse_scaleway/instance/ip.py +471 -0
- pulumiverse_scaleway/instance/ip_reverse_dns.py +310 -0
- pulumiverse_scaleway/instance/outputs.py +1533 -0
- pulumiverse_scaleway/instance/placement_group.py +481 -0
- pulumiverse_scaleway/instance/private_nic.py +557 -0
- pulumiverse_scaleway/instance/security_group.py +722 -0
- pulumiverse_scaleway/instance/security_group_rules.py +441 -0
- pulumiverse_scaleway/instance/server.py +1938 -0
- pulumiverse_scaleway/instance/snapshot.py +671 -0
- pulumiverse_scaleway/instance/user_data.py +437 -0
- pulumiverse_scaleway/instance/volume.py +584 -0
- pulumiverse_scaleway/instance_image.py +18 -12
- pulumiverse_scaleway/instance_ip.py +8 -2
- pulumiverse_scaleway/instance_ip_reverse_dns.py +12 -6
- pulumiverse_scaleway/instance_placement_group.py +8 -2
- pulumiverse_scaleway/instance_private_nic.py +24 -18
- pulumiverse_scaleway/instance_security_group.py +6 -0
- pulumiverse_scaleway/instance_security_group_rules.py +22 -16
- pulumiverse_scaleway/instance_server.py +74 -68
- pulumiverse_scaleway/instance_snapshot.py +22 -16
- pulumiverse_scaleway/instance_user_data.py +16 -10
- pulumiverse_scaleway/instance_volume.py +8 -2
- pulumiverse_scaleway/iot/__init__.py +15 -0
- pulumiverse_scaleway/iot/_inputs.py +539 -0
- pulumiverse_scaleway/iot/device.py +752 -0
- pulumiverse_scaleway/iot/get_device.py +257 -0
- pulumiverse_scaleway/iot/get_hub.py +322 -0
- pulumiverse_scaleway/iot/hub.py +898 -0
- pulumiverse_scaleway/iot/network.py +474 -0
- pulumiverse_scaleway/iot/outputs.py +465 -0
- pulumiverse_scaleway/iot/route.py +662 -0
- pulumiverse_scaleway/iot_device.py +14 -8
- pulumiverse_scaleway/iot_hub.py +8 -2
- pulumiverse_scaleway/iot_network.py +12 -6
- pulumiverse_scaleway/iot_route.py +32 -26
- pulumiverse_scaleway/ipam/__init__.py +13 -0
- pulumiverse_scaleway/ipam/_inputs.py +442 -0
- pulumiverse_scaleway/ipam/get_ip.py +419 -0
- pulumiverse_scaleway/ipam/get_ips.py +358 -0
- pulumiverse_scaleway/ipam/ip.py +759 -0
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +320 -0
- pulumiverse_scaleway/ipam/outputs.py +481 -0
- pulumiverse_scaleway/ipam_ip.py +30 -24
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +6 -0
- pulumiverse_scaleway/job/__init__.py +10 -0
- pulumiverse_scaleway/job/_inputs.py +73 -0
- pulumiverse_scaleway/job/definition.py +694 -0
- pulumiverse_scaleway/job/outputs.py +49 -0
- pulumiverse_scaleway/job_definition.py +8 -2
- pulumiverse_scaleway/kubernetes/__init__.py +14 -0
- pulumiverse_scaleway/kubernetes/_inputs.py +717 -0
- pulumiverse_scaleway/kubernetes/cluster.py +1540 -0
- pulumiverse_scaleway/kubernetes/get_cluster.py +417 -0
- pulumiverse_scaleway/kubernetes/get_pool.py +436 -0
- pulumiverse_scaleway/kubernetes/get_version.py +196 -0
- pulumiverse_scaleway/kubernetes/outputs.py +944 -0
- pulumiverse_scaleway/kubernetes/pool.py +1313 -0
- pulumiverse_scaleway/kubernetes_cluster.py +36 -30
- pulumiverse_scaleway/kubernetes_node_pool.py +6 -0
- pulumiverse_scaleway/loadbalancer.py +35 -29
- pulumiverse_scaleway/loadbalancer_acl.py +8 -2
- pulumiverse_scaleway/loadbalancer_backend.py +10 -4
- pulumiverse_scaleway/loadbalancer_certificate.py +6 -0
- pulumiverse_scaleway/loadbalancer_frontend.py +10 -4
- pulumiverse_scaleway/loadbalancer_ip.py +10 -4
- pulumiverse_scaleway/loadbalancer_route.py +26 -20
- pulumiverse_scaleway/loadbalancers/__init__.py +28 -0
- pulumiverse_scaleway/loadbalancers/_inputs.py +1103 -0
- pulumiverse_scaleway/loadbalancers/acl.py +522 -0
- pulumiverse_scaleway/loadbalancers/backend.py +1590 -0
- pulumiverse_scaleway/loadbalancers/certificate.py +462 -0
- pulumiverse_scaleway/loadbalancers/frontend.py +831 -0
- pulumiverse_scaleway/loadbalancers/get_acls.py +198 -0
- pulumiverse_scaleway/loadbalancers/get_backend.py +486 -0
- pulumiverse_scaleway/loadbalancers/get_backends.py +196 -0
- pulumiverse_scaleway/loadbalancers/get_certificate.py +230 -0
- pulumiverse_scaleway/loadbalancers/get_frontend.py +274 -0
- pulumiverse_scaleway/loadbalancers/get_frontends.py +196 -0
- pulumiverse_scaleway/loadbalancers/get_ip.py +228 -0
- pulumiverse_scaleway/loadbalancers/get_ips.py +198 -0
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +339 -0
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +187 -0
- pulumiverse_scaleway/loadbalancers/get_route.py +217 -0
- pulumiverse_scaleway/loadbalancers/get_routes.py +179 -0
- pulumiverse_scaleway/loadbalancers/ip.py +516 -0
- pulumiverse_scaleway/loadbalancers/load_balancer.py +1063 -0
- pulumiverse_scaleway/loadbalancers/outputs.py +2491 -0
- pulumiverse_scaleway/loadbalancers/route.py +525 -0
- pulumiverse_scaleway/mnq/__init__.py +20 -0
- pulumiverse_scaleway/mnq/_inputs.py +169 -0
- pulumiverse_scaleway/mnq/get_sns.py +150 -0
- pulumiverse_scaleway/mnq/get_sqs.py +150 -0
- pulumiverse_scaleway/mnq/nats_account.py +336 -0
- pulumiverse_scaleway/mnq/nats_credentials.py +332 -0
- pulumiverse_scaleway/mnq/outputs.py +149 -0
- pulumiverse_scaleway/mnq/sns.py +308 -0
- pulumiverse_scaleway/mnq/sns_credentials.py +415 -0
- pulumiverse_scaleway/mnq/sns_topic.py +661 -0
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +701 -0
- pulumiverse_scaleway/mnq/sqs.py +306 -0
- pulumiverse_scaleway/mnq/sqs_credentials.py +415 -0
- pulumiverse_scaleway/mnq/sqs_queue.py +802 -0
- pulumiverse_scaleway/mnq_nats_account.py +8 -2
- pulumiverse_scaleway/mnq_nats_credentials.py +10 -4
- pulumiverse_scaleway/mnq_sns.py +12 -6
- pulumiverse_scaleway/mnq_sns_credentials.py +10 -4
- pulumiverse_scaleway/mnq_sns_topic.py +16 -10
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +22 -16
- pulumiverse_scaleway/mnq_sqs.py +12 -6
- pulumiverse_scaleway/mnq_sqs_credentials.py +10 -4
- pulumiverse_scaleway/mnq_sqs_queue.py +16 -10
- pulumiverse_scaleway/mongo_db_instance.py +14 -8
- pulumiverse_scaleway/mongo_db_snapshot.py +8 -2
- pulumiverse_scaleway/mongodb/__init__.py +12 -0
- pulumiverse_scaleway/mongodb/_inputs.py +208 -0
- pulumiverse_scaleway/mongodb/get_instance.py +335 -0
- pulumiverse_scaleway/mongodb/instance.py +1000 -0
- pulumiverse_scaleway/mongodb/outputs.py +270 -0
- pulumiverse_scaleway/mongodb/snapshot.py +523 -0
- pulumiverse_scaleway/network/__init__.py +29 -0
- pulumiverse_scaleway/network/_inputs.py +383 -0
- pulumiverse_scaleway/network/gateway_network.py +868 -0
- pulumiverse_scaleway/network/get_gateway_network.py +287 -0
- pulumiverse_scaleway/network/get_private_network.py +282 -0
- pulumiverse_scaleway/network/get_public_gateway.py +304 -0
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +305 -0
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +382 -0
- pulumiverse_scaleway/network/get_public_gateway_ip.py +199 -0
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +313 -0
- pulumiverse_scaleway/network/get_routes.py +208 -0
- pulumiverse_scaleway/network/get_vpc.py +246 -0
- pulumiverse_scaleway/network/get_vpcs.py +174 -0
- pulumiverse_scaleway/network/outputs.py +747 -0
- pulumiverse_scaleway/network/private_network.py +736 -0
- pulumiverse_scaleway/network/public_gateway.py +791 -0
- pulumiverse_scaleway/network/public_gateway_dhcp.py +949 -0
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +516 -0
- pulumiverse_scaleway/network/public_gateway_ip.py +459 -0
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +308 -0
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +593 -0
- pulumiverse_scaleway/network/route.py +579 -0
- pulumiverse_scaleway/network/vpc.py +538 -0
- pulumiverse_scaleway/object/__init__.py +17 -0
- pulumiverse_scaleway/object/_inputs.py +831 -0
- pulumiverse_scaleway/object/bucket.py +876 -0
- pulumiverse_scaleway/object/bucket_acl.py +598 -0
- pulumiverse_scaleway/object/bucket_lock_configuration.py +397 -0
- pulumiverse_scaleway/object/bucket_policy.py +675 -0
- pulumiverse_scaleway/object/bucket_website_configuration.py +536 -0
- pulumiverse_scaleway/object/get_bucket.py +290 -0
- pulumiverse_scaleway/object/get_bucket_policy.py +163 -0
- pulumiverse_scaleway/object/item.py +778 -0
- pulumiverse_scaleway/object/outputs.py +802 -0
- pulumiverse_scaleway/object_bucket.py +28 -22
- pulumiverse_scaleway/object_bucket_acl.py +14 -8
- pulumiverse_scaleway/object_bucket_lock_configuration.py +12 -6
- pulumiverse_scaleway/object_bucket_policy.py +46 -40
- pulumiverse_scaleway/object_bucket_website_configuration.py +18 -12
- pulumiverse_scaleway/object_item.py +8 -2
- pulumiverse_scaleway/observability/__init__.py +17 -0
- pulumiverse_scaleway/observability/_inputs.py +417 -0
- pulumiverse_scaleway/observability/alert_manager.py +403 -0
- pulumiverse_scaleway/observability/cockpit.py +325 -0
- pulumiverse_scaleway/observability/get_instance.py +205 -0
- pulumiverse_scaleway/observability/get_plan.py +125 -0
- pulumiverse_scaleway/observability/get_source.py +262 -0
- pulumiverse_scaleway/observability/grafana_user.py +364 -0
- pulumiverse_scaleway/observability/outputs.py +425 -0
- pulumiverse_scaleway/observability/source.py +569 -0
- pulumiverse_scaleway/observability/token.py +481 -0
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +16 -10
- pulumiverse_scaleway/redis/__init__.py +11 -0
- pulumiverse_scaleway/redis/_inputs.py +330 -0
- pulumiverse_scaleway/redis/cluster.py +1203 -0
- pulumiverse_scaleway/redis/get_cluster.py +347 -0
- pulumiverse_scaleway/redis/outputs.py +356 -0
- pulumiverse_scaleway/redis_cluster.py +14 -8
- pulumiverse_scaleway/registry/__init__.py +11 -0
- pulumiverse_scaleway/registry/get_image.py +239 -0
- pulumiverse_scaleway/registry/get_image_tag.py +229 -0
- pulumiverse_scaleway/registry/get_namespace.py +199 -0
- pulumiverse_scaleway/registry/namespace.py +460 -0
- pulumiverse_scaleway/registry_namespace.py +8 -2
- pulumiverse_scaleway/sdb_database.py +10 -4
- pulumiverse_scaleway/secret.py +6 -0
- pulumiverse_scaleway/secret_version.py +12 -6
- pulumiverse_scaleway/secrets/__init__.py +13 -0
- pulumiverse_scaleway/secrets/_inputs.py +94 -0
- pulumiverse_scaleway/secrets/get_secret.py +338 -0
- pulumiverse_scaleway/secrets/get_version.py +340 -0
- pulumiverse_scaleway/secrets/outputs.py +120 -0
- pulumiverse_scaleway/secrets/secret.py +665 -0
- pulumiverse_scaleway/secrets/version.py +489 -0
- pulumiverse_scaleway/tem/__init__.py +13 -0
- pulumiverse_scaleway/tem/_inputs.py +135 -0
- pulumiverse_scaleway/tem/domain.py +1032 -0
- pulumiverse_scaleway/tem/domain_validation.py +305 -0
- pulumiverse_scaleway/tem/get_domain.py +378 -0
- pulumiverse_scaleway/tem/outputs.py +171 -0
- pulumiverse_scaleway/tem/webhook.py +642 -0
- pulumiverse_scaleway/tem_domain.py +20 -14
- pulumiverse_scaleway/tem_domain_validation.py +10 -4
- pulumiverse_scaleway/tem_webhook.py +28 -22
- pulumiverse_scaleway/vpc.py +10 -4
- pulumiverse_scaleway/vpc_gateway_network.py +40 -34
- pulumiverse_scaleway/vpc_private_network.py +10 -4
- pulumiverse_scaleway/vpc_public_gateway.py +8 -2
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +15 -9
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +32 -26
- pulumiverse_scaleway/vpc_public_gateway_ip.py +10 -4
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +12 -6
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +26 -20
- pulumiverse_scaleway/vpc_route.py +16 -10
- pulumiverse_scaleway/webhosting.py +10 -4
- {pulumiverse_scaleway-1.25.0a1742464679.dist-info → pulumiverse_scaleway-1.25.0a1742668904.dist-info}/METADATA +1 -1
- pulumiverse_scaleway-1.25.0a1742668904.dist-info/RECORD +470 -0
- {pulumiverse_scaleway-1.25.0a1742464679.dist-info → pulumiverse_scaleway-1.25.0a1742668904.dist-info}/WHEEL +1 -1
- pulumiverse_scaleway-1.25.0a1742464679.dist-info/RECORD +0 -206
- {pulumiverse_scaleway-1.25.0a1742464679.dist-info → pulumiverse_scaleway-1.25.0a1742668904.dist-info}/top_level.txt +0 -0
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_lb_routes_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getlbroutes.getLbRoutes has been deprecated in favor of scaleway.loadbalancers/getroutes.getRoutes""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetLbRoutesResult:
|
27
29
|
"""
|
@@ -114,9 +116,9 @@ def get_lb_routes(frontend_id: Optional[str] = None,
|
|
114
116
|
import pulumi_scaleway as scaleway
|
115
117
|
|
116
118
|
# Find routes that share the same frontend ID
|
117
|
-
by_frontend_id = scaleway.
|
119
|
+
by_frontend_id = scaleway.loadbalancers.get_routes(frontend_id=frt01["id"])
|
118
120
|
# Find routes by frontend ID and zone
|
119
|
-
my_key = scaleway.
|
121
|
+
my_key = scaleway.loadbalancers.get_routes(frontend_id="11111111-1111-1111-1111-111111111111",
|
120
122
|
zone="fr-par-2")
|
121
123
|
```
|
122
124
|
|
@@ -124,6 +126,7 @@ def get_lb_routes(frontend_id: Optional[str] = None,
|
|
124
126
|
:param str frontend_id: The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
|
125
127
|
:param str zone: `zone`) The zone in which the routes exist.
|
126
128
|
"""
|
129
|
+
pulumi.log.warn("""get_lb_routes is deprecated: scaleway.index/getlbroutes.getLbRoutes has been deprecated in favor of scaleway.loadbalancers/getroutes.getRoutes""")
|
127
130
|
__args__ = dict()
|
128
131
|
__args__['frontendId'] = frontend_id
|
129
132
|
__args__['projectId'] = project_id
|
@@ -154,9 +157,9 @@ def get_lb_routes_output(frontend_id: Optional[pulumi.Input[Optional[str]]] = No
|
|
154
157
|
import pulumi_scaleway as scaleway
|
155
158
|
|
156
159
|
# Find routes that share the same frontend ID
|
157
|
-
by_frontend_id = scaleway.
|
160
|
+
by_frontend_id = scaleway.loadbalancers.get_routes(frontend_id=frt01["id"])
|
158
161
|
# Find routes by frontend ID and zone
|
159
|
-
my_key = scaleway.
|
162
|
+
my_key = scaleway.loadbalancers.get_routes(frontend_id="11111111-1111-1111-1111-111111111111",
|
160
163
|
zone="fr-par-2")
|
161
164
|
```
|
162
165
|
|
@@ -164,6 +167,7 @@ def get_lb_routes_output(frontend_id: Optional[pulumi.Input[Optional[str]]] = No
|
|
164
167
|
:param str frontend_id: The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
|
165
168
|
:param str zone: `zone`) The zone in which the routes exist.
|
166
169
|
"""
|
170
|
+
pulumi.log.warn("""get_lb_routes is deprecated: scaleway.index/getlbroutes.getLbRoutes has been deprecated in favor of scaleway.loadbalancers/getroutes.getRoutes""")
|
167
171
|
__args__ = dict()
|
168
172
|
__args__['frontendId'] = frontend_id
|
169
173
|
__args__['projectId'] = project_id
|
pulumiverse_scaleway/get_lbs.py
CHANGED
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_lbs_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getlbs.getLbs has been deprecated in favor of scaleway.loadbalancers/getloadbalancers.getLoadBalancers""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetLbsResult:
|
27
29
|
"""
|
@@ -138,6 +140,7 @@ def get_lbs(name: Optional[str] = None,
|
|
138
140
|
:param Sequence[str] tags: List of tags to filter for. Load Balancers with these exact tags are listed.
|
139
141
|
:param str zone: `zone`) The zone in which the Load Balancers exist.
|
140
142
|
"""
|
143
|
+
pulumi.log.warn("""get_lbs is deprecated: scaleway.index/getlbs.getLbs has been deprecated in favor of scaleway.loadbalancers/getloadbalancers.getLoadBalancers""")
|
141
144
|
__args__ = dict()
|
142
145
|
__args__['name'] = name
|
143
146
|
__args__['projectId'] = project_id
|
@@ -170,6 +173,7 @@ def get_lbs_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
170
173
|
:param Sequence[str] tags: List of tags to filter for. Load Balancers with these exact tags are listed.
|
171
174
|
:param str zone: `zone`) The zone in which the Load Balancers exist.
|
172
175
|
"""
|
176
|
+
pulumi.log.warn("""get_lbs is deprecated: scaleway.index/getlbs.getLbs has been deprecated in favor of scaleway.loadbalancers/getloadbalancers.getLoadBalancers""")
|
173
177
|
__args__ = dict()
|
174
178
|
__args__['name'] = name
|
175
179
|
__args__['projectId'] = project_id
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_loadbalancer_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getloadbalancer.getLoadbalancer has been deprecated in favor of scaleway.loadbalancers/getloadbalancer.getLoadBalancer""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetLoadbalancerResult:
|
27
29
|
"""
|
@@ -242,9 +244,9 @@ def get_loadbalancer(lb_id: Optional[str] = None,
|
|
242
244
|
import pulumi_scaleway as scaleway
|
243
245
|
|
244
246
|
# Get info by name
|
245
|
-
by_name = scaleway.
|
247
|
+
by_name = scaleway.loadbalancers.get_load_balancer(name="foobar")
|
246
248
|
# Get info by ID
|
247
|
-
by_id = scaleway.
|
249
|
+
by_id = scaleway.loadbalancers.get_load_balancer(lb_id="11111111-1111-1111-1111-111111111111")
|
248
250
|
```
|
249
251
|
|
250
252
|
|
@@ -252,6 +254,7 @@ def get_loadbalancer(lb_id: Optional[str] = None,
|
|
252
254
|
:param str project_id: The ID of the Project the Load Balancer is associated with.
|
253
255
|
:param str zone: (Defaults to provider `zone`) The zone in which the Load Balancer exists.
|
254
256
|
"""
|
257
|
+
pulumi.log.warn("""get_loadbalancer is deprecated: scaleway.index/getloadbalancer.getLoadbalancer has been deprecated in favor of scaleway.loadbalancers/getloadbalancer.getLoadBalancer""")
|
255
258
|
__args__ = dict()
|
256
259
|
__args__['lbId'] = lb_id
|
257
260
|
__args__['name'] = name
|
@@ -299,9 +302,9 @@ def get_loadbalancer_output(lb_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
299
302
|
import pulumi_scaleway as scaleway
|
300
303
|
|
301
304
|
# Get info by name
|
302
|
-
by_name = scaleway.
|
305
|
+
by_name = scaleway.loadbalancers.get_load_balancer(name="foobar")
|
303
306
|
# Get info by ID
|
304
|
-
by_id = scaleway.
|
307
|
+
by_id = scaleway.loadbalancers.get_load_balancer(lb_id="11111111-1111-1111-1111-111111111111")
|
305
308
|
```
|
306
309
|
|
307
310
|
|
@@ -309,6 +312,7 @@ def get_loadbalancer_output(lb_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
309
312
|
:param str project_id: The ID of the Project the Load Balancer is associated with.
|
310
313
|
:param str zone: (Defaults to provider `zone`) The zone in which the Load Balancer exists.
|
311
314
|
"""
|
315
|
+
pulumi.log.warn("""get_loadbalancer is deprecated: scaleway.index/getloadbalancer.getLoadbalancer has been deprecated in favor of scaleway.loadbalancers/getloadbalancer.getLoadBalancer""")
|
312
316
|
__args__ = dict()
|
313
317
|
__args__['lbId'] = lb_id
|
314
318
|
__args__['name'] = name
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_loadbalancer_certificate_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getloadbalancercertificate.getLoadbalancerCertificate has been deprecated in favor of scaleway.loadbalancers/getcertificate.getCertificate""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetLoadbalancerCertificateResult:
|
27
29
|
"""
|
@@ -169,6 +171,7 @@ def get_loadbalancer_certificate(certificate_id: Optional[str] = None,
|
|
169
171
|
:param str name: The name of the Load Balancer certificate.
|
170
172
|
- When using a certificate `name` you should specify the `lb-id`
|
171
173
|
"""
|
174
|
+
pulumi.log.warn("""get_loadbalancer_certificate is deprecated: scaleway.index/getloadbalancercertificate.getLoadbalancerCertificate has been deprecated in favor of scaleway.loadbalancers/getcertificate.getCertificate""")
|
172
175
|
__args__ = dict()
|
173
176
|
__args__['certificateId'] = certificate_id
|
174
177
|
__args__['lbId'] = lb_id
|
@@ -209,6 +212,7 @@ def get_loadbalancer_certificate_output(certificate_id: Optional[pulumi.Input[Op
|
|
209
212
|
:param str name: The name of the Load Balancer certificate.
|
210
213
|
- When using a certificate `name` you should specify the `lb-id`
|
211
214
|
"""
|
215
|
+
pulumi.log.warn("""get_loadbalancer_certificate is deprecated: scaleway.index/getloadbalancercertificate.getLoadbalancerCertificate has been deprecated in favor of scaleway.loadbalancers/getcertificate.getCertificate""")
|
212
216
|
__args__ = dict()
|
213
217
|
__args__['certificateId'] = certificate_id
|
214
218
|
__args__['lbId'] = lb_id
|
@@ -21,6 +21,8 @@ __all__ = [
|
|
21
21
|
'get_loadbalancer_ip_output',
|
22
22
|
]
|
23
23
|
|
24
|
+
warnings.warn("""scaleway.index/getloadbalancerip.getLoadbalancerIp has been deprecated in favor of scaleway.loadbalancers/getip.getIp""", DeprecationWarning)
|
25
|
+
|
24
26
|
@pulumi.output_type
|
25
27
|
class GetLoadbalancerIpResult:
|
26
28
|
"""
|
@@ -169,6 +171,7 @@ def get_loadbalancer_ip(ip_address: Optional[str] = None,
|
|
169
171
|
:param str project_id: The ID of the Project the Load Balancer IP is associated with.
|
170
172
|
:param str zone: `zone`) The zone in which the IP was reserved.
|
171
173
|
"""
|
174
|
+
pulumi.log.warn("""get_loadbalancer_ip is deprecated: scaleway.index/getloadbalancerip.getLoadbalancerIp has been deprecated in favor of scaleway.loadbalancers/getip.getIp""")
|
172
175
|
__args__ = dict()
|
173
176
|
__args__['ipAddress'] = ip_address
|
174
177
|
__args__['ipId'] = ip_id
|
@@ -207,6 +210,7 @@ def get_loadbalancer_ip_output(ip_address: Optional[pulumi.Input[Optional[str]]]
|
|
207
210
|
:param str project_id: The ID of the Project the Load Balancer IP is associated with.
|
208
211
|
:param str zone: `zone`) The zone in which the IP was reserved.
|
209
212
|
"""
|
213
|
+
pulumi.log.warn("""get_loadbalancer_ip is deprecated: scaleway.index/getloadbalancerip.getLoadbalancerIp has been deprecated in favor of scaleway.loadbalancers/getip.getIp""")
|
210
214
|
__args__ = dict()
|
211
215
|
__args__['ipAddress'] = ip_address
|
212
216
|
__args__['ipId'] = ip_id
|
@@ -21,6 +21,8 @@ __all__ = [
|
|
21
21
|
'get_mnq_sns_output',
|
22
22
|
]
|
23
23
|
|
24
|
+
warnings.warn("""scaleway.index/getmnqsns.getMnqSns has been deprecated in favor of scaleway.mnq/getsns.getSns""", DeprecationWarning)
|
25
|
+
|
24
26
|
@pulumi.output_type
|
25
27
|
class GetMnqSnsResult:
|
26
28
|
"""
|
@@ -94,15 +96,16 @@ def get_mnq_sns(project_id: Optional[str] = None,
|
|
94
96
|
import pulumi_scaleway as scaleway
|
95
97
|
|
96
98
|
# For default project
|
97
|
-
main = scaleway.
|
99
|
+
main = scaleway.mnq.get_sns()
|
98
100
|
# For specific project
|
99
|
-
for_project = scaleway.
|
101
|
+
for_project = scaleway.mnq.get_sns(project_id=main_scaleway_account_project["id"])
|
100
102
|
```
|
101
103
|
|
102
104
|
|
103
105
|
:param str project_id: `project_id`) The ID of the Project in which sns is enabled.
|
104
106
|
:param str region: `region`). The region in which sns is enabled.
|
105
107
|
"""
|
108
|
+
pulumi.log.warn("""get_mnq_sns is deprecated: scaleway.index/getmnqsns.getMnqSns has been deprecated in favor of scaleway.mnq/getsns.getSns""")
|
106
109
|
__args__ = dict()
|
107
110
|
__args__['projectId'] = project_id
|
108
111
|
__args__['region'] = region
|
@@ -129,15 +132,16 @@ def get_mnq_sns_output(project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
129
132
|
import pulumi_scaleway as scaleway
|
130
133
|
|
131
134
|
# For default project
|
132
|
-
main = scaleway.
|
135
|
+
main = scaleway.mnq.get_sns()
|
133
136
|
# For specific project
|
134
|
-
for_project = scaleway.
|
137
|
+
for_project = scaleway.mnq.get_sns(project_id=main_scaleway_account_project["id"])
|
135
138
|
```
|
136
139
|
|
137
140
|
|
138
141
|
:param str project_id: `project_id`) The ID of the Project in which sns is enabled.
|
139
142
|
:param str region: `region`). The region in which sns is enabled.
|
140
143
|
"""
|
144
|
+
pulumi.log.warn("""get_mnq_sns is deprecated: scaleway.index/getmnqsns.getMnqSns has been deprecated in favor of scaleway.mnq/getsns.getSns""")
|
141
145
|
__args__ = dict()
|
142
146
|
__args__['projectId'] = project_id
|
143
147
|
__args__['region'] = region
|
@@ -21,6 +21,8 @@ __all__ = [
|
|
21
21
|
'get_mnq_sqs_output',
|
22
22
|
]
|
23
23
|
|
24
|
+
warnings.warn("""scaleway.index/getmnqsqs.getMnqSqs has been deprecated in favor of scaleway.mnq/getsqs.getSqs""", DeprecationWarning)
|
25
|
+
|
24
26
|
@pulumi.output_type
|
25
27
|
class GetMnqSqsResult:
|
26
28
|
"""
|
@@ -94,15 +96,16 @@ def get_mnq_sqs(project_id: Optional[str] = None,
|
|
94
96
|
import pulumi_scaleway as scaleway
|
95
97
|
|
96
98
|
# For default project
|
97
|
-
main = scaleway.
|
99
|
+
main = scaleway.mnq.get_sqs()
|
98
100
|
# For specific project
|
99
|
-
for_project = scaleway.
|
101
|
+
for_project = scaleway.mnq.get_sqs(project_id=main_scaleway_account_project["id"])
|
100
102
|
```
|
101
103
|
|
102
104
|
|
103
105
|
:param str project_id: `project_id`) The ID of the Project in which SQS is enabled.
|
104
106
|
:param str region: `region`). The region in which SQS is enabled.
|
105
107
|
"""
|
108
|
+
pulumi.log.warn("""get_mnq_sqs is deprecated: scaleway.index/getmnqsqs.getMnqSqs has been deprecated in favor of scaleway.mnq/getsqs.getSqs""")
|
106
109
|
__args__ = dict()
|
107
110
|
__args__['projectId'] = project_id
|
108
111
|
__args__['region'] = region
|
@@ -129,15 +132,16 @@ def get_mnq_sqs_output(project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
129
132
|
import pulumi_scaleway as scaleway
|
130
133
|
|
131
134
|
# For default project
|
132
|
-
main = scaleway.
|
135
|
+
main = scaleway.mnq.get_sqs()
|
133
136
|
# For specific project
|
134
|
-
for_project = scaleway.
|
137
|
+
for_project = scaleway.mnq.get_sqs(project_id=main_scaleway_account_project["id"])
|
135
138
|
```
|
136
139
|
|
137
140
|
|
138
141
|
:param str project_id: `project_id`) The ID of the Project in which SQS is enabled.
|
139
142
|
:param str region: `region`). The region in which SQS is enabled.
|
140
143
|
"""
|
144
|
+
pulumi.log.warn("""get_mnq_sqs is deprecated: scaleway.index/getmnqsqs.getMnqSqs has been deprecated in favor of scaleway.mnq/getsqs.getSqs""")
|
141
145
|
__args__ = dict()
|
142
146
|
__args__['projectId'] = project_id
|
143
147
|
__args__['region'] = region
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_mongo_db_instance_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getmongodbinstance.getMongoDbInstance has been deprecated in favor of scaleway.mongodb/getinstance.getInstance""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetMongoDbInstanceResult:
|
27
29
|
"""
|
@@ -260,6 +262,7 @@ def get_mongo_db_instance(instance_id: Optional[str] = None,
|
|
260
262
|
:param str project_id: The ID of the project the MongoDB® instance is in. Can be used to filter instances when using `name`.
|
261
263
|
:param str region: `region`) The region in which the MongoDB® Instance exists.
|
262
264
|
"""
|
265
|
+
pulumi.log.warn("""get_mongo_db_instance is deprecated: scaleway.index/getmongodbinstance.getMongoDbInstance has been deprecated in favor of scaleway.mongodb/getinstance.getInstance""")
|
263
266
|
__args__ = dict()
|
264
267
|
__args__['instanceId'] = instance_id
|
265
268
|
__args__['name'] = name
|
@@ -306,6 +309,7 @@ def get_mongo_db_instance_output(instance_id: Optional[pulumi.Input[Optional[str
|
|
306
309
|
:param str project_id: The ID of the project the MongoDB® instance is in. Can be used to filter instances when using `name`.
|
307
310
|
:param str region: `region`) The region in which the MongoDB® Instance exists.
|
308
311
|
"""
|
312
|
+
pulumi.log.warn("""get_mongo_db_instance is deprecated: scaleway.index/getmongodbinstance.getMongoDbInstance has been deprecated in favor of scaleway.mongodb/getinstance.getInstance""")
|
309
313
|
__args__ = dict()
|
310
314
|
__args__['instanceId'] = instance_id
|
311
315
|
__args__['name'] = name
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_object_bucket_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getobjectbucket.getObjectBucket has been deprecated in favor of scaleway.object/getbucket.getBucket""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetObjectBucketResult:
|
27
29
|
"""
|
@@ -166,7 +168,7 @@ def get_object_bucket(name: Optional[str] = None,
|
|
166
168
|
region: Optional[str] = None,
|
167
169
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetObjectBucketResult:
|
168
170
|
"""
|
169
|
-
The `
|
171
|
+
The `object.Bucket` data source is used to retrieve information about an Object Storage bucket.
|
170
172
|
|
171
173
|
Refer to the Object Storage [documentation](https://www.scaleway.com/en/docs/object-storage/how-to/create-a-bucket/) for more information.
|
172
174
|
|
@@ -182,12 +184,12 @@ def get_object_bucket(name: Optional[str] = None,
|
|
182
184
|
import pulumi_scaleway as scaleway
|
183
185
|
import pulumiverse_scaleway as scaleway
|
184
186
|
|
185
|
-
main = scaleway.
|
187
|
+
main = scaleway.object.Bucket("main",
|
186
188
|
name="bucket.test.com",
|
187
189
|
tags={
|
188
190
|
"foo": "bar",
|
189
191
|
})
|
190
|
-
selected = scaleway.
|
192
|
+
selected = scaleway.object.get_bucket_output(name=main.id)
|
191
193
|
```
|
192
194
|
|
193
195
|
## Retrieve a bucket from a specific project
|
@@ -196,7 +198,7 @@ def get_object_bucket(name: Optional[str] = None,
|
|
196
198
|
import pulumi
|
197
199
|
import pulumi_scaleway as scaleway
|
198
200
|
|
199
|
-
selected = scaleway.
|
201
|
+
selected = scaleway.object.get_bucket(name="bucket.test.com",
|
200
202
|
project_id="11111111-1111-1111-1111-111111111111")
|
201
203
|
```
|
202
204
|
|
@@ -204,6 +206,7 @@ def get_object_bucket(name: Optional[str] = None,
|
|
204
206
|
:param str project_id: `project_id`) The ID of the project with which the bucket is associated.
|
205
207
|
:param str region: `region`) The region in which the bucket exists.
|
206
208
|
"""
|
209
|
+
pulumi.log.warn("""get_object_bucket is deprecated: scaleway.index/getobjectbucket.getObjectBucket has been deprecated in favor of scaleway.object/getbucket.getBucket""")
|
207
210
|
__args__ = dict()
|
208
211
|
__args__['name'] = name
|
209
212
|
__args__['projectId'] = project_id
|
@@ -230,7 +233,7 @@ def get_object_bucket_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
230
233
|
region: Optional[pulumi.Input[Optional[str]]] = None,
|
231
234
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetObjectBucketResult]:
|
232
235
|
"""
|
233
|
-
The `
|
236
|
+
The `object.Bucket` data source is used to retrieve information about an Object Storage bucket.
|
234
237
|
|
235
238
|
Refer to the Object Storage [documentation](https://www.scaleway.com/en/docs/object-storage/how-to/create-a-bucket/) for more information.
|
236
239
|
|
@@ -246,12 +249,12 @@ def get_object_bucket_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
246
249
|
import pulumi_scaleway as scaleway
|
247
250
|
import pulumiverse_scaleway as scaleway
|
248
251
|
|
249
|
-
main = scaleway.
|
252
|
+
main = scaleway.object.Bucket("main",
|
250
253
|
name="bucket.test.com",
|
251
254
|
tags={
|
252
255
|
"foo": "bar",
|
253
256
|
})
|
254
|
-
selected = scaleway.
|
257
|
+
selected = scaleway.object.get_bucket_output(name=main.id)
|
255
258
|
```
|
256
259
|
|
257
260
|
## Retrieve a bucket from a specific project
|
@@ -260,7 +263,7 @@ def get_object_bucket_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
260
263
|
import pulumi
|
261
264
|
import pulumi_scaleway as scaleway
|
262
265
|
|
263
|
-
selected = scaleway.
|
266
|
+
selected = scaleway.object.get_bucket(name="bucket.test.com",
|
264
267
|
project_id="11111111-1111-1111-1111-111111111111")
|
265
268
|
```
|
266
269
|
|
@@ -268,6 +271,7 @@ def get_object_bucket_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
268
271
|
:param str project_id: `project_id`) The ID of the project with which the bucket is associated.
|
269
272
|
:param str region: `region`) The region in which the bucket exists.
|
270
273
|
"""
|
274
|
+
pulumi.log.warn("""get_object_bucket is deprecated: scaleway.index/getobjectbucket.getObjectBucket has been deprecated in favor of scaleway.object/getbucket.getBucket""")
|
271
275
|
__args__ = dict()
|
272
276
|
__args__['name'] = name
|
273
277
|
__args__['projectId'] = project_id
|
@@ -21,6 +21,8 @@ __all__ = [
|
|
21
21
|
'get_object_bucket_policy_output',
|
22
22
|
]
|
23
23
|
|
24
|
+
warnings.warn("""scaleway.index/getobjectbucketpolicy.getObjectBucketPolicy has been deprecated in favor of scaleway.object/getbucketpolicy.getBucketPolicy""", DeprecationWarning)
|
25
|
+
|
24
26
|
@pulumi.output_type
|
25
27
|
class GetObjectBucketPolicyResult:
|
26
28
|
"""
|
@@ -93,7 +95,7 @@ def get_object_bucket_policy(bucket: Optional[str] = None,
|
|
93
95
|
region: Optional[str] = None,
|
94
96
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetObjectBucketPolicyResult:
|
95
97
|
"""
|
96
|
-
The `
|
98
|
+
The `object.BucketPolicy` data source is used to retrieve information about the bucket policy of an Object Storage bucket.
|
97
99
|
|
98
100
|
Refer to the Object Storage [documentation](https://www.scaleway.com/en/docs/object-storage/api-cli/bucket-policy/) for more information.
|
99
101
|
|
@@ -105,13 +107,14 @@ def get_object_bucket_policy(bucket: Optional[str] = None,
|
|
105
107
|
import pulumi
|
106
108
|
import pulumi_scaleway as scaleway
|
107
109
|
|
108
|
-
main = scaleway.
|
110
|
+
main = scaleway.object.get_bucket_policy(bucket="bucket.test.com")
|
109
111
|
```
|
110
112
|
|
111
113
|
|
112
114
|
:param str bucket: The name of the bucket.
|
113
115
|
:param str region: `region`) The region in which the Object Storage exists.
|
114
116
|
"""
|
117
|
+
pulumi.log.warn("""get_object_bucket_policy is deprecated: scaleway.index/getobjectbucketpolicy.getObjectBucketPolicy has been deprecated in favor of scaleway.object/getbucketpolicy.getBucketPolicy""")
|
115
118
|
__args__ = dict()
|
116
119
|
__args__['bucket'] = bucket
|
117
120
|
__args__['projectId'] = project_id
|
@@ -130,7 +133,7 @@ def get_object_bucket_policy_output(bucket: Optional[pulumi.Input[str]] = None,
|
|
130
133
|
region: Optional[pulumi.Input[Optional[str]]] = None,
|
131
134
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetObjectBucketPolicyResult]:
|
132
135
|
"""
|
133
|
-
The `
|
136
|
+
The `object.BucketPolicy` data source is used to retrieve information about the bucket policy of an Object Storage bucket.
|
134
137
|
|
135
138
|
Refer to the Object Storage [documentation](https://www.scaleway.com/en/docs/object-storage/api-cli/bucket-policy/) for more information.
|
136
139
|
|
@@ -142,13 +145,14 @@ def get_object_bucket_policy_output(bucket: Optional[pulumi.Input[str]] = None,
|
|
142
145
|
import pulumi
|
143
146
|
import pulumi_scaleway as scaleway
|
144
147
|
|
145
|
-
main = scaleway.
|
148
|
+
main = scaleway.object.get_bucket_policy(bucket="bucket.test.com")
|
146
149
|
```
|
147
150
|
|
148
151
|
|
149
152
|
:param str bucket: The name of the bucket.
|
150
153
|
:param str region: `region`) The region in which the Object Storage exists.
|
151
154
|
"""
|
155
|
+
pulumi.log.warn("""get_object_bucket_policy is deprecated: scaleway.index/getobjectbucketpolicy.getObjectBucketPolicy has been deprecated in favor of scaleway.object/getbucketpolicy.getBucketPolicy""")
|
152
156
|
__args__ = dict()
|
153
157
|
__args__['bucket'] = bucket
|
154
158
|
__args__['projectId'] = project_id
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_redis_cluster_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getrediscluster.getRedisCluster has been deprecated in favor of scaleway.redis/getcluster.getCluster""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetRedisClusterResult:
|
27
29
|
"""
|
@@ -272,6 +274,7 @@ def get_redis_cluster(cluster_id: Optional[str] = None,
|
|
272
274
|
:param str project_id: The ID of the project the Redis cluster is associated with.
|
273
275
|
:param str zone: `region`) The zone in which the server exists.
|
274
276
|
"""
|
277
|
+
pulumi.log.warn("""get_redis_cluster is deprecated: scaleway.index/getrediscluster.getRedisCluster has been deprecated in favor of scaleway.redis/getcluster.getCluster""")
|
275
278
|
__args__ = dict()
|
276
279
|
__args__['clusterId'] = cluster_id
|
277
280
|
__args__['name'] = name
|
@@ -318,6 +321,7 @@ def get_redis_cluster_output(cluster_id: Optional[pulumi.Input[Optional[str]]] =
|
|
318
321
|
:param str project_id: The ID of the project the Redis cluster is associated with.
|
319
322
|
:param str zone: `region`) The zone in which the server exists.
|
320
323
|
"""
|
324
|
+
pulumi.log.warn("""get_redis_cluster is deprecated: scaleway.index/getrediscluster.getRedisCluster has been deprecated in favor of scaleway.redis/getcluster.getCluster""")
|
321
325
|
__args__ = dict()
|
322
326
|
__args__['clusterId'] = cluster_id
|
323
327
|
__args__['name'] = name
|
@@ -21,6 +21,8 @@ __all__ = [
|
|
21
21
|
'get_registry_image_output',
|
22
22
|
]
|
23
23
|
|
24
|
+
warnings.warn("""scaleway.index/getregistryimage.getRegistryImage has been deprecated in favor of scaleway.registry/getimage.getImage""", DeprecationWarning)
|
25
|
+
|
24
26
|
@pulumi.output_type
|
25
27
|
class GetRegistryImageResult:
|
26
28
|
"""
|
@@ -174,6 +176,7 @@ def get_registry_image(image_id: Optional[str] = None,
|
|
174
176
|
:param str region: `region`) The region in which the image exists.
|
175
177
|
:param Sequence[str] tags: The tags associated with the registry image
|
176
178
|
"""
|
179
|
+
pulumi.log.warn("""get_registry_image is deprecated: scaleway.index/getregistryimage.getRegistryImage has been deprecated in favor of scaleway.registry/getimage.getImage""")
|
177
180
|
__args__ = dict()
|
178
181
|
__args__['imageId'] = image_id
|
179
182
|
__args__['name'] = name
|
@@ -216,6 +219,7 @@ def get_registry_image_output(image_id: Optional[pulumi.Input[Optional[str]]] =
|
|
216
219
|
:param str region: `region`) The region in which the image exists.
|
217
220
|
:param Sequence[str] tags: The tags associated with the registry image
|
218
221
|
"""
|
222
|
+
pulumi.log.warn("""get_registry_image is deprecated: scaleway.index/getregistryimage.getRegistryImage has been deprecated in favor of scaleway.registry/getimage.getImage""")
|
219
223
|
__args__ = dict()
|
220
224
|
__args__['imageId'] = image_id
|
221
225
|
__args__['name'] = name
|
@@ -21,6 +21,8 @@ __all__ = [
|
|
21
21
|
'get_registry_image_tag_output',
|
22
22
|
]
|
23
23
|
|
24
|
+
warnings.warn("""scaleway.index/getregistryimagetag.getRegistryImageTag has been deprecated in favor of scaleway.registry/getimagetag.getImageTag""", DeprecationWarning)
|
25
|
+
|
24
26
|
@pulumi.output_type
|
25
27
|
class GetRegistryImageTagResult:
|
26
28
|
"""
|
@@ -170,6 +172,7 @@ def get_registry_image_tag(image_id: Optional[str] = None,
|
|
170
172
|
:param str region: The region in which the registry image tag exists.
|
171
173
|
:param str tag_id: The ID of the registry image tag.
|
172
174
|
"""
|
175
|
+
pulumi.log.warn("""get_registry_image_tag is deprecated: scaleway.index/getregistryimagetag.getRegistryImageTag has been deprecated in favor of scaleway.registry/getimagetag.getImageTag""")
|
173
176
|
__args__ = dict()
|
174
177
|
__args__['imageId'] = image_id
|
175
178
|
__args__['name'] = name
|
@@ -207,6 +210,7 @@ def get_registry_image_tag_output(image_id: Optional[pulumi.Input[str]] = None,
|
|
207
210
|
:param str region: The region in which the registry image tag exists.
|
208
211
|
:param str tag_id: The ID of the registry image tag.
|
209
212
|
"""
|
213
|
+
pulumi.log.warn("""get_registry_image_tag is deprecated: scaleway.index/getregistryimagetag.getRegistryImageTag has been deprecated in favor of scaleway.registry/getimagetag.getImageTag""")
|
210
214
|
__args__ = dict()
|
211
215
|
__args__['imageId'] = image_id
|
212
216
|
__args__['name'] = name
|
@@ -21,6 +21,8 @@ __all__ = [
|
|
21
21
|
'get_registry_namespace_output',
|
22
22
|
]
|
23
23
|
|
24
|
+
warnings.warn("""scaleway.index/getregistrynamespace.getRegistryNamespace has been deprecated in favor of scaleway.registry/getnamespace.getNamespace""", DeprecationWarning)
|
25
|
+
|
24
26
|
@pulumi.output_type
|
25
27
|
class GetRegistryNamespaceResult:
|
26
28
|
"""
|
@@ -146,6 +148,7 @@ def get_registry_namespace(name: Optional[str] = None,
|
|
146
148
|
:param str project_id: `project_id`) The ID of the project the namespace is associated with.
|
147
149
|
:param str region: `region`) The region in which the namespace exists.
|
148
150
|
"""
|
151
|
+
pulumi.log.warn("""get_registry_namespace is deprecated: scaleway.index/getregistrynamespace.getRegistryNamespace has been deprecated in favor of scaleway.registry/getnamespace.getNamespace""")
|
149
152
|
__args__ = dict()
|
150
153
|
__args__['name'] = name
|
151
154
|
__args__['namespaceId'] = namespace_id
|
@@ -180,6 +183,7 @@ def get_registry_namespace_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
180
183
|
:param str project_id: `project_id`) The ID of the project the namespace is associated with.
|
181
184
|
:param str region: `region`) The region in which the namespace exists.
|
182
185
|
"""
|
186
|
+
pulumi.log.warn("""get_registry_namespace is deprecated: scaleway.index/getregistrynamespace.getRegistryNamespace has been deprecated in favor of scaleway.registry/getnamespace.getNamespace""")
|
183
187
|
__args__ = dict()
|
184
188
|
__args__['name'] = name
|
185
189
|
__args__['namespaceId'] = namespace_id
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_secret_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getsecret.getSecret has been deprecated in favor of scaleway.secrets/getsecret.getSecret""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetSecretResult:
|
27
29
|
"""
|
@@ -193,7 +195,7 @@ def get_secret(name: Optional[str] = None,
|
|
193
195
|
secret_id: Optional[str] = None,
|
194
196
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecretResult:
|
195
197
|
"""
|
196
|
-
The `Secret` data source is used to get information about a specific secret in Scaleway's Secret Manager.
|
198
|
+
The `secrets.Secret` data source is used to get information about a specific secret in Scaleway's Secret Manager.
|
197
199
|
|
198
200
|
Refer to the Secret Manager [product documentation](https://www.scaleway.com/en/docs/identity-and-access-management/secret-manager/) and [API documentation](https://www.scaleway.com/en/developers/api/secret-manager/) for more information.
|
199
201
|
|
@@ -213,13 +215,13 @@ def get_secret(name: Optional[str] = None,
|
|
213
215
|
import pulumiverse_scaleway as scaleway
|
214
216
|
|
215
217
|
# Create a secret
|
216
|
-
main = scaleway.Secret("main",
|
218
|
+
main = scaleway.secrets.Secret("main",
|
217
219
|
name="foo",
|
218
220
|
description="barr")
|
219
221
|
# Get the secret information specified by the secret ID
|
220
|
-
my_secret = scaleway.get_secret(secret_id="11111111-1111-1111-1111-111111111111")
|
222
|
+
my_secret = scaleway.secrets.get_secret(secret_id="11111111-1111-1111-1111-111111111111")
|
221
223
|
# Get the secret information specified by the secret name
|
222
|
-
by_name = scaleway.get_secret(name="your_secret_name")
|
224
|
+
by_name = scaleway.secrets.get_secret(name="your_secret_name")
|
223
225
|
```
|
224
226
|
|
225
227
|
|
@@ -234,6 +236,7 @@ def get_secret(name: Optional[str] = None,
|
|
234
236
|
:param str secret_id: The ID of the secret.
|
235
237
|
Only one of `name` and `secret_id` should be specified.
|
236
238
|
"""
|
239
|
+
pulumi.log.warn("""get_secret is deprecated: scaleway.index/getsecret.getSecret has been deprecated in favor of scaleway.secrets/getsecret.getSecret""")
|
237
240
|
__args__ = dict()
|
238
241
|
__args__['name'] = name
|
239
242
|
__args__['organizationId'] = organization_id
|
@@ -269,7 +272,7 @@ def get_secret_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
269
272
|
secret_id: Optional[pulumi.Input[Optional[str]]] = None,
|
270
273
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSecretResult]:
|
271
274
|
"""
|
272
|
-
The `Secret` data source is used to get information about a specific secret in Scaleway's Secret Manager.
|
275
|
+
The `secrets.Secret` data source is used to get information about a specific secret in Scaleway's Secret Manager.
|
273
276
|
|
274
277
|
Refer to the Secret Manager [product documentation](https://www.scaleway.com/en/docs/identity-and-access-management/secret-manager/) and [API documentation](https://www.scaleway.com/en/developers/api/secret-manager/) for more information.
|
275
278
|
|
@@ -289,13 +292,13 @@ def get_secret_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
289
292
|
import pulumiverse_scaleway as scaleway
|
290
293
|
|
291
294
|
# Create a secret
|
292
|
-
main = scaleway.Secret("main",
|
295
|
+
main = scaleway.secrets.Secret("main",
|
293
296
|
name="foo",
|
294
297
|
description="barr")
|
295
298
|
# Get the secret information specified by the secret ID
|
296
|
-
my_secret = scaleway.get_secret(secret_id="11111111-1111-1111-1111-111111111111")
|
299
|
+
my_secret = scaleway.secrets.get_secret(secret_id="11111111-1111-1111-1111-111111111111")
|
297
300
|
# Get the secret information specified by the secret name
|
298
|
-
by_name = scaleway.get_secret(name="your_secret_name")
|
301
|
+
by_name = scaleway.secrets.get_secret(name="your_secret_name")
|
299
302
|
```
|
300
303
|
|
301
304
|
|
@@ -310,6 +313,7 @@ def get_secret_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
310
313
|
:param str secret_id: The ID of the secret.
|
311
314
|
Only one of `name` and `secret_id` should be specified.
|
312
315
|
"""
|
316
|
+
pulumi.log.warn("""get_secret is deprecated: scaleway.index/getsecret.getSecret has been deprecated in favor of scaleway.secrets/getsecret.getSecret""")
|
313
317
|
__args__ = dict()
|
314
318
|
__args__['name'] = name
|
315
319
|
__args__['organizationId'] = organization_id
|