pulumiverse-scaleway 1.27.0a1744869119__py3-none-any.whl → 1.39.0a1764841480__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 +109 -2
- pulumiverse_scaleway/_inputs.py +3936 -2603
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +4 -1
- pulumiverse_scaleway/account/get_availability_zones.py +12 -12
- pulumiverse_scaleway/account/get_project.py +28 -28
- pulumiverse_scaleway/account/get_projects.py +241 -0
- pulumiverse_scaleway/account/get_ssh_key.py +34 -34
- pulumiverse_scaleway/account/outputs.py +95 -0
- pulumiverse_scaleway/account/project.py +72 -71
- pulumiverse_scaleway/account/ssh_key.py +107 -106
- pulumiverse_scaleway/account_project.py +72 -71
- pulumiverse_scaleway/account_ssh_key.py +107 -106
- pulumiverse_scaleway/apple_silicon_server.py +334 -201
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +105 -51
- pulumiverse_scaleway/applesilicon/outputs.py +65 -33
- pulumiverse_scaleway/applesilicon/server.py +334 -201
- pulumiverse_scaleway/audittrail/__init__.py +10 -0
- pulumiverse_scaleway/audittrail/get_event.py +410 -0
- pulumiverse_scaleway/audittrail/outputs.py +234 -0
- pulumiverse_scaleway/autoscaling/__init__.py +13 -0
- pulumiverse_scaleway/autoscaling/_inputs.py +558 -0
- pulumiverse_scaleway/autoscaling/instance_group.py +807 -0
- pulumiverse_scaleway/autoscaling/instance_policy.py +634 -0
- pulumiverse_scaleway/autoscaling/instance_template.py +878 -0
- pulumiverse_scaleway/autoscaling/outputs.py +438 -0
- pulumiverse_scaleway/baremetal_server.py +622 -524
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +19 -15
- pulumiverse_scaleway/billing/get_invoices.py +25 -25
- pulumiverse_scaleway/billing/outputs.py +96 -96
- pulumiverse_scaleway/block/__init__.py +4 -1
- pulumiverse_scaleway/block/_inputs.py +125 -0
- pulumiverse_scaleway/block/get_snapshot.py +60 -37
- pulumiverse_scaleway/block/get_volume.py +38 -38
- pulumiverse_scaleway/block/outputs.py +139 -0
- pulumiverse_scaleway/block/snapshot.py +272 -98
- pulumiverse_scaleway/block/volume.py +145 -144
- pulumiverse_scaleway/block_snapshot.py +272 -98
- pulumiverse_scaleway/block_volume.py +145 -144
- pulumiverse_scaleway/cockpit.py +71 -49
- pulumiverse_scaleway/cockpit_alert_manager.py +66 -65
- pulumiverse_scaleway/cockpit_grafana_user.py +72 -113
- pulumiverse_scaleway/cockpit_source.py +142 -141
- pulumiverse_scaleway/cockpit_token.py +84 -83
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -2
- pulumiverse_scaleway/config/vars.py +11 -11
- pulumiverse_scaleway/container.py +653 -424
- pulumiverse_scaleway/container_cron.py +97 -96
- pulumiverse_scaleway/container_domain.py +63 -62
- pulumiverse_scaleway/container_namespace.py +251 -172
- pulumiverse_scaleway/container_token.py +97 -96
- pulumiverse_scaleway/container_trigger.py +77 -76
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +87 -87
- pulumiverse_scaleway/containers/container.py +653 -424
- pulumiverse_scaleway/containers/cron.py +97 -96
- pulumiverse_scaleway/containers/domain.py +63 -62
- pulumiverse_scaleway/containers/get_container.py +117 -73
- pulumiverse_scaleway/containers/get_namespace.py +56 -45
- pulumiverse_scaleway/containers/namespace.py +251 -172
- pulumiverse_scaleway/containers/outputs.py +84 -84
- pulumiverse_scaleway/containers/token.py +97 -96
- pulumiverse_scaleway/containers/trigger.py +77 -76
- pulumiverse_scaleway/database.py +81 -80
- pulumiverse_scaleway/database_acl.py +148 -39
- pulumiverse_scaleway/database_backup.py +124 -123
- pulumiverse_scaleway/database_instance.py +531 -436
- pulumiverse_scaleway/database_privilege.py +88 -87
- pulumiverse_scaleway/database_read_replica.py +60 -59
- pulumiverse_scaleway/database_user.py +171 -98
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +364 -216
- pulumiverse_scaleway/databases/acl.py +148 -39
- pulumiverse_scaleway/databases/database.py +81 -80
- pulumiverse_scaleway/databases/database_backup.py +124 -123
- pulumiverse_scaleway/databases/get_acl.py +17 -17
- pulumiverse_scaleway/databases/get_database.py +26 -26
- pulumiverse_scaleway/databases/get_database_backup.py +46 -46
- pulumiverse_scaleway/databases/get_instance.py +95 -73
- pulumiverse_scaleway/databases/get_privilege.py +30 -30
- pulumiverse_scaleway/databases/instance.py +531 -436
- pulumiverse_scaleway/databases/outputs.py +419 -232
- pulumiverse_scaleway/databases/privilege.py +88 -87
- pulumiverse_scaleway/databases/read_replica.py +60 -59
- pulumiverse_scaleway/databases/serverless_database.py +97 -96
- pulumiverse_scaleway/databases/snapshot.py +127 -126
- pulumiverse_scaleway/databases/user.py +171 -98
- pulumiverse_scaleway/datawarehouse/__init__.py +13 -0
- pulumiverse_scaleway/datawarehouse/_inputs.py +149 -0
- pulumiverse_scaleway/datawarehouse/database.py +338 -0
- pulumiverse_scaleway/datawarehouse/deployment.py +821 -0
- pulumiverse_scaleway/datawarehouse/outputs.py +113 -0
- pulumiverse_scaleway/datawarehouse/user.py +451 -0
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +661 -661
- pulumiverse_scaleway/domain/get_record.py +53 -64
- pulumiverse_scaleway/domain/get_zone.py +36 -30
- pulumiverse_scaleway/domain/outputs.py +501 -501
- pulumiverse_scaleway/domain/record.py +156 -202
- pulumiverse_scaleway/domain/registration.py +123 -122
- pulumiverse_scaleway/domain/zone.py +108 -107
- pulumiverse_scaleway/domain_record.py +156 -202
- pulumiverse_scaleway/domain_zone.py +108 -107
- pulumiverse_scaleway/edge_services_backend_stage.py +61 -60
- pulumiverse_scaleway/edge_services_cache_stage.py +283 -111
- pulumiverse_scaleway/edge_services_dns_stage.py +169 -140
- pulumiverse_scaleway/edge_services_head_stage.py +37 -36
- pulumiverse_scaleway/edge_services_pipeline.py +125 -82
- pulumiverse_scaleway/edge_services_plan.py +37 -36
- pulumiverse_scaleway/edge_services_route_stage.py +75 -74
- pulumiverse_scaleway/edge_services_tls_stage.py +219 -124
- pulumiverse_scaleway/edge_services_waf_stage.py +106 -105
- pulumiverse_scaleway/elasticmetal/__init__.py +3 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +203 -129
- pulumiverse_scaleway/elasticmetal/get_ip.py +70 -54
- pulumiverse_scaleway/elasticmetal/get_ips.py +31 -31
- pulumiverse_scaleway/elasticmetal/get_offer.py +43 -41
- pulumiverse_scaleway/elasticmetal/get_option.py +24 -24
- pulumiverse_scaleway/elasticmetal/get_os.py +28 -28
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +215 -0
- pulumiverse_scaleway/elasticmetal/get_server.py +101 -68
- pulumiverse_scaleway/elasticmetal/ip.py +170 -169
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +107 -106
- pulumiverse_scaleway/elasticmetal/outputs.py +379 -287
- pulumiverse_scaleway/elasticmetal/server.py +622 -524
- pulumiverse_scaleway/file_filesystem.py +555 -0
- pulumiverse_scaleway/flexible_ip.py +170 -169
- pulumiverse_scaleway/flexible_ip_mac_address.py +107 -106
- pulumiverse_scaleway/function.py +457 -348
- pulumiverse_scaleway/function_cron.py +97 -96
- pulumiverse_scaleway/function_domain.py +63 -62
- pulumiverse_scaleway/function_namespace.py +234 -155
- pulumiverse_scaleway/function_token.py +97 -96
- pulumiverse_scaleway/function_trigger.py +77 -76
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +50 -50
- pulumiverse_scaleway/functions/cron.py +97 -96
- pulumiverse_scaleway/functions/domain.py +63 -62
- pulumiverse_scaleway/functions/function.py +457 -348
- pulumiverse_scaleway/functions/get_function.py +93 -71
- pulumiverse_scaleway/functions/get_namespace.py +54 -43
- pulumiverse_scaleway/functions/namespace.py +234 -155
- pulumiverse_scaleway/functions/outputs.py +34 -34
- pulumiverse_scaleway/functions/token.py +97 -96
- pulumiverse_scaleway/functions/trigger.py +77 -76
- pulumiverse_scaleway/get_account_project.py +28 -28
- pulumiverse_scaleway/get_account_ssh_key.py +34 -34
- pulumiverse_scaleway/get_availability_zones.py +12 -12
- pulumiverse_scaleway/get_baremetal_offer.py +43 -41
- pulumiverse_scaleway/get_baremetal_option.py +24 -24
- pulumiverse_scaleway/get_baremetal_os.py +28 -28
- pulumiverse_scaleway/get_baremetal_server.py +101 -68
- pulumiverse_scaleway/get_billing_consumptions.py +19 -15
- pulumiverse_scaleway/get_billing_invoices.py +25 -25
- pulumiverse_scaleway/get_block_snapshot.py +60 -37
- pulumiverse_scaleway/get_block_volume.py +38 -38
- pulumiverse_scaleway/get_cockpit.py +16 -16
- pulumiverse_scaleway/get_cockpit_source.py +88 -45
- pulumiverse_scaleway/get_config.py +24 -24
- pulumiverse_scaleway/get_container.py +117 -73
- pulumiverse_scaleway/get_container_namespace.py +56 -45
- pulumiverse_scaleway/get_database.py +26 -26
- pulumiverse_scaleway/get_database_acl.py +17 -17
- pulumiverse_scaleway/get_database_backup.py +46 -46
- pulumiverse_scaleway/get_database_instance.py +95 -73
- pulumiverse_scaleway/get_database_privilege.py +30 -30
- pulumiverse_scaleway/get_domain_record.py +53 -64
- pulumiverse_scaleway/get_domain_zone.py +36 -30
- pulumiverse_scaleway/get_flexible_ip.py +70 -54
- pulumiverse_scaleway/get_flexible_ips.py +31 -31
- pulumiverse_scaleway/get_function.py +93 -71
- pulumiverse_scaleway/get_function_namespace.py +54 -43
- pulumiverse_scaleway/get_iam_api_key.py +28 -28
- pulumiverse_scaleway/get_iam_application.py +32 -32
- pulumiverse_scaleway/get_iam_group.py +36 -36
- pulumiverse_scaleway/get_iam_ssh_key.py +34 -34
- pulumiverse_scaleway/get_iam_user.py +30 -30
- pulumiverse_scaleway/get_instance_image.py +58 -58
- pulumiverse_scaleway/get_instance_ip.py +42 -30
- pulumiverse_scaleway/get_instance_placement_group.py +38 -38
- pulumiverse_scaleway/get_instance_private_nic.py +53 -41
- pulumiverse_scaleway/get_instance_security_group.py +46 -46
- pulumiverse_scaleway/get_instance_server.py +108 -145
- pulumiverse_scaleway/get_instance_servers.py +31 -31
- pulumiverse_scaleway/get_instance_snapshot.py +41 -41
- pulumiverse_scaleway/get_instance_volume.py +42 -42
- pulumiverse_scaleway/get_iot_device.py +46 -46
- pulumiverse_scaleway/get_iot_hub.py +60 -60
- pulumiverse_scaleway/get_ipam_ip.py +65 -65
- pulumiverse_scaleway/get_ipam_ips.py +56 -56
- pulumiverse_scaleway/get_k8s_version.py +34 -23
- pulumiverse_scaleway/get_kubernetes_cluster.py +98 -65
- pulumiverse_scaleway/get_kubernetes_node_pool.py +86 -75
- pulumiverse_scaleway/get_lb_acls.py +29 -29
- pulumiverse_scaleway/get_lb_backend.py +75 -75
- pulumiverse_scaleway/get_lb_backends.py +29 -29
- pulumiverse_scaleway/get_lb_frontend.py +76 -43
- pulumiverse_scaleway/get_lb_frontends.py +29 -29
- pulumiverse_scaleway/get_lb_ips.py +37 -37
- pulumiverse_scaleway/get_lb_route.py +36 -25
- pulumiverse_scaleway/get_lb_routes.py +23 -23
- pulumiverse_scaleway/get_lbs.py +31 -31
- pulumiverse_scaleway/get_loadbalancer.py +78 -56
- pulumiverse_scaleway/get_loadbalancer_certificate.py +96 -36
- pulumiverse_scaleway/get_loadbalancer_ip.py +40 -40
- pulumiverse_scaleway/get_marketplace_image.py +28 -28
- pulumiverse_scaleway/get_mnq_sns.py +18 -18
- pulumiverse_scaleway/get_mnq_sqs.py +18 -18
- pulumiverse_scaleway/get_mongo_db_instance.py +110 -55
- pulumiverse_scaleway/get_object_bucket.py +35 -35
- pulumiverse_scaleway/get_object_bucket_policy.py +22 -22
- pulumiverse_scaleway/get_redis_cluster.py +65 -54
- pulumiverse_scaleway/get_registry_image.py +48 -48
- pulumiverse_scaleway/get_registry_image_tag.py +44 -44
- pulumiverse_scaleway/get_registry_namespace.py +36 -36
- pulumiverse_scaleway/get_secret.py +58 -58
- pulumiverse_scaleway/get_secret_version.py +46 -46
- pulumiverse_scaleway/get_tem_domain.py +103 -70
- pulumiverse_scaleway/get_vpc.py +58 -47
- pulumiverse_scaleway/get_vpc_gateway_network.py +55 -44
- pulumiverse_scaleway/get_vpc_private_network.py +58 -47
- pulumiverse_scaleway/get_vpc_public_gateway.py +56 -56
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +44 -44
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +44 -44
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +24 -24
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +32 -32
- pulumiverse_scaleway/get_vpc_routes.py +47 -47
- pulumiverse_scaleway/get_vpcs.py +31 -31
- pulumiverse_scaleway/get_web_host_offer.py +34 -34
- pulumiverse_scaleway/get_webhosting.py +58 -58
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +117 -75
- pulumiverse_scaleway/hosting/get_hosting.py +58 -58
- pulumiverse_scaleway/hosting/get_offer.py +34 -34
- pulumiverse_scaleway/hosting/hosting.py +213 -212
- pulumiverse_scaleway/hosting/outputs.py +276 -192
- pulumiverse_scaleway/iam/__init__.py +3 -1
- pulumiverse_scaleway/iam/_inputs.py +26 -26
- pulumiverse_scaleway/iam/api_key.py +142 -141
- pulumiverse_scaleway/iam/application.py +98 -97
- pulumiverse_scaleway/iam/get_api_key.py +28 -28
- pulumiverse_scaleway/iam/get_application.py +32 -32
- pulumiverse_scaleway/iam/get_group.py +36 -36
- pulumiverse_scaleway/iam/get_policy.py +293 -0
- pulumiverse_scaleway/iam/get_ssh_key.py +34 -34
- pulumiverse_scaleway/iam/get_user.py +30 -30
- pulumiverse_scaleway/iam/group.py +140 -139
- pulumiverse_scaleway/iam/group_membership.py +54 -53
- pulumiverse_scaleway/iam/outputs.py +70 -18
- pulumiverse_scaleway/iam/policy.py +169 -168
- pulumiverse_scaleway/iam/ssh_key.py +107 -106
- pulumiverse_scaleway/iam/user.py +598 -134
- pulumiverse_scaleway/iam_api_key.py +142 -141
- pulumiverse_scaleway/iam_application.py +98 -97
- pulumiverse_scaleway/iam_group.py +140 -139
- pulumiverse_scaleway/iam_group_membership.py +54 -53
- pulumiverse_scaleway/iam_policy.py +169 -168
- pulumiverse_scaleway/iam_ssh_key.py +107 -106
- pulumiverse_scaleway/iam_user.py +598 -134
- pulumiverse_scaleway/inference/__init__.py +4 -1
- pulumiverse_scaleway/inference/_inputs.py +232 -50
- pulumiverse_scaleway/inference/deployment.py +319 -220
- pulumiverse_scaleway/inference/get_model.py +299 -0
- pulumiverse_scaleway/inference/model.py +684 -0
- pulumiverse_scaleway/inference/outputs.py +250 -34
- pulumiverse_scaleway/inference_deployment.py +319 -220
- pulumiverse_scaleway/instance/__init__.py +3 -1
- pulumiverse_scaleway/instance/_inputs.py +650 -437
- pulumiverse_scaleway/instance/get_image.py +58 -58
- pulumiverse_scaleway/instance/get_ip.py +42 -30
- pulumiverse_scaleway/instance/get_placement_group.py +38 -38
- pulumiverse_scaleway/instance/get_private_nic.py +53 -41
- pulumiverse_scaleway/instance/get_security_group.py +46 -46
- pulumiverse_scaleway/instance/get_server.py +108 -145
- pulumiverse_scaleway/instance/get_server_type.py +271 -0
- pulumiverse_scaleway/instance/get_servers.py +31 -31
- pulumiverse_scaleway/instance/get_snapshot.py +41 -41
- pulumiverse_scaleway/instance/get_volume.py +42 -42
- pulumiverse_scaleway/instance/image.py +260 -205
- pulumiverse_scaleway/instance/ip.py +116 -115
- pulumiverse_scaleway/instance/ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/instance/outputs.py +981 -548
- pulumiverse_scaleway/instance/placement_group.py +123 -122
- pulumiverse_scaleway/instance/private_nic.py +163 -113
- pulumiverse_scaleway/instance/security_group.py +188 -187
- pulumiverse_scaleway/instance/security_group_rules.py +42 -41
- pulumiverse_scaleway/instance/server.py +590 -562
- pulumiverse_scaleway/instance/snapshot.py +150 -157
- pulumiverse_scaleway/instance/user_data.py +75 -74
- pulumiverse_scaleway/instance/volume.py +174 -159
- pulumiverse_scaleway/instance_image.py +260 -205
- pulumiverse_scaleway/instance_ip.py +116 -115
- pulumiverse_scaleway/instance_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/instance_placement_group.py +123 -122
- pulumiverse_scaleway/instance_private_nic.py +163 -113
- pulumiverse_scaleway/instance_security_group.py +188 -187
- pulumiverse_scaleway/instance_security_group_rules.py +42 -41
- pulumiverse_scaleway/instance_server.py +590 -562
- pulumiverse_scaleway/instance_snapshot.py +150 -157
- pulumiverse_scaleway/instance_user_data.py +75 -74
- pulumiverse_scaleway/instance_volume.py +174 -159
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +119 -119
- pulumiverse_scaleway/iot/device.py +156 -193
- pulumiverse_scaleway/iot/get_device.py +46 -46
- pulumiverse_scaleway/iot/get_hub.py +60 -60
- pulumiverse_scaleway/iot/hub.py +259 -258
- pulumiverse_scaleway/iot/network.py +115 -114
- pulumiverse_scaleway/iot/outputs.py +107 -107
- pulumiverse_scaleway/iot/route.py +109 -108
- pulumiverse_scaleway/iot_device.py +156 -193
- pulumiverse_scaleway/iot_hub.py +259 -258
- pulumiverse_scaleway/iot_network.py +115 -114
- pulumiverse_scaleway/iot_route.py +109 -108
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +108 -108
- pulumiverse_scaleway/ipam/get_ip.py +65 -65
- pulumiverse_scaleway/ipam/get_ips.py +56 -56
- pulumiverse_scaleway/ipam/ip.py +160 -131
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +141 -70
- pulumiverse_scaleway/ipam/outputs.py +122 -122
- pulumiverse_scaleway/ipam_ip.py +160 -131
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +141 -70
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +127 -14
- pulumiverse_scaleway/job/definition.py +283 -175
- pulumiverse_scaleway/job/outputs.py +98 -10
- pulumiverse_scaleway/job_definition.py +283 -175
- pulumiverse_scaleway/key_manager_key.py +939 -0
- pulumiverse_scaleway/kubernetes/__init__.py +3 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +388 -185
- pulumiverse_scaleway/kubernetes/acl.py +447 -0
- pulumiverse_scaleway/kubernetes/cluster.py +594 -307
- pulumiverse_scaleway/kubernetes/get_cluster.py +98 -65
- pulumiverse_scaleway/kubernetes/get_pool.py +86 -75
- pulumiverse_scaleway/kubernetes/get_version.py +34 -23
- pulumiverse_scaleway/kubernetes/outputs.py +444 -250
- pulumiverse_scaleway/kubernetes/pool.py +427 -365
- pulumiverse_scaleway/kubernetes_cluster.py +594 -307
- pulumiverse_scaleway/kubernetes_node_pool.py +427 -365
- pulumiverse_scaleway/loadbalancer.py +329 -246
- pulumiverse_scaleway/loadbalancer_acl.py +102 -101
- pulumiverse_scaleway/loadbalancer_backend.py +534 -487
- pulumiverse_scaleway/loadbalancer_certificate.py +97 -96
- pulumiverse_scaleway/loadbalancer_frontend.py +271 -167
- pulumiverse_scaleway/loadbalancer_ip.py +124 -123
- pulumiverse_scaleway/loadbalancer_route.py +244 -119
- pulumiverse_scaleway/loadbalancers/__init__.py +3 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +367 -273
- pulumiverse_scaleway/loadbalancers/acl.py +102 -101
- pulumiverse_scaleway/loadbalancers/backend.py +534 -487
- pulumiverse_scaleway/loadbalancers/certificate.py +97 -96
- pulumiverse_scaleway/loadbalancers/frontend.py +271 -167
- pulumiverse_scaleway/loadbalancers/get_acls.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_backend.py +75 -75
- pulumiverse_scaleway/loadbalancers/get_backends.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_certificate.py +96 -36
- pulumiverse_scaleway/loadbalancers/get_frontend.py +76 -43
- pulumiverse_scaleway/loadbalancers/get_frontends.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_ip.py +40 -40
- pulumiverse_scaleway/loadbalancers/get_ips.py +37 -37
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +78 -56
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +31 -31
- pulumiverse_scaleway/loadbalancers/get_route.py +36 -25
- pulumiverse_scaleway/loadbalancers/get_routes.py +23 -23
- pulumiverse_scaleway/loadbalancers/ip.py +124 -123
- pulumiverse_scaleway/loadbalancers/load_balancer.py +329 -246
- pulumiverse_scaleway/loadbalancers/outputs.py +870 -716
- pulumiverse_scaleway/loadbalancers/private_network.py +505 -0
- pulumiverse_scaleway/loadbalancers/route.py +244 -119
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +90 -38
- pulumiverse_scaleway/mnq/get_sns.py +18 -18
- pulumiverse_scaleway/mnq/get_sqs.py +18 -18
- pulumiverse_scaleway/mnq/nats_account.py +63 -62
- pulumiverse_scaleway/mnq/nats_credentials.py +63 -62
- pulumiverse_scaleway/mnq/outputs.py +73 -26
- pulumiverse_scaleway/mnq/sns.py +46 -45
- pulumiverse_scaleway/mnq/sns_credentials.py +82 -81
- pulumiverse_scaleway/mnq/sns_topic.py +174 -173
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +182 -181
- pulumiverse_scaleway/mnq/sqs.py +46 -45
- pulumiverse_scaleway/mnq/sqs_credentials.py +82 -81
- pulumiverse_scaleway/mnq/sqs_queue.py +392 -232
- pulumiverse_scaleway/mnq_nats_account.py +63 -62
- pulumiverse_scaleway/mnq_nats_credentials.py +63 -62
- pulumiverse_scaleway/mnq_sns.py +46 -45
- pulumiverse_scaleway/mnq_sns_credentials.py +82 -81
- pulumiverse_scaleway/mnq_sns_topic.py +174 -173
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +182 -181
- pulumiverse_scaleway/mnq_sqs.py +46 -45
- pulumiverse_scaleway/mnq_sqs_credentials.py +82 -81
- pulumiverse_scaleway/mnq_sqs_queue.py +392 -232
- pulumiverse_scaleway/mongo_db_instance.py +569 -268
- pulumiverse_scaleway/mongo_db_snapshot.py +127 -126
- pulumiverse_scaleway/mongodb/__init__.py +3 -1
- pulumiverse_scaleway/mongodb/_inputs.py +178 -51
- pulumiverse_scaleway/mongodb/get_instance.py +110 -55
- pulumiverse_scaleway/mongodb/instance.py +569 -268
- pulumiverse_scaleway/mongodb/outputs.py +192 -68
- pulumiverse_scaleway/mongodb/snapshot.py +127 -126
- pulumiverse_scaleway/mongodb/user.py +507 -0
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +209 -155
- pulumiverse_scaleway/network/acl.py +100 -101
- pulumiverse_scaleway/network/gateway_network.py +228 -180
- pulumiverse_scaleway/network/get_gateway_network.py +55 -44
- pulumiverse_scaleway/network/get_private_network.py +58 -47
- pulumiverse_scaleway/network/get_public_gateway.py +56 -56
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +44 -44
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +44 -44
- pulumiverse_scaleway/network/get_public_gateway_ip.py +24 -24
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +32 -32
- pulumiverse_scaleway/network/get_routes.py +47 -47
- pulumiverse_scaleway/network/get_vpc.py +58 -47
- pulumiverse_scaleway/network/get_vpcs.py +31 -31
- pulumiverse_scaleway/network/outputs.py +338 -270
- pulumiverse_scaleway/network/private_network.py +203 -155
- pulumiverse_scaleway/network/public_gateway.py +261 -260
- pulumiverse_scaleway/network/public_gateway_dhcp.py +285 -284
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +107 -106
- pulumiverse_scaleway/network/public_gateway_ip.py +107 -106
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +132 -131
- pulumiverse_scaleway/network/route.py +230 -141
- pulumiverse_scaleway/network/vpc.py +172 -124
- pulumiverse_scaleway/object/__init__.py +3 -1
- pulumiverse_scaleway/object/_inputs.py +202 -166
- pulumiverse_scaleway/object/bucket.py +162 -148
- pulumiverse_scaleway/object/bucket_acl.py +97 -94
- pulumiverse_scaleway/object/bucket_lock_configuration.py +57 -56
- pulumiverse_scaleway/object/bucket_policy.py +71 -134
- pulumiverse_scaleway/object/bucket_website_configuration.py +104 -85
- pulumiverse_scaleway/object/get.py +290 -0
- pulumiverse_scaleway/object/get_bucket.py +35 -35
- pulumiverse_scaleway/object/get_bucket_policy.py +22 -22
- pulumiverse_scaleway/object/item.py +301 -223
- pulumiverse_scaleway/object/outputs.py +210 -166
- pulumiverse_scaleway/object_bucket.py +162 -148
- pulumiverse_scaleway/object_bucket_acl.py +97 -94
- pulumiverse_scaleway/object_bucket_lock_configuration.py +57 -56
- pulumiverse_scaleway/object_bucket_policy.py +71 -134
- pulumiverse_scaleway/object_bucket_website_configuration.py +104 -85
- pulumiverse_scaleway/object_item.py +301 -223
- pulumiverse_scaleway/observability/__init__.py +4 -2
- pulumiverse_scaleway/observability/_inputs.py +106 -106
- pulumiverse_scaleway/observability/alert_manager.py +66 -65
- pulumiverse_scaleway/observability/cockpit.py +71 -49
- pulumiverse_scaleway/observability/get_grafana.py +103 -0
- pulumiverse_scaleway/observability/get_instance.py +16 -16
- pulumiverse_scaleway/observability/get_source.py +88 -45
- pulumiverse_scaleway/observability/get_sources.py +375 -0
- pulumiverse_scaleway/observability/grafana_user.py +72 -113
- pulumiverse_scaleway/observability/outputs.py +241 -101
- pulumiverse_scaleway/observability/source.py +142 -141
- pulumiverse_scaleway/observability/token.py +84 -83
- pulumiverse_scaleway/outputs.py +5235 -3665
- pulumiverse_scaleway/provider.py +107 -82
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +127 -126
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +163 -69
- pulumiverse_scaleway/redis/cluster.py +273 -225
- pulumiverse_scaleway/redis/get_cluster.py +65 -54
- pulumiverse_scaleway/redis/outputs.py +199 -87
- pulumiverse_scaleway/redis_cluster.py +273 -225
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +48 -48
- pulumiverse_scaleway/registry/get_image_tag.py +44 -44
- pulumiverse_scaleway/registry/get_namespace.py +36 -36
- pulumiverse_scaleway/registry/namespace.py +106 -105
- pulumiverse_scaleway/registry_namespace.py +106 -105
- pulumiverse_scaleway/sdb_database.py +97 -96
- pulumiverse_scaleway/secret.py +188 -179
- pulumiverse_scaleway/secret_version.py +107 -106
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +63 -63
- pulumiverse_scaleway/secrets/get_secret.py +58 -58
- pulumiverse_scaleway/secrets/get_version.py +46 -46
- pulumiverse_scaleway/secrets/outputs.py +84 -84
- pulumiverse_scaleway/secrets/secret.py +188 -179
- pulumiverse_scaleway/secrets/version.py +107 -106
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +33 -33
- pulumiverse_scaleway/tem/blocked_list.py +105 -104
- pulumiverse_scaleway/tem/domain.py +384 -257
- pulumiverse_scaleway/tem/domain_validation.py +63 -62
- pulumiverse_scaleway/tem/get_domain.py +103 -70
- pulumiverse_scaleway/tem/get_offer_subscription.py +34 -34
- pulumiverse_scaleway/tem/outputs.py +44 -44
- pulumiverse_scaleway/tem/webhook.py +132 -131
- pulumiverse_scaleway/tem_domain.py +384 -257
- pulumiverse_scaleway/tem_domain_validation.py +63 -62
- pulumiverse_scaleway/tem_webhook.py +132 -131
- pulumiverse_scaleway/vpc.py +172 -124
- pulumiverse_scaleway/vpc_gateway_network.py +228 -180
- pulumiverse_scaleway/vpc_private_network.py +203 -155
- pulumiverse_scaleway/vpc_public_gateway.py +261 -260
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +285 -284
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +107 -106
- pulumiverse_scaleway/vpc_public_gateway_ip.py +107 -106
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +132 -131
- pulumiverse_scaleway/vpc_route.py +230 -141
- pulumiverse_scaleway/webhosting.py +213 -212
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.39.0a1764841480.dist-info/RECORD +513 -0
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/WHEEL +1 -1
- pulumiverse_scaleway/get_cockpit_plan.py +0 -129
- pulumiverse_scaleway/observability/get_plan.py +0 -125
- pulumiverse_scaleway-1.27.0a1744869119.dist-info/RECORD +0 -483
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -19,14 +19,14 @@ __all__ = ['DomainValidationArgs', 'DomainValidation']
|
|
|
19
19
|
@pulumi.input_type
|
|
20
20
|
class DomainValidationArgs:
|
|
21
21
|
def __init__(__self__, *,
|
|
22
|
-
domain_id: pulumi.Input[str],
|
|
23
|
-
region: Optional[pulumi.Input[str]] = None,
|
|
24
|
-
timeout: Optional[pulumi.Input[int]] = None):
|
|
22
|
+
domain_id: pulumi.Input[_builtins.str],
|
|
23
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
24
|
+
timeout: Optional[pulumi.Input[_builtins.int]] = None):
|
|
25
25
|
"""
|
|
26
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.
|
|
27
|
+
: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.
|
|
28
|
+
: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.
|
|
29
|
+
: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
30
|
"""
|
|
31
31
|
pulumi.set(__self__, "domain_id", domain_id)
|
|
32
32
|
if region is not None:
|
|
@@ -34,56 +34,56 @@ class DomainValidationArgs:
|
|
|
34
34
|
if timeout is not None:
|
|
35
35
|
pulumi.set(__self__, "timeout", timeout)
|
|
36
36
|
|
|
37
|
-
@property
|
|
37
|
+
@_builtins.property
|
|
38
38
|
@pulumi.getter(name="domainId")
|
|
39
|
-
def domain_id(self) -> pulumi.Input[str]:
|
|
39
|
+
def domain_id(self) -> pulumi.Input[_builtins.str]:
|
|
40
40
|
"""
|
|
41
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
42
|
"""
|
|
43
43
|
return pulumi.get(self, "domain_id")
|
|
44
44
|
|
|
45
45
|
@domain_id.setter
|
|
46
|
-
def domain_id(self, value: pulumi.Input[str]):
|
|
46
|
+
def domain_id(self, value: pulumi.Input[_builtins.str]):
|
|
47
47
|
pulumi.set(self, "domain_id", value)
|
|
48
48
|
|
|
49
|
-
@property
|
|
49
|
+
@_builtins.property
|
|
50
50
|
@pulumi.getter
|
|
51
|
-
def region(self) -> Optional[pulumi.Input[str]]:
|
|
51
|
+
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
52
52
|
"""
|
|
53
53
|
`region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
|
54
54
|
"""
|
|
55
55
|
return pulumi.get(self, "region")
|
|
56
56
|
|
|
57
57
|
@region.setter
|
|
58
|
-
def region(self, value: Optional[pulumi.Input[str]]):
|
|
58
|
+
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
59
59
|
pulumi.set(self, "region", value)
|
|
60
60
|
|
|
61
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
62
62
|
@pulumi.getter
|
|
63
|
-
def timeout(self) -> Optional[pulumi.Input[int]]:
|
|
63
|
+
def timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
64
64
|
"""
|
|
65
65
|
The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
|
66
66
|
"""
|
|
67
67
|
return pulumi.get(self, "timeout")
|
|
68
68
|
|
|
69
69
|
@timeout.setter
|
|
70
|
-
def timeout(self, value: Optional[pulumi.Input[int]]):
|
|
70
|
+
def timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
71
71
|
pulumi.set(self, "timeout", value)
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
@pulumi.input_type
|
|
75
75
|
class _DomainValidationState:
|
|
76
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):
|
|
77
|
+
domain_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
78
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
79
|
+
timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
80
|
+
validated: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
81
81
|
"""
|
|
82
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.
|
|
83
|
+
: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.
|
|
84
|
+
: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.
|
|
85
|
+
: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.
|
|
86
|
+
: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
87
|
"""
|
|
88
88
|
if domain_id is not None:
|
|
89
89
|
pulumi.set(__self__, "domain_id", domain_id)
|
|
@@ -94,63 +94,64 @@ class _DomainValidationState:
|
|
|
94
94
|
if validated is not None:
|
|
95
95
|
pulumi.set(__self__, "validated", validated)
|
|
96
96
|
|
|
97
|
-
@property
|
|
97
|
+
@_builtins.property
|
|
98
98
|
@pulumi.getter(name="domainId")
|
|
99
|
-
def domain_id(self) -> Optional[pulumi.Input[str]]:
|
|
99
|
+
def domain_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
100
100
|
"""
|
|
101
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
102
|
"""
|
|
103
103
|
return pulumi.get(self, "domain_id")
|
|
104
104
|
|
|
105
105
|
@domain_id.setter
|
|
106
|
-
def domain_id(self, value: Optional[pulumi.Input[str]]):
|
|
106
|
+
def domain_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
107
107
|
pulumi.set(self, "domain_id", value)
|
|
108
108
|
|
|
109
|
-
@property
|
|
109
|
+
@_builtins.property
|
|
110
110
|
@pulumi.getter
|
|
111
|
-
def region(self) -> Optional[pulumi.Input[str]]:
|
|
111
|
+
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
112
112
|
"""
|
|
113
113
|
`region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
|
114
114
|
"""
|
|
115
115
|
return pulumi.get(self, "region")
|
|
116
116
|
|
|
117
117
|
@region.setter
|
|
118
|
-
def region(self, value: Optional[pulumi.Input[str]]):
|
|
118
|
+
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
119
119
|
pulumi.set(self, "region", value)
|
|
120
120
|
|
|
121
|
-
@property
|
|
121
|
+
@_builtins.property
|
|
122
122
|
@pulumi.getter
|
|
123
|
-
def timeout(self) -> Optional[pulumi.Input[int]]:
|
|
123
|
+
def timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
124
124
|
"""
|
|
125
125
|
The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
|
126
126
|
"""
|
|
127
127
|
return pulumi.get(self, "timeout")
|
|
128
128
|
|
|
129
129
|
@timeout.setter
|
|
130
|
-
def timeout(self, value: Optional[pulumi.Input[int]]):
|
|
130
|
+
def timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
131
131
|
pulumi.set(self, "timeout", value)
|
|
132
132
|
|
|
133
|
-
@property
|
|
133
|
+
@_builtins.property
|
|
134
134
|
@pulumi.getter
|
|
135
|
-
def validated(self) -> Optional[pulumi.Input[bool]]:
|
|
135
|
+
def validated(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
136
136
|
"""
|
|
137
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
138
|
"""
|
|
139
139
|
return pulumi.get(self, "validated")
|
|
140
140
|
|
|
141
141
|
@validated.setter
|
|
142
|
-
def validated(self, value: Optional[pulumi.Input[bool]]):
|
|
142
|
+
def validated(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
143
143
|
pulumi.set(self, "validated", value)
|
|
144
144
|
|
|
145
145
|
|
|
146
|
+
@pulumi.type_token("scaleway:tem/domainValidation:DomainValidation")
|
|
146
147
|
class DomainValidation(pulumi.CustomResource):
|
|
147
148
|
@overload
|
|
148
149
|
def __init__(__self__,
|
|
149
150
|
resource_name: str,
|
|
150
151
|
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,
|
|
152
|
+
domain_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
153
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
154
|
+
timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
154
155
|
__props__=None):
|
|
155
156
|
"""
|
|
156
157
|
## Example Usage
|
|
@@ -172,9 +173,9 @@ class DomainValidation(pulumi.CustomResource):
|
|
|
172
173
|
|
|
173
174
|
:param str resource_name: The name of the resource.
|
|
174
175
|
: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.
|
|
176
|
+
: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.
|
|
177
|
+
: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.
|
|
178
|
+
: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
179
|
"""
|
|
179
180
|
...
|
|
180
181
|
@overload
|
|
@@ -215,9 +216,9 @@ class DomainValidation(pulumi.CustomResource):
|
|
|
215
216
|
def _internal_init(__self__,
|
|
216
217
|
resource_name: str,
|
|
217
218
|
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,
|
|
219
|
+
domain_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
220
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
221
|
+
timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
221
222
|
__props__=None):
|
|
222
223
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
223
224
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -245,10 +246,10 @@ class DomainValidation(pulumi.CustomResource):
|
|
|
245
246
|
def get(resource_name: str,
|
|
246
247
|
id: pulumi.Input[str],
|
|
247
248
|
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':
|
|
249
|
+
domain_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
250
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
251
|
+
timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
252
|
+
validated: Optional[pulumi.Input[_builtins.bool]] = None) -> 'DomainValidation':
|
|
252
253
|
"""
|
|
253
254
|
Get an existing DomainValidation resource's state with the given name, id, and optional extra
|
|
254
255
|
properties used to qualify the lookup.
|
|
@@ -256,10 +257,10 @@ class DomainValidation(pulumi.CustomResource):
|
|
|
256
257
|
:param str resource_name: The unique name of the resulting resource.
|
|
257
258
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
258
259
|
: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.
|
|
260
|
+
: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.
|
|
261
|
+
: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.
|
|
262
|
+
: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.
|
|
263
|
+
: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
264
|
"""
|
|
264
265
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
265
266
|
|
|
@@ -271,33 +272,33 @@ class DomainValidation(pulumi.CustomResource):
|
|
|
271
272
|
__props__.__dict__["validated"] = validated
|
|
272
273
|
return DomainValidation(resource_name, opts=opts, __props__=__props__)
|
|
273
274
|
|
|
274
|
-
@property
|
|
275
|
+
@_builtins.property
|
|
275
276
|
@pulumi.getter(name="domainId")
|
|
276
|
-
def domain_id(self) -> pulumi.Output[str]:
|
|
277
|
+
def domain_id(self) -> pulumi.Output[_builtins.str]:
|
|
277
278
|
"""
|
|
278
279
|
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
|
"""
|
|
280
281
|
return pulumi.get(self, "domain_id")
|
|
281
282
|
|
|
282
|
-
@property
|
|
283
|
+
@_builtins.property
|
|
283
284
|
@pulumi.getter
|
|
284
|
-
def region(self) -> pulumi.Output[str]:
|
|
285
|
+
def region(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
285
286
|
"""
|
|
286
287
|
`region`). Specifies the region where the domain is registered. If not specified, it defaults to the provider's region.
|
|
287
288
|
"""
|
|
288
289
|
return pulumi.get(self, "region")
|
|
289
290
|
|
|
290
|
-
@property
|
|
291
|
+
@_builtins.property
|
|
291
292
|
@pulumi.getter
|
|
292
|
-
def timeout(self) -> pulumi.Output[Optional[int]]:
|
|
293
|
+
def timeout(self) -> pulumi.Output[Optional[_builtins.int]]:
|
|
293
294
|
"""
|
|
294
295
|
The maximum wait time in seconds before returning an error if the domain validation does not complete. The default is 300 seconds.
|
|
295
296
|
"""
|
|
296
297
|
return pulumi.get(self, "timeout")
|
|
297
298
|
|
|
298
|
-
@property
|
|
299
|
+
@_builtins.property
|
|
299
300
|
@pulumi.getter
|
|
300
|
-
def validated(self) -> pulumi.Output[bool]:
|
|
301
|
+
def validated(self) -> pulumi.Output[_builtins.bool]:
|
|
301
302
|
"""
|
|
302
303
|
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
|
"""
|
|
@@ -1,8 +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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -27,7 +27,7 @@ class GetDomainResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getDomain.
|
|
29
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):
|
|
30
|
+
def __init__(__self__, accept_tos=None, autoconfig=None, created_at=None, dkim_config=None, dkim_name=None, dmarc_config=None, dmarc_name=None, domain_id=None, id=None, last_error=None, last_valid_at=None, mx_blackhole=None, mx_config=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, spf_value=None, status=None):
|
|
31
31
|
if accept_tos and not isinstance(accept_tos, bool):
|
|
32
32
|
raise TypeError("Expected argument 'accept_tos' to be a bool")
|
|
33
33
|
pulumi.set(__self__, "accept_tos", accept_tos)
|
|
@@ -40,6 +40,9 @@ class GetDomainResult:
|
|
|
40
40
|
if dkim_config and not isinstance(dkim_config, str):
|
|
41
41
|
raise TypeError("Expected argument 'dkim_config' to be a str")
|
|
42
42
|
pulumi.set(__self__, "dkim_config", dkim_config)
|
|
43
|
+
if dkim_name and not isinstance(dkim_name, str):
|
|
44
|
+
raise TypeError("Expected argument 'dkim_name' to be a str")
|
|
45
|
+
pulumi.set(__self__, "dkim_name", dkim_name)
|
|
43
46
|
if dmarc_config and not isinstance(dmarc_config, str):
|
|
44
47
|
raise TypeError("Expected argument 'dmarc_config' to be a str")
|
|
45
48
|
pulumi.set(__self__, "dmarc_config", dmarc_config)
|
|
@@ -61,6 +64,9 @@ class GetDomainResult:
|
|
|
61
64
|
if mx_blackhole and not isinstance(mx_blackhole, str):
|
|
62
65
|
raise TypeError("Expected argument 'mx_blackhole' to be a str")
|
|
63
66
|
pulumi.set(__self__, "mx_blackhole", mx_blackhole)
|
|
67
|
+
if mx_config and not isinstance(mx_config, str):
|
|
68
|
+
raise TypeError("Expected argument 'mx_config' to be a str")
|
|
69
|
+
pulumi.set(__self__, "mx_config", mx_config)
|
|
64
70
|
if name and not isinstance(name, str):
|
|
65
71
|
raise TypeError("Expected argument 'name' to be a str")
|
|
66
72
|
pulumi.set(__self__, "name", name)
|
|
@@ -103,141 +109,159 @@ class GetDomainResult:
|
|
|
103
109
|
if spf_config and not isinstance(spf_config, str):
|
|
104
110
|
raise TypeError("Expected argument 'spf_config' to be a str")
|
|
105
111
|
pulumi.set(__self__, "spf_config", spf_config)
|
|
112
|
+
if spf_value and not isinstance(spf_value, str):
|
|
113
|
+
raise TypeError("Expected argument 'spf_value' to be a str")
|
|
114
|
+
pulumi.set(__self__, "spf_value", spf_value)
|
|
106
115
|
if status and not isinstance(status, str):
|
|
107
116
|
raise TypeError("Expected argument 'status' to be a str")
|
|
108
117
|
pulumi.set(__self__, "status", status)
|
|
109
118
|
|
|
110
|
-
@property
|
|
119
|
+
@_builtins.property
|
|
111
120
|
@pulumi.getter(name="acceptTos")
|
|
112
|
-
def accept_tos(self) -> bool:
|
|
121
|
+
def accept_tos(self) -> _builtins.bool:
|
|
113
122
|
return pulumi.get(self, "accept_tos")
|
|
114
123
|
|
|
115
|
-
@property
|
|
124
|
+
@_builtins.property
|
|
116
125
|
@pulumi.getter
|
|
117
|
-
def autoconfig(self) -> bool:
|
|
126
|
+
def autoconfig(self) -> _builtins.bool:
|
|
118
127
|
return pulumi.get(self, "autoconfig")
|
|
119
128
|
|
|
120
|
-
@property
|
|
129
|
+
@_builtins.property
|
|
121
130
|
@pulumi.getter(name="createdAt")
|
|
122
|
-
def created_at(self) -> str:
|
|
131
|
+
def created_at(self) -> _builtins.str:
|
|
123
132
|
return pulumi.get(self, "created_at")
|
|
124
133
|
|
|
125
|
-
@property
|
|
134
|
+
@_builtins.property
|
|
126
135
|
@pulumi.getter(name="dkimConfig")
|
|
127
|
-
def dkim_config(self) -> str:
|
|
136
|
+
def dkim_config(self) -> _builtins.str:
|
|
128
137
|
return pulumi.get(self, "dkim_config")
|
|
129
138
|
|
|
130
|
-
@property
|
|
139
|
+
@_builtins.property
|
|
140
|
+
@pulumi.getter(name="dkimName")
|
|
141
|
+
def dkim_name(self) -> _builtins.str:
|
|
142
|
+
return pulumi.get(self, "dkim_name")
|
|
143
|
+
|
|
144
|
+
@_builtins.property
|
|
131
145
|
@pulumi.getter(name="dmarcConfig")
|
|
132
|
-
def dmarc_config(self) -> str:
|
|
146
|
+
def dmarc_config(self) -> _builtins.str:
|
|
133
147
|
return pulumi.get(self, "dmarc_config")
|
|
134
148
|
|
|
135
|
-
@property
|
|
149
|
+
@_builtins.property
|
|
136
150
|
@pulumi.getter(name="dmarcName")
|
|
137
|
-
def dmarc_name(self) -> str:
|
|
151
|
+
def dmarc_name(self) -> _builtins.str:
|
|
138
152
|
return pulumi.get(self, "dmarc_name")
|
|
139
153
|
|
|
140
|
-
@property
|
|
154
|
+
@_builtins.property
|
|
141
155
|
@pulumi.getter(name="domainId")
|
|
142
|
-
def domain_id(self) -> Optional[str]:
|
|
156
|
+
def domain_id(self) -> Optional[_builtins.str]:
|
|
143
157
|
return pulumi.get(self, "domain_id")
|
|
144
158
|
|
|
145
|
-
@property
|
|
159
|
+
@_builtins.property
|
|
146
160
|
@pulumi.getter
|
|
147
|
-
def id(self) -> str:
|
|
161
|
+
def id(self) -> _builtins.str:
|
|
148
162
|
"""
|
|
149
163
|
The provider-assigned unique ID for this managed resource.
|
|
150
164
|
"""
|
|
151
165
|
return pulumi.get(self, "id")
|
|
152
166
|
|
|
153
|
-
@property
|
|
167
|
+
@_builtins.property
|
|
154
168
|
@pulumi.getter(name="lastError")
|
|
155
|
-
def last_error(self) -> str:
|
|
169
|
+
def last_error(self) -> _builtins.str:
|
|
156
170
|
return pulumi.get(self, "last_error")
|
|
157
171
|
|
|
158
|
-
@property
|
|
172
|
+
@_builtins.property
|
|
159
173
|
@pulumi.getter(name="lastValidAt")
|
|
160
|
-
def last_valid_at(self) -> str:
|
|
174
|
+
def last_valid_at(self) -> _builtins.str:
|
|
161
175
|
return pulumi.get(self, "last_valid_at")
|
|
162
176
|
|
|
163
|
-
@property
|
|
177
|
+
@_builtins.property
|
|
164
178
|
@pulumi.getter(name="mxBlackhole")
|
|
165
|
-
def mx_blackhole(self) -> str:
|
|
179
|
+
def mx_blackhole(self) -> _builtins.str:
|
|
166
180
|
return pulumi.get(self, "mx_blackhole")
|
|
167
181
|
|
|
168
|
-
@property
|
|
182
|
+
@_builtins.property
|
|
183
|
+
@pulumi.getter(name="mxConfig")
|
|
184
|
+
def mx_config(self) -> _builtins.str:
|
|
185
|
+
return pulumi.get(self, "mx_config")
|
|
186
|
+
|
|
187
|
+
@_builtins.property
|
|
169
188
|
@pulumi.getter
|
|
170
|
-
def name(self) -> Optional[str]:
|
|
189
|
+
def name(self) -> Optional[_builtins.str]:
|
|
171
190
|
return pulumi.get(self, "name")
|
|
172
191
|
|
|
173
|
-
@property
|
|
192
|
+
@_builtins.property
|
|
174
193
|
@pulumi.getter(name="nextCheckAt")
|
|
175
|
-
def next_check_at(self) -> str:
|
|
194
|
+
def next_check_at(self) -> _builtins.str:
|
|
176
195
|
return pulumi.get(self, "next_check_at")
|
|
177
196
|
|
|
178
|
-
@property
|
|
197
|
+
@_builtins.property
|
|
179
198
|
@pulumi.getter(name="projectId")
|
|
180
|
-
def project_id(self) -> Optional[str]:
|
|
199
|
+
def project_id(self) -> Optional[_builtins.str]:
|
|
181
200
|
return pulumi.get(self, "project_id")
|
|
182
201
|
|
|
183
|
-
@property
|
|
202
|
+
@_builtins.property
|
|
184
203
|
@pulumi.getter
|
|
185
|
-
def region(self) -> Optional[str]:
|
|
204
|
+
def region(self) -> Optional[_builtins.str]:
|
|
186
205
|
return pulumi.get(self, "region")
|
|
187
206
|
|
|
188
|
-
@property
|
|
207
|
+
@_builtins.property
|
|
189
208
|
@pulumi.getter
|
|
190
209
|
def reputations(self) -> Sequence['outputs.GetDomainReputationResult']:
|
|
191
210
|
return pulumi.get(self, "reputations")
|
|
192
211
|
|
|
193
|
-
@property
|
|
212
|
+
@_builtins.property
|
|
194
213
|
@pulumi.getter(name="revokedAt")
|
|
195
|
-
def revoked_at(self) -> str:
|
|
214
|
+
def revoked_at(self) -> _builtins.str:
|
|
196
215
|
return pulumi.get(self, "revoked_at")
|
|
197
216
|
|
|
198
|
-
@property
|
|
217
|
+
@_builtins.property
|
|
199
218
|
@pulumi.getter(name="smtpHost")
|
|
200
|
-
def smtp_host(self) -> str:
|
|
219
|
+
def smtp_host(self) -> _builtins.str:
|
|
201
220
|
return pulumi.get(self, "smtp_host")
|
|
202
221
|
|
|
203
|
-
@property
|
|
222
|
+
@_builtins.property
|
|
204
223
|
@pulumi.getter(name="smtpPort")
|
|
205
|
-
def smtp_port(self) -> int:
|
|
224
|
+
def smtp_port(self) -> _builtins.int:
|
|
206
225
|
return pulumi.get(self, "smtp_port")
|
|
207
226
|
|
|
208
|
-
@property
|
|
227
|
+
@_builtins.property
|
|
209
228
|
@pulumi.getter(name="smtpPortAlternative")
|
|
210
|
-
def smtp_port_alternative(self) -> int:
|
|
229
|
+
def smtp_port_alternative(self) -> _builtins.int:
|
|
211
230
|
return pulumi.get(self, "smtp_port_alternative")
|
|
212
231
|
|
|
213
|
-
@property
|
|
232
|
+
@_builtins.property
|
|
214
233
|
@pulumi.getter(name="smtpPortUnsecure")
|
|
215
|
-
def smtp_port_unsecure(self) -> int:
|
|
234
|
+
def smtp_port_unsecure(self) -> _builtins.int:
|
|
216
235
|
return pulumi.get(self, "smtp_port_unsecure")
|
|
217
236
|
|
|
218
|
-
@property
|
|
237
|
+
@_builtins.property
|
|
219
238
|
@pulumi.getter(name="smtpsAuthUser")
|
|
220
|
-
def smtps_auth_user(self) -> str:
|
|
239
|
+
def smtps_auth_user(self) -> _builtins.str:
|
|
221
240
|
return pulumi.get(self, "smtps_auth_user")
|
|
222
241
|
|
|
223
|
-
@property
|
|
242
|
+
@_builtins.property
|
|
224
243
|
@pulumi.getter(name="smtpsPort")
|
|
225
|
-
def smtps_port(self) -> int:
|
|
244
|
+
def smtps_port(self) -> _builtins.int:
|
|
226
245
|
return pulumi.get(self, "smtps_port")
|
|
227
246
|
|
|
228
|
-
@property
|
|
247
|
+
@_builtins.property
|
|
229
248
|
@pulumi.getter(name="smtpsPortAlternative")
|
|
230
|
-
def smtps_port_alternative(self) -> int:
|
|
249
|
+
def smtps_port_alternative(self) -> _builtins.int:
|
|
231
250
|
return pulumi.get(self, "smtps_port_alternative")
|
|
232
251
|
|
|
233
|
-
@property
|
|
252
|
+
@_builtins.property
|
|
234
253
|
@pulumi.getter(name="spfConfig")
|
|
235
|
-
def spf_config(self) -> str:
|
|
254
|
+
def spf_config(self) -> _builtins.str:
|
|
236
255
|
return pulumi.get(self, "spf_config")
|
|
237
256
|
|
|
238
|
-
@property
|
|
257
|
+
@_builtins.property
|
|
258
|
+
@pulumi.getter(name="spfValue")
|
|
259
|
+
def spf_value(self) -> _builtins.str:
|
|
260
|
+
return pulumi.get(self, "spf_value")
|
|
261
|
+
|
|
262
|
+
@_builtins.property
|
|
239
263
|
@pulumi.getter
|
|
240
|
-
def status(self) -> str:
|
|
264
|
+
def status(self) -> _builtins.str:
|
|
241
265
|
return pulumi.get(self, "status")
|
|
242
266
|
|
|
243
267
|
|
|
@@ -251,6 +275,7 @@ class AwaitableGetDomainResult(GetDomainResult):
|
|
|
251
275
|
autoconfig=self.autoconfig,
|
|
252
276
|
created_at=self.created_at,
|
|
253
277
|
dkim_config=self.dkim_config,
|
|
278
|
+
dkim_name=self.dkim_name,
|
|
254
279
|
dmarc_config=self.dmarc_config,
|
|
255
280
|
dmarc_name=self.dmarc_name,
|
|
256
281
|
domain_id=self.domain_id,
|
|
@@ -258,6 +283,7 @@ class AwaitableGetDomainResult(GetDomainResult):
|
|
|
258
283
|
last_error=self.last_error,
|
|
259
284
|
last_valid_at=self.last_valid_at,
|
|
260
285
|
mx_blackhole=self.mx_blackhole,
|
|
286
|
+
mx_config=self.mx_config,
|
|
261
287
|
name=self.name,
|
|
262
288
|
next_check_at=self.next_check_at,
|
|
263
289
|
project_id=self.project_id,
|
|
@@ -272,24 +298,25 @@ class AwaitableGetDomainResult(GetDomainResult):
|
|
|
272
298
|
smtps_port=self.smtps_port,
|
|
273
299
|
smtps_port_alternative=self.smtps_port_alternative,
|
|
274
300
|
spf_config=self.spf_config,
|
|
301
|
+
spf_value=self.spf_value,
|
|
275
302
|
status=self.status)
|
|
276
303
|
|
|
277
304
|
|
|
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,
|
|
305
|
+
def get_domain(domain_id: Optional[_builtins.str] = None,
|
|
306
|
+
name: Optional[_builtins.str] = None,
|
|
307
|
+
project_id: Optional[_builtins.str] = None,
|
|
308
|
+
region: Optional[_builtins.str] = None,
|
|
282
309
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDomainResult:
|
|
283
310
|
"""
|
|
284
311
|
Gets information about a transactional email domain.
|
|
285
312
|
|
|
286
313
|
|
|
287
|
-
:param str domain_id: The domain id.
|
|
314
|
+
:param _builtins.str domain_id: The domain id.
|
|
288
315
|
Only one of `name` and `domain_id` should be specified.
|
|
289
|
-
:param str name: The domain name.
|
|
316
|
+
:param _builtins.str name: The domain name.
|
|
290
317
|
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.
|
|
318
|
+
:param _builtins.str project_id: `project_id`) The ID of the project the domain is associated with.
|
|
319
|
+
:param _builtins.str region: `region`) The region in which the domain exists.
|
|
293
320
|
"""
|
|
294
321
|
__args__ = dict()
|
|
295
322
|
__args__['domainId'] = domain_id
|
|
@@ -304,6 +331,7 @@ def get_domain(domain_id: Optional[str] = None,
|
|
|
304
331
|
autoconfig=pulumi.get(__ret__, 'autoconfig'),
|
|
305
332
|
created_at=pulumi.get(__ret__, 'created_at'),
|
|
306
333
|
dkim_config=pulumi.get(__ret__, 'dkim_config'),
|
|
334
|
+
dkim_name=pulumi.get(__ret__, 'dkim_name'),
|
|
307
335
|
dmarc_config=pulumi.get(__ret__, 'dmarc_config'),
|
|
308
336
|
dmarc_name=pulumi.get(__ret__, 'dmarc_name'),
|
|
309
337
|
domain_id=pulumi.get(__ret__, 'domain_id'),
|
|
@@ -311,6 +339,7 @@ def get_domain(domain_id: Optional[str] = None,
|
|
|
311
339
|
last_error=pulumi.get(__ret__, 'last_error'),
|
|
312
340
|
last_valid_at=pulumi.get(__ret__, 'last_valid_at'),
|
|
313
341
|
mx_blackhole=pulumi.get(__ret__, 'mx_blackhole'),
|
|
342
|
+
mx_config=pulumi.get(__ret__, 'mx_config'),
|
|
314
343
|
name=pulumi.get(__ret__, 'name'),
|
|
315
344
|
next_check_at=pulumi.get(__ret__, 'next_check_at'),
|
|
316
345
|
project_id=pulumi.get(__ret__, 'project_id'),
|
|
@@ -325,22 +354,23 @@ def get_domain(domain_id: Optional[str] = None,
|
|
|
325
354
|
smtps_port=pulumi.get(__ret__, 'smtps_port'),
|
|
326
355
|
smtps_port_alternative=pulumi.get(__ret__, 'smtps_port_alternative'),
|
|
327
356
|
spf_config=pulumi.get(__ret__, 'spf_config'),
|
|
357
|
+
spf_value=pulumi.get(__ret__, 'spf_value'),
|
|
328
358
|
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,
|
|
359
|
+
def get_domain_output(domain_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
360
|
+
name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
361
|
+
project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
362
|
+
region: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
333
363
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDomainResult]:
|
|
334
364
|
"""
|
|
335
365
|
Gets information about a transactional email domain.
|
|
336
366
|
|
|
337
367
|
|
|
338
|
-
:param str domain_id: The domain id.
|
|
368
|
+
:param _builtins.str domain_id: The domain id.
|
|
339
369
|
Only one of `name` and `domain_id` should be specified.
|
|
340
|
-
:param str name: The domain name.
|
|
370
|
+
:param _builtins.str name: The domain name.
|
|
341
371
|
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.
|
|
372
|
+
:param _builtins.str project_id: `project_id`) The ID of the project the domain is associated with.
|
|
373
|
+
:param _builtins.str region: `region`) The region in which the domain exists.
|
|
344
374
|
"""
|
|
345
375
|
__args__ = dict()
|
|
346
376
|
__args__['domainId'] = domain_id
|
|
@@ -354,6 +384,7 @@ def get_domain_output(domain_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
354
384
|
autoconfig=pulumi.get(__response__, 'autoconfig'),
|
|
355
385
|
created_at=pulumi.get(__response__, 'created_at'),
|
|
356
386
|
dkim_config=pulumi.get(__response__, 'dkim_config'),
|
|
387
|
+
dkim_name=pulumi.get(__response__, 'dkim_name'),
|
|
357
388
|
dmarc_config=pulumi.get(__response__, 'dmarc_config'),
|
|
358
389
|
dmarc_name=pulumi.get(__response__, 'dmarc_name'),
|
|
359
390
|
domain_id=pulumi.get(__response__, 'domain_id'),
|
|
@@ -361,6 +392,7 @@ def get_domain_output(domain_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
361
392
|
last_error=pulumi.get(__response__, 'last_error'),
|
|
362
393
|
last_valid_at=pulumi.get(__response__, 'last_valid_at'),
|
|
363
394
|
mx_blackhole=pulumi.get(__response__, 'mx_blackhole'),
|
|
395
|
+
mx_config=pulumi.get(__response__, 'mx_config'),
|
|
364
396
|
name=pulumi.get(__response__, 'name'),
|
|
365
397
|
next_check_at=pulumi.get(__response__, 'next_check_at'),
|
|
366
398
|
project_id=pulumi.get(__response__, 'project_id'),
|
|
@@ -375,4 +407,5 @@ def get_domain_output(domain_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
375
407
|
smtps_port=pulumi.get(__response__, 'smtps_port'),
|
|
376
408
|
smtps_port_alternative=pulumi.get(__response__, 'smtps_port_alternative'),
|
|
377
409
|
spf_config=pulumi.get(__response__, 'spf_config'),
|
|
410
|
+
spf_value=pulumi.get(__response__, 'spf_value'),
|
|
378
411
|
status=pulumi.get(__response__, 'status')))
|