pulumiverse-scaleway 1.25.0a1742464679__py3-none-any.whl → 1.26.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 +1034 -0
- pulumiverse_scaleway/_inputs.py +663 -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 +113 -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 +795 -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 +14 -0
- pulumiverse_scaleway/domain/_inputs.py +3038 -0
- pulumiverse_scaleway/domain/get_record.py +340 -0
- pulumiverse_scaleway/domain/get_zone.py +201 -0
- pulumiverse_scaleway/domain/outputs.py +2553 -0
- pulumiverse_scaleway/domain/record.py +1118 -0
- pulumiverse_scaleway/domain/registration.py +777 -0
- pulumiverse_scaleway/domain/zone.py +432 -0
- pulumiverse_scaleway/domain_record.py +36 -30
- pulumiverse_scaleway/domain_zone.py +6 -0
- pulumiverse_scaleway/edge_services_backend_stage.py +472 -0
- pulumiverse_scaleway/edge_services_cache_stage.py +490 -0
- pulumiverse_scaleway/edge_services_dns_stage.py +516 -0
- pulumiverse_scaleway/edge_services_head_stage.py +258 -0
- pulumiverse_scaleway/edge_services_pipeline.py +436 -0
- pulumiverse_scaleway/edge_services_plan.py +239 -0
- pulumiverse_scaleway/edge_services_route_stage.py +422 -0
- pulumiverse_scaleway/edge_services_tls_stage.py +546 -0
- pulumiverse_scaleway/edge_services_waf_stage.py +444 -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 +710 -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 +35 -23
- 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 +28 -13
- pulumiverse_scaleway/get_lb_frontends.py +8 -4
- pulumiverse_scaleway/get_lb_ips.py +4 -0
- pulumiverse_scaleway/get_lb_route.py +28 -13
- 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 +27 -12
- 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 +44 -7
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +16 -4
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +78 -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 +12 -6
- pulumiverse_scaleway/loadbalancer_certificate.py +6 -0
- pulumiverse_scaleway/loadbalancer_frontend.py +57 -4
- pulumiverse_scaleway/loadbalancer_ip.py +10 -4
- pulumiverse_scaleway/loadbalancer_route.py +74 -21
- 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 +878 -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 +285 -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 +228 -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 +2502 -0
- pulumiverse_scaleway/loadbalancers/route.py +572 -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 +30 -0
- pulumiverse_scaleway/network/_inputs.py +577 -0
- pulumiverse_scaleway/network/acl.py +415 -0
- pulumiverse_scaleway/network/gateway_network.py +850 -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 +337 -0
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +313 -0
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +390 -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 +886 -0
- pulumiverse_scaleway/network/private_network.py +736 -0
- pulumiverse_scaleway/network/public_gateway.py +894 -0
- pulumiverse_scaleway/network/public_gateway_dhcp.py +957 -0
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +524 -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/outputs.py +662 -2
- 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 +28 -2
- pulumiverse_scaleway/secret_version.py +18 -12
- pulumiverse_scaleway/secrets/__init__.py +13 -0
- pulumiverse_scaleway/secrets/_inputs.py +248 -0
- pulumiverse_scaleway/secrets/get_secret.py +349 -0
- pulumiverse_scaleway/secrets/get_version.py +340 -0
- pulumiverse_scaleway/secrets/outputs.py +320 -0
- pulumiverse_scaleway/secrets/secret.py +685 -0
- pulumiverse_scaleway/secrets/version.py +489 -0
- pulumiverse_scaleway/tem/__init__.py +15 -0
- pulumiverse_scaleway/tem/_inputs.py +135 -0
- pulumiverse_scaleway/tem/blocked_list.py +442 -0
- pulumiverse_scaleway/tem/domain.py +1039 -0
- pulumiverse_scaleway/tem/domain_validation.py +305 -0
- pulumiverse_scaleway/tem/get_domain.py +378 -0
- pulumiverse_scaleway/tem/get_offer_subscription.py +254 -0
- pulumiverse_scaleway/tem/outputs.py +171 -0
- pulumiverse_scaleway/tem/webhook.py +642 -0
- pulumiverse_scaleway/tem_domain.py +27 -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 +128 -140
- pulumiverse_scaleway/vpc_private_network.py +10 -4
- pulumiverse_scaleway/vpc_public_gateway.py +132 -23
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +23 -9
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +40 -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.26.0.dist-info}/METADATA +1 -1
- pulumiverse_scaleway-1.26.0.dist-info/RECORD +483 -0
- {pulumiverse_scaleway-1.25.0a1742464679.dist-info → pulumiverse_scaleway-1.26.0.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.26.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,305 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = ['DomainValidationArgs', 'DomainValidation']
|
18
|
+
|
19
|
+
@pulumi.input_type
|
20
|
+
class DomainValidationArgs:
|
21
|
+
def __init__(__self__, *,
|
22
|
+
domain_id: pulumi.Input[str],
|
23
|
+
region: Optional[pulumi.Input[str]] = None,
|
24
|
+
timeout: Optional[pulumi.Input[int]] = None):
|
25
|
+
"""
|
26
|
+
The set of arguments for constructing a DomainValidation resource.
|
27
|
+
:param pulumi.Input[str] domain_id: The ID of the domain name used when sending emails. This ID must correspond to a domain already registered with Scaleway's Transactional Email service.
|
28
|
+
:param pulumi.Input[str] region: `region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
29
|
+
:param pulumi.Input[int] timeout: The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
30
|
+
"""
|
31
|
+
pulumi.set(__self__, "domain_id", domain_id)
|
32
|
+
if region is not None:
|
33
|
+
pulumi.set(__self__, "region", region)
|
34
|
+
if timeout is not None:
|
35
|
+
pulumi.set(__self__, "timeout", timeout)
|
36
|
+
|
37
|
+
@property
|
38
|
+
@pulumi.getter(name="domainId")
|
39
|
+
def domain_id(self) -> pulumi.Input[str]:
|
40
|
+
"""
|
41
|
+
The ID of the domain name used when sending emails. This ID must correspond to a domain already registered with Scaleway's Transactional Email service.
|
42
|
+
"""
|
43
|
+
return pulumi.get(self, "domain_id")
|
44
|
+
|
45
|
+
@domain_id.setter
|
46
|
+
def domain_id(self, value: pulumi.Input[str]):
|
47
|
+
pulumi.set(self, "domain_id", value)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter
|
51
|
+
def region(self) -> Optional[pulumi.Input[str]]:
|
52
|
+
"""
|
53
|
+
`region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
54
|
+
"""
|
55
|
+
return pulumi.get(self, "region")
|
56
|
+
|
57
|
+
@region.setter
|
58
|
+
def region(self, value: Optional[pulumi.Input[str]]):
|
59
|
+
pulumi.set(self, "region", value)
|
60
|
+
|
61
|
+
@property
|
62
|
+
@pulumi.getter
|
63
|
+
def timeout(self) -> Optional[pulumi.Input[int]]:
|
64
|
+
"""
|
65
|
+
The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
66
|
+
"""
|
67
|
+
return pulumi.get(self, "timeout")
|
68
|
+
|
69
|
+
@timeout.setter
|
70
|
+
def timeout(self, value: Optional[pulumi.Input[int]]):
|
71
|
+
pulumi.set(self, "timeout", value)
|
72
|
+
|
73
|
+
|
74
|
+
@pulumi.input_type
|
75
|
+
class _DomainValidationState:
|
76
|
+
def __init__(__self__, *,
|
77
|
+
domain_id: Optional[pulumi.Input[str]] = None,
|
78
|
+
region: Optional[pulumi.Input[str]] = None,
|
79
|
+
timeout: Optional[pulumi.Input[int]] = None,
|
80
|
+
validated: Optional[pulumi.Input[bool]] = None):
|
81
|
+
"""
|
82
|
+
Input properties used for looking up and filtering DomainValidation resources.
|
83
|
+
:param pulumi.Input[str] domain_id: The ID of the domain name used when sending emails. This ID must correspond to a domain already registered with Scaleway's Transactional Email service.
|
84
|
+
:param pulumi.Input[str] region: `region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
85
|
+
:param pulumi.Input[int] timeout: The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
86
|
+
:param pulumi.Input[bool] validated: Indicates if the domain has been verified for email sending. This is computed after the creation or update of the domain validation resource.
|
87
|
+
"""
|
88
|
+
if domain_id is not None:
|
89
|
+
pulumi.set(__self__, "domain_id", domain_id)
|
90
|
+
if region is not None:
|
91
|
+
pulumi.set(__self__, "region", region)
|
92
|
+
if timeout is not None:
|
93
|
+
pulumi.set(__self__, "timeout", timeout)
|
94
|
+
if validated is not None:
|
95
|
+
pulumi.set(__self__, "validated", validated)
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter(name="domainId")
|
99
|
+
def domain_id(self) -> Optional[pulumi.Input[str]]:
|
100
|
+
"""
|
101
|
+
The ID of the domain name used when sending emails. This ID must correspond to a domain already registered with Scaleway's Transactional Email service.
|
102
|
+
"""
|
103
|
+
return pulumi.get(self, "domain_id")
|
104
|
+
|
105
|
+
@domain_id.setter
|
106
|
+
def domain_id(self, value: Optional[pulumi.Input[str]]):
|
107
|
+
pulumi.set(self, "domain_id", value)
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter
|
111
|
+
def region(self) -> Optional[pulumi.Input[str]]:
|
112
|
+
"""
|
113
|
+
`region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "region")
|
116
|
+
|
117
|
+
@region.setter
|
118
|
+
def region(self, value: Optional[pulumi.Input[str]]):
|
119
|
+
pulumi.set(self, "region", value)
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter
|
123
|
+
def timeout(self) -> Optional[pulumi.Input[int]]:
|
124
|
+
"""
|
125
|
+
The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "timeout")
|
128
|
+
|
129
|
+
@timeout.setter
|
130
|
+
def timeout(self, value: Optional[pulumi.Input[int]]):
|
131
|
+
pulumi.set(self, "timeout", value)
|
132
|
+
|
133
|
+
@property
|
134
|
+
@pulumi.getter
|
135
|
+
def validated(self) -> Optional[pulumi.Input[bool]]:
|
136
|
+
"""
|
137
|
+
Indicates if the domain has been verified for email sending. This is computed after the creation or update of the domain validation resource.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "validated")
|
140
|
+
|
141
|
+
@validated.setter
|
142
|
+
def validated(self, value: Optional[pulumi.Input[bool]]):
|
143
|
+
pulumi.set(self, "validated", value)
|
144
|
+
|
145
|
+
|
146
|
+
class DomainValidation(pulumi.CustomResource):
|
147
|
+
@overload
|
148
|
+
def __init__(__self__,
|
149
|
+
resource_name: str,
|
150
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
151
|
+
domain_id: Optional[pulumi.Input[str]] = None,
|
152
|
+
region: Optional[pulumi.Input[str]] = None,
|
153
|
+
timeout: Optional[pulumi.Input[int]] = None,
|
154
|
+
__props__=None):
|
155
|
+
"""
|
156
|
+
## Example Usage
|
157
|
+
|
158
|
+
### Basic
|
159
|
+
|
160
|
+
```python
|
161
|
+
import pulumi
|
162
|
+
import pulumiverse_scaleway as scaleway
|
163
|
+
|
164
|
+
main = scaleway.tem.Domain("main",
|
165
|
+
accept_tos=True,
|
166
|
+
name="example.com")
|
167
|
+
example = scaleway.tem.DomainValidation("example",
|
168
|
+
domain_id=main.id,
|
169
|
+
region="fr-par",
|
170
|
+
timeout=300)
|
171
|
+
```
|
172
|
+
|
173
|
+
:param str resource_name: The name of the resource.
|
174
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
175
|
+
:param pulumi.Input[str] domain_id: The ID of the domain name used when sending emails. This ID must correspond to a domain already registered with Scaleway's Transactional Email service.
|
176
|
+
:param pulumi.Input[str] region: `region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
177
|
+
:param pulumi.Input[int] timeout: The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
178
|
+
"""
|
179
|
+
...
|
180
|
+
@overload
|
181
|
+
def __init__(__self__,
|
182
|
+
resource_name: str,
|
183
|
+
args: DomainValidationArgs,
|
184
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
185
|
+
"""
|
186
|
+
## Example Usage
|
187
|
+
|
188
|
+
### Basic
|
189
|
+
|
190
|
+
```python
|
191
|
+
import pulumi
|
192
|
+
import pulumiverse_scaleway as scaleway
|
193
|
+
|
194
|
+
main = scaleway.tem.Domain("main",
|
195
|
+
accept_tos=True,
|
196
|
+
name="example.com")
|
197
|
+
example = scaleway.tem.DomainValidation("example",
|
198
|
+
domain_id=main.id,
|
199
|
+
region="fr-par",
|
200
|
+
timeout=300)
|
201
|
+
```
|
202
|
+
|
203
|
+
:param str resource_name: The name of the resource.
|
204
|
+
:param DomainValidationArgs args: The arguments to use to populate this resource's properties.
|
205
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
206
|
+
"""
|
207
|
+
...
|
208
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
209
|
+
resource_args, opts = _utilities.get_resource_args_opts(DomainValidationArgs, pulumi.ResourceOptions, *args, **kwargs)
|
210
|
+
if resource_args is not None:
|
211
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
212
|
+
else:
|
213
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
214
|
+
|
215
|
+
def _internal_init(__self__,
|
216
|
+
resource_name: str,
|
217
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
218
|
+
domain_id: Optional[pulumi.Input[str]] = None,
|
219
|
+
region: Optional[pulumi.Input[str]] = None,
|
220
|
+
timeout: Optional[pulumi.Input[int]] = None,
|
221
|
+
__props__=None):
|
222
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
223
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
224
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
225
|
+
if opts.id is None:
|
226
|
+
if __props__ is not None:
|
227
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
228
|
+
__props__ = DomainValidationArgs.__new__(DomainValidationArgs)
|
229
|
+
|
230
|
+
if domain_id is None and not opts.urn:
|
231
|
+
raise TypeError("Missing required property 'domain_id'")
|
232
|
+
__props__.__dict__["domain_id"] = domain_id
|
233
|
+
__props__.__dict__["region"] = region
|
234
|
+
__props__.__dict__["timeout"] = timeout
|
235
|
+
__props__.__dict__["validated"] = None
|
236
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="scaleway:index/temDomainValidation:TemDomainValidation")])
|
237
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
238
|
+
super(DomainValidation, __self__).__init__(
|
239
|
+
'scaleway:tem/domainValidation:DomainValidation',
|
240
|
+
resource_name,
|
241
|
+
__props__,
|
242
|
+
opts)
|
243
|
+
|
244
|
+
@staticmethod
|
245
|
+
def get(resource_name: str,
|
246
|
+
id: pulumi.Input[str],
|
247
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
248
|
+
domain_id: Optional[pulumi.Input[str]] = None,
|
249
|
+
region: Optional[pulumi.Input[str]] = None,
|
250
|
+
timeout: Optional[pulumi.Input[int]] = None,
|
251
|
+
validated: Optional[pulumi.Input[bool]] = None) -> 'DomainValidation':
|
252
|
+
"""
|
253
|
+
Get an existing DomainValidation resource's state with the given name, id, and optional extra
|
254
|
+
properties used to qualify the lookup.
|
255
|
+
|
256
|
+
:param str resource_name: The unique name of the resulting resource.
|
257
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
258
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
259
|
+
:param pulumi.Input[str] domain_id: The ID of the domain name used when sending emails. This ID must correspond to a domain already registered with Scaleway's Transactional Email service.
|
260
|
+
:param pulumi.Input[str] region: `region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
261
|
+
:param pulumi.Input[int] timeout: The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
262
|
+
:param pulumi.Input[bool] validated: Indicates if the domain has been verified for email sending. This is computed after the creation or update of the domain validation resource.
|
263
|
+
"""
|
264
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
265
|
+
|
266
|
+
__props__ = _DomainValidationState.__new__(_DomainValidationState)
|
267
|
+
|
268
|
+
__props__.__dict__["domain_id"] = domain_id
|
269
|
+
__props__.__dict__["region"] = region
|
270
|
+
__props__.__dict__["timeout"] = timeout
|
271
|
+
__props__.__dict__["validated"] = validated
|
272
|
+
return DomainValidation(resource_name, opts=opts, __props__=__props__)
|
273
|
+
|
274
|
+
@property
|
275
|
+
@pulumi.getter(name="domainId")
|
276
|
+
def domain_id(self) -> pulumi.Output[str]:
|
277
|
+
"""
|
278
|
+
The ID of the domain name used when sending emails. This ID must correspond to a domain already registered with Scaleway's Transactional Email service.
|
279
|
+
"""
|
280
|
+
return pulumi.get(self, "domain_id")
|
281
|
+
|
282
|
+
@property
|
283
|
+
@pulumi.getter
|
284
|
+
def region(self) -> pulumi.Output[str]:
|
285
|
+
"""
|
286
|
+
`region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
287
|
+
"""
|
288
|
+
return pulumi.get(self, "region")
|
289
|
+
|
290
|
+
@property
|
291
|
+
@pulumi.getter
|
292
|
+
def timeout(self) -> pulumi.Output[Optional[int]]:
|
293
|
+
"""
|
294
|
+
The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
295
|
+
"""
|
296
|
+
return pulumi.get(self, "timeout")
|
297
|
+
|
298
|
+
@property
|
299
|
+
@pulumi.getter
|
300
|
+
def validated(self) -> pulumi.Output[bool]:
|
301
|
+
"""
|
302
|
+
Indicates if the domain has been verified for email sending. This is computed after the creation or update of the domain validation resource.
|
303
|
+
"""
|
304
|
+
return pulumi.get(self, "validated")
|
305
|
+
|
@@ -0,0 +1,378 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
|
18
|
+
__all__ = [
|
19
|
+
'GetDomainResult',
|
20
|
+
'AwaitableGetDomainResult',
|
21
|
+
'get_domain',
|
22
|
+
'get_domain_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetDomainResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getDomain.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, accept_tos=None, autoconfig=None, created_at=None, dkim_config=None, dmarc_config=None, dmarc_name=None, domain_id=None, id=None, last_error=None, last_valid_at=None, mx_blackhole=None, name=None, next_check_at=None, project_id=None, region=None, reputations=None, revoked_at=None, smtp_host=None, smtp_port=None, smtp_port_alternative=None, smtp_port_unsecure=None, smtps_auth_user=None, smtps_port=None, smtps_port_alternative=None, spf_config=None, status=None):
|
31
|
+
if accept_tos and not isinstance(accept_tos, bool):
|
32
|
+
raise TypeError("Expected argument 'accept_tos' to be a bool")
|
33
|
+
pulumi.set(__self__, "accept_tos", accept_tos)
|
34
|
+
if autoconfig and not isinstance(autoconfig, bool):
|
35
|
+
raise TypeError("Expected argument 'autoconfig' to be a bool")
|
36
|
+
pulumi.set(__self__, "autoconfig", autoconfig)
|
37
|
+
if created_at and not isinstance(created_at, str):
|
38
|
+
raise TypeError("Expected argument 'created_at' to be a str")
|
39
|
+
pulumi.set(__self__, "created_at", created_at)
|
40
|
+
if dkim_config and not isinstance(dkim_config, str):
|
41
|
+
raise TypeError("Expected argument 'dkim_config' to be a str")
|
42
|
+
pulumi.set(__self__, "dkim_config", dkim_config)
|
43
|
+
if dmarc_config and not isinstance(dmarc_config, str):
|
44
|
+
raise TypeError("Expected argument 'dmarc_config' to be a str")
|
45
|
+
pulumi.set(__self__, "dmarc_config", dmarc_config)
|
46
|
+
if dmarc_name and not isinstance(dmarc_name, str):
|
47
|
+
raise TypeError("Expected argument 'dmarc_name' to be a str")
|
48
|
+
pulumi.set(__self__, "dmarc_name", dmarc_name)
|
49
|
+
if domain_id and not isinstance(domain_id, str):
|
50
|
+
raise TypeError("Expected argument 'domain_id' to be a str")
|
51
|
+
pulumi.set(__self__, "domain_id", domain_id)
|
52
|
+
if id and not isinstance(id, str):
|
53
|
+
raise TypeError("Expected argument 'id' to be a str")
|
54
|
+
pulumi.set(__self__, "id", id)
|
55
|
+
if last_error and not isinstance(last_error, str):
|
56
|
+
raise TypeError("Expected argument 'last_error' to be a str")
|
57
|
+
pulumi.set(__self__, "last_error", last_error)
|
58
|
+
if last_valid_at and not isinstance(last_valid_at, str):
|
59
|
+
raise TypeError("Expected argument 'last_valid_at' to be a str")
|
60
|
+
pulumi.set(__self__, "last_valid_at", last_valid_at)
|
61
|
+
if mx_blackhole and not isinstance(mx_blackhole, str):
|
62
|
+
raise TypeError("Expected argument 'mx_blackhole' to be a str")
|
63
|
+
pulumi.set(__self__, "mx_blackhole", mx_blackhole)
|
64
|
+
if name and not isinstance(name, str):
|
65
|
+
raise TypeError("Expected argument 'name' to be a str")
|
66
|
+
pulumi.set(__self__, "name", name)
|
67
|
+
if next_check_at and not isinstance(next_check_at, str):
|
68
|
+
raise TypeError("Expected argument 'next_check_at' to be a str")
|
69
|
+
pulumi.set(__self__, "next_check_at", next_check_at)
|
70
|
+
if project_id and not isinstance(project_id, str):
|
71
|
+
raise TypeError("Expected argument 'project_id' to be a str")
|
72
|
+
pulumi.set(__self__, "project_id", project_id)
|
73
|
+
if region and not isinstance(region, str):
|
74
|
+
raise TypeError("Expected argument 'region' to be a str")
|
75
|
+
pulumi.set(__self__, "region", region)
|
76
|
+
if reputations and not isinstance(reputations, list):
|
77
|
+
raise TypeError("Expected argument 'reputations' to be a list")
|
78
|
+
pulumi.set(__self__, "reputations", reputations)
|
79
|
+
if revoked_at and not isinstance(revoked_at, str):
|
80
|
+
raise TypeError("Expected argument 'revoked_at' to be a str")
|
81
|
+
pulumi.set(__self__, "revoked_at", revoked_at)
|
82
|
+
if smtp_host and not isinstance(smtp_host, str):
|
83
|
+
raise TypeError("Expected argument 'smtp_host' to be a str")
|
84
|
+
pulumi.set(__self__, "smtp_host", smtp_host)
|
85
|
+
if smtp_port and not isinstance(smtp_port, int):
|
86
|
+
raise TypeError("Expected argument 'smtp_port' to be a int")
|
87
|
+
pulumi.set(__self__, "smtp_port", smtp_port)
|
88
|
+
if smtp_port_alternative and not isinstance(smtp_port_alternative, int):
|
89
|
+
raise TypeError("Expected argument 'smtp_port_alternative' to be a int")
|
90
|
+
pulumi.set(__self__, "smtp_port_alternative", smtp_port_alternative)
|
91
|
+
if smtp_port_unsecure and not isinstance(smtp_port_unsecure, int):
|
92
|
+
raise TypeError("Expected argument 'smtp_port_unsecure' to be a int")
|
93
|
+
pulumi.set(__self__, "smtp_port_unsecure", smtp_port_unsecure)
|
94
|
+
if smtps_auth_user and not isinstance(smtps_auth_user, str):
|
95
|
+
raise TypeError("Expected argument 'smtps_auth_user' to be a str")
|
96
|
+
pulumi.set(__self__, "smtps_auth_user", smtps_auth_user)
|
97
|
+
if smtps_port and not isinstance(smtps_port, int):
|
98
|
+
raise TypeError("Expected argument 'smtps_port' to be a int")
|
99
|
+
pulumi.set(__self__, "smtps_port", smtps_port)
|
100
|
+
if smtps_port_alternative and not isinstance(smtps_port_alternative, int):
|
101
|
+
raise TypeError("Expected argument 'smtps_port_alternative' to be a int")
|
102
|
+
pulumi.set(__self__, "smtps_port_alternative", smtps_port_alternative)
|
103
|
+
if spf_config and not isinstance(spf_config, str):
|
104
|
+
raise TypeError("Expected argument 'spf_config' to be a str")
|
105
|
+
pulumi.set(__self__, "spf_config", spf_config)
|
106
|
+
if status and not isinstance(status, str):
|
107
|
+
raise TypeError("Expected argument 'status' to be a str")
|
108
|
+
pulumi.set(__self__, "status", status)
|
109
|
+
|
110
|
+
@property
|
111
|
+
@pulumi.getter(name="acceptTos")
|
112
|
+
def accept_tos(self) -> bool:
|
113
|
+
return pulumi.get(self, "accept_tos")
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter
|
117
|
+
def autoconfig(self) -> bool:
|
118
|
+
return pulumi.get(self, "autoconfig")
|
119
|
+
|
120
|
+
@property
|
121
|
+
@pulumi.getter(name="createdAt")
|
122
|
+
def created_at(self) -> str:
|
123
|
+
return pulumi.get(self, "created_at")
|
124
|
+
|
125
|
+
@property
|
126
|
+
@pulumi.getter(name="dkimConfig")
|
127
|
+
def dkim_config(self) -> str:
|
128
|
+
return pulumi.get(self, "dkim_config")
|
129
|
+
|
130
|
+
@property
|
131
|
+
@pulumi.getter(name="dmarcConfig")
|
132
|
+
def dmarc_config(self) -> str:
|
133
|
+
return pulumi.get(self, "dmarc_config")
|
134
|
+
|
135
|
+
@property
|
136
|
+
@pulumi.getter(name="dmarcName")
|
137
|
+
def dmarc_name(self) -> str:
|
138
|
+
return pulumi.get(self, "dmarc_name")
|
139
|
+
|
140
|
+
@property
|
141
|
+
@pulumi.getter(name="domainId")
|
142
|
+
def domain_id(self) -> Optional[str]:
|
143
|
+
return pulumi.get(self, "domain_id")
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter
|
147
|
+
def id(self) -> str:
|
148
|
+
"""
|
149
|
+
The provider-assigned unique ID for this managed resource.
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "id")
|
152
|
+
|
153
|
+
@property
|
154
|
+
@pulumi.getter(name="lastError")
|
155
|
+
def last_error(self) -> str:
|
156
|
+
return pulumi.get(self, "last_error")
|
157
|
+
|
158
|
+
@property
|
159
|
+
@pulumi.getter(name="lastValidAt")
|
160
|
+
def last_valid_at(self) -> str:
|
161
|
+
return pulumi.get(self, "last_valid_at")
|
162
|
+
|
163
|
+
@property
|
164
|
+
@pulumi.getter(name="mxBlackhole")
|
165
|
+
def mx_blackhole(self) -> str:
|
166
|
+
return pulumi.get(self, "mx_blackhole")
|
167
|
+
|
168
|
+
@property
|
169
|
+
@pulumi.getter
|
170
|
+
def name(self) -> Optional[str]:
|
171
|
+
return pulumi.get(self, "name")
|
172
|
+
|
173
|
+
@property
|
174
|
+
@pulumi.getter(name="nextCheckAt")
|
175
|
+
def next_check_at(self) -> str:
|
176
|
+
return pulumi.get(self, "next_check_at")
|
177
|
+
|
178
|
+
@property
|
179
|
+
@pulumi.getter(name="projectId")
|
180
|
+
def project_id(self) -> Optional[str]:
|
181
|
+
return pulumi.get(self, "project_id")
|
182
|
+
|
183
|
+
@property
|
184
|
+
@pulumi.getter
|
185
|
+
def region(self) -> Optional[str]:
|
186
|
+
return pulumi.get(self, "region")
|
187
|
+
|
188
|
+
@property
|
189
|
+
@pulumi.getter
|
190
|
+
def reputations(self) -> Sequence['outputs.GetDomainReputationResult']:
|
191
|
+
return pulumi.get(self, "reputations")
|
192
|
+
|
193
|
+
@property
|
194
|
+
@pulumi.getter(name="revokedAt")
|
195
|
+
def revoked_at(self) -> str:
|
196
|
+
return pulumi.get(self, "revoked_at")
|
197
|
+
|
198
|
+
@property
|
199
|
+
@pulumi.getter(name="smtpHost")
|
200
|
+
def smtp_host(self) -> str:
|
201
|
+
return pulumi.get(self, "smtp_host")
|
202
|
+
|
203
|
+
@property
|
204
|
+
@pulumi.getter(name="smtpPort")
|
205
|
+
def smtp_port(self) -> int:
|
206
|
+
return pulumi.get(self, "smtp_port")
|
207
|
+
|
208
|
+
@property
|
209
|
+
@pulumi.getter(name="smtpPortAlternative")
|
210
|
+
def smtp_port_alternative(self) -> int:
|
211
|
+
return pulumi.get(self, "smtp_port_alternative")
|
212
|
+
|
213
|
+
@property
|
214
|
+
@pulumi.getter(name="smtpPortUnsecure")
|
215
|
+
def smtp_port_unsecure(self) -> int:
|
216
|
+
return pulumi.get(self, "smtp_port_unsecure")
|
217
|
+
|
218
|
+
@property
|
219
|
+
@pulumi.getter(name="smtpsAuthUser")
|
220
|
+
def smtps_auth_user(self) -> str:
|
221
|
+
return pulumi.get(self, "smtps_auth_user")
|
222
|
+
|
223
|
+
@property
|
224
|
+
@pulumi.getter(name="smtpsPort")
|
225
|
+
def smtps_port(self) -> int:
|
226
|
+
return pulumi.get(self, "smtps_port")
|
227
|
+
|
228
|
+
@property
|
229
|
+
@pulumi.getter(name="smtpsPortAlternative")
|
230
|
+
def smtps_port_alternative(self) -> int:
|
231
|
+
return pulumi.get(self, "smtps_port_alternative")
|
232
|
+
|
233
|
+
@property
|
234
|
+
@pulumi.getter(name="spfConfig")
|
235
|
+
def spf_config(self) -> str:
|
236
|
+
return pulumi.get(self, "spf_config")
|
237
|
+
|
238
|
+
@property
|
239
|
+
@pulumi.getter
|
240
|
+
def status(self) -> str:
|
241
|
+
return pulumi.get(self, "status")
|
242
|
+
|
243
|
+
|
244
|
+
class AwaitableGetDomainResult(GetDomainResult):
|
245
|
+
# pylint: disable=using-constant-test
|
246
|
+
def __await__(self):
|
247
|
+
if False:
|
248
|
+
yield self
|
249
|
+
return GetDomainResult(
|
250
|
+
accept_tos=self.accept_tos,
|
251
|
+
autoconfig=self.autoconfig,
|
252
|
+
created_at=self.created_at,
|
253
|
+
dkim_config=self.dkim_config,
|
254
|
+
dmarc_config=self.dmarc_config,
|
255
|
+
dmarc_name=self.dmarc_name,
|
256
|
+
domain_id=self.domain_id,
|
257
|
+
id=self.id,
|
258
|
+
last_error=self.last_error,
|
259
|
+
last_valid_at=self.last_valid_at,
|
260
|
+
mx_blackhole=self.mx_blackhole,
|
261
|
+
name=self.name,
|
262
|
+
next_check_at=self.next_check_at,
|
263
|
+
project_id=self.project_id,
|
264
|
+
region=self.region,
|
265
|
+
reputations=self.reputations,
|
266
|
+
revoked_at=self.revoked_at,
|
267
|
+
smtp_host=self.smtp_host,
|
268
|
+
smtp_port=self.smtp_port,
|
269
|
+
smtp_port_alternative=self.smtp_port_alternative,
|
270
|
+
smtp_port_unsecure=self.smtp_port_unsecure,
|
271
|
+
smtps_auth_user=self.smtps_auth_user,
|
272
|
+
smtps_port=self.smtps_port,
|
273
|
+
smtps_port_alternative=self.smtps_port_alternative,
|
274
|
+
spf_config=self.spf_config,
|
275
|
+
status=self.status)
|
276
|
+
|
277
|
+
|
278
|
+
def get_domain(domain_id: Optional[str] = None,
|
279
|
+
name: Optional[str] = None,
|
280
|
+
project_id: Optional[str] = None,
|
281
|
+
region: Optional[str] = None,
|
282
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDomainResult:
|
283
|
+
"""
|
284
|
+
Gets information about a transactional email domain.
|
285
|
+
|
286
|
+
|
287
|
+
:param str domain_id: The domain id.
|
288
|
+
Only one of `name` and `domain_id` should be specified.
|
289
|
+
:param str name: The domain name.
|
290
|
+
Only one of `name` and `domain_id` should be specified.
|
291
|
+
:param str project_id: `project_id`) The ID of the project the domain is associated with.
|
292
|
+
:param str region: `region`) The region in which the domain exists.
|
293
|
+
"""
|
294
|
+
__args__ = dict()
|
295
|
+
__args__['domainId'] = domain_id
|
296
|
+
__args__['name'] = name
|
297
|
+
__args__['projectId'] = project_id
|
298
|
+
__args__['region'] = region
|
299
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
300
|
+
__ret__ = pulumi.runtime.invoke('scaleway:tem/getDomain:getDomain', __args__, opts=opts, typ=GetDomainResult).value
|
301
|
+
|
302
|
+
return AwaitableGetDomainResult(
|
303
|
+
accept_tos=pulumi.get(__ret__, 'accept_tos'),
|
304
|
+
autoconfig=pulumi.get(__ret__, 'autoconfig'),
|
305
|
+
created_at=pulumi.get(__ret__, 'created_at'),
|
306
|
+
dkim_config=pulumi.get(__ret__, 'dkim_config'),
|
307
|
+
dmarc_config=pulumi.get(__ret__, 'dmarc_config'),
|
308
|
+
dmarc_name=pulumi.get(__ret__, 'dmarc_name'),
|
309
|
+
domain_id=pulumi.get(__ret__, 'domain_id'),
|
310
|
+
id=pulumi.get(__ret__, 'id'),
|
311
|
+
last_error=pulumi.get(__ret__, 'last_error'),
|
312
|
+
last_valid_at=pulumi.get(__ret__, 'last_valid_at'),
|
313
|
+
mx_blackhole=pulumi.get(__ret__, 'mx_blackhole'),
|
314
|
+
name=pulumi.get(__ret__, 'name'),
|
315
|
+
next_check_at=pulumi.get(__ret__, 'next_check_at'),
|
316
|
+
project_id=pulumi.get(__ret__, 'project_id'),
|
317
|
+
region=pulumi.get(__ret__, 'region'),
|
318
|
+
reputations=pulumi.get(__ret__, 'reputations'),
|
319
|
+
revoked_at=pulumi.get(__ret__, 'revoked_at'),
|
320
|
+
smtp_host=pulumi.get(__ret__, 'smtp_host'),
|
321
|
+
smtp_port=pulumi.get(__ret__, 'smtp_port'),
|
322
|
+
smtp_port_alternative=pulumi.get(__ret__, 'smtp_port_alternative'),
|
323
|
+
smtp_port_unsecure=pulumi.get(__ret__, 'smtp_port_unsecure'),
|
324
|
+
smtps_auth_user=pulumi.get(__ret__, 'smtps_auth_user'),
|
325
|
+
smtps_port=pulumi.get(__ret__, 'smtps_port'),
|
326
|
+
smtps_port_alternative=pulumi.get(__ret__, 'smtps_port_alternative'),
|
327
|
+
spf_config=pulumi.get(__ret__, 'spf_config'),
|
328
|
+
status=pulumi.get(__ret__, 'status'))
|
329
|
+
def get_domain_output(domain_id: Optional[pulumi.Input[Optional[str]]] = None,
|
330
|
+
name: Optional[pulumi.Input[Optional[str]]] = None,
|
331
|
+
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
332
|
+
region: Optional[pulumi.Input[Optional[str]]] = None,
|
333
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDomainResult]:
|
334
|
+
"""
|
335
|
+
Gets information about a transactional email domain.
|
336
|
+
|
337
|
+
|
338
|
+
:param str domain_id: The domain id.
|
339
|
+
Only one of `name` and `domain_id` should be specified.
|
340
|
+
:param str name: The domain name.
|
341
|
+
Only one of `name` and `domain_id` should be specified.
|
342
|
+
:param str project_id: `project_id`) The ID of the project the domain is associated with.
|
343
|
+
:param str region: `region`) The region in which the domain exists.
|
344
|
+
"""
|
345
|
+
__args__ = dict()
|
346
|
+
__args__['domainId'] = domain_id
|
347
|
+
__args__['name'] = name
|
348
|
+
__args__['projectId'] = project_id
|
349
|
+
__args__['region'] = region
|
350
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
351
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:tem/getDomain:getDomain', __args__, opts=opts, typ=GetDomainResult)
|
352
|
+
return __ret__.apply(lambda __response__: GetDomainResult(
|
353
|
+
accept_tos=pulumi.get(__response__, 'accept_tos'),
|
354
|
+
autoconfig=pulumi.get(__response__, 'autoconfig'),
|
355
|
+
created_at=pulumi.get(__response__, 'created_at'),
|
356
|
+
dkim_config=pulumi.get(__response__, 'dkim_config'),
|
357
|
+
dmarc_config=pulumi.get(__response__, 'dmarc_config'),
|
358
|
+
dmarc_name=pulumi.get(__response__, 'dmarc_name'),
|
359
|
+
domain_id=pulumi.get(__response__, 'domain_id'),
|
360
|
+
id=pulumi.get(__response__, 'id'),
|
361
|
+
last_error=pulumi.get(__response__, 'last_error'),
|
362
|
+
last_valid_at=pulumi.get(__response__, 'last_valid_at'),
|
363
|
+
mx_blackhole=pulumi.get(__response__, 'mx_blackhole'),
|
364
|
+
name=pulumi.get(__response__, 'name'),
|
365
|
+
next_check_at=pulumi.get(__response__, 'next_check_at'),
|
366
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
367
|
+
region=pulumi.get(__response__, 'region'),
|
368
|
+
reputations=pulumi.get(__response__, 'reputations'),
|
369
|
+
revoked_at=pulumi.get(__response__, 'revoked_at'),
|
370
|
+
smtp_host=pulumi.get(__response__, 'smtp_host'),
|
371
|
+
smtp_port=pulumi.get(__response__, 'smtp_port'),
|
372
|
+
smtp_port_alternative=pulumi.get(__response__, 'smtp_port_alternative'),
|
373
|
+
smtp_port_unsecure=pulumi.get(__response__, 'smtp_port_unsecure'),
|
374
|
+
smtps_auth_user=pulumi.get(__response__, 'smtps_auth_user'),
|
375
|
+
smtps_port=pulumi.get(__response__, 'smtps_port'),
|
376
|
+
smtps_port_alternative=pulumi.get(__response__, 'smtps_port_alternative'),
|
377
|
+
spf_config=pulumi.get(__response__, 'spf_config'),
|
378
|
+
status=pulumi.get(__response__, 'status')))
|