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