pulumiverse-scaleway 1.24.0a1741680905__py3-none-any.whl → 1.25.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 +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.24.0a1741680905.dist-info → pulumiverse_scaleway-1.25.0.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.25.0.dist-info/RECORD +470 -0
- {pulumiverse_scaleway-1.24.0a1741680905.dist-info → pulumiverse_scaleway-1.25.0.dist-info}/WHEEL +1 -1
- pulumiverse_scaleway-1.24.0a1741680905.dist-info/RECORD +0 -206
- {pulumiverse_scaleway-1.24.0a1741680905.dist-info → pulumiverse_scaleway-1.25.0.dist-info}/top_level.txt +0 -0
@@ -23,6 +23,8 @@ __all__ = [
|
|
23
23
|
'get_ipam_ips_output',
|
24
24
|
]
|
25
25
|
|
26
|
+
warnings.warn("""scaleway.index/getipamips.getIpamIps has been deprecated in favor of scaleway.ipam/getips.getIps""", DeprecationWarning)
|
27
|
+
|
26
28
|
@pulumi.output_type
|
27
29
|
class GetIpamIpsResult:
|
28
30
|
"""
|
@@ -194,7 +196,7 @@ def get_ipam_ips(attached: Optional[bool] = None,
|
|
194
196
|
import pulumi
|
195
197
|
import pulumi_scaleway as scaleway
|
196
198
|
|
197
|
-
by_tag = scaleway.
|
199
|
+
by_tag = scaleway.ipam.get_ips(tags=["tag"])
|
198
200
|
```
|
199
201
|
|
200
202
|
### By type and resource
|
@@ -204,13 +206,13 @@ def get_ipam_ips(attached: Optional[bool] = None,
|
|
204
206
|
import pulumi_scaleway as scaleway
|
205
207
|
import pulumiverse_scaleway as scaleway
|
206
208
|
|
207
|
-
vpc01 = scaleway.Vpc("vpc01", name="my vpc")
|
208
|
-
pn01 = scaleway.
|
209
|
+
vpc01 = scaleway.network.Vpc("vpc01", name="my vpc")
|
210
|
+
pn01 = scaleway.network.PrivateNetwork("pn01",
|
209
211
|
vpc_id=vpc01.id,
|
210
212
|
ipv4_subnet={
|
211
213
|
"subnet": "172.16.32.0/22",
|
212
214
|
})
|
213
|
-
redis01 = scaleway.
|
215
|
+
redis01 = scaleway.redis.Cluster("redis01",
|
214
216
|
name="my_redis_cluster",
|
215
217
|
version="7.0.5",
|
216
218
|
node_type="RED1-XS",
|
@@ -220,7 +222,7 @@ def get_ipam_ips(attached: Optional[bool] = None,
|
|
220
222
|
private_networks=[{
|
221
223
|
"id": pn01.id,
|
222
224
|
}])
|
223
|
-
by_type_and_resource = scaleway.
|
225
|
+
by_type_and_resource = scaleway.ipam.get_ips_output(type="ipv4",
|
224
226
|
resource={
|
225
227
|
"id": redis01.id,
|
226
228
|
"type": "redis_cluster",
|
@@ -238,6 +240,7 @@ def get_ipam_ips(attached: Optional[bool] = None,
|
|
238
240
|
:param str type: The type of IP to filter for (`ipv4` or `ipv6`).
|
239
241
|
:param str zonal: Only IPs that are zonal, and in this zone, will be returned.
|
240
242
|
"""
|
243
|
+
pulumi.log.warn("""get_ipam_ips is deprecated: scaleway.index/getipamips.getIpamIps has been deprecated in favor of scaleway.ipam/getips.getIps""")
|
241
244
|
__args__ = dict()
|
242
245
|
__args__['attached'] = attached
|
243
246
|
__args__['macAddress'] = mac_address
|
@@ -287,7 +290,7 @@ def get_ipam_ips_output(attached: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
287
290
|
import pulumi
|
288
291
|
import pulumi_scaleway as scaleway
|
289
292
|
|
290
|
-
by_tag = scaleway.
|
293
|
+
by_tag = scaleway.ipam.get_ips(tags=["tag"])
|
291
294
|
```
|
292
295
|
|
293
296
|
### By type and resource
|
@@ -297,13 +300,13 @@ def get_ipam_ips_output(attached: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
297
300
|
import pulumi_scaleway as scaleway
|
298
301
|
import pulumiverse_scaleway as scaleway
|
299
302
|
|
300
|
-
vpc01 = scaleway.Vpc("vpc01", name="my vpc")
|
301
|
-
pn01 = scaleway.
|
303
|
+
vpc01 = scaleway.network.Vpc("vpc01", name="my vpc")
|
304
|
+
pn01 = scaleway.network.PrivateNetwork("pn01",
|
302
305
|
vpc_id=vpc01.id,
|
303
306
|
ipv4_subnet={
|
304
307
|
"subnet": "172.16.32.0/22",
|
305
308
|
})
|
306
|
-
redis01 = scaleway.
|
309
|
+
redis01 = scaleway.redis.Cluster("redis01",
|
307
310
|
name="my_redis_cluster",
|
308
311
|
version="7.0.5",
|
309
312
|
node_type="RED1-XS",
|
@@ -313,7 +316,7 @@ def get_ipam_ips_output(attached: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
313
316
|
private_networks=[{
|
314
317
|
"id": pn01.id,
|
315
318
|
}])
|
316
|
-
by_type_and_resource = scaleway.
|
319
|
+
by_type_and_resource = scaleway.ipam.get_ips_output(type="ipv4",
|
317
320
|
resource={
|
318
321
|
"id": redis01.id,
|
319
322
|
"type": "redis_cluster",
|
@@ -331,6 +334,7 @@ def get_ipam_ips_output(attached: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
331
334
|
:param str type: The type of IP to filter for (`ipv4` or `ipv6`).
|
332
335
|
:param str zonal: Only IPs that are zonal, and in this zone, will be returned.
|
333
336
|
"""
|
337
|
+
pulumi.log.warn("""get_ipam_ips is deprecated: scaleway.index/getipamips.getIpamIps has been deprecated in favor of scaleway.ipam/getips.getIps""")
|
334
338
|
__args__ = dict()
|
335
339
|
__args__['attached'] = attached
|
336
340
|
__args__['macAddress'] = mac_address
|
@@ -21,6 +21,8 @@ __all__ = [
|
|
21
21
|
'get_k8s_version_output',
|
22
22
|
]
|
23
23
|
|
24
|
+
warnings.warn("""scaleway.index/getk8sversion.getK8sVersion has been deprecated in favor of scaleway.kubernetes/getversion.getVersion""", DeprecationWarning)
|
25
|
+
|
24
26
|
@pulumi.output_type
|
25
27
|
class GetK8sVersionResult:
|
26
28
|
"""
|
@@ -120,7 +122,7 @@ def get_k8s_version(name: Optional[str] = None,
|
|
120
122
|
import pulumi
|
121
123
|
import pulumi_scaleway as scaleway
|
122
124
|
|
123
|
-
latest = scaleway.
|
125
|
+
latest = scaleway.kubernetes.get_version(name="latest")
|
124
126
|
```
|
125
127
|
|
126
128
|
### Use a specific version
|
@@ -129,13 +131,14 @@ def get_k8s_version(name: Optional[str] = None,
|
|
129
131
|
import pulumi
|
130
132
|
import pulumi_scaleway as scaleway
|
131
133
|
|
132
|
-
by_name = scaleway.
|
134
|
+
by_name = scaleway.kubernetes.get_version(name="1.26.0")
|
133
135
|
```
|
134
136
|
|
135
137
|
|
136
138
|
:param str name: The name of the Kubernetes version.
|
137
139
|
:param str region: `region`) The region in which the version exists.
|
138
140
|
"""
|
141
|
+
pulumi.log.warn("""get_k8s_version is deprecated: scaleway.index/getk8sversion.getK8sVersion has been deprecated in favor of scaleway.kubernetes/getversion.getVersion""")
|
139
142
|
__args__ = dict()
|
140
143
|
__args__['name'] = name
|
141
144
|
__args__['region'] = region
|
@@ -166,7 +169,7 @@ def get_k8s_version_output(name: Optional[pulumi.Input[str]] = None,
|
|
166
169
|
import pulumi
|
167
170
|
import pulumi_scaleway as scaleway
|
168
171
|
|
169
|
-
latest = scaleway.
|
172
|
+
latest = scaleway.kubernetes.get_version(name="latest")
|
170
173
|
```
|
171
174
|
|
172
175
|
### Use a specific version
|
@@ -175,13 +178,14 @@ def get_k8s_version_output(name: Optional[pulumi.Input[str]] = None,
|
|
175
178
|
import pulumi
|
176
179
|
import pulumi_scaleway as scaleway
|
177
180
|
|
178
|
-
by_name = scaleway.
|
181
|
+
by_name = scaleway.kubernetes.get_version(name="1.26.0")
|
179
182
|
```
|
180
183
|
|
181
184
|
|
182
185
|
:param str name: The name of the Kubernetes version.
|
183
186
|
:param str region: `region`) The region in which the version exists.
|
184
187
|
"""
|
188
|
+
pulumi.log.warn("""get_k8s_version is deprecated: scaleway.index/getk8sversion.getK8sVersion has been deprecated in favor of scaleway.kubernetes/getversion.getVersion""")
|
185
189
|
__args__ = dict()
|
186
190
|
__args__['name'] = name
|
187
191
|
__args__['region'] = region
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_kubernetes_cluster_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getkubernetescluster.getKubernetesCluster has been deprecated in favor of scaleway.kubernetes/getcluster.getCluster""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetKubernetesClusterResult:
|
27
29
|
"""
|
@@ -334,6 +336,7 @@ def get_kubernetes_cluster(cluster_id: Optional[str] = None,
|
|
334
336
|
:param str project_id: The ID of the project the cluster is associated with.
|
335
337
|
:param str region: `region`) The region in which the cluster exists.
|
336
338
|
"""
|
339
|
+
pulumi.log.warn("""get_kubernetes_cluster is deprecated: scaleway.index/getkubernetescluster.getKubernetesCluster has been deprecated in favor of scaleway.kubernetes/getcluster.getCluster""")
|
337
340
|
__args__ = dict()
|
338
341
|
__args__['clusterId'] = cluster_id
|
339
342
|
__args__['name'] = name
|
@@ -382,6 +385,7 @@ def get_kubernetes_cluster_output(cluster_id: Optional[pulumi.Input[Optional[str
|
|
382
385
|
:param str project_id: The ID of the project the cluster is associated with.
|
383
386
|
:param str region: `region`) The region in which the cluster exists.
|
384
387
|
"""
|
388
|
+
pulumi.log.warn("""get_kubernetes_cluster is deprecated: scaleway.index/getkubernetescluster.getKubernetesCluster has been deprecated in favor of scaleway.kubernetes/getcluster.getCluster""")
|
385
389
|
__args__ = dict()
|
386
390
|
__args__['clusterId'] = cluster_id
|
387
391
|
__args__['name'] = name
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_kubernetes_node_pool_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getkubernetesnodepool.getKubernetesNodePool has been deprecated in favor of scaleway.kubernetes/getpool.getPool""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetKubernetesNodePoolResult:
|
27
29
|
"""
|
@@ -345,6 +347,7 @@ def get_kubernetes_node_pool(cluster_id: Optional[str] = None,
|
|
345
347
|
:param str region: `region`) The region in which the pool exists.
|
346
348
|
:param int size: The size of the pool.
|
347
349
|
"""
|
350
|
+
pulumi.log.warn("""get_kubernetes_node_pool is deprecated: scaleway.index/getkubernetesnodepool.getKubernetesNodePool has been deprecated in favor of scaleway.kubernetes/getpool.getPool""")
|
348
351
|
__args__ = dict()
|
349
352
|
__args__['clusterId'] = cluster_id
|
350
353
|
__args__['name'] = name
|
@@ -398,6 +401,7 @@ def get_kubernetes_node_pool_output(cluster_id: Optional[pulumi.Input[Optional[s
|
|
398
401
|
:param str region: `region`) The region in which the pool exists.
|
399
402
|
:param int size: The size of the pool.
|
400
403
|
"""
|
404
|
+
pulumi.log.warn("""get_kubernetes_node_pool is deprecated: scaleway.index/getkubernetesnodepool.getKubernetesNodePool has been deprecated in favor of scaleway.kubernetes/getpool.getPool""")
|
401
405
|
__args__ = dict()
|
402
406
|
__args__['clusterId'] = cluster_id
|
403
407
|
__args__['name'] = name
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_lb_acls_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getlbacls.getLbAcls has been deprecated in favor of scaleway.loadbalancers/getacls.getAcls""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetLbAclsResult:
|
27
29
|
"""
|
@@ -124,9 +126,9 @@ def get_lb_acls(frontend_id: Optional[str] = None,
|
|
124
126
|
import pulumi_scaleway as scaleway
|
125
127
|
|
126
128
|
# Find acls that share the same frontend ID
|
127
|
-
by_front_id = scaleway.
|
129
|
+
by_front_id = scaleway.loadbalancers.get_acls(frontend_id=frt01["id"])
|
128
130
|
# Find acls by frontend ID and name
|
129
|
-
by_front_id_and_name = scaleway.
|
131
|
+
by_front_id_and_name = scaleway.loadbalancers.get_acls(frontend_id=frt01["id"],
|
130
132
|
name="tf-acls-datasource")
|
131
133
|
```
|
132
134
|
|
@@ -136,6 +138,7 @@ def get_lb_acls(frontend_id: Optional[str] = None,
|
|
136
138
|
:param str name: The ACL name to filter for. ACLs with a matching name are listed.
|
137
139
|
:param str zone: `zone`) The zone in which the ACLs exist.
|
138
140
|
"""
|
141
|
+
pulumi.log.warn("""get_lb_acls is deprecated: scaleway.index/getlbacls.getLbAcls has been deprecated in favor of scaleway.loadbalancers/getacls.getAcls""")
|
139
142
|
__args__ = dict()
|
140
143
|
__args__['frontendId'] = frontend_id
|
141
144
|
__args__['name'] = name
|
@@ -169,9 +172,9 @@ def get_lb_acls_output(frontend_id: Optional[pulumi.Input[str]] = None,
|
|
169
172
|
import pulumi_scaleway as scaleway
|
170
173
|
|
171
174
|
# Find acls that share the same frontend ID
|
172
|
-
by_front_id = scaleway.
|
175
|
+
by_front_id = scaleway.loadbalancers.get_acls(frontend_id=frt01["id"])
|
173
176
|
# Find acls by frontend ID and name
|
174
|
-
by_front_id_and_name = scaleway.
|
177
|
+
by_front_id_and_name = scaleway.loadbalancers.get_acls(frontend_id=frt01["id"],
|
175
178
|
name="tf-acls-datasource")
|
176
179
|
```
|
177
180
|
|
@@ -181,6 +184,7 @@ def get_lb_acls_output(frontend_id: Optional[pulumi.Input[str]] = None,
|
|
181
184
|
:param str name: The ACL name to filter for. ACLs with a matching name are listed.
|
182
185
|
:param str zone: `zone`) The zone in which the ACLs exist.
|
183
186
|
"""
|
187
|
+
pulumi.log.warn("""get_lb_acls is deprecated: scaleway.index/getlbacls.getLbAcls has been deprecated in favor of scaleway.loadbalancers/getacls.getAcls""")
|
184
188
|
__args__ = dict()
|
185
189
|
__args__['frontendId'] = frontend_id
|
186
190
|
__args__['name'] = name
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_lb_backend_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getlbbackend.getLbBackend has been deprecated in favor of scaleway.loadbalancers/getbackend.getBackend""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetLbBackendResult:
|
27
29
|
"""
|
@@ -345,19 +347,19 @@ def get_lb_backend(backend_id: Optional[str] = None,
|
|
345
347
|
import pulumi_scaleway as scaleway
|
346
348
|
import pulumiverse_scaleway as scaleway
|
347
349
|
|
348
|
-
main = scaleway.
|
349
|
-
|
350
|
+
main = scaleway.loadbalancers.Ip("main")
|
351
|
+
main_load_balancer = scaleway.loadbalancers.LoadBalancer("main",
|
350
352
|
ip_id=main.id,
|
351
353
|
name="data-test-lb-backend",
|
352
354
|
type="LB-S")
|
353
|
-
|
354
|
-
lb_id=
|
355
|
+
main_backend = scaleway.loadbalancers.Backend("main",
|
356
|
+
lb_id=main_load_balancer.id,
|
355
357
|
name="backend01",
|
356
358
|
forward_protocol="http",
|
357
359
|
forward_port=80)
|
358
|
-
by_id = scaleway.
|
359
|
-
by_name = scaleway.
|
360
|
-
lb_id=
|
360
|
+
by_id = scaleway.loadbalancers.get_backend_output(backend_id=main_backend.id)
|
361
|
+
by_name = scaleway.loadbalancers.get_backend_output(name=main_backend.name,
|
362
|
+
lb_id=main_load_balancer.id)
|
361
363
|
```
|
362
364
|
|
363
365
|
|
@@ -367,6 +369,7 @@ def get_lb_backend(backend_id: Optional[str] = None,
|
|
367
369
|
:param str name: The name of the backend.
|
368
370
|
- When using `name` you should specify the `lb-id`
|
369
371
|
"""
|
372
|
+
pulumi.log.warn("""get_lb_backend is deprecated: scaleway.index/getlbbackend.getLbBackend has been deprecated in favor of scaleway.loadbalancers/getbackend.getBackend""")
|
370
373
|
__args__ = dict()
|
371
374
|
__args__['backendId'] = backend_id
|
372
375
|
__args__['lbId'] = lb_id
|
@@ -423,19 +426,19 @@ def get_lb_backend_output(backend_id: Optional[pulumi.Input[Optional[str]]] = No
|
|
423
426
|
import pulumi_scaleway as scaleway
|
424
427
|
import pulumiverse_scaleway as scaleway
|
425
428
|
|
426
|
-
main = scaleway.
|
427
|
-
|
429
|
+
main = scaleway.loadbalancers.Ip("main")
|
430
|
+
main_load_balancer = scaleway.loadbalancers.LoadBalancer("main",
|
428
431
|
ip_id=main.id,
|
429
432
|
name="data-test-lb-backend",
|
430
433
|
type="LB-S")
|
431
|
-
|
432
|
-
lb_id=
|
434
|
+
main_backend = scaleway.loadbalancers.Backend("main",
|
435
|
+
lb_id=main_load_balancer.id,
|
433
436
|
name="backend01",
|
434
437
|
forward_protocol="http",
|
435
438
|
forward_port=80)
|
436
|
-
by_id = scaleway.
|
437
|
-
by_name = scaleway.
|
438
|
-
lb_id=
|
439
|
+
by_id = scaleway.loadbalancers.get_backend_output(backend_id=main_backend.id)
|
440
|
+
by_name = scaleway.loadbalancers.get_backend_output(name=main_backend.name,
|
441
|
+
lb_id=main_load_balancer.id)
|
439
442
|
```
|
440
443
|
|
441
444
|
|
@@ -445,6 +448,7 @@ def get_lb_backend_output(backend_id: Optional[pulumi.Input[Optional[str]]] = No
|
|
445
448
|
:param str name: The name of the backend.
|
446
449
|
- When using `name` you should specify the `lb-id`
|
447
450
|
"""
|
451
|
+
pulumi.log.warn("""get_lb_backend is deprecated: scaleway.index/getlbbackend.getLbBackend has been deprecated in favor of scaleway.loadbalancers/getbackend.getBackend""")
|
448
452
|
__args__ = dict()
|
449
453
|
__args__['backendId'] = backend_id
|
450
454
|
__args__['lbId'] = lb_id
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_lb_backends_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getlbbackends.getLbBackends has been deprecated in favor of scaleway.loadbalancers/getbackends.getBackends""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetLbBackendsResult:
|
27
29
|
"""
|
@@ -124,9 +126,9 @@ def get_lb_backends(lb_id: Optional[str] = None,
|
|
124
126
|
import pulumi_scaleway as scaleway
|
125
127
|
|
126
128
|
# Find backends that share the same LB ID
|
127
|
-
by_lbid = scaleway.
|
129
|
+
by_lbid = scaleway.loadbalancers.get_backends(lb_id=lb01["id"])
|
128
130
|
# Find backends by LB ID and name
|
129
|
-
by_lbid_and_name = scaleway.
|
131
|
+
by_lbid_and_name = scaleway.loadbalancers.get_backends(lb_id=lb01["id"],
|
130
132
|
name="tf-backend-datasource")
|
131
133
|
```
|
132
134
|
|
@@ -135,6 +137,7 @@ def get_lb_backends(lb_id: Optional[str] = None,
|
|
135
137
|
:param str name: The backend name to filter for. Backends with a matching name are listed.
|
136
138
|
:param str zone: `zone`) The zone in which backends exist.
|
137
139
|
"""
|
140
|
+
pulumi.log.warn("""get_lb_backends is deprecated: scaleway.index/getlbbackends.getLbBackends has been deprecated in favor of scaleway.loadbalancers/getbackends.getBackends""")
|
138
141
|
__args__ = dict()
|
139
142
|
__args__['lbId'] = lb_id
|
140
143
|
__args__['name'] = name
|
@@ -168,9 +171,9 @@ def get_lb_backends_output(lb_id: Optional[pulumi.Input[str]] = None,
|
|
168
171
|
import pulumi_scaleway as scaleway
|
169
172
|
|
170
173
|
# Find backends that share the same LB ID
|
171
|
-
by_lbid = scaleway.
|
174
|
+
by_lbid = scaleway.loadbalancers.get_backends(lb_id=lb01["id"])
|
172
175
|
# Find backends by LB ID and name
|
173
|
-
by_lbid_and_name = scaleway.
|
176
|
+
by_lbid_and_name = scaleway.loadbalancers.get_backends(lb_id=lb01["id"],
|
174
177
|
name="tf-backend-datasource")
|
175
178
|
```
|
176
179
|
|
@@ -179,6 +182,7 @@ def get_lb_backends_output(lb_id: Optional[pulumi.Input[str]] = None,
|
|
179
182
|
:param str name: The backend name to filter for. Backends with a matching name are listed.
|
180
183
|
:param str zone: `zone`) The zone in which backends exist.
|
181
184
|
"""
|
185
|
+
pulumi.log.warn("""get_lb_backends is deprecated: scaleway.index/getlbbackends.getLbBackends has been deprecated in favor of scaleway.loadbalancers/getbackends.getBackends""")
|
182
186
|
__args__ = dict()
|
183
187
|
__args__['lbId'] = lb_id
|
184
188
|
__args__['name'] = name
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_lb_frontend_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getlbfrontend.getLbFrontend has been deprecated in favor of scaleway.loadbalancers/getfrontend.getFrontend""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetLbFrontendResult:
|
27
29
|
"""
|
@@ -165,22 +167,22 @@ def get_lb_frontend(frontend_id: Optional[str] = None,
|
|
165
167
|
import pulumi_scaleway as scaleway
|
166
168
|
import pulumiverse_scaleway as scaleway
|
167
169
|
|
168
|
-
ip01 = scaleway.
|
169
|
-
lb01 = scaleway.
|
170
|
+
ip01 = scaleway.loadbalancers.Ip("ip01")
|
171
|
+
lb01 = scaleway.loadbalancers.LoadBalancer("lb01",
|
170
172
|
ip_id=ip01.id,
|
171
173
|
name="test-lb",
|
172
174
|
type="lb-s")
|
173
|
-
bkd01 = scaleway.
|
175
|
+
bkd01 = scaleway.loadbalancers.Backend("bkd01",
|
174
176
|
lb_id=lb01.id,
|
175
177
|
forward_protocol="tcp",
|
176
178
|
forward_port=80,
|
177
179
|
proxy_protocol="none")
|
178
|
-
frt01 = scaleway.
|
180
|
+
frt01 = scaleway.loadbalancers.Frontend("frt01",
|
179
181
|
lb_id=lb01.id,
|
180
182
|
backend_id=bkd01.id,
|
181
183
|
inbound_port=80)
|
182
|
-
by_id = scaleway.
|
183
|
-
by_name = scaleway.
|
184
|
+
by_id = scaleway.loadbalancers.get_frontend_output(frontend_id=frt01.id)
|
185
|
+
by_name = scaleway.loadbalancers.get_frontend_output(name=frt01.name,
|
184
186
|
lb_id=lb01.id)
|
185
187
|
```
|
186
188
|
|
@@ -191,6 +193,7 @@ def get_lb_frontend(frontend_id: Optional[str] = None,
|
|
191
193
|
:param str name: The name of the frontend.
|
192
194
|
- When using the `name` you should specify the `lb-id`
|
193
195
|
"""
|
196
|
+
pulumi.log.warn("""get_lb_frontend is deprecated: scaleway.index/getlbfrontend.getLbFrontend has been deprecated in favor of scaleway.loadbalancers/getfrontend.getFrontend""")
|
194
197
|
__args__ = dict()
|
195
198
|
__args__['frontendId'] = frontend_id
|
196
199
|
__args__['lbId'] = lb_id
|
@@ -227,22 +230,22 @@ def get_lb_frontend_output(frontend_id: Optional[pulumi.Input[Optional[str]]] =
|
|
227
230
|
import pulumi_scaleway as scaleway
|
228
231
|
import pulumiverse_scaleway as scaleway
|
229
232
|
|
230
|
-
ip01 = scaleway.
|
231
|
-
lb01 = scaleway.
|
233
|
+
ip01 = scaleway.loadbalancers.Ip("ip01")
|
234
|
+
lb01 = scaleway.loadbalancers.LoadBalancer("lb01",
|
232
235
|
ip_id=ip01.id,
|
233
236
|
name="test-lb",
|
234
237
|
type="lb-s")
|
235
|
-
bkd01 = scaleway.
|
238
|
+
bkd01 = scaleway.loadbalancers.Backend("bkd01",
|
236
239
|
lb_id=lb01.id,
|
237
240
|
forward_protocol="tcp",
|
238
241
|
forward_port=80,
|
239
242
|
proxy_protocol="none")
|
240
|
-
frt01 = scaleway.
|
243
|
+
frt01 = scaleway.loadbalancers.Frontend("frt01",
|
241
244
|
lb_id=lb01.id,
|
242
245
|
backend_id=bkd01.id,
|
243
246
|
inbound_port=80)
|
244
|
-
by_id = scaleway.
|
245
|
-
by_name = scaleway.
|
247
|
+
by_id = scaleway.loadbalancers.get_frontend_output(frontend_id=frt01.id)
|
248
|
+
by_name = scaleway.loadbalancers.get_frontend_output(name=frt01.name,
|
246
249
|
lb_id=lb01.id)
|
247
250
|
```
|
248
251
|
|
@@ -253,6 +256,7 @@ def get_lb_frontend_output(frontend_id: Optional[pulumi.Input[Optional[str]]] =
|
|
253
256
|
:param str name: The name of the frontend.
|
254
257
|
- When using the `name` you should specify the `lb-id`
|
255
258
|
"""
|
259
|
+
pulumi.log.warn("""get_lb_frontend is deprecated: scaleway.index/getlbfrontend.getLbFrontend has been deprecated in favor of scaleway.loadbalancers/getfrontend.getFrontend""")
|
256
260
|
__args__ = dict()
|
257
261
|
__args__['frontendId'] = frontend_id
|
258
262
|
__args__['lbId'] = lb_id
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_lb_frontends_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getlbfrontends.getLbFrontends has been deprecated in favor of scaleway.loadbalancers/getfrontends.getFrontends""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetLbFrontendsResult:
|
27
29
|
"""
|
@@ -124,9 +126,9 @@ def get_lb_frontends(lb_id: Optional[str] = None,
|
|
124
126
|
import pulumi_scaleway as scaleway
|
125
127
|
|
126
128
|
# Find frontends that share the same LB ID
|
127
|
-
by_lbid = scaleway.
|
129
|
+
by_lbid = scaleway.loadbalancers.get_frontends(lb_id=lb01["id"])
|
128
130
|
# Find frontends by LB ID and name
|
129
|
-
by_lbid_and_name = scaleway.
|
131
|
+
by_lbid_and_name = scaleway.loadbalancers.get_frontends(lb_id=lb01["id"],
|
130
132
|
name="tf-frontend-datasource")
|
131
133
|
```
|
132
134
|
|
@@ -135,6 +137,7 @@ def get_lb_frontends(lb_id: Optional[str] = None,
|
|
135
137
|
:param str name: The frontend name to filter for. Frontends with a matching name are listed.
|
136
138
|
:param str zone: `zone`) The zone in which the frontends exist.
|
137
139
|
"""
|
140
|
+
pulumi.log.warn("""get_lb_frontends is deprecated: scaleway.index/getlbfrontends.getLbFrontends has been deprecated in favor of scaleway.loadbalancers/getfrontends.getFrontends""")
|
138
141
|
__args__ = dict()
|
139
142
|
__args__['lbId'] = lb_id
|
140
143
|
__args__['name'] = name
|
@@ -168,9 +171,9 @@ def get_lb_frontends_output(lb_id: Optional[pulumi.Input[str]] = None,
|
|
168
171
|
import pulumi_scaleway as scaleway
|
169
172
|
|
170
173
|
# Find frontends that share the same LB ID
|
171
|
-
by_lbid = scaleway.
|
174
|
+
by_lbid = scaleway.loadbalancers.get_frontends(lb_id=lb01["id"])
|
172
175
|
# Find frontends by LB ID and name
|
173
|
-
by_lbid_and_name = scaleway.
|
176
|
+
by_lbid_and_name = scaleway.loadbalancers.get_frontends(lb_id=lb01["id"],
|
174
177
|
name="tf-frontend-datasource")
|
175
178
|
```
|
176
179
|
|
@@ -179,6 +182,7 @@ def get_lb_frontends_output(lb_id: Optional[pulumi.Input[str]] = None,
|
|
179
182
|
:param str name: The frontend name to filter for. Frontends with a matching name are listed.
|
180
183
|
:param str zone: `zone`) The zone in which the frontends exist.
|
181
184
|
"""
|
185
|
+
pulumi.log.warn("""get_lb_frontends is deprecated: scaleway.index/getlbfrontends.getLbFrontends has been deprecated in favor of scaleway.loadbalancers/getfrontends.getFrontends""")
|
182
186
|
__args__ = dict()
|
183
187
|
__args__['lbId'] = lb_id
|
184
188
|
__args__['name'] = name
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'get_lb_ips_output',
|
23
23
|
]
|
24
24
|
|
25
|
+
warnings.warn("""scaleway.index/getlbips.getLbIps has been deprecated in favor of scaleway.loadbalancers/getips.getIps""", DeprecationWarning)
|
26
|
+
|
25
27
|
@pulumi.output_type
|
26
28
|
class GetLbIpsResult:
|
27
29
|
"""
|
@@ -143,6 +145,7 @@ def get_lb_ips(ip_cidr_range: Optional[str] = None,
|
|
143
145
|
:param Sequence[str] tags: List of tags used as filter. IPs with these exact tags are listed.
|
144
146
|
:param str zone: `zone`) The zone in which the IPs exist.
|
145
147
|
"""
|
148
|
+
pulumi.log.warn("""get_lb_ips is deprecated: scaleway.index/getlbips.getLbIps has been deprecated in favor of scaleway.loadbalancers/getips.getIps""")
|
146
149
|
__args__ = dict()
|
147
150
|
__args__['ipCidrRange'] = ip_cidr_range
|
148
151
|
__args__['ipType'] = ip_type
|
@@ -179,6 +182,7 @@ def get_lb_ips_output(ip_cidr_range: Optional[pulumi.Input[Optional[str]]] = Non
|
|
179
182
|
:param Sequence[str] tags: List of tags used as filter. IPs with these exact tags are listed.
|
180
183
|
:param str zone: `zone`) The zone in which the IPs exist.
|
181
184
|
"""
|
185
|
+
pulumi.log.warn("""get_lb_ips is deprecated: scaleway.index/getlbips.getLbIps has been deprecated in favor of scaleway.loadbalancers/getips.getIps""")
|
182
186
|
__args__ = dict()
|
183
187
|
__args__['ipCidrRange'] = ip_cidr_range
|
184
188
|
__args__['ipType'] = ip_type
|
@@ -21,6 +21,8 @@ __all__ = [
|
|
21
21
|
'get_lb_route_output',
|
22
22
|
]
|
23
23
|
|
24
|
+
warnings.warn("""scaleway.index/getlbroute.getLbRoute has been deprecated in favor of scaleway.loadbalancers/getroute.getRoute""", DeprecationWarning)
|
25
|
+
|
24
26
|
@pulumi.output_type
|
25
27
|
class GetLbRouteResult:
|
26
28
|
"""
|
@@ -126,30 +128,31 @@ def get_lb_route(route_id: Optional[str] = None,
|
|
126
128
|
import pulumi_scaleway as scaleway
|
127
129
|
import pulumiverse_scaleway as scaleway
|
128
130
|
|
129
|
-
ip01 = scaleway.
|
130
|
-
lb01 = scaleway.
|
131
|
+
ip01 = scaleway.loadbalancers.Ip("ip01")
|
132
|
+
lb01 = scaleway.loadbalancers.LoadBalancer("lb01",
|
131
133
|
ip_id=ip01.id,
|
132
134
|
name="test-lb",
|
133
135
|
type="lb-s")
|
134
|
-
bkd01 = scaleway.
|
136
|
+
bkd01 = scaleway.loadbalancers.Backend("bkd01",
|
135
137
|
lb_id=lb01.id,
|
136
138
|
forward_protocol="tcp",
|
137
139
|
forward_port=80,
|
138
140
|
proxy_protocol="none")
|
139
|
-
frt01 = scaleway.
|
141
|
+
frt01 = scaleway.loadbalancers.Frontend("frt01",
|
140
142
|
lb_id=lb01.id,
|
141
143
|
backend_id=bkd01.id,
|
142
144
|
inbound_port=80)
|
143
|
-
rt01 = scaleway.
|
145
|
+
rt01 = scaleway.loadbalancers.Route("rt01",
|
144
146
|
frontend_id=frt01.id,
|
145
147
|
backend_id=bkd01.id,
|
146
148
|
match_sni="sni.scaleway.com")
|
147
|
-
by_id = scaleway.
|
149
|
+
by_id = scaleway.loadbalancers.get_route_output(route_id=rt01.id)
|
148
150
|
```
|
149
151
|
|
150
152
|
|
151
153
|
:param str route_id: The route ID.
|
152
154
|
"""
|
155
|
+
pulumi.log.warn("""get_lb_route is deprecated: scaleway.index/getlbroute.getLbRoute has been deprecated in favor of scaleway.loadbalancers/getroute.getRoute""")
|
153
156
|
__args__ = dict()
|
154
157
|
__args__['routeId'] = route_id
|
155
158
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
@@ -178,30 +181,31 @@ def get_lb_route_output(route_id: Optional[pulumi.Input[str]] = None,
|
|
178
181
|
import pulumi_scaleway as scaleway
|
179
182
|
import pulumiverse_scaleway as scaleway
|
180
183
|
|
181
|
-
ip01 = scaleway.
|
182
|
-
lb01 = scaleway.
|
184
|
+
ip01 = scaleway.loadbalancers.Ip("ip01")
|
185
|
+
lb01 = scaleway.loadbalancers.LoadBalancer("lb01",
|
183
186
|
ip_id=ip01.id,
|
184
187
|
name="test-lb",
|
185
188
|
type="lb-s")
|
186
|
-
bkd01 = scaleway.
|
189
|
+
bkd01 = scaleway.loadbalancers.Backend("bkd01",
|
187
190
|
lb_id=lb01.id,
|
188
191
|
forward_protocol="tcp",
|
189
192
|
forward_port=80,
|
190
193
|
proxy_protocol="none")
|
191
|
-
frt01 = scaleway.
|
194
|
+
frt01 = scaleway.loadbalancers.Frontend("frt01",
|
192
195
|
lb_id=lb01.id,
|
193
196
|
backend_id=bkd01.id,
|
194
197
|
inbound_port=80)
|
195
|
-
rt01 = scaleway.
|
198
|
+
rt01 = scaleway.loadbalancers.Route("rt01",
|
196
199
|
frontend_id=frt01.id,
|
197
200
|
backend_id=bkd01.id,
|
198
201
|
match_sni="sni.scaleway.com")
|
199
|
-
by_id = scaleway.
|
202
|
+
by_id = scaleway.loadbalancers.get_route_output(route_id=rt01.id)
|
200
203
|
```
|
201
204
|
|
202
205
|
|
203
206
|
:param str route_id: The route ID.
|
204
207
|
"""
|
208
|
+
pulumi.log.warn("""get_lb_route is deprecated: scaleway.index/getlbroute.getLbRoute has been deprecated in favor of scaleway.loadbalancers/getroute.getRoute""")
|
205
209
|
__args__ = dict()
|
206
210
|
__args__['routeId'] = route_id
|
207
211
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|