pulumiverse-scaleway 1.30.0a1750140900__py3-none-any.whl → 1.30.0a1752168858__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 +11 -1
- pulumiverse_scaleway/_inputs.py +2252 -2143
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +2 -1
- pulumiverse_scaleway/account/get_availability_zones.py +9 -8
- pulumiverse_scaleway/account/get_project.py +21 -20
- pulumiverse_scaleway/account/get_projects.py +28 -21
- pulumiverse_scaleway/account/get_ssh_key.py +24 -23
- pulumiverse_scaleway/account/outputs.py +20 -19
- pulumiverse_scaleway/account/project.py +59 -57
- pulumiverse_scaleway/account/ssh_key.py +87 -85
- pulumiverse_scaleway/account_project.py +59 -57
- pulumiverse_scaleway/account_ssh_key.py +87 -85
- pulumiverse_scaleway/apple_silicon_server.py +204 -155
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
- pulumiverse_scaleway/applesilicon/outputs.py +54 -21
- pulumiverse_scaleway/applesilicon/server.py +204 -155
- pulumiverse_scaleway/baremetal_server.py +262 -260
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +10 -9
- pulumiverse_scaleway/billing/get_invoices.py +19 -18
- pulumiverse_scaleway/billing/outputs.py +73 -72
- pulumiverse_scaleway/block/__init__.py +2 -1
- pulumiverse_scaleway/block/_inputs.py +12 -11
- pulumiverse_scaleway/block/get_snapshot.py +29 -28
- pulumiverse_scaleway/block/get_volume.py +28 -27
- pulumiverse_scaleway/block/outputs.py +14 -13
- pulumiverse_scaleway/block/snapshot.py +73 -71
- pulumiverse_scaleway/block/volume.py +115 -113
- pulumiverse_scaleway/block_snapshot.py +73 -71
- pulumiverse_scaleway/block_volume.py +115 -113
- pulumiverse_scaleway/cockpit.py +38 -36
- pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
- pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
- pulumiverse_scaleway/cockpit_source.py +115 -113
- pulumiverse_scaleway/cockpit_token.py +66 -64
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -1
- pulumiverse_scaleway/config/vars.py +2 -1
- pulumiverse_scaleway/container.py +573 -343
- pulumiverse_scaleway/container_cron.py +80 -78
- pulumiverse_scaleway/container_domain.py +52 -50
- pulumiverse_scaleway/container_namespace.py +211 -140
- pulumiverse_scaleway/container_token.py +80 -78
- pulumiverse_scaleway/container_trigger.py +59 -57
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +72 -71
- pulumiverse_scaleway/containers/container.py +573 -343
- pulumiverse_scaleway/containers/cron.py +80 -78
- pulumiverse_scaleway/containers/domain.py +52 -50
- pulumiverse_scaleway/containers/get_container.py +87 -42
- pulumiverse_scaleway/containers/get_namespace.py +43 -31
- pulumiverse_scaleway/containers/namespace.py +211 -140
- pulumiverse_scaleway/containers/outputs.py +62 -61
- pulumiverse_scaleway/containers/token.py +80 -78
- pulumiverse_scaleway/containers/trigger.py +59 -57
- pulumiverse_scaleway/database.py +66 -64
- pulumiverse_scaleway/database_acl.py +31 -29
- pulumiverse_scaleway/database_backup.py +101 -99
- pulumiverse_scaleway/database_instance.py +297 -295
- pulumiverse_scaleway/database_privilege.py +73 -71
- pulumiverse_scaleway/database_read_replica.py +45 -43
- pulumiverse_scaleway/database_user.py +73 -71
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +191 -190
- pulumiverse_scaleway/databases/acl.py +31 -29
- pulumiverse_scaleway/databases/database.py +66 -64
- pulumiverse_scaleway/databases/database_backup.py +101 -99
- pulumiverse_scaleway/databases/get_acl.py +13 -12
- pulumiverse_scaleway/databases/get_database.py +19 -18
- pulumiverse_scaleway/databases/get_database_backup.py +34 -33
- pulumiverse_scaleway/databases/get_instance.py +43 -42
- pulumiverse_scaleway/databases/get_privilege.py +24 -23
- pulumiverse_scaleway/databases/instance.py +297 -295
- pulumiverse_scaleway/databases/outputs.py +188 -187
- pulumiverse_scaleway/databases/privilege.py +73 -71
- pulumiverse_scaleway/databases/read_replica.py +45 -43
- pulumiverse_scaleway/databases/serverless_database.py +80 -78
- pulumiverse_scaleway/databases/snapshot.py +101 -99
- pulumiverse_scaleway/databases/user.py +73 -71
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +531 -530
- pulumiverse_scaleway/domain/get_record.py +38 -37
- pulumiverse_scaleway/domain/get_zone.py +24 -23
- pulumiverse_scaleway/domain/outputs.py +358 -357
- pulumiverse_scaleway/domain/record.py +129 -127
- pulumiverse_scaleway/domain/registration.py +94 -92
- pulumiverse_scaleway/domain/zone.py +87 -85
- pulumiverse_scaleway/domain_record.py +129 -127
- pulumiverse_scaleway/domain_zone.py +87 -85
- pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
- pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
- pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
- pulumiverse_scaleway/edge_services_head_stage.py +31 -29
- pulumiverse_scaleway/edge_services_pipeline.py +66 -64
- pulumiverse_scaleway/edge_services_plan.py +31 -29
- pulumiverse_scaleway/edge_services_route_stage.py +59 -57
- pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
- pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
- pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
- pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
- pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
- pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
- pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
- pulumiverse_scaleway/elasticmetal/ip.py +139 -137
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
- pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
- pulumiverse_scaleway/elasticmetal/server.py +262 -260
- pulumiverse_scaleway/file_filesystem.py +552 -0
- pulumiverse_scaleway/flexible_ip.py +139 -137
- pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
- pulumiverse_scaleway/function.py +394 -284
- pulumiverse_scaleway/function_cron.py +80 -78
- pulumiverse_scaleway/function_domain.py +52 -50
- pulumiverse_scaleway/function_namespace.py +197 -126
- pulumiverse_scaleway/function_token.py +80 -78
- pulumiverse_scaleway/function_trigger.py +59 -57
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +42 -41
- pulumiverse_scaleway/functions/cron.py +80 -78
- pulumiverse_scaleway/functions/domain.py +52 -50
- pulumiverse_scaleway/functions/function.py +394 -284
- pulumiverse_scaleway/functions/get_function.py +69 -46
- pulumiverse_scaleway/functions/get_namespace.py +42 -30
- pulumiverse_scaleway/functions/namespace.py +197 -126
- pulumiverse_scaleway/functions/outputs.py +26 -25
- pulumiverse_scaleway/functions/token.py +80 -78
- pulumiverse_scaleway/functions/trigger.py +59 -57
- pulumiverse_scaleway/get_account_project.py +21 -20
- pulumiverse_scaleway/get_account_ssh_key.py +24 -23
- pulumiverse_scaleway/get_availability_zones.py +9 -8
- pulumiverse_scaleway/get_baremetal_offer.py +29 -28
- pulumiverse_scaleway/get_baremetal_option.py +19 -18
- pulumiverse_scaleway/get_baremetal_os.py +23 -22
- pulumiverse_scaleway/get_baremetal_server.py +39 -38
- pulumiverse_scaleway/get_billing_consumptions.py +10 -9
- pulumiverse_scaleway/get_billing_invoices.py +19 -18
- pulumiverse_scaleway/get_block_snapshot.py +29 -28
- pulumiverse_scaleway/get_block_volume.py +28 -27
- pulumiverse_scaleway/get_cockpit.py +10 -9
- pulumiverse_scaleway/get_cockpit_source.py +33 -32
- pulumiverse_scaleway/get_config.py +13 -12
- pulumiverse_scaleway/get_container.py +87 -42
- pulumiverse_scaleway/get_container_namespace.py +43 -31
- pulumiverse_scaleway/get_database.py +19 -18
- pulumiverse_scaleway/get_database_acl.py +13 -12
- pulumiverse_scaleway/get_database_backup.py +34 -33
- pulumiverse_scaleway/get_database_instance.py +43 -42
- pulumiverse_scaleway/get_database_privilege.py +24 -23
- pulumiverse_scaleway/get_domain_record.py +38 -37
- pulumiverse_scaleway/get_domain_zone.py +24 -23
- pulumiverse_scaleway/get_flexible_ip.py +56 -39
- pulumiverse_scaleway/get_flexible_ips.py +24 -23
- pulumiverse_scaleway/get_function.py +69 -46
- pulumiverse_scaleway/get_function_namespace.py +42 -30
- pulumiverse_scaleway/get_iam_api_key.py +17 -16
- pulumiverse_scaleway/get_iam_application.py +23 -22
- pulumiverse_scaleway/get_iam_group.py +25 -24
- pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
- pulumiverse_scaleway/get_iam_user.py +23 -22
- pulumiverse_scaleway/get_instance_image.py +42 -41
- pulumiverse_scaleway/get_instance_ip.py +20 -19
- pulumiverse_scaleway/get_instance_placement_group.py +28 -27
- pulumiverse_scaleway/get_instance_private_nic.py +31 -30
- pulumiverse_scaleway/get_instance_security_group.py +31 -30
- pulumiverse_scaleway/get_instance_server.py +59 -47
- pulumiverse_scaleway/get_instance_servers.py +24 -23
- pulumiverse_scaleway/get_instance_snapshot.py +29 -28
- pulumiverse_scaleway/get_instance_volume.py +30 -29
- pulumiverse_scaleway/get_iot_device.py +31 -30
- pulumiverse_scaleway/get_iot_hub.py +39 -38
- pulumiverse_scaleway/get_ipam_ip.py +51 -50
- pulumiverse_scaleway/get_ipam_ips.py +44 -43
- pulumiverse_scaleway/get_k8s_version.py +16 -15
- pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
- pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
- pulumiverse_scaleway/get_lb_acls.py +22 -21
- pulumiverse_scaleway/get_lb_backend.py +43 -42
- pulumiverse_scaleway/get_lb_backends.py +22 -21
- pulumiverse_scaleway/get_lb_frontend.py +26 -25
- pulumiverse_scaleway/get_lb_frontends.py +22 -21
- pulumiverse_scaleway/get_lb_ips.py +29 -28
- pulumiverse_scaleway/get_lb_route.py +16 -15
- pulumiverse_scaleway/get_lb_routes.py +17 -16
- pulumiverse_scaleway/get_lbs.py +24 -23
- pulumiverse_scaleway/get_loadbalancer.py +36 -35
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
- pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
- pulumiverse_scaleway/get_marketplace_image.py +23 -22
- pulumiverse_scaleway/get_mnq_sns.py +14 -13
- pulumiverse_scaleway/get_mnq_sqs.py +14 -13
- pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
- pulumiverse_scaleway/get_object_bucket.py +22 -21
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
- pulumiverse_scaleway/get_redis_cluster.py +34 -33
- pulumiverse_scaleway/get_registry_image.py +37 -36
- pulumiverse_scaleway/get_registry_image_tag.py +33 -32
- pulumiverse_scaleway/get_registry_namespace.py +27 -26
- pulumiverse_scaleway/get_secret.py +41 -40
- pulumiverse_scaleway/get_secret_version.py +34 -33
- pulumiverse_scaleway/get_tem_domain.py +43 -42
- pulumiverse_scaleway/get_vpc.py +35 -34
- pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
- pulumiverse_scaleway/get_vpc_private_network.py +32 -31
- pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
- pulumiverse_scaleway/get_vpc_routes.py +38 -37
- pulumiverse_scaleway/get_vpcs.py +24 -23
- pulumiverse_scaleway/get_web_host_offer.py +25 -24
- pulumiverse_scaleway/get_webhosting.py +36 -35
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +61 -60
- pulumiverse_scaleway/hosting/get_hosting.py +36 -35
- pulumiverse_scaleway/hosting/get_offer.py +25 -24
- pulumiverse_scaleway/hosting/hosting.py +164 -162
- pulumiverse_scaleway/hosting/outputs.py +139 -138
- pulumiverse_scaleway/iam/__init__.py +2 -1
- pulumiverse_scaleway/iam/_inputs.py +22 -21
- pulumiverse_scaleway/iam/api_key.py +115 -113
- pulumiverse_scaleway/iam/application.py +80 -78
- pulumiverse_scaleway/iam/get_api_key.py +17 -16
- pulumiverse_scaleway/iam/get_application.py +23 -22
- pulumiverse_scaleway/iam/get_group.py +25 -24
- pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
- pulumiverse_scaleway/iam/get_user.py +23 -22
- pulumiverse_scaleway/iam/group.py +115 -113
- pulumiverse_scaleway/iam/group_membership.py +45 -43
- pulumiverse_scaleway/iam/outputs.py +14 -13
- pulumiverse_scaleway/iam/policy.py +136 -134
- pulumiverse_scaleway/iam/ssh_key.py +87 -85
- pulumiverse_scaleway/iam/user.py +284 -273
- pulumiverse_scaleway/iam_api_key.py +115 -113
- pulumiverse_scaleway/iam_application.py +80 -78
- pulumiverse_scaleway/iam_group.py +115 -113
- pulumiverse_scaleway/iam_group_membership.py +45 -43
- pulumiverse_scaleway/iam_policy.py +136 -134
- pulumiverse_scaleway/iam_ssh_key.py +87 -85
- pulumiverse_scaleway/iam_user.py +284 -273
- pulumiverse_scaleway/inference/__init__.py +2 -1
- pulumiverse_scaleway/inference/_inputs.py +116 -61
- pulumiverse_scaleway/inference/deployment.py +225 -176
- pulumiverse_scaleway/inference/get_model.py +27 -26
- pulumiverse_scaleway/inference/model.py +129 -127
- pulumiverse_scaleway/inference/outputs.py +82 -49
- pulumiverse_scaleway/inference_deployment.py +225 -176
- pulumiverse_scaleway/instance/__init__.py +2 -1
- pulumiverse_scaleway/instance/_inputs.py +296 -295
- pulumiverse_scaleway/instance/get_image.py +42 -41
- pulumiverse_scaleway/instance/get_ip.py +20 -19
- pulumiverse_scaleway/instance/get_placement_group.py +28 -27
- pulumiverse_scaleway/instance/get_private_nic.py +31 -30
- pulumiverse_scaleway/instance/get_security_group.py +31 -30
- pulumiverse_scaleway/instance/get_server.py +59 -47
- pulumiverse_scaleway/instance/get_servers.py +24 -23
- pulumiverse_scaleway/instance/get_snapshot.py +29 -28
- pulumiverse_scaleway/instance/get_volume.py +30 -29
- pulumiverse_scaleway/instance/image.py +150 -148
- pulumiverse_scaleway/instance/ip.py +94 -92
- pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance/outputs.py +349 -348
- pulumiverse_scaleway/instance/placement_group.py +101 -99
- pulumiverse_scaleway/instance/private_nic.py +94 -92
- pulumiverse_scaleway/instance/security_group.py +150 -148
- pulumiverse_scaleway/instance/security_group_rules.py +17 -15
- pulumiverse_scaleway/instance/server.py +393 -330
- pulumiverse_scaleway/instance/snapshot.py +108 -106
- pulumiverse_scaleway/instance/user_data.py +59 -57
- pulumiverse_scaleway/instance/volume.py +129 -127
- pulumiverse_scaleway/instance_image.py +150 -148
- pulumiverse_scaleway/instance_ip.py +94 -92
- pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance_placement_group.py +101 -99
- pulumiverse_scaleway/instance_private_nic.py +94 -92
- pulumiverse_scaleway/instance_security_group.py +150 -148
- pulumiverse_scaleway/instance_security_group_rules.py +17 -15
- pulumiverse_scaleway/instance_server.py +393 -330
- pulumiverse_scaleway/instance_snapshot.py +108 -106
- pulumiverse_scaleway/instance_user_data.py +59 -57
- pulumiverse_scaleway/instance_volume.py +129 -127
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +98 -97
- pulumiverse_scaleway/iot/device.py +122 -120
- pulumiverse_scaleway/iot/get_device.py +31 -30
- pulumiverse_scaleway/iot/get_hub.py +39 -38
- pulumiverse_scaleway/iot/hub.py +206 -204
- pulumiverse_scaleway/iot/network.py +94 -92
- pulumiverse_scaleway/iot/outputs.py +78 -77
- pulumiverse_scaleway/iot/route.py +66 -64
- pulumiverse_scaleway/iot_device.py +122 -120
- pulumiverse_scaleway/iot_hub.py +206 -204
- pulumiverse_scaleway/iot_network.py +94 -92
- pulumiverse_scaleway/iot_route.py +66 -64
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +87 -86
- pulumiverse_scaleway/ipam/get_ip.py +51 -50
- pulumiverse_scaleway/ipam/get_ips.py +44 -43
- pulumiverse_scaleway/ipam/ip.py +94 -92
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/ipam/outputs.py +90 -89
- pulumiverse_scaleway/ipam_ip.py +94 -92
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +38 -37
- pulumiverse_scaleway/job/definition.py +143 -141
- pulumiverse_scaleway/job/outputs.py +24 -23
- pulumiverse_scaleway/job_definition.py +143 -141
- pulumiverse_scaleway/kubernetes/__init__.py +2 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
- pulumiverse_scaleway/kubernetes/acl.py +45 -43
- pulumiverse_scaleway/kubernetes/cluster.py +234 -232
- pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
- pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
- pulumiverse_scaleway/kubernetes/get_version.py +16 -15
- pulumiverse_scaleway/kubernetes/outputs.py +217 -216
- pulumiverse_scaleway/kubernetes/pool.py +290 -288
- pulumiverse_scaleway/kubernetes_cluster.py +234 -232
- pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
- pulumiverse_scaleway/loadbalancer.py +199 -197
- pulumiverse_scaleway/loadbalancer_acl.py +73 -71
- pulumiverse_scaleway/loadbalancer_backend.py +381 -379
- pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
- pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
- pulumiverse_scaleway/loadbalancer_ip.py +101 -99
- pulumiverse_scaleway/loadbalancer_route.py +101 -99
- pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
- pulumiverse_scaleway/loadbalancers/acl.py +73 -71
- pulumiverse_scaleway/loadbalancers/backend.py +381 -379
- pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
- pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
- pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
- pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
- pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
- pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
- pulumiverse_scaleway/loadbalancers/ip.py +101 -99
- pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
- pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
- pulumiverse_scaleway/loadbalancers/route.py +101 -99
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +32 -31
- pulumiverse_scaleway/mnq/get_sns.py +14 -13
- pulumiverse_scaleway/mnq/get_sqs.py +14 -13
- pulumiverse_scaleway/mnq/nats_account.py +52 -50
- pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq/outputs.py +20 -19
- pulumiverse_scaleway/mnq/sns.py +38 -36
- pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sns_topic.py +143 -141
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq/sqs.py +38 -36
- pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
- pulumiverse_scaleway/mnq_nats_account.py +52 -50
- pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq_sns.py +38 -36
- pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sns_topic.py +143 -141
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq_sqs.py +38 -36
- pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
- pulumiverse_scaleway/mongo_db_instance.py +199 -197
- pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
- pulumiverse_scaleway/mongodb/__init__.py +2 -1
- pulumiverse_scaleway/mongodb/_inputs.py +53 -52
- pulumiverse_scaleway/mongodb/get_instance.py +35 -34
- pulumiverse_scaleway/mongodb/instance.py +199 -197
- pulumiverse_scaleway/mongodb/outputs.py +64 -63
- pulumiverse_scaleway/mongodb/snapshot.py +101 -99
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +140 -139
- pulumiverse_scaleway/network/acl.py +59 -57
- pulumiverse_scaleway/network/gateway_network.py +143 -141
- pulumiverse_scaleway/network/get_gateway_network.py +28 -27
- pulumiverse_scaleway/network/get_private_network.py +32 -31
- pulumiverse_scaleway/network/get_public_gateway.py +36 -35
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
- pulumiverse_scaleway/network/get_routes.py +38 -37
- pulumiverse_scaleway/network/get_vpc.py +35 -34
- pulumiverse_scaleway/network/get_vpcs.py +24 -23
- pulumiverse_scaleway/network/outputs.py +206 -205
- pulumiverse_scaleway/network/private_network.py +122 -120
- pulumiverse_scaleway/network/public_gateway.py +213 -211
- pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/network/route.py +115 -113
- pulumiverse_scaleway/network/vpc.py +101 -99
- pulumiverse_scaleway/object/__init__.py +2 -1
- pulumiverse_scaleway/object/_inputs.py +127 -126
- pulumiverse_scaleway/object/bucket.py +115 -113
- pulumiverse_scaleway/object/bucket_acl.py +73 -71
- pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object/bucket_policy.py +59 -57
- pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object/get_bucket.py +22 -21
- pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
- pulumiverse_scaleway/object/item.py +232 -183
- pulumiverse_scaleway/object/outputs.py +114 -113
- pulumiverse_scaleway/object_bucket.py +115 -113
- pulumiverse_scaleway/object_bucket_acl.py +73 -71
- pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object_bucket_policy.py +59 -57
- pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object_item.py +232 -183
- pulumiverse_scaleway/observability/__init__.py +2 -1
- pulumiverse_scaleway/observability/_inputs.py +89 -88
- pulumiverse_scaleway/observability/alert_manager.py +52 -50
- pulumiverse_scaleway/observability/cockpit.py +38 -36
- pulumiverse_scaleway/observability/get_instance.py +10 -9
- pulumiverse_scaleway/observability/get_source.py +33 -32
- pulumiverse_scaleway/observability/grafana_user.py +59 -57
- pulumiverse_scaleway/observability/outputs.py +77 -76
- pulumiverse_scaleway/observability/source.py +115 -113
- pulumiverse_scaleway/observability/token.py +66 -64
- pulumiverse_scaleway/outputs.py +2797 -2732
- pulumiverse_scaleway/provider.py +87 -65
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +101 -99
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +63 -62
- pulumiverse_scaleway/redis/cluster.py +178 -176
- pulumiverse_scaleway/redis/get_cluster.py +34 -33
- pulumiverse_scaleway/redis/outputs.py +74 -73
- pulumiverse_scaleway/redis_cluster.py +178 -176
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +37 -36
- pulumiverse_scaleway/registry/get_image_tag.py +33 -32
- pulumiverse_scaleway/registry/get_namespace.py +27 -26
- pulumiverse_scaleway/registry/namespace.py +87 -85
- pulumiverse_scaleway/registry_namespace.py +87 -85
- pulumiverse_scaleway/sdb_database.py +80 -78
- pulumiverse_scaleway/secret.py +143 -141
- pulumiverse_scaleway/secret_version.py +87 -85
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +53 -52
- pulumiverse_scaleway/secrets/get_secret.py +41 -40
- pulumiverse_scaleway/secrets/get_version.py +34 -33
- pulumiverse_scaleway/secrets/outputs.py +64 -63
- pulumiverse_scaleway/secrets/secret.py +143 -141
- pulumiverse_scaleway/secrets/version.py +87 -85
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +28 -27
- pulumiverse_scaleway/tem/blocked_list.py +87 -85
- pulumiverse_scaleway/tem/domain.py +199 -197
- pulumiverse_scaleway/tem/domain_validation.py +52 -50
- pulumiverse_scaleway/tem/get_domain.py +43 -42
- pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
- pulumiverse_scaleway/tem/outputs.py +34 -33
- pulumiverse_scaleway/tem/webhook.py +108 -106
- pulumiverse_scaleway/tem_domain.py +199 -197
- pulumiverse_scaleway/tem_domain_validation.py +52 -50
- pulumiverse_scaleway/tem_webhook.py +108 -106
- pulumiverse_scaleway/vpc.py +101 -99
- pulumiverse_scaleway/vpc_gateway_network.py +143 -141
- pulumiverse_scaleway/vpc_private_network.py +122 -120
- pulumiverse_scaleway/vpc_public_gateway.py +213 -211
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/vpc_route.py +115 -113
- pulumiverse_scaleway/webhosting.py +164 -162
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
- pulumiverse_scaleway-1.30.0a1750140900.dist-info/RECORD +0 -492
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -19,14 +20,14 @@ __all__ = ['DomainValidationArgs', 'DomainValidation']
|
|
19
20
|
@pulumi.input_type
|
20
21
|
class DomainValidationArgs:
|
21
22
|
def __init__(__self__, *,
|
22
|
-
domain_id: pulumi.Input[str],
|
23
|
-
region: Optional[pulumi.Input[str]] = None,
|
24
|
-
timeout: Optional[pulumi.Input[int]] = None):
|
23
|
+
domain_id: pulumi.Input[builtins.str],
|
24
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
25
|
+
timeout: Optional[pulumi.Input[builtins.int]] = None):
|
25
26
|
"""
|
26
27
|
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.
|
28
|
+
:param pulumi.Input[builtins.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.
|
29
|
+
:param pulumi.Input[builtins.str] region: `region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
30
|
+
:param pulumi.Input[builtins.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
|
"""
|
31
32
|
pulumi.set(__self__, "domain_id", domain_id)
|
32
33
|
if region is not None:
|
@@ -36,54 +37,54 @@ class DomainValidationArgs:
|
|
36
37
|
|
37
38
|
@property
|
38
39
|
@pulumi.getter(name="domainId")
|
39
|
-
def domain_id(self) -> pulumi.Input[str]:
|
40
|
+
def domain_id(self) -> pulumi.Input[builtins.str]:
|
40
41
|
"""
|
41
42
|
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
|
"""
|
43
44
|
return pulumi.get(self, "domain_id")
|
44
45
|
|
45
46
|
@domain_id.setter
|
46
|
-
def domain_id(self, value: pulumi.Input[str]):
|
47
|
+
def domain_id(self, value: pulumi.Input[builtins.str]):
|
47
48
|
pulumi.set(self, "domain_id", value)
|
48
49
|
|
49
50
|
@property
|
50
51
|
@pulumi.getter
|
51
|
-
def region(self) -> Optional[pulumi.Input[str]]:
|
52
|
+
def region(self) -> Optional[pulumi.Input[builtins.str]]:
|
52
53
|
"""
|
53
54
|
`region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
54
55
|
"""
|
55
56
|
return pulumi.get(self, "region")
|
56
57
|
|
57
58
|
@region.setter
|
58
|
-
def region(self, value: Optional[pulumi.Input[str]]):
|
59
|
+
def region(self, value: Optional[pulumi.Input[builtins.str]]):
|
59
60
|
pulumi.set(self, "region", value)
|
60
61
|
|
61
62
|
@property
|
62
63
|
@pulumi.getter
|
63
|
-
def timeout(self) -> Optional[pulumi.Input[int]]:
|
64
|
+
def timeout(self) -> Optional[pulumi.Input[builtins.int]]:
|
64
65
|
"""
|
65
66
|
The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
66
67
|
"""
|
67
68
|
return pulumi.get(self, "timeout")
|
68
69
|
|
69
70
|
@timeout.setter
|
70
|
-
def timeout(self, value: Optional[pulumi.Input[int]]):
|
71
|
+
def timeout(self, value: Optional[pulumi.Input[builtins.int]]):
|
71
72
|
pulumi.set(self, "timeout", value)
|
72
73
|
|
73
74
|
|
74
75
|
@pulumi.input_type
|
75
76
|
class _DomainValidationState:
|
76
77
|
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):
|
78
|
+
domain_id: Optional[pulumi.Input[builtins.str]] = None,
|
79
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
80
|
+
timeout: Optional[pulumi.Input[builtins.int]] = None,
|
81
|
+
validated: Optional[pulumi.Input[builtins.bool]] = None):
|
81
82
|
"""
|
82
83
|
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.
|
84
|
+
:param pulumi.Input[builtins.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.
|
85
|
+
:param pulumi.Input[builtins.str] region: `region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
86
|
+
:param pulumi.Input[builtins.int] timeout: The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
87
|
+
:param pulumi.Input[builtins.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
|
"""
|
88
89
|
if domain_id is not None:
|
89
90
|
pulumi.set(__self__, "domain_id", domain_id)
|
@@ -96,61 +97,62 @@ class _DomainValidationState:
|
|
96
97
|
|
97
98
|
@property
|
98
99
|
@pulumi.getter(name="domainId")
|
99
|
-
def domain_id(self) -> Optional[pulumi.Input[str]]:
|
100
|
+
def domain_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
100
101
|
"""
|
101
102
|
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
|
"""
|
103
104
|
return pulumi.get(self, "domain_id")
|
104
105
|
|
105
106
|
@domain_id.setter
|
106
|
-
def domain_id(self, value: Optional[pulumi.Input[str]]):
|
107
|
+
def domain_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
107
108
|
pulumi.set(self, "domain_id", value)
|
108
109
|
|
109
110
|
@property
|
110
111
|
@pulumi.getter
|
111
|
-
def region(self) -> Optional[pulumi.Input[str]]:
|
112
|
+
def region(self) -> Optional[pulumi.Input[builtins.str]]:
|
112
113
|
"""
|
113
114
|
`region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
114
115
|
"""
|
115
116
|
return pulumi.get(self, "region")
|
116
117
|
|
117
118
|
@region.setter
|
118
|
-
def region(self, value: Optional[pulumi.Input[str]]):
|
119
|
+
def region(self, value: Optional[pulumi.Input[builtins.str]]):
|
119
120
|
pulumi.set(self, "region", value)
|
120
121
|
|
121
122
|
@property
|
122
123
|
@pulumi.getter
|
123
|
-
def timeout(self) -> Optional[pulumi.Input[int]]:
|
124
|
+
def timeout(self) -> Optional[pulumi.Input[builtins.int]]:
|
124
125
|
"""
|
125
126
|
The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
126
127
|
"""
|
127
128
|
return pulumi.get(self, "timeout")
|
128
129
|
|
129
130
|
@timeout.setter
|
130
|
-
def timeout(self, value: Optional[pulumi.Input[int]]):
|
131
|
+
def timeout(self, value: Optional[pulumi.Input[builtins.int]]):
|
131
132
|
pulumi.set(self, "timeout", value)
|
132
133
|
|
133
134
|
@property
|
134
135
|
@pulumi.getter
|
135
|
-
def validated(self) -> Optional[pulumi.Input[bool]]:
|
136
|
+
def validated(self) -> Optional[pulumi.Input[builtins.bool]]:
|
136
137
|
"""
|
137
138
|
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
|
"""
|
139
140
|
return pulumi.get(self, "validated")
|
140
141
|
|
141
142
|
@validated.setter
|
142
|
-
def validated(self, value: Optional[pulumi.Input[bool]]):
|
143
|
+
def validated(self, value: Optional[pulumi.Input[builtins.bool]]):
|
143
144
|
pulumi.set(self, "validated", value)
|
144
145
|
|
145
146
|
|
147
|
+
@pulumi.type_token("scaleway:tem/domainValidation:DomainValidation")
|
146
148
|
class DomainValidation(pulumi.CustomResource):
|
147
149
|
@overload
|
148
150
|
def __init__(__self__,
|
149
151
|
resource_name: str,
|
150
152
|
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,
|
153
|
+
domain_id: Optional[pulumi.Input[builtins.str]] = None,
|
154
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
155
|
+
timeout: Optional[pulumi.Input[builtins.int]] = None,
|
154
156
|
__props__=None):
|
155
157
|
"""
|
156
158
|
## Example Usage
|
@@ -172,9 +174,9 @@ class DomainValidation(pulumi.CustomResource):
|
|
172
174
|
|
173
175
|
:param str resource_name: The name of the resource.
|
174
176
|
: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.
|
177
|
+
:param pulumi.Input[builtins.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.
|
178
|
+
:param pulumi.Input[builtins.str] region: `region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
179
|
+
:param pulumi.Input[builtins.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
180
|
"""
|
179
181
|
...
|
180
182
|
@overload
|
@@ -215,9 +217,9 @@ class DomainValidation(pulumi.CustomResource):
|
|
215
217
|
def _internal_init(__self__,
|
216
218
|
resource_name: str,
|
217
219
|
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,
|
220
|
+
domain_id: Optional[pulumi.Input[builtins.str]] = None,
|
221
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
222
|
+
timeout: Optional[pulumi.Input[builtins.int]] = None,
|
221
223
|
__props__=None):
|
222
224
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
223
225
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -245,10 +247,10 @@ class DomainValidation(pulumi.CustomResource):
|
|
245
247
|
def get(resource_name: str,
|
246
248
|
id: pulumi.Input[str],
|
247
249
|
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':
|
250
|
+
domain_id: Optional[pulumi.Input[builtins.str]] = None,
|
251
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
252
|
+
timeout: Optional[pulumi.Input[builtins.int]] = None,
|
253
|
+
validated: Optional[pulumi.Input[builtins.bool]] = None) -> 'DomainValidation':
|
252
254
|
"""
|
253
255
|
Get an existing DomainValidation resource's state with the given name, id, and optional extra
|
254
256
|
properties used to qualify the lookup.
|
@@ -256,10 +258,10 @@ class DomainValidation(pulumi.CustomResource):
|
|
256
258
|
:param str resource_name: The unique name of the resulting resource.
|
257
259
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
258
260
|
: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.
|
261
|
+
:param pulumi.Input[builtins.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.
|
262
|
+
:param pulumi.Input[builtins.str] region: `region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
263
|
+
:param pulumi.Input[builtins.int] timeout: The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
264
|
+
:param pulumi.Input[builtins.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
265
|
"""
|
264
266
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
265
267
|
|
@@ -273,7 +275,7 @@ class DomainValidation(pulumi.CustomResource):
|
|
273
275
|
|
274
276
|
@property
|
275
277
|
@pulumi.getter(name="domainId")
|
276
|
-
def domain_id(self) -> pulumi.Output[str]:
|
278
|
+
def domain_id(self) -> pulumi.Output[builtins.str]:
|
277
279
|
"""
|
278
280
|
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
281
|
"""
|
@@ -281,7 +283,7 @@ class DomainValidation(pulumi.CustomResource):
|
|
281
283
|
|
282
284
|
@property
|
283
285
|
@pulumi.getter
|
284
|
-
def region(self) -> pulumi.Output[str]:
|
286
|
+
def region(self) -> pulumi.Output[builtins.str]:
|
285
287
|
"""
|
286
288
|
`region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
287
289
|
"""
|
@@ -289,7 +291,7 @@ class DomainValidation(pulumi.CustomResource):
|
|
289
291
|
|
290
292
|
@property
|
291
293
|
@pulumi.getter
|
292
|
-
def timeout(self) -> pulumi.Output[Optional[int]]:
|
294
|
+
def timeout(self) -> pulumi.Output[Optional[builtins.int]]:
|
293
295
|
"""
|
294
296
|
The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
295
297
|
"""
|
@@ -297,7 +299,7 @@ class DomainValidation(pulumi.CustomResource):
|
|
297
299
|
|
298
300
|
@property
|
299
301
|
@pulumi.getter
|
300
|
-
def validated(self) -> pulumi.Output[bool]:
|
302
|
+
def validated(self) -> pulumi.Output[builtins.bool]:
|
301
303
|
"""
|
302
304
|
Indicates if the domain has been verified for email sending. This is computed after the creation or update of the domain validation resource.
|
303
305
|
"""
|
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -109,42 +110,42 @@ class GetDomainResult:
|
|
109
110
|
|
110
111
|
@property
|
111
112
|
@pulumi.getter(name="acceptTos")
|
112
|
-
def accept_tos(self) -> bool:
|
113
|
+
def accept_tos(self) -> builtins.bool:
|
113
114
|
return pulumi.get(self, "accept_tos")
|
114
115
|
|
115
116
|
@property
|
116
117
|
@pulumi.getter
|
117
|
-
def autoconfig(self) -> bool:
|
118
|
+
def autoconfig(self) -> builtins.bool:
|
118
119
|
return pulumi.get(self, "autoconfig")
|
119
120
|
|
120
121
|
@property
|
121
122
|
@pulumi.getter(name="createdAt")
|
122
|
-
def created_at(self) -> str:
|
123
|
+
def created_at(self) -> builtins.str:
|
123
124
|
return pulumi.get(self, "created_at")
|
124
125
|
|
125
126
|
@property
|
126
127
|
@pulumi.getter(name="dkimConfig")
|
127
|
-
def dkim_config(self) -> str:
|
128
|
+
def dkim_config(self) -> builtins.str:
|
128
129
|
return pulumi.get(self, "dkim_config")
|
129
130
|
|
130
131
|
@property
|
131
132
|
@pulumi.getter(name="dmarcConfig")
|
132
|
-
def dmarc_config(self) -> str:
|
133
|
+
def dmarc_config(self) -> builtins.str:
|
133
134
|
return pulumi.get(self, "dmarc_config")
|
134
135
|
|
135
136
|
@property
|
136
137
|
@pulumi.getter(name="dmarcName")
|
137
|
-
def dmarc_name(self) -> str:
|
138
|
+
def dmarc_name(self) -> builtins.str:
|
138
139
|
return pulumi.get(self, "dmarc_name")
|
139
140
|
|
140
141
|
@property
|
141
142
|
@pulumi.getter(name="domainId")
|
142
|
-
def domain_id(self) -> Optional[str]:
|
143
|
+
def domain_id(self) -> Optional[builtins.str]:
|
143
144
|
return pulumi.get(self, "domain_id")
|
144
145
|
|
145
146
|
@property
|
146
147
|
@pulumi.getter
|
147
|
-
def id(self) -> str:
|
148
|
+
def id(self) -> builtins.str:
|
148
149
|
"""
|
149
150
|
The provider-assigned unique ID for this managed resource.
|
150
151
|
"""
|
@@ -152,37 +153,37 @@ class GetDomainResult:
|
|
152
153
|
|
153
154
|
@property
|
154
155
|
@pulumi.getter(name="lastError")
|
155
|
-
def last_error(self) -> str:
|
156
|
+
def last_error(self) -> builtins.str:
|
156
157
|
return pulumi.get(self, "last_error")
|
157
158
|
|
158
159
|
@property
|
159
160
|
@pulumi.getter(name="lastValidAt")
|
160
|
-
def last_valid_at(self) -> str:
|
161
|
+
def last_valid_at(self) -> builtins.str:
|
161
162
|
return pulumi.get(self, "last_valid_at")
|
162
163
|
|
163
164
|
@property
|
164
165
|
@pulumi.getter(name="mxBlackhole")
|
165
|
-
def mx_blackhole(self) -> str:
|
166
|
+
def mx_blackhole(self) -> builtins.str:
|
166
167
|
return pulumi.get(self, "mx_blackhole")
|
167
168
|
|
168
169
|
@property
|
169
170
|
@pulumi.getter
|
170
|
-
def name(self) -> Optional[str]:
|
171
|
+
def name(self) -> Optional[builtins.str]:
|
171
172
|
return pulumi.get(self, "name")
|
172
173
|
|
173
174
|
@property
|
174
175
|
@pulumi.getter(name="nextCheckAt")
|
175
|
-
def next_check_at(self) -> str:
|
176
|
+
def next_check_at(self) -> builtins.str:
|
176
177
|
return pulumi.get(self, "next_check_at")
|
177
178
|
|
178
179
|
@property
|
179
180
|
@pulumi.getter(name="projectId")
|
180
|
-
def project_id(self) -> Optional[str]:
|
181
|
+
def project_id(self) -> Optional[builtins.str]:
|
181
182
|
return pulumi.get(self, "project_id")
|
182
183
|
|
183
184
|
@property
|
184
185
|
@pulumi.getter
|
185
|
-
def region(self) -> Optional[str]:
|
186
|
+
def region(self) -> Optional[builtins.str]:
|
186
187
|
return pulumi.get(self, "region")
|
187
188
|
|
188
189
|
@property
|
@@ -192,52 +193,52 @@ class GetDomainResult:
|
|
192
193
|
|
193
194
|
@property
|
194
195
|
@pulumi.getter(name="revokedAt")
|
195
|
-
def revoked_at(self) -> str:
|
196
|
+
def revoked_at(self) -> builtins.str:
|
196
197
|
return pulumi.get(self, "revoked_at")
|
197
198
|
|
198
199
|
@property
|
199
200
|
@pulumi.getter(name="smtpHost")
|
200
|
-
def smtp_host(self) -> str:
|
201
|
+
def smtp_host(self) -> builtins.str:
|
201
202
|
return pulumi.get(self, "smtp_host")
|
202
203
|
|
203
204
|
@property
|
204
205
|
@pulumi.getter(name="smtpPort")
|
205
|
-
def smtp_port(self) -> int:
|
206
|
+
def smtp_port(self) -> builtins.int:
|
206
207
|
return pulumi.get(self, "smtp_port")
|
207
208
|
|
208
209
|
@property
|
209
210
|
@pulumi.getter(name="smtpPortAlternative")
|
210
|
-
def smtp_port_alternative(self) -> int:
|
211
|
+
def smtp_port_alternative(self) -> builtins.int:
|
211
212
|
return pulumi.get(self, "smtp_port_alternative")
|
212
213
|
|
213
214
|
@property
|
214
215
|
@pulumi.getter(name="smtpPortUnsecure")
|
215
|
-
def smtp_port_unsecure(self) -> int:
|
216
|
+
def smtp_port_unsecure(self) -> builtins.int:
|
216
217
|
return pulumi.get(self, "smtp_port_unsecure")
|
217
218
|
|
218
219
|
@property
|
219
220
|
@pulumi.getter(name="smtpsAuthUser")
|
220
|
-
def smtps_auth_user(self) -> str:
|
221
|
+
def smtps_auth_user(self) -> builtins.str:
|
221
222
|
return pulumi.get(self, "smtps_auth_user")
|
222
223
|
|
223
224
|
@property
|
224
225
|
@pulumi.getter(name="smtpsPort")
|
225
|
-
def smtps_port(self) -> int:
|
226
|
+
def smtps_port(self) -> builtins.int:
|
226
227
|
return pulumi.get(self, "smtps_port")
|
227
228
|
|
228
229
|
@property
|
229
230
|
@pulumi.getter(name="smtpsPortAlternative")
|
230
|
-
def smtps_port_alternative(self) -> int:
|
231
|
+
def smtps_port_alternative(self) -> builtins.int:
|
231
232
|
return pulumi.get(self, "smtps_port_alternative")
|
232
233
|
|
233
234
|
@property
|
234
235
|
@pulumi.getter(name="spfConfig")
|
235
|
-
def spf_config(self) -> str:
|
236
|
+
def spf_config(self) -> builtins.str:
|
236
237
|
return pulumi.get(self, "spf_config")
|
237
238
|
|
238
239
|
@property
|
239
240
|
@pulumi.getter
|
240
|
-
def status(self) -> str:
|
241
|
+
def status(self) -> builtins.str:
|
241
242
|
return pulumi.get(self, "status")
|
242
243
|
|
243
244
|
|
@@ -275,21 +276,21 @@ class AwaitableGetDomainResult(GetDomainResult):
|
|
275
276
|
status=self.status)
|
276
277
|
|
277
278
|
|
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,
|
279
|
+
def get_domain(domain_id: Optional[builtins.str] = None,
|
280
|
+
name: Optional[builtins.str] = None,
|
281
|
+
project_id: Optional[builtins.str] = None,
|
282
|
+
region: Optional[builtins.str] = None,
|
282
283
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDomainResult:
|
283
284
|
"""
|
284
285
|
Gets information about a transactional email domain.
|
285
286
|
|
286
287
|
|
287
|
-
:param str domain_id: The domain id.
|
288
|
+
:param builtins.str domain_id: The domain id.
|
288
289
|
Only one of `name` and `domain_id` should be specified.
|
289
|
-
:param str name: The domain name.
|
290
|
+
:param builtins.str name: The domain name.
|
290
291
|
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.
|
292
|
+
:param builtins.str project_id: `project_id`) The ID of the project the domain is associated with.
|
293
|
+
:param builtins.str region: `region`) The region in which the domain exists.
|
293
294
|
"""
|
294
295
|
__args__ = dict()
|
295
296
|
__args__['domainId'] = domain_id
|
@@ -326,21 +327,21 @@ def get_domain(domain_id: Optional[str] = None,
|
|
326
327
|
smtps_port_alternative=pulumi.get(__ret__, 'smtps_port_alternative'),
|
327
328
|
spf_config=pulumi.get(__ret__, 'spf_config'),
|
328
329
|
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,
|
330
|
+
def get_domain_output(domain_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
331
|
+
name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
332
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
333
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
333
334
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDomainResult]:
|
334
335
|
"""
|
335
336
|
Gets information about a transactional email domain.
|
336
337
|
|
337
338
|
|
338
|
-
:param str domain_id: The domain id.
|
339
|
+
:param builtins.str domain_id: The domain id.
|
339
340
|
Only one of `name` and `domain_id` should be specified.
|
340
|
-
:param str name: The domain name.
|
341
|
+
:param builtins.str name: The domain name.
|
341
342
|
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.
|
343
|
+
:param builtins.str project_id: `project_id`) The ID of the project the domain is associated with.
|
344
|
+
:param builtins.str region: `region`) The region in which the domain exists.
|
344
345
|
"""
|
345
346
|
__args__ = dict()
|
346
347
|
__args__['domainId'] = domain_id
|
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -66,7 +67,7 @@ class GetOfferSubscriptionResult:
|
|
66
67
|
|
67
68
|
@property
|
68
69
|
@pulumi.getter(name="cancellationAvailableAt")
|
69
|
-
def cancellation_available_at(self) -> str:
|
70
|
+
def cancellation_available_at(self) -> builtins.str:
|
70
71
|
"""
|
71
72
|
The date and time when cancellation becomes available for the subscription.
|
72
73
|
"""
|
@@ -74,7 +75,7 @@ class GetOfferSubscriptionResult:
|
|
74
75
|
|
75
76
|
@property
|
76
77
|
@pulumi.getter
|
77
|
-
def id(self) -> str:
|
78
|
+
def id(self) -> builtins.str:
|
78
79
|
"""
|
79
80
|
The provider-assigned unique ID for this managed resource.
|
80
81
|
"""
|
@@ -82,7 +83,7 @@ class GetOfferSubscriptionResult:
|
|
82
83
|
|
83
84
|
@property
|
84
85
|
@pulumi.getter(name="includedMonthlyEmails")
|
85
|
-
def included_monthly_emails(self) -> int:
|
86
|
+
def included_monthly_emails(self) -> builtins.int:
|
86
87
|
"""
|
87
88
|
The number of emails included in the offer subscription per month.
|
88
89
|
"""
|
@@ -90,7 +91,7 @@ class GetOfferSubscriptionResult:
|
|
90
91
|
|
91
92
|
@property
|
92
93
|
@pulumi.getter(name="maxCustomBlocklistsPerDomain")
|
93
|
-
def max_custom_blocklists_per_domain(self) -> int:
|
94
|
+
def max_custom_blocklists_per_domain(self) -> builtins.int:
|
94
95
|
"""
|
95
96
|
The maximum number of custom blocklists that can be associated with the offer subscription per domain.
|
96
97
|
"""
|
@@ -98,7 +99,7 @@ class GetOfferSubscriptionResult:
|
|
98
99
|
|
99
100
|
@property
|
100
101
|
@pulumi.getter(name="maxDedicatedIps")
|
101
|
-
def max_dedicated_ips(self) -> int:
|
102
|
+
def max_dedicated_ips(self) -> builtins.int:
|
102
103
|
"""
|
103
104
|
The maximum number of dedicated IPs that can be associated with the offer subscription.
|
104
105
|
"""
|
@@ -106,7 +107,7 @@ class GetOfferSubscriptionResult:
|
|
106
107
|
|
107
108
|
@property
|
108
109
|
@pulumi.getter(name="maxDomains")
|
109
|
-
def max_domains(self) -> int:
|
110
|
+
def max_domains(self) -> builtins.int:
|
110
111
|
"""
|
111
112
|
The maximum number of domains that can be associated with the offer subscription.
|
112
113
|
"""
|
@@ -114,7 +115,7 @@ class GetOfferSubscriptionResult:
|
|
114
115
|
|
115
116
|
@property
|
116
117
|
@pulumi.getter(name="maxWebhooksPerDomain")
|
117
|
-
def max_webhooks_per_domain(self) -> int:
|
118
|
+
def max_webhooks_per_domain(self) -> builtins.int:
|
118
119
|
"""
|
119
120
|
The maximum number of webhooks that can be associated with the offer subscription per domain.
|
120
121
|
"""
|
@@ -122,7 +123,7 @@ class GetOfferSubscriptionResult:
|
|
122
123
|
|
123
124
|
@property
|
124
125
|
@pulumi.getter(name="offerName")
|
125
|
-
def offer_name(self) -> str:
|
126
|
+
def offer_name(self) -> builtins.str:
|
126
127
|
"""
|
127
128
|
The name of the offer associated with the subscription (e.g., `scale`).
|
128
129
|
"""
|
@@ -130,17 +131,17 @@ class GetOfferSubscriptionResult:
|
|
130
131
|
|
131
132
|
@property
|
132
133
|
@pulumi.getter(name="projectId")
|
133
|
-
def project_id(self) -> str:
|
134
|
+
def project_id(self) -> builtins.str:
|
134
135
|
return pulumi.get(self, "project_id")
|
135
136
|
|
136
137
|
@property
|
137
138
|
@pulumi.getter
|
138
|
-
def region(self) -> str:
|
139
|
+
def region(self) -> builtins.str:
|
139
140
|
return pulumi.get(self, "region")
|
140
141
|
|
141
142
|
@property
|
142
143
|
@pulumi.getter
|
143
|
-
def sla(self) -> float:
|
144
|
+
def sla(self) -> builtins.float:
|
144
145
|
"""
|
145
146
|
The Service Level Agreement (SLA) percentage of the offer subscription.
|
146
147
|
"""
|
@@ -148,7 +149,7 @@ class GetOfferSubscriptionResult:
|
|
148
149
|
|
149
150
|
@property
|
150
151
|
@pulumi.getter(name="subscribedAt")
|
151
|
-
def subscribed_at(self) -> str:
|
152
|
+
def subscribed_at(self) -> builtins.str:
|
152
153
|
"""
|
153
154
|
The date and time of the subscription.
|
154
155
|
"""
|
@@ -175,8 +176,8 @@ class AwaitableGetOfferSubscriptionResult(GetOfferSubscriptionResult):
|
|
175
176
|
subscribed_at=self.subscribed_at)
|
176
177
|
|
177
178
|
|
178
|
-
def get_offer_subscription(project_id: Optional[str] = None,
|
179
|
-
region: Optional[str] = None,
|
179
|
+
def get_offer_subscription(project_id: Optional[builtins.str] = None,
|
180
|
+
region: Optional[builtins.str] = None,
|
180
181
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOfferSubscriptionResult:
|
181
182
|
"""
|
182
183
|
Gets information about a transactional email offer subscription.
|
@@ -192,8 +193,8 @@ def get_offer_subscription(project_id: Optional[str] = None,
|
|
192
193
|
```
|
193
194
|
|
194
195
|
|
195
|
-
:param str project_id: `project_id`) The ID of the project the offer subscription is associated with.
|
196
|
-
:param str region: `region`) The region where the offer subscription exists.
|
196
|
+
:param builtins.str project_id: `project_id`) The ID of the project the offer subscription is associated with.
|
197
|
+
:param builtins.str region: `region`) The region where the offer subscription exists.
|
197
198
|
"""
|
198
199
|
__args__ = dict()
|
199
200
|
__args__['projectId'] = project_id
|
@@ -214,8 +215,8 @@ def get_offer_subscription(project_id: Optional[str] = None,
|
|
214
215
|
region=pulumi.get(__ret__, 'region'),
|
215
216
|
sla=pulumi.get(__ret__, 'sla'),
|
216
217
|
subscribed_at=pulumi.get(__ret__, 'subscribed_at'))
|
217
|
-
def get_offer_subscription_output(project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
218
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
218
|
+
def get_offer_subscription_output(project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
219
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
219
220
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOfferSubscriptionResult]:
|
220
221
|
"""
|
221
222
|
Gets information about a transactional email offer subscription.
|
@@ -231,8 +232,8 @@ def get_offer_subscription_output(project_id: Optional[pulumi.Input[Optional[str
|
|
231
232
|
```
|
232
233
|
|
233
234
|
|
234
|
-
:param str project_id: `project_id`) The ID of the project the offer subscription is associated with.
|
235
|
-
:param str region: `region`) The region where the offer subscription exists.
|
235
|
+
:param builtins.str project_id: `project_id`) The ID of the project the offer subscription is associated with.
|
236
|
+
:param builtins.str region: `region`) The region where the offer subscription exists.
|
236
237
|
"""
|
237
238
|
__args__ = dict()
|
238
239
|
__args__['projectId'] = project_id
|