pulumiverse-scaleway 1.30.0a1748337252__py3-none-any.whl → 1.30.0a1752168858__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumiverse_scaleway/__init__.py +11 -1
- pulumiverse_scaleway/_inputs.py +2252 -2143
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +2 -1
- pulumiverse_scaleway/account/get_availability_zones.py +9 -8
- pulumiverse_scaleway/account/get_project.py +21 -20
- pulumiverse_scaleway/account/get_projects.py +28 -21
- pulumiverse_scaleway/account/get_ssh_key.py +24 -23
- pulumiverse_scaleway/account/outputs.py +20 -19
- pulumiverse_scaleway/account/project.py +59 -57
- pulumiverse_scaleway/account/ssh_key.py +87 -85
- pulumiverse_scaleway/account_project.py +59 -57
- pulumiverse_scaleway/account_ssh_key.py +87 -85
- pulumiverse_scaleway/apple_silicon_server.py +204 -155
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
- pulumiverse_scaleway/applesilicon/outputs.py +54 -21
- pulumiverse_scaleway/applesilicon/server.py +204 -155
- pulumiverse_scaleway/baremetal_server.py +262 -260
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +10 -9
- pulumiverse_scaleway/billing/get_invoices.py +19 -18
- pulumiverse_scaleway/billing/outputs.py +73 -72
- pulumiverse_scaleway/block/__init__.py +2 -1
- pulumiverse_scaleway/block/_inputs.py +12 -11
- pulumiverse_scaleway/block/get_snapshot.py +29 -28
- pulumiverse_scaleway/block/get_volume.py +28 -27
- pulumiverse_scaleway/block/outputs.py +14 -13
- pulumiverse_scaleway/block/snapshot.py +73 -71
- pulumiverse_scaleway/block/volume.py +115 -113
- pulumiverse_scaleway/block_snapshot.py +73 -71
- pulumiverse_scaleway/block_volume.py +115 -113
- pulumiverse_scaleway/cockpit.py +38 -36
- pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
- pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
- pulumiverse_scaleway/cockpit_source.py +115 -113
- pulumiverse_scaleway/cockpit_token.py +66 -64
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -1
- pulumiverse_scaleway/config/vars.py +2 -1
- pulumiverse_scaleway/container.py +573 -343
- pulumiverse_scaleway/container_cron.py +80 -78
- pulumiverse_scaleway/container_domain.py +52 -50
- pulumiverse_scaleway/container_namespace.py +211 -140
- pulumiverse_scaleway/container_token.py +80 -78
- pulumiverse_scaleway/container_trigger.py +59 -57
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +72 -71
- pulumiverse_scaleway/containers/container.py +573 -343
- pulumiverse_scaleway/containers/cron.py +80 -78
- pulumiverse_scaleway/containers/domain.py +52 -50
- pulumiverse_scaleway/containers/get_container.py +87 -42
- pulumiverse_scaleway/containers/get_namespace.py +43 -31
- pulumiverse_scaleway/containers/namespace.py +211 -140
- pulumiverse_scaleway/containers/outputs.py +62 -61
- pulumiverse_scaleway/containers/token.py +80 -78
- pulumiverse_scaleway/containers/trigger.py +59 -57
- pulumiverse_scaleway/database.py +66 -64
- pulumiverse_scaleway/database_acl.py +31 -29
- pulumiverse_scaleway/database_backup.py +101 -99
- pulumiverse_scaleway/database_instance.py +297 -295
- pulumiverse_scaleway/database_privilege.py +73 -71
- pulumiverse_scaleway/database_read_replica.py +45 -43
- pulumiverse_scaleway/database_user.py +73 -71
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +191 -190
- pulumiverse_scaleway/databases/acl.py +31 -29
- pulumiverse_scaleway/databases/database.py +66 -64
- pulumiverse_scaleway/databases/database_backup.py +101 -99
- pulumiverse_scaleway/databases/get_acl.py +13 -12
- pulumiverse_scaleway/databases/get_database.py +19 -18
- pulumiverse_scaleway/databases/get_database_backup.py +34 -33
- pulumiverse_scaleway/databases/get_instance.py +43 -42
- pulumiverse_scaleway/databases/get_privilege.py +24 -23
- pulumiverse_scaleway/databases/instance.py +297 -295
- pulumiverse_scaleway/databases/outputs.py +188 -187
- pulumiverse_scaleway/databases/privilege.py +73 -71
- pulumiverse_scaleway/databases/read_replica.py +45 -43
- pulumiverse_scaleway/databases/serverless_database.py +80 -78
- pulumiverse_scaleway/databases/snapshot.py +101 -99
- pulumiverse_scaleway/databases/user.py +73 -71
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +531 -530
- pulumiverse_scaleway/domain/get_record.py +38 -37
- pulumiverse_scaleway/domain/get_zone.py +24 -23
- pulumiverse_scaleway/domain/outputs.py +358 -357
- pulumiverse_scaleway/domain/record.py +129 -127
- pulumiverse_scaleway/domain/registration.py +94 -92
- pulumiverse_scaleway/domain/zone.py +87 -85
- pulumiverse_scaleway/domain_record.py +129 -127
- pulumiverse_scaleway/domain_zone.py +87 -85
- pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
- pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
- pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
- pulumiverse_scaleway/edge_services_head_stage.py +31 -29
- pulumiverse_scaleway/edge_services_pipeline.py +66 -64
- pulumiverse_scaleway/edge_services_plan.py +31 -29
- pulumiverse_scaleway/edge_services_route_stage.py +59 -57
- pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
- pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
- pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
- pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
- pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
- pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
- pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
- pulumiverse_scaleway/elasticmetal/ip.py +139 -137
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
- pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
- pulumiverse_scaleway/elasticmetal/server.py +262 -260
- pulumiverse_scaleway/file_filesystem.py +552 -0
- pulumiverse_scaleway/flexible_ip.py +139 -137
- pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
- pulumiverse_scaleway/function.py +394 -284
- pulumiverse_scaleway/function_cron.py +80 -78
- pulumiverse_scaleway/function_domain.py +52 -50
- pulumiverse_scaleway/function_namespace.py +197 -126
- pulumiverse_scaleway/function_token.py +80 -78
- pulumiverse_scaleway/function_trigger.py +59 -57
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +42 -41
- pulumiverse_scaleway/functions/cron.py +80 -78
- pulumiverse_scaleway/functions/domain.py +52 -50
- pulumiverse_scaleway/functions/function.py +394 -284
- pulumiverse_scaleway/functions/get_function.py +69 -46
- pulumiverse_scaleway/functions/get_namespace.py +42 -30
- pulumiverse_scaleway/functions/namespace.py +197 -126
- pulumiverse_scaleway/functions/outputs.py +26 -25
- pulumiverse_scaleway/functions/token.py +80 -78
- pulumiverse_scaleway/functions/trigger.py +59 -57
- pulumiverse_scaleway/get_account_project.py +21 -20
- pulumiverse_scaleway/get_account_ssh_key.py +24 -23
- pulumiverse_scaleway/get_availability_zones.py +9 -8
- pulumiverse_scaleway/get_baremetal_offer.py +29 -28
- pulumiverse_scaleway/get_baremetal_option.py +19 -18
- pulumiverse_scaleway/get_baremetal_os.py +23 -22
- pulumiverse_scaleway/get_baremetal_server.py +39 -38
- pulumiverse_scaleway/get_billing_consumptions.py +10 -9
- pulumiverse_scaleway/get_billing_invoices.py +19 -18
- pulumiverse_scaleway/get_block_snapshot.py +29 -28
- pulumiverse_scaleway/get_block_volume.py +28 -27
- pulumiverse_scaleway/get_cockpit.py +10 -9
- pulumiverse_scaleway/get_cockpit_source.py +33 -32
- pulumiverse_scaleway/get_config.py +13 -12
- pulumiverse_scaleway/get_container.py +87 -42
- pulumiverse_scaleway/get_container_namespace.py +43 -31
- pulumiverse_scaleway/get_database.py +19 -18
- pulumiverse_scaleway/get_database_acl.py +13 -12
- pulumiverse_scaleway/get_database_backup.py +34 -33
- pulumiverse_scaleway/get_database_instance.py +43 -42
- pulumiverse_scaleway/get_database_privilege.py +24 -23
- pulumiverse_scaleway/get_domain_record.py +38 -37
- pulumiverse_scaleway/get_domain_zone.py +24 -23
- pulumiverse_scaleway/get_flexible_ip.py +56 -39
- pulumiverse_scaleway/get_flexible_ips.py +24 -23
- pulumiverse_scaleway/get_function.py +69 -46
- pulumiverse_scaleway/get_function_namespace.py +42 -30
- pulumiverse_scaleway/get_iam_api_key.py +17 -16
- pulumiverse_scaleway/get_iam_application.py +23 -22
- pulumiverse_scaleway/get_iam_group.py +25 -24
- pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
- pulumiverse_scaleway/get_iam_user.py +23 -22
- pulumiverse_scaleway/get_instance_image.py +42 -41
- pulumiverse_scaleway/get_instance_ip.py +20 -19
- pulumiverse_scaleway/get_instance_placement_group.py +28 -27
- pulumiverse_scaleway/get_instance_private_nic.py +31 -30
- pulumiverse_scaleway/get_instance_security_group.py +31 -30
- pulumiverse_scaleway/get_instance_server.py +59 -47
- pulumiverse_scaleway/get_instance_servers.py +24 -23
- pulumiverse_scaleway/get_instance_snapshot.py +29 -28
- pulumiverse_scaleway/get_instance_volume.py +30 -29
- pulumiverse_scaleway/get_iot_device.py +31 -30
- pulumiverse_scaleway/get_iot_hub.py +39 -38
- pulumiverse_scaleway/get_ipam_ip.py +51 -50
- pulumiverse_scaleway/get_ipam_ips.py +44 -43
- pulumiverse_scaleway/get_k8s_version.py +16 -15
- pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
- pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
- pulumiverse_scaleway/get_lb_acls.py +22 -21
- pulumiverse_scaleway/get_lb_backend.py +43 -42
- pulumiverse_scaleway/get_lb_backends.py +22 -21
- pulumiverse_scaleway/get_lb_frontend.py +26 -25
- pulumiverse_scaleway/get_lb_frontends.py +22 -21
- pulumiverse_scaleway/get_lb_ips.py +29 -28
- pulumiverse_scaleway/get_lb_route.py +16 -15
- pulumiverse_scaleway/get_lb_routes.py +17 -16
- pulumiverse_scaleway/get_lbs.py +24 -23
- pulumiverse_scaleway/get_loadbalancer.py +36 -35
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
- pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
- pulumiverse_scaleway/get_marketplace_image.py +23 -22
- pulumiverse_scaleway/get_mnq_sns.py +14 -13
- pulumiverse_scaleway/get_mnq_sqs.py +14 -13
- pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
- pulumiverse_scaleway/get_object_bucket.py +22 -21
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
- pulumiverse_scaleway/get_redis_cluster.py +34 -33
- pulumiverse_scaleway/get_registry_image.py +37 -36
- pulumiverse_scaleway/get_registry_image_tag.py +33 -32
- pulumiverse_scaleway/get_registry_namespace.py +27 -26
- pulumiverse_scaleway/get_secret.py +41 -40
- pulumiverse_scaleway/get_secret_version.py +34 -33
- pulumiverse_scaleway/get_tem_domain.py +43 -42
- pulumiverse_scaleway/get_vpc.py +35 -34
- pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
- pulumiverse_scaleway/get_vpc_private_network.py +32 -31
- pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
- pulumiverse_scaleway/get_vpc_routes.py +38 -37
- pulumiverse_scaleway/get_vpcs.py +24 -23
- pulumiverse_scaleway/get_web_host_offer.py +25 -24
- pulumiverse_scaleway/get_webhosting.py +36 -35
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +61 -60
- pulumiverse_scaleway/hosting/get_hosting.py +36 -35
- pulumiverse_scaleway/hosting/get_offer.py +25 -24
- pulumiverse_scaleway/hosting/hosting.py +164 -162
- pulumiverse_scaleway/hosting/outputs.py +139 -138
- pulumiverse_scaleway/iam/__init__.py +2 -1
- pulumiverse_scaleway/iam/_inputs.py +22 -21
- pulumiverse_scaleway/iam/api_key.py +115 -113
- pulumiverse_scaleway/iam/application.py +80 -78
- pulumiverse_scaleway/iam/get_api_key.py +17 -16
- pulumiverse_scaleway/iam/get_application.py +23 -22
- pulumiverse_scaleway/iam/get_group.py +25 -24
- pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
- pulumiverse_scaleway/iam/get_user.py +23 -22
- pulumiverse_scaleway/iam/group.py +115 -113
- pulumiverse_scaleway/iam/group_membership.py +45 -43
- pulumiverse_scaleway/iam/outputs.py +14 -13
- pulumiverse_scaleway/iam/policy.py +136 -134
- pulumiverse_scaleway/iam/ssh_key.py +87 -85
- pulumiverse_scaleway/iam/user.py +284 -273
- pulumiverse_scaleway/iam_api_key.py +115 -113
- pulumiverse_scaleway/iam_application.py +80 -78
- pulumiverse_scaleway/iam_group.py +115 -113
- pulumiverse_scaleway/iam_group_membership.py +45 -43
- pulumiverse_scaleway/iam_policy.py +136 -134
- pulumiverse_scaleway/iam_ssh_key.py +87 -85
- pulumiverse_scaleway/iam_user.py +284 -273
- pulumiverse_scaleway/inference/__init__.py +2 -1
- pulumiverse_scaleway/inference/_inputs.py +116 -61
- pulumiverse_scaleway/inference/deployment.py +225 -176
- pulumiverse_scaleway/inference/get_model.py +27 -26
- pulumiverse_scaleway/inference/model.py +129 -127
- pulumiverse_scaleway/inference/outputs.py +82 -49
- pulumiverse_scaleway/inference_deployment.py +225 -176
- pulumiverse_scaleway/instance/__init__.py +2 -1
- pulumiverse_scaleway/instance/_inputs.py +296 -295
- pulumiverse_scaleway/instance/get_image.py +42 -41
- pulumiverse_scaleway/instance/get_ip.py +20 -19
- pulumiverse_scaleway/instance/get_placement_group.py +28 -27
- pulumiverse_scaleway/instance/get_private_nic.py +31 -30
- pulumiverse_scaleway/instance/get_security_group.py +31 -30
- pulumiverse_scaleway/instance/get_server.py +59 -47
- pulumiverse_scaleway/instance/get_servers.py +24 -23
- pulumiverse_scaleway/instance/get_snapshot.py +29 -28
- pulumiverse_scaleway/instance/get_volume.py +30 -29
- pulumiverse_scaleway/instance/image.py +150 -148
- pulumiverse_scaleway/instance/ip.py +94 -92
- pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance/outputs.py +349 -348
- pulumiverse_scaleway/instance/placement_group.py +101 -99
- pulumiverse_scaleway/instance/private_nic.py +94 -92
- pulumiverse_scaleway/instance/security_group.py +150 -148
- pulumiverse_scaleway/instance/security_group_rules.py +17 -15
- pulumiverse_scaleway/instance/server.py +393 -330
- pulumiverse_scaleway/instance/snapshot.py +108 -106
- pulumiverse_scaleway/instance/user_data.py +59 -57
- pulumiverse_scaleway/instance/volume.py +129 -127
- pulumiverse_scaleway/instance_image.py +150 -148
- pulumiverse_scaleway/instance_ip.py +94 -92
- pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance_placement_group.py +101 -99
- pulumiverse_scaleway/instance_private_nic.py +94 -92
- pulumiverse_scaleway/instance_security_group.py +150 -148
- pulumiverse_scaleway/instance_security_group_rules.py +17 -15
- pulumiverse_scaleway/instance_server.py +393 -330
- pulumiverse_scaleway/instance_snapshot.py +108 -106
- pulumiverse_scaleway/instance_user_data.py +59 -57
- pulumiverse_scaleway/instance_volume.py +129 -127
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +98 -97
- pulumiverse_scaleway/iot/device.py +122 -120
- pulumiverse_scaleway/iot/get_device.py +31 -30
- pulumiverse_scaleway/iot/get_hub.py +39 -38
- pulumiverse_scaleway/iot/hub.py +206 -204
- pulumiverse_scaleway/iot/network.py +94 -92
- pulumiverse_scaleway/iot/outputs.py +78 -77
- pulumiverse_scaleway/iot/route.py +66 -64
- pulumiverse_scaleway/iot_device.py +122 -120
- pulumiverse_scaleway/iot_hub.py +206 -204
- pulumiverse_scaleway/iot_network.py +94 -92
- pulumiverse_scaleway/iot_route.py +66 -64
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +87 -86
- pulumiverse_scaleway/ipam/get_ip.py +51 -50
- pulumiverse_scaleway/ipam/get_ips.py +44 -43
- pulumiverse_scaleway/ipam/ip.py +94 -92
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/ipam/outputs.py +90 -89
- pulumiverse_scaleway/ipam_ip.py +94 -92
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +38 -37
- pulumiverse_scaleway/job/definition.py +143 -141
- pulumiverse_scaleway/job/outputs.py +24 -23
- pulumiverse_scaleway/job_definition.py +143 -141
- pulumiverse_scaleway/kubernetes/__init__.py +2 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
- pulumiverse_scaleway/kubernetes/acl.py +45 -43
- pulumiverse_scaleway/kubernetes/cluster.py +234 -232
- pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
- pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
- pulumiverse_scaleway/kubernetes/get_version.py +16 -15
- pulumiverse_scaleway/kubernetes/outputs.py +217 -216
- pulumiverse_scaleway/kubernetes/pool.py +290 -288
- pulumiverse_scaleway/kubernetes_cluster.py +234 -232
- pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
- pulumiverse_scaleway/loadbalancer.py +199 -197
- pulumiverse_scaleway/loadbalancer_acl.py +73 -71
- pulumiverse_scaleway/loadbalancer_backend.py +381 -379
- pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
- pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
- pulumiverse_scaleway/loadbalancer_ip.py +101 -99
- pulumiverse_scaleway/loadbalancer_route.py +101 -99
- pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
- pulumiverse_scaleway/loadbalancers/acl.py +73 -71
- pulumiverse_scaleway/loadbalancers/backend.py +381 -379
- pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
- pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
- pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
- pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
- pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
- pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
- pulumiverse_scaleway/loadbalancers/ip.py +101 -99
- pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
- pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
- pulumiverse_scaleway/loadbalancers/route.py +101 -99
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +32 -31
- pulumiverse_scaleway/mnq/get_sns.py +14 -13
- pulumiverse_scaleway/mnq/get_sqs.py +14 -13
- pulumiverse_scaleway/mnq/nats_account.py +52 -50
- pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq/outputs.py +20 -19
- pulumiverse_scaleway/mnq/sns.py +38 -36
- pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sns_topic.py +143 -141
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq/sqs.py +38 -36
- pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
- pulumiverse_scaleway/mnq_nats_account.py +52 -50
- pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq_sns.py +38 -36
- pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sns_topic.py +143 -141
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq_sqs.py +38 -36
- pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
- pulumiverse_scaleway/mongo_db_instance.py +199 -197
- pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
- pulumiverse_scaleway/mongodb/__init__.py +2 -1
- pulumiverse_scaleway/mongodb/_inputs.py +53 -52
- pulumiverse_scaleway/mongodb/get_instance.py +35 -34
- pulumiverse_scaleway/mongodb/instance.py +199 -197
- pulumiverse_scaleway/mongodb/outputs.py +64 -63
- pulumiverse_scaleway/mongodb/snapshot.py +101 -99
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +140 -139
- pulumiverse_scaleway/network/acl.py +59 -57
- pulumiverse_scaleway/network/gateway_network.py +143 -141
- pulumiverse_scaleway/network/get_gateway_network.py +28 -27
- pulumiverse_scaleway/network/get_private_network.py +32 -31
- pulumiverse_scaleway/network/get_public_gateway.py +36 -35
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
- pulumiverse_scaleway/network/get_routes.py +38 -37
- pulumiverse_scaleway/network/get_vpc.py +35 -34
- pulumiverse_scaleway/network/get_vpcs.py +24 -23
- pulumiverse_scaleway/network/outputs.py +206 -205
- pulumiverse_scaleway/network/private_network.py +122 -120
- pulumiverse_scaleway/network/public_gateway.py +213 -211
- pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/network/route.py +115 -113
- pulumiverse_scaleway/network/vpc.py +101 -99
- pulumiverse_scaleway/object/__init__.py +2 -1
- pulumiverse_scaleway/object/_inputs.py +127 -126
- pulumiverse_scaleway/object/bucket.py +115 -113
- pulumiverse_scaleway/object/bucket_acl.py +73 -71
- pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object/bucket_policy.py +59 -57
- pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object/get_bucket.py +22 -21
- pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
- pulumiverse_scaleway/object/item.py +232 -183
- pulumiverse_scaleway/object/outputs.py +114 -113
- pulumiverse_scaleway/object_bucket.py +115 -113
- pulumiverse_scaleway/object_bucket_acl.py +73 -71
- pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object_bucket_policy.py +59 -57
- pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object_item.py +232 -183
- pulumiverse_scaleway/observability/__init__.py +2 -1
- pulumiverse_scaleway/observability/_inputs.py +89 -88
- pulumiverse_scaleway/observability/alert_manager.py +52 -50
- pulumiverse_scaleway/observability/cockpit.py +38 -36
- pulumiverse_scaleway/observability/get_instance.py +10 -9
- pulumiverse_scaleway/observability/get_source.py +33 -32
- pulumiverse_scaleway/observability/grafana_user.py +59 -57
- pulumiverse_scaleway/observability/outputs.py +77 -76
- pulumiverse_scaleway/observability/source.py +115 -113
- pulumiverse_scaleway/observability/token.py +66 -64
- pulumiverse_scaleway/outputs.py +2797 -2732
- pulumiverse_scaleway/provider.py +87 -65
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +101 -99
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +63 -62
- pulumiverse_scaleway/redis/cluster.py +178 -176
- pulumiverse_scaleway/redis/get_cluster.py +34 -33
- pulumiverse_scaleway/redis/outputs.py +74 -73
- pulumiverse_scaleway/redis_cluster.py +178 -176
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +37 -36
- pulumiverse_scaleway/registry/get_image_tag.py +33 -32
- pulumiverse_scaleway/registry/get_namespace.py +27 -26
- pulumiverse_scaleway/registry/namespace.py +87 -85
- pulumiverse_scaleway/registry_namespace.py +87 -85
- pulumiverse_scaleway/sdb_database.py +80 -78
- pulumiverse_scaleway/secret.py +143 -141
- pulumiverse_scaleway/secret_version.py +87 -85
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +53 -52
- pulumiverse_scaleway/secrets/get_secret.py +41 -40
- pulumiverse_scaleway/secrets/get_version.py +34 -33
- pulumiverse_scaleway/secrets/outputs.py +64 -63
- pulumiverse_scaleway/secrets/secret.py +143 -141
- pulumiverse_scaleway/secrets/version.py +87 -85
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +28 -27
- pulumiverse_scaleway/tem/blocked_list.py +87 -85
- pulumiverse_scaleway/tem/domain.py +199 -197
- pulumiverse_scaleway/tem/domain_validation.py +52 -50
- pulumiverse_scaleway/tem/get_domain.py +43 -42
- pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
- pulumiverse_scaleway/tem/outputs.py +34 -33
- pulumiverse_scaleway/tem/webhook.py +108 -106
- pulumiverse_scaleway/tem_domain.py +199 -197
- pulumiverse_scaleway/tem_domain_validation.py +52 -50
- pulumiverse_scaleway/tem_webhook.py +108 -106
- pulumiverse_scaleway/vpc.py +101 -99
- pulumiverse_scaleway/vpc_gateway_network.py +143 -141
- pulumiverse_scaleway/vpc_private_network.py +122 -120
- pulumiverse_scaleway/vpc_public_gateway.py +213 -211
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/vpc_route.py +115 -113
- pulumiverse_scaleway/webhosting.py +164 -162
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
- pulumiverse_scaleway-1.30.0a1748337252.dist-info/RECORD +0 -492
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -77,13 +78,13 @@ class RecordGeoIp(dict):
|
|
77
78
|
@pulumi.output_type
|
78
79
|
class RecordGeoIpMatch(dict):
|
79
80
|
def __init__(__self__, *,
|
80
|
-
data: str,
|
81
|
-
continents: Optional[Sequence[str]] = None,
|
82
|
-
countries: Optional[Sequence[str]] = None):
|
81
|
+
data: builtins.str,
|
82
|
+
continents: Optional[Sequence[builtins.str]] = None,
|
83
|
+
countries: Optional[Sequence[builtins.str]] = None):
|
83
84
|
"""
|
84
|
-
:param str data: The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
|
85
|
-
:param Sequence[str] continents: List of continents (eg: EU for Europe, NA for North America, AS for Asia...). List of all continents code: https://api.scaleway.com/domain-private/v2beta1/continents
|
86
|
-
:param Sequence[str] countries: List of countries (eg: FR for France, US for the United States, GB for Great Britain...). List of all countries code: https://api.scaleway.com/domain-private/v2beta1/countries
|
85
|
+
:param builtins.str data: The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
|
86
|
+
:param Sequence[builtins.str] continents: List of continents (eg: EU for Europe, NA for North America, AS for Asia...). List of all continents code: https://api.scaleway.com/domain-private/v2beta1/continents
|
87
|
+
:param Sequence[builtins.str] countries: List of countries (eg: FR for France, US for the United States, GB for Great Britain...). List of all countries code: https://api.scaleway.com/domain-private/v2beta1/countries
|
87
88
|
"""
|
88
89
|
pulumi.set(__self__, "data", data)
|
89
90
|
if continents is not None:
|
@@ -93,7 +94,7 @@ class RecordGeoIpMatch(dict):
|
|
93
94
|
|
94
95
|
@property
|
95
96
|
@pulumi.getter
|
96
|
-
def data(self) -> str:
|
97
|
+
def data(self) -> builtins.str:
|
97
98
|
"""
|
98
99
|
The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
|
99
100
|
"""
|
@@ -101,7 +102,7 @@ class RecordGeoIpMatch(dict):
|
|
101
102
|
|
102
103
|
@property
|
103
104
|
@pulumi.getter
|
104
|
-
def continents(self) -> Optional[Sequence[str]]:
|
105
|
+
def continents(self) -> Optional[Sequence[builtins.str]]:
|
105
106
|
"""
|
106
107
|
List of continents (eg: EU for Europe, NA for North America, AS for Asia...). List of all continents code: https://api.scaleway.com/domain-private/v2beta1/continents
|
107
108
|
"""
|
@@ -109,7 +110,7 @@ class RecordGeoIpMatch(dict):
|
|
109
110
|
|
110
111
|
@property
|
111
112
|
@pulumi.getter
|
112
|
-
def countries(self) -> Optional[Sequence[str]]:
|
113
|
+
def countries(self) -> Optional[Sequence[builtins.str]]:
|
113
114
|
"""
|
114
115
|
List of countries (eg: FR for France, US for the United States, GB for Great Britain...). List of all countries code: https://api.scaleway.com/domain-private/v2beta1/countries
|
115
116
|
"""
|
@@ -138,17 +139,17 @@ class RecordHttpService(dict):
|
|
138
139
|
return super().get(key, default)
|
139
140
|
|
140
141
|
def __init__(__self__, *,
|
141
|
-
ips: Sequence[str],
|
142
|
-
must_contain: str,
|
143
|
-
strategy: str,
|
144
|
-
url: str,
|
145
|
-
user_agent: Optional[str] = None):
|
146
|
-
"""
|
147
|
-
:param Sequence[str] ips: IPs to check
|
148
|
-
:param str must_contain: Text to search
|
149
|
-
:param str strategy: Strategy to return an IP from the IPs list
|
150
|
-
:param str url: URL to match the must_contain text to validate an IP
|
151
|
-
:param str user_agent: User-agent used when checking the URL
|
142
|
+
ips: Sequence[builtins.str],
|
143
|
+
must_contain: builtins.str,
|
144
|
+
strategy: builtins.str,
|
145
|
+
url: builtins.str,
|
146
|
+
user_agent: Optional[builtins.str] = None):
|
147
|
+
"""
|
148
|
+
:param Sequence[builtins.str] ips: IPs to check
|
149
|
+
:param builtins.str must_contain: Text to search
|
150
|
+
:param builtins.str strategy: Strategy to return an IP from the IPs list
|
151
|
+
:param builtins.str url: URL to match the must_contain text to validate an IP
|
152
|
+
:param builtins.str user_agent: User-agent used when checking the URL
|
152
153
|
"""
|
153
154
|
pulumi.set(__self__, "ips", ips)
|
154
155
|
pulumi.set(__self__, "must_contain", must_contain)
|
@@ -159,7 +160,7 @@ class RecordHttpService(dict):
|
|
159
160
|
|
160
161
|
@property
|
161
162
|
@pulumi.getter
|
162
|
-
def ips(self) -> Sequence[str]:
|
163
|
+
def ips(self) -> Sequence[builtins.str]:
|
163
164
|
"""
|
164
165
|
IPs to check
|
165
166
|
"""
|
@@ -167,7 +168,7 @@ class RecordHttpService(dict):
|
|
167
168
|
|
168
169
|
@property
|
169
170
|
@pulumi.getter(name="mustContain")
|
170
|
-
def must_contain(self) -> str:
|
171
|
+
def must_contain(self) -> builtins.str:
|
171
172
|
"""
|
172
173
|
Text to search
|
173
174
|
"""
|
@@ -175,7 +176,7 @@ class RecordHttpService(dict):
|
|
175
176
|
|
176
177
|
@property
|
177
178
|
@pulumi.getter
|
178
|
-
def strategy(self) -> str:
|
179
|
+
def strategy(self) -> builtins.str:
|
179
180
|
"""
|
180
181
|
Strategy to return an IP from the IPs list
|
181
182
|
"""
|
@@ -183,7 +184,7 @@ class RecordHttpService(dict):
|
|
183
184
|
|
184
185
|
@property
|
185
186
|
@pulumi.getter
|
186
|
-
def url(self) -> str:
|
187
|
+
def url(self) -> builtins.str:
|
187
188
|
"""
|
188
189
|
URL to match the must_contain text to validate an IP
|
189
190
|
"""
|
@@ -191,7 +192,7 @@ class RecordHttpService(dict):
|
|
191
192
|
|
192
193
|
@property
|
193
194
|
@pulumi.getter(name="userAgent")
|
194
|
-
def user_agent(self) -> Optional[str]:
|
195
|
+
def user_agent(self) -> Optional[builtins.str]:
|
195
196
|
"""
|
196
197
|
User-agent used when checking the URL
|
197
198
|
"""
|
@@ -201,18 +202,18 @@ class RecordHttpService(dict):
|
|
201
202
|
@pulumi.output_type
|
202
203
|
class RecordView(dict):
|
203
204
|
def __init__(__self__, *,
|
204
|
-
data: str,
|
205
|
-
subnet: str):
|
205
|
+
data: builtins.str,
|
206
|
+
subnet: builtins.str):
|
206
207
|
"""
|
207
|
-
:param str data: The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
|
208
|
-
:param str subnet: The subnet of the view
|
208
|
+
:param builtins.str data: The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
|
209
|
+
:param builtins.str subnet: The subnet of the view
|
209
210
|
"""
|
210
211
|
pulumi.set(__self__, "data", data)
|
211
212
|
pulumi.set(__self__, "subnet", subnet)
|
212
213
|
|
213
214
|
@property
|
214
215
|
@pulumi.getter
|
215
|
-
def data(self) -> str:
|
216
|
+
def data(self) -> builtins.str:
|
216
217
|
"""
|
217
218
|
The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
|
218
219
|
"""
|
@@ -220,7 +221,7 @@ class RecordView(dict):
|
|
220
221
|
|
221
222
|
@property
|
222
223
|
@pulumi.getter
|
223
|
-
def subnet(self) -> str:
|
224
|
+
def subnet(self) -> builtins.str:
|
224
225
|
"""
|
225
226
|
The subnet of the view
|
226
227
|
"""
|
@@ -230,18 +231,18 @@ class RecordView(dict):
|
|
230
231
|
@pulumi.output_type
|
231
232
|
class RecordWeighted(dict):
|
232
233
|
def __init__(__self__, *,
|
233
|
-
ip: str,
|
234
|
-
weight: int):
|
234
|
+
ip: builtins.str,
|
235
|
+
weight: builtins.int):
|
235
236
|
"""
|
236
|
-
:param str ip: The weighted IP
|
237
|
-
:param int weight: The weight of the IP
|
237
|
+
:param builtins.str ip: The weighted IP
|
238
|
+
:param builtins.int weight: The weight of the IP
|
238
239
|
"""
|
239
240
|
pulumi.set(__self__, "ip", ip)
|
240
241
|
pulumi.set(__self__, "weight", weight)
|
241
242
|
|
242
243
|
@property
|
243
244
|
@pulumi.getter
|
244
|
-
def ip(self) -> str:
|
245
|
+
def ip(self) -> builtins.str:
|
245
246
|
"""
|
246
247
|
The weighted IP
|
247
248
|
"""
|
@@ -249,7 +250,7 @@ class RecordWeighted(dict):
|
|
249
250
|
|
250
251
|
@property
|
251
252
|
@pulumi.getter
|
252
|
-
def weight(self) -> int:
|
253
|
+
def weight(self) -> builtins.int:
|
253
254
|
"""
|
254
255
|
The weight of the IP
|
255
256
|
"""
|
@@ -300,51 +301,51 @@ class RegistrationAdministrativeContact(dict):
|
|
300
301
|
return super().get(key, default)
|
301
302
|
|
302
303
|
def __init__(__self__, *,
|
303
|
-
address_line1: str,
|
304
|
-
city: str,
|
305
|
-
company_identification_code: str,
|
306
|
-
country: str,
|
307
|
-
email: str,
|
308
|
-
firstname: str,
|
309
|
-
lastname: str,
|
310
|
-
legal_form: str,
|
311
|
-
phone_number: str,
|
312
|
-
vat_identification_code: str,
|
313
|
-
zip: str,
|
314
|
-
address_line2: Optional[str] = None,
|
315
|
-
company_name: Optional[str] = None,
|
316
|
-
email_alt: Optional[str] = None,
|
304
|
+
address_line1: builtins.str,
|
305
|
+
city: builtins.str,
|
306
|
+
company_identification_code: builtins.str,
|
307
|
+
country: builtins.str,
|
308
|
+
email: builtins.str,
|
309
|
+
firstname: builtins.str,
|
310
|
+
lastname: builtins.str,
|
311
|
+
legal_form: builtins.str,
|
312
|
+
phone_number: builtins.str,
|
313
|
+
vat_identification_code: builtins.str,
|
314
|
+
zip: builtins.str,
|
315
|
+
address_line2: Optional[builtins.str] = None,
|
316
|
+
company_name: Optional[builtins.str] = None,
|
317
|
+
email_alt: Optional[builtins.str] = None,
|
317
318
|
extension_eu: Optional['outputs.RegistrationAdministrativeContactExtensionEu'] = None,
|
318
319
|
extension_fr: Optional['outputs.RegistrationAdministrativeContactExtensionFr'] = None,
|
319
|
-
extension_nls: Optional[Sequence[str]] = None,
|
320
|
-
fax_number: Optional[str] = None,
|
321
|
-
lang: Optional[str] = None,
|
322
|
-
resale: Optional[bool] = None,
|
323
|
-
state: Optional[str] = None,
|
324
|
-
whois_opt_in: Optional[bool] = None):
|
325
|
-
"""
|
326
|
-
:param str address_line1: Primary address line for the contact.
|
327
|
-
:param str city: City of the contact's address.
|
328
|
-
:param str company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
|
329
|
-
:param str country: Country code of the contact's address (ISO format).
|
330
|
-
:param str email: Primary email address of the contact.
|
331
|
-
:param str firstname: First name of the contact.
|
332
|
-
:param str lastname: Last name of the contact.
|
333
|
-
:param str legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
|
334
|
-
:param str phone_number: Primary phone number of the contact.
|
335
|
-
:param str vat_identification_code: VAT identification code of the contact, if applicable.
|
336
|
-
:param str zip: Postal code of the contact's address.
|
337
|
-
:param str address_line2: Secondary address line for the contact (optional).
|
338
|
-
:param str company_name: Name of the company associated with the contact (if applicable).
|
339
|
-
:param str email_alt: Alternative email address for the contact.
|
320
|
+
extension_nls: Optional[Sequence[builtins.str]] = None,
|
321
|
+
fax_number: Optional[builtins.str] = None,
|
322
|
+
lang: Optional[builtins.str] = None,
|
323
|
+
resale: Optional[builtins.bool] = None,
|
324
|
+
state: Optional[builtins.str] = None,
|
325
|
+
whois_opt_in: Optional[builtins.bool] = None):
|
326
|
+
"""
|
327
|
+
:param builtins.str address_line1: Primary address line for the contact.
|
328
|
+
:param builtins.str city: City of the contact's address.
|
329
|
+
:param builtins.str company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
|
330
|
+
:param builtins.str country: Country code of the contact's address (ISO format).
|
331
|
+
:param builtins.str email: Primary email address of the contact.
|
332
|
+
:param builtins.str firstname: First name of the contact.
|
333
|
+
:param builtins.str lastname: Last name of the contact.
|
334
|
+
:param builtins.str legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
|
335
|
+
:param builtins.str phone_number: Primary phone number of the contact.
|
336
|
+
:param builtins.str vat_identification_code: VAT identification code of the contact, if applicable.
|
337
|
+
:param builtins.str zip: Postal code of the contact's address.
|
338
|
+
:param builtins.str address_line2: Secondary address line for the contact (optional).
|
339
|
+
:param builtins.str company_name: Name of the company associated with the contact (if applicable).
|
340
|
+
:param builtins.str email_alt: Alternative email address for the contact.
|
340
341
|
:param 'RegistrationAdministrativeContactExtensionEuArgs' extension_eu: Details specific to European domain extensions.
|
341
342
|
:param 'RegistrationAdministrativeContactExtensionFrArgs' extension_fr: Details specific to French domain extensions.
|
342
|
-
:param Sequence[str] extension_nls: Extension details specific to Dutch domain registrations.
|
343
|
-
:param str fax_number: Fax number for the contact (if available).
|
344
|
-
:param str lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
|
345
|
-
:param bool resale: Indicates if the contact is used for resale purposes.
|
346
|
-
:param str state: State or region of the contact.
|
347
|
-
:param bool whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
|
343
|
+
:param Sequence[builtins.str] extension_nls: Extension details specific to Dutch domain registrations.
|
344
|
+
:param builtins.str fax_number: Fax number for the contact (if available).
|
345
|
+
:param builtins.str lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
|
346
|
+
:param builtins.bool resale: Indicates if the contact is used for resale purposes.
|
347
|
+
:param builtins.str state: State or region of the contact.
|
348
|
+
:param builtins.bool whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
|
348
349
|
"""
|
349
350
|
pulumi.set(__self__, "address_line1", address_line1)
|
350
351
|
pulumi.set(__self__, "city", city)
|
@@ -382,7 +383,7 @@ class RegistrationAdministrativeContact(dict):
|
|
382
383
|
|
383
384
|
@property
|
384
385
|
@pulumi.getter(name="addressLine1")
|
385
|
-
def address_line1(self) -> str:
|
386
|
+
def address_line1(self) -> builtins.str:
|
386
387
|
"""
|
387
388
|
Primary address line for the contact.
|
388
389
|
"""
|
@@ -390,7 +391,7 @@ class RegistrationAdministrativeContact(dict):
|
|
390
391
|
|
391
392
|
@property
|
392
393
|
@pulumi.getter
|
393
|
-
def city(self) -> str:
|
394
|
+
def city(self) -> builtins.str:
|
394
395
|
"""
|
395
396
|
City of the contact's address.
|
396
397
|
"""
|
@@ -398,7 +399,7 @@ class RegistrationAdministrativeContact(dict):
|
|
398
399
|
|
399
400
|
@property
|
400
401
|
@pulumi.getter(name="companyIdentificationCode")
|
401
|
-
def company_identification_code(self) -> str:
|
402
|
+
def company_identification_code(self) -> builtins.str:
|
402
403
|
"""
|
403
404
|
Company identification code (e.g., SIREN/SIRET in France) for the contact.
|
404
405
|
"""
|
@@ -406,7 +407,7 @@ class RegistrationAdministrativeContact(dict):
|
|
406
407
|
|
407
408
|
@property
|
408
409
|
@pulumi.getter
|
409
|
-
def country(self) -> str:
|
410
|
+
def country(self) -> builtins.str:
|
410
411
|
"""
|
411
412
|
Country code of the contact's address (ISO format).
|
412
413
|
"""
|
@@ -414,7 +415,7 @@ class RegistrationAdministrativeContact(dict):
|
|
414
415
|
|
415
416
|
@property
|
416
417
|
@pulumi.getter
|
417
|
-
def email(self) -> str:
|
418
|
+
def email(self) -> builtins.str:
|
418
419
|
"""
|
419
420
|
Primary email address of the contact.
|
420
421
|
"""
|
@@ -422,7 +423,7 @@ class RegistrationAdministrativeContact(dict):
|
|
422
423
|
|
423
424
|
@property
|
424
425
|
@pulumi.getter
|
425
|
-
def firstname(self) -> str:
|
426
|
+
def firstname(self) -> builtins.str:
|
426
427
|
"""
|
427
428
|
First name of the contact.
|
428
429
|
"""
|
@@ -430,7 +431,7 @@ class RegistrationAdministrativeContact(dict):
|
|
430
431
|
|
431
432
|
@property
|
432
433
|
@pulumi.getter
|
433
|
-
def lastname(self) -> str:
|
434
|
+
def lastname(self) -> builtins.str:
|
434
435
|
"""
|
435
436
|
Last name of the contact.
|
436
437
|
"""
|
@@ -438,7 +439,7 @@ class RegistrationAdministrativeContact(dict):
|
|
438
439
|
|
439
440
|
@property
|
440
441
|
@pulumi.getter(name="legalForm")
|
441
|
-
def legal_form(self) -> str:
|
442
|
+
def legal_form(self) -> builtins.str:
|
442
443
|
"""
|
443
444
|
Legal form of the contact (e.g., 'individual' or 'organization').
|
444
445
|
"""
|
@@ -446,7 +447,7 @@ class RegistrationAdministrativeContact(dict):
|
|
446
447
|
|
447
448
|
@property
|
448
449
|
@pulumi.getter(name="phoneNumber")
|
449
|
-
def phone_number(self) -> str:
|
450
|
+
def phone_number(self) -> builtins.str:
|
450
451
|
"""
|
451
452
|
Primary phone number of the contact.
|
452
453
|
"""
|
@@ -454,7 +455,7 @@ class RegistrationAdministrativeContact(dict):
|
|
454
455
|
|
455
456
|
@property
|
456
457
|
@pulumi.getter(name="vatIdentificationCode")
|
457
|
-
def vat_identification_code(self) -> str:
|
458
|
+
def vat_identification_code(self) -> builtins.str:
|
458
459
|
"""
|
459
460
|
VAT identification code of the contact, if applicable.
|
460
461
|
"""
|
@@ -462,7 +463,7 @@ class RegistrationAdministrativeContact(dict):
|
|
462
463
|
|
463
464
|
@property
|
464
465
|
@pulumi.getter
|
465
|
-
def zip(self) -> str:
|
466
|
+
def zip(self) -> builtins.str:
|
466
467
|
"""
|
467
468
|
Postal code of the contact's address.
|
468
469
|
"""
|
@@ -470,7 +471,7 @@ class RegistrationAdministrativeContact(dict):
|
|
470
471
|
|
471
472
|
@property
|
472
473
|
@pulumi.getter(name="addressLine2")
|
473
|
-
def address_line2(self) -> Optional[str]:
|
474
|
+
def address_line2(self) -> Optional[builtins.str]:
|
474
475
|
"""
|
475
476
|
Secondary address line for the contact (optional).
|
476
477
|
"""
|
@@ -478,7 +479,7 @@ class RegistrationAdministrativeContact(dict):
|
|
478
479
|
|
479
480
|
@property
|
480
481
|
@pulumi.getter(name="companyName")
|
481
|
-
def company_name(self) -> Optional[str]:
|
482
|
+
def company_name(self) -> Optional[builtins.str]:
|
482
483
|
"""
|
483
484
|
Name of the company associated with the contact (if applicable).
|
484
485
|
"""
|
@@ -486,7 +487,7 @@ class RegistrationAdministrativeContact(dict):
|
|
486
487
|
|
487
488
|
@property
|
488
489
|
@pulumi.getter(name="emailAlt")
|
489
|
-
def email_alt(self) -> Optional[str]:
|
490
|
+
def email_alt(self) -> Optional[builtins.str]:
|
490
491
|
"""
|
491
492
|
Alternative email address for the contact.
|
492
493
|
"""
|
@@ -510,7 +511,7 @@ class RegistrationAdministrativeContact(dict):
|
|
510
511
|
|
511
512
|
@property
|
512
513
|
@pulumi.getter(name="extensionNls")
|
513
|
-
def extension_nls(self) -> Optional[Sequence[str]]:
|
514
|
+
def extension_nls(self) -> Optional[Sequence[builtins.str]]:
|
514
515
|
"""
|
515
516
|
Extension details specific to Dutch domain registrations.
|
516
517
|
"""
|
@@ -518,7 +519,7 @@ class RegistrationAdministrativeContact(dict):
|
|
518
519
|
|
519
520
|
@property
|
520
521
|
@pulumi.getter(name="faxNumber")
|
521
|
-
def fax_number(self) -> Optional[str]:
|
522
|
+
def fax_number(self) -> Optional[builtins.str]:
|
522
523
|
"""
|
523
524
|
Fax number for the contact (if available).
|
524
525
|
"""
|
@@ -526,7 +527,7 @@ class RegistrationAdministrativeContact(dict):
|
|
526
527
|
|
527
528
|
@property
|
528
529
|
@pulumi.getter
|
529
|
-
def lang(self) -> Optional[str]:
|
530
|
+
def lang(self) -> Optional[builtins.str]:
|
530
531
|
"""
|
531
532
|
Preferred language of the contact (e.g., 'en_US', 'fr_FR').
|
532
533
|
"""
|
@@ -534,7 +535,7 @@ class RegistrationAdministrativeContact(dict):
|
|
534
535
|
|
535
536
|
@property
|
536
537
|
@pulumi.getter
|
537
|
-
def resale(self) -> Optional[bool]:
|
538
|
+
def resale(self) -> Optional[builtins.bool]:
|
538
539
|
"""
|
539
540
|
Indicates if the contact is used for resale purposes.
|
540
541
|
"""
|
@@ -542,7 +543,7 @@ class RegistrationAdministrativeContact(dict):
|
|
542
543
|
|
543
544
|
@property
|
544
545
|
@pulumi.getter
|
545
|
-
def state(self) -> Optional[str]:
|
546
|
+
def state(self) -> Optional[builtins.str]:
|
546
547
|
"""
|
547
548
|
State or region of the contact.
|
548
549
|
"""
|
@@ -550,7 +551,7 @@ class RegistrationAdministrativeContact(dict):
|
|
550
551
|
|
551
552
|
@property
|
552
553
|
@pulumi.getter(name="whoisOptIn")
|
553
|
-
def whois_opt_in(self) -> Optional[bool]:
|
554
|
+
def whois_opt_in(self) -> Optional[builtins.bool]:
|
554
555
|
"""
|
555
556
|
Indicates whether the contact has opted into WHOIS publishing.
|
556
557
|
"""
|
@@ -577,16 +578,16 @@ class RegistrationAdministrativeContactExtensionEu(dict):
|
|
577
578
|
return super().get(key, default)
|
578
579
|
|
579
580
|
def __init__(__self__, *,
|
580
|
-
european_citizenship: Optional[str] = None):
|
581
|
+
european_citizenship: Optional[builtins.str] = None):
|
581
582
|
"""
|
582
|
-
:param str european_citizenship: Indicates the European citizenship of the contact.
|
583
|
+
:param builtins.str european_citizenship: Indicates the European citizenship of the contact.
|
583
584
|
"""
|
584
585
|
if european_citizenship is not None:
|
585
586
|
pulumi.set(__self__, "european_citizenship", european_citizenship)
|
586
587
|
|
587
588
|
@property
|
588
589
|
@pulumi.getter(name="europeanCitizenship")
|
589
|
-
def european_citizenship(self) -> Optional[str]:
|
590
|
+
def european_citizenship(self) -> Optional[builtins.str]:
|
590
591
|
"""
|
591
592
|
Indicates the European citizenship of the contact.
|
592
593
|
"""
|
@@ -625,14 +626,14 @@ class RegistrationAdministrativeContactExtensionFr(dict):
|
|
625
626
|
code_auth_afnic_info: Optional['outputs.RegistrationAdministrativeContactExtensionFrCodeAuthAfnicInfo'] = None,
|
626
627
|
duns_info: Optional['outputs.RegistrationAdministrativeContactExtensionFrDunsInfo'] = None,
|
627
628
|
individual_info: Optional['outputs.RegistrationAdministrativeContactExtensionFrIndividualInfo'] = None,
|
628
|
-
mode: Optional[str] = None,
|
629
|
+
mode: Optional[builtins.str] = None,
|
629
630
|
trademark_info: Optional['outputs.RegistrationAdministrativeContactExtensionFrTrademarkInfo'] = None):
|
630
631
|
"""
|
631
632
|
:param 'RegistrationAdministrativeContactExtensionFrAssociationInfoArgs' association_info: Association-specific information for the domain (French extension).
|
632
633
|
:param 'RegistrationAdministrativeContactExtensionFrCodeAuthAfnicInfoArgs' code_auth_afnic_info: AFNIC authorization information for the contact (French extension).
|
633
634
|
:param 'RegistrationAdministrativeContactExtensionFrDunsInfoArgs' duns_info: DUNS information for the domain owner (specific to French domains).
|
634
635
|
:param 'RegistrationAdministrativeContactExtensionFrIndividualInfoArgs' individual_info: Information about the individual registration for French domains.
|
635
|
-
:param str mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
|
636
|
+
:param builtins.str mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
|
636
637
|
:param 'RegistrationAdministrativeContactExtensionFrTrademarkInfoArgs' trademark_info: Trademark-related information for the domain (French extension).
|
637
638
|
"""
|
638
639
|
if association_info is not None:
|
@@ -682,7 +683,7 @@ class RegistrationAdministrativeContactExtensionFr(dict):
|
|
682
683
|
|
683
684
|
@property
|
684
685
|
@pulumi.getter
|
685
|
-
def mode(self) -> Optional[str]:
|
686
|
+
def mode(self) -> Optional[builtins.str]:
|
686
687
|
"""
|
687
688
|
Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
|
688
689
|
"""
|
@@ -719,11 +720,11 @@ class RegistrationAdministrativeContactExtensionFrAssociationInfo(dict):
|
|
719
720
|
return super().get(key, default)
|
720
721
|
|
721
722
|
def __init__(__self__, *,
|
722
|
-
publication_jo: Optional[str] = None,
|
723
|
-
publication_jo_page: Optional[int] = None):
|
723
|
+
publication_jo: Optional[builtins.str] = None,
|
724
|
+
publication_jo_page: Optional[builtins.int] = None):
|
724
725
|
"""
|
725
|
-
:param str publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
|
726
|
-
:param int publication_jo_page: Page number of the publication in the Official Journal for association information.
|
726
|
+
:param builtins.str publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
|
727
|
+
:param builtins.int publication_jo_page: Page number of the publication in the Official Journal for association information.
|
727
728
|
"""
|
728
729
|
if publication_jo is not None:
|
729
730
|
pulumi.set(__self__, "publication_jo", publication_jo)
|
@@ -732,7 +733,7 @@ class RegistrationAdministrativeContactExtensionFrAssociationInfo(dict):
|
|
732
733
|
|
733
734
|
@property
|
734
735
|
@pulumi.getter(name="publicationJo")
|
735
|
-
def publication_jo(self) -> Optional[str]:
|
736
|
+
def publication_jo(self) -> Optional[builtins.str]:
|
736
737
|
"""
|
737
738
|
Publication date in the Official Journal (RFC3339 format) for association information.
|
738
739
|
"""
|
@@ -740,7 +741,7 @@ class RegistrationAdministrativeContactExtensionFrAssociationInfo(dict):
|
|
740
741
|
|
741
742
|
@property
|
742
743
|
@pulumi.getter(name="publicationJoPage")
|
743
|
-
def publication_jo_page(self) -> Optional[int]:
|
744
|
+
def publication_jo_page(self) -> Optional[builtins.int]:
|
744
745
|
"""
|
745
746
|
Page number of the publication in the Official Journal for association information.
|
746
747
|
"""
|
@@ -767,16 +768,16 @@ class RegistrationAdministrativeContactExtensionFrCodeAuthAfnicInfo(dict):
|
|
767
768
|
return super().get(key, default)
|
768
769
|
|
769
770
|
def __init__(__self__, *,
|
770
|
-
code_auth_afnic: Optional[str] = None):
|
771
|
+
code_auth_afnic: Optional[builtins.str] = None):
|
771
772
|
"""
|
772
|
-
:param str code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
|
773
|
+
:param builtins.str code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
|
773
774
|
"""
|
774
775
|
if code_auth_afnic is not None:
|
775
776
|
pulumi.set(__self__, "code_auth_afnic", code_auth_afnic)
|
776
777
|
|
777
778
|
@property
|
778
779
|
@pulumi.getter(name="codeAuthAfnic")
|
779
|
-
def code_auth_afnic(self) -> Optional[str]:
|
780
|
+
def code_auth_afnic(self) -> Optional[builtins.str]:
|
780
781
|
"""
|
781
782
|
AFNIC authorization code for the contact (specific to French domains).
|
782
783
|
"""
|
@@ -805,11 +806,11 @@ class RegistrationAdministrativeContactExtensionFrDunsInfo(dict):
|
|
805
806
|
return super().get(key, default)
|
806
807
|
|
807
808
|
def __init__(__self__, *,
|
808
|
-
duns_id: Optional[str] = None,
|
809
|
-
local_id: Optional[str] = None):
|
809
|
+
duns_id: Optional[builtins.str] = None,
|
810
|
+
local_id: Optional[builtins.str] = None):
|
810
811
|
"""
|
811
|
-
:param str duns_id: DUNS ID associated with the domain owner (for French domains).
|
812
|
-
:param str local_id: Local identifier of the domain owner (for French domains).
|
812
|
+
:param builtins.str duns_id: DUNS ID associated with the domain owner (for French domains).
|
813
|
+
:param builtins.str local_id: Local identifier of the domain owner (for French domains).
|
813
814
|
"""
|
814
815
|
if duns_id is not None:
|
815
816
|
pulumi.set(__self__, "duns_id", duns_id)
|
@@ -818,7 +819,7 @@ class RegistrationAdministrativeContactExtensionFrDunsInfo(dict):
|
|
818
819
|
|
819
820
|
@property
|
820
821
|
@pulumi.getter(name="dunsId")
|
821
|
-
def duns_id(self) -> Optional[str]:
|
822
|
+
def duns_id(self) -> Optional[builtins.str]:
|
822
823
|
"""
|
823
824
|
DUNS ID associated with the domain owner (for French domains).
|
824
825
|
"""
|
@@ -826,7 +827,7 @@ class RegistrationAdministrativeContactExtensionFrDunsInfo(dict):
|
|
826
827
|
|
827
828
|
@property
|
828
829
|
@pulumi.getter(name="localId")
|
829
|
-
def local_id(self) -> Optional[str]:
|
830
|
+
def local_id(self) -> Optional[builtins.str]:
|
830
831
|
"""
|
831
832
|
Local identifier of the domain owner (for French domains).
|
832
833
|
"""
|
@@ -853,16 +854,16 @@ class RegistrationAdministrativeContactExtensionFrIndividualInfo(dict):
|
|
853
854
|
return super().get(key, default)
|
854
855
|
|
855
856
|
def __init__(__self__, *,
|
856
|
-
whois_opt_in: Optional[bool] = None):
|
857
|
+
whois_opt_in: Optional[builtins.bool] = None):
|
857
858
|
"""
|
858
|
-
:param bool whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
|
859
|
+
:param builtins.bool whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
|
859
860
|
"""
|
860
861
|
if whois_opt_in is not None:
|
861
862
|
pulumi.set(__self__, "whois_opt_in", whois_opt_in)
|
862
863
|
|
863
864
|
@property
|
864
865
|
@pulumi.getter(name="whoisOptIn")
|
865
|
-
def whois_opt_in(self) -> Optional[bool]:
|
866
|
+
def whois_opt_in(self) -> Optional[builtins.bool]:
|
866
867
|
"""
|
867
868
|
Whether the individual contact has opted into WHOIS publishing.
|
868
869
|
"""
|
@@ -889,16 +890,16 @@ class RegistrationAdministrativeContactExtensionFrTrademarkInfo(dict):
|
|
889
890
|
return super().get(key, default)
|
890
891
|
|
891
892
|
def __init__(__self__, *,
|
892
|
-
trademark_inpi: Optional[str] = None):
|
893
|
+
trademark_inpi: Optional[builtins.str] = None):
|
893
894
|
"""
|
894
|
-
:param str trademark_inpi: Trademark information from INPI (French extension).
|
895
|
+
:param builtins.str trademark_inpi: Trademark information from INPI (French extension).
|
895
896
|
"""
|
896
897
|
if trademark_inpi is not None:
|
897
898
|
pulumi.set(__self__, "trademark_inpi", trademark_inpi)
|
898
899
|
|
899
900
|
@property
|
900
901
|
@pulumi.getter(name="trademarkInpi")
|
901
|
-
def trademark_inpi(self) -> Optional[str]:
|
902
|
+
def trademark_inpi(self) -> Optional[builtins.str]:
|
902
903
|
"""
|
903
904
|
Trademark information from INPI (French extension).
|
904
905
|
"""
|
@@ -927,14 +928,14 @@ class RegistrationDsRecord(dict):
|
|
927
928
|
return super().get(key, default)
|
928
929
|
|
929
930
|
def __init__(__self__, *,
|
930
|
-
algorithm: Optional[str] = None,
|
931
|
+
algorithm: Optional[builtins.str] = None,
|
931
932
|
digests: Optional[Sequence['outputs.RegistrationDsRecordDigest']] = None,
|
932
|
-
key_id: Optional[int] = None,
|
933
|
+
key_id: Optional[builtins.int] = None,
|
933
934
|
public_keys: Optional[Sequence['outputs.RegistrationDsRecordPublicKey']] = None):
|
934
935
|
"""
|
935
|
-
:param str algorithm: The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
|
936
|
+
:param builtins.str algorithm: The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
|
936
937
|
:param Sequence['RegistrationDsRecordDigestArgs'] digests: Details about the digest.
|
937
|
-
:param int key_id: The identifier for the dnssec key.
|
938
|
+
:param builtins.int key_id: The identifier for the dnssec key.
|
938
939
|
:param Sequence['RegistrationDsRecordPublicKeyArgs'] public_keys: Public key associated with the dnssec record.
|
939
940
|
"""
|
940
941
|
if algorithm is not None:
|
@@ -948,7 +949,7 @@ class RegistrationDsRecord(dict):
|
|
948
949
|
|
949
950
|
@property
|
950
951
|
@pulumi.getter
|
951
|
-
def algorithm(self) -> Optional[str]:
|
952
|
+
def algorithm(self) -> Optional[builtins.str]:
|
952
953
|
"""
|
953
954
|
The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
|
954
955
|
"""
|
@@ -964,7 +965,7 @@ class RegistrationDsRecord(dict):
|
|
964
965
|
|
965
966
|
@property
|
966
967
|
@pulumi.getter(name="keyId")
|
967
|
-
def key_id(self) -> Optional[int]:
|
968
|
+
def key_id(self) -> Optional[builtins.int]:
|
968
969
|
"""
|
969
970
|
The identifier for the dnssec key.
|
970
971
|
"""
|
@@ -999,13 +1000,13 @@ class RegistrationDsRecordDigest(dict):
|
|
999
1000
|
return super().get(key, default)
|
1000
1001
|
|
1001
1002
|
def __init__(__self__, *,
|
1002
|
-
digest: Optional[str] = None,
|
1003
|
+
digest: Optional[builtins.str] = None,
|
1003
1004
|
public_keys: Optional[Sequence['outputs.RegistrationDsRecordDigestPublicKey']] = None,
|
1004
|
-
type: Optional[str] = None):
|
1005
|
+
type: Optional[builtins.str] = None):
|
1005
1006
|
"""
|
1006
|
-
:param str digest: The digest value.
|
1007
|
+
:param builtins.str digest: The digest value.
|
1007
1008
|
:param Sequence['RegistrationDsRecordDigestPublicKeyArgs'] public_keys: The public key associated with the digest.
|
1008
|
-
:param str type: The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
|
1009
|
+
:param builtins.str type: The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
|
1009
1010
|
"""
|
1010
1011
|
if digest is not None:
|
1011
1012
|
pulumi.set(__self__, "digest", digest)
|
@@ -1016,7 +1017,7 @@ class RegistrationDsRecordDigest(dict):
|
|
1016
1017
|
|
1017
1018
|
@property
|
1018
1019
|
@pulumi.getter
|
1019
|
-
def digest(self) -> Optional[str]:
|
1020
|
+
def digest(self) -> Optional[builtins.str]:
|
1020
1021
|
"""
|
1021
1022
|
The digest value.
|
1022
1023
|
"""
|
@@ -1032,7 +1033,7 @@ class RegistrationDsRecordDigest(dict):
|
|
1032
1033
|
|
1033
1034
|
@property
|
1034
1035
|
@pulumi.getter
|
1035
|
-
def type(self) -> Optional[str]:
|
1036
|
+
def type(self) -> Optional[builtins.str]:
|
1036
1037
|
"""
|
1037
1038
|
The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
|
1038
1039
|
"""
|
@@ -1042,15 +1043,15 @@ class RegistrationDsRecordDigest(dict):
|
|
1042
1043
|
@pulumi.output_type
|
1043
1044
|
class RegistrationDsRecordDigestPublicKey(dict):
|
1044
1045
|
def __init__(__self__, *,
|
1045
|
-
key: str):
|
1046
|
+
key: builtins.str):
|
1046
1047
|
"""
|
1047
|
-
:param str key: The public key value.
|
1048
|
+
:param builtins.str key: The public key value.
|
1048
1049
|
"""
|
1049
1050
|
pulumi.set(__self__, "key", key)
|
1050
1051
|
|
1051
1052
|
@property
|
1052
1053
|
@pulumi.getter
|
1053
|
-
def key(self) -> str:
|
1054
|
+
def key(self) -> builtins.str:
|
1054
1055
|
"""
|
1055
1056
|
The public key value.
|
1056
1057
|
"""
|
@@ -1060,15 +1061,15 @@ class RegistrationDsRecordDigestPublicKey(dict):
|
|
1060
1061
|
@pulumi.output_type
|
1061
1062
|
class RegistrationDsRecordPublicKey(dict):
|
1062
1063
|
def __init__(__self__, *,
|
1063
|
-
key: str):
|
1064
|
+
key: builtins.str):
|
1064
1065
|
"""
|
1065
|
-
:param str key: The public key value.
|
1066
|
+
:param builtins.str key: The public key value.
|
1066
1067
|
"""
|
1067
1068
|
pulumi.set(__self__, "key", key)
|
1068
1069
|
|
1069
1070
|
@property
|
1070
1071
|
@pulumi.getter
|
1071
|
-
def key(self) -> str:
|
1072
|
+
def key(self) -> builtins.str:
|
1072
1073
|
"""
|
1073
1074
|
The public key value.
|
1074
1075
|
"""
|
@@ -1119,51 +1120,51 @@ class RegistrationOwnerContact(dict):
|
|
1119
1120
|
return super().get(key, default)
|
1120
1121
|
|
1121
1122
|
def __init__(__self__, *,
|
1122
|
-
address_line1: str,
|
1123
|
-
city: str,
|
1124
|
-
company_identification_code: str,
|
1125
|
-
country: str,
|
1126
|
-
email: str,
|
1127
|
-
firstname: str,
|
1128
|
-
lastname: str,
|
1129
|
-
legal_form: str,
|
1130
|
-
phone_number: str,
|
1131
|
-
vat_identification_code: str,
|
1132
|
-
zip: str,
|
1133
|
-
address_line2: Optional[str] = None,
|
1134
|
-
company_name: Optional[str] = None,
|
1135
|
-
email_alt: Optional[str] = None,
|
1123
|
+
address_line1: builtins.str,
|
1124
|
+
city: builtins.str,
|
1125
|
+
company_identification_code: builtins.str,
|
1126
|
+
country: builtins.str,
|
1127
|
+
email: builtins.str,
|
1128
|
+
firstname: builtins.str,
|
1129
|
+
lastname: builtins.str,
|
1130
|
+
legal_form: builtins.str,
|
1131
|
+
phone_number: builtins.str,
|
1132
|
+
vat_identification_code: builtins.str,
|
1133
|
+
zip: builtins.str,
|
1134
|
+
address_line2: Optional[builtins.str] = None,
|
1135
|
+
company_name: Optional[builtins.str] = None,
|
1136
|
+
email_alt: Optional[builtins.str] = None,
|
1136
1137
|
extension_eu: Optional['outputs.RegistrationOwnerContactExtensionEu'] = None,
|
1137
1138
|
extension_fr: Optional['outputs.RegistrationOwnerContactExtensionFr'] = None,
|
1138
|
-
extension_nls: Optional[Sequence[str]] = None,
|
1139
|
-
fax_number: Optional[str] = None,
|
1140
|
-
lang: Optional[str] = None,
|
1141
|
-
resale: Optional[bool] = None,
|
1142
|
-
state: Optional[str] = None,
|
1143
|
-
whois_opt_in: Optional[bool] = None):
|
1144
|
-
"""
|
1145
|
-
:param str address_line1: Primary address line for the contact.
|
1146
|
-
:param str city: City of the contact's address.
|
1147
|
-
:param str company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
|
1148
|
-
:param str country: Country code of the contact's address (ISO format).
|
1149
|
-
:param str email: Primary email address of the contact.
|
1150
|
-
:param str firstname: First name of the contact.
|
1151
|
-
:param str lastname: Last name of the contact.
|
1152
|
-
:param str legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
|
1153
|
-
:param str phone_number: Primary phone number of the contact.
|
1154
|
-
:param str vat_identification_code: VAT identification code of the contact, if applicable.
|
1155
|
-
:param str zip: Postal code of the contact's address.
|
1156
|
-
:param str address_line2: Secondary address line for the contact (optional).
|
1157
|
-
:param str company_name: Name of the company associated with the contact (if applicable).
|
1158
|
-
:param str email_alt: Alternative email address for the contact.
|
1139
|
+
extension_nls: Optional[Sequence[builtins.str]] = None,
|
1140
|
+
fax_number: Optional[builtins.str] = None,
|
1141
|
+
lang: Optional[builtins.str] = None,
|
1142
|
+
resale: Optional[builtins.bool] = None,
|
1143
|
+
state: Optional[builtins.str] = None,
|
1144
|
+
whois_opt_in: Optional[builtins.bool] = None):
|
1145
|
+
"""
|
1146
|
+
:param builtins.str address_line1: Primary address line for the contact.
|
1147
|
+
:param builtins.str city: City of the contact's address.
|
1148
|
+
:param builtins.str company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
|
1149
|
+
:param builtins.str country: Country code of the contact's address (ISO format).
|
1150
|
+
:param builtins.str email: Primary email address of the contact.
|
1151
|
+
:param builtins.str firstname: First name of the contact.
|
1152
|
+
:param builtins.str lastname: Last name of the contact.
|
1153
|
+
:param builtins.str legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
|
1154
|
+
:param builtins.str phone_number: Primary phone number of the contact.
|
1155
|
+
:param builtins.str vat_identification_code: VAT identification code of the contact, if applicable.
|
1156
|
+
:param builtins.str zip: Postal code of the contact's address.
|
1157
|
+
:param builtins.str address_line2: Secondary address line for the contact (optional).
|
1158
|
+
:param builtins.str company_name: Name of the company associated with the contact (if applicable).
|
1159
|
+
:param builtins.str email_alt: Alternative email address for the contact.
|
1159
1160
|
:param 'RegistrationOwnerContactExtensionEuArgs' extension_eu: Details specific to European domain extensions.
|
1160
1161
|
:param 'RegistrationOwnerContactExtensionFrArgs' extension_fr: Details specific to French domain extensions.
|
1161
|
-
:param Sequence[str] extension_nls: Extension details specific to Dutch domain registrations.
|
1162
|
-
:param str fax_number: Fax number for the contact (if available).
|
1163
|
-
:param str lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
|
1164
|
-
:param bool resale: Indicates if the contact is used for resale purposes.
|
1165
|
-
:param str state: State or region of the contact.
|
1166
|
-
:param bool whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
|
1162
|
+
:param Sequence[builtins.str] extension_nls: Extension details specific to Dutch domain registrations.
|
1163
|
+
:param builtins.str fax_number: Fax number for the contact (if available).
|
1164
|
+
:param builtins.str lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
|
1165
|
+
:param builtins.bool resale: Indicates if the contact is used for resale purposes.
|
1166
|
+
:param builtins.str state: State or region of the contact.
|
1167
|
+
:param builtins.bool whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
|
1167
1168
|
"""
|
1168
1169
|
pulumi.set(__self__, "address_line1", address_line1)
|
1169
1170
|
pulumi.set(__self__, "city", city)
|
@@ -1201,7 +1202,7 @@ class RegistrationOwnerContact(dict):
|
|
1201
1202
|
|
1202
1203
|
@property
|
1203
1204
|
@pulumi.getter(name="addressLine1")
|
1204
|
-
def address_line1(self) -> str:
|
1205
|
+
def address_line1(self) -> builtins.str:
|
1205
1206
|
"""
|
1206
1207
|
Primary address line for the contact.
|
1207
1208
|
"""
|
@@ -1209,7 +1210,7 @@ class RegistrationOwnerContact(dict):
|
|
1209
1210
|
|
1210
1211
|
@property
|
1211
1212
|
@pulumi.getter
|
1212
|
-
def city(self) -> str:
|
1213
|
+
def city(self) -> builtins.str:
|
1213
1214
|
"""
|
1214
1215
|
City of the contact's address.
|
1215
1216
|
"""
|
@@ -1217,7 +1218,7 @@ class RegistrationOwnerContact(dict):
|
|
1217
1218
|
|
1218
1219
|
@property
|
1219
1220
|
@pulumi.getter(name="companyIdentificationCode")
|
1220
|
-
def company_identification_code(self) -> str:
|
1221
|
+
def company_identification_code(self) -> builtins.str:
|
1221
1222
|
"""
|
1222
1223
|
Company identification code (e.g., SIREN/SIRET in France) for the contact.
|
1223
1224
|
"""
|
@@ -1225,7 +1226,7 @@ class RegistrationOwnerContact(dict):
|
|
1225
1226
|
|
1226
1227
|
@property
|
1227
1228
|
@pulumi.getter
|
1228
|
-
def country(self) -> str:
|
1229
|
+
def country(self) -> builtins.str:
|
1229
1230
|
"""
|
1230
1231
|
Country code of the contact's address (ISO format).
|
1231
1232
|
"""
|
@@ -1233,7 +1234,7 @@ class RegistrationOwnerContact(dict):
|
|
1233
1234
|
|
1234
1235
|
@property
|
1235
1236
|
@pulumi.getter
|
1236
|
-
def email(self) -> str:
|
1237
|
+
def email(self) -> builtins.str:
|
1237
1238
|
"""
|
1238
1239
|
Primary email address of the contact.
|
1239
1240
|
"""
|
@@ -1241,7 +1242,7 @@ class RegistrationOwnerContact(dict):
|
|
1241
1242
|
|
1242
1243
|
@property
|
1243
1244
|
@pulumi.getter
|
1244
|
-
def firstname(self) -> str:
|
1245
|
+
def firstname(self) -> builtins.str:
|
1245
1246
|
"""
|
1246
1247
|
First name of the contact.
|
1247
1248
|
"""
|
@@ -1249,7 +1250,7 @@ class RegistrationOwnerContact(dict):
|
|
1249
1250
|
|
1250
1251
|
@property
|
1251
1252
|
@pulumi.getter
|
1252
|
-
def lastname(self) -> str:
|
1253
|
+
def lastname(self) -> builtins.str:
|
1253
1254
|
"""
|
1254
1255
|
Last name of the contact.
|
1255
1256
|
"""
|
@@ -1257,7 +1258,7 @@ class RegistrationOwnerContact(dict):
|
|
1257
1258
|
|
1258
1259
|
@property
|
1259
1260
|
@pulumi.getter(name="legalForm")
|
1260
|
-
def legal_form(self) -> str:
|
1261
|
+
def legal_form(self) -> builtins.str:
|
1261
1262
|
"""
|
1262
1263
|
Legal form of the contact (e.g., 'individual' or 'organization').
|
1263
1264
|
"""
|
@@ -1265,7 +1266,7 @@ class RegistrationOwnerContact(dict):
|
|
1265
1266
|
|
1266
1267
|
@property
|
1267
1268
|
@pulumi.getter(name="phoneNumber")
|
1268
|
-
def phone_number(self) -> str:
|
1269
|
+
def phone_number(self) -> builtins.str:
|
1269
1270
|
"""
|
1270
1271
|
Primary phone number of the contact.
|
1271
1272
|
"""
|
@@ -1273,7 +1274,7 @@ class RegistrationOwnerContact(dict):
|
|
1273
1274
|
|
1274
1275
|
@property
|
1275
1276
|
@pulumi.getter(name="vatIdentificationCode")
|
1276
|
-
def vat_identification_code(self) -> str:
|
1277
|
+
def vat_identification_code(self) -> builtins.str:
|
1277
1278
|
"""
|
1278
1279
|
VAT identification code of the contact, if applicable.
|
1279
1280
|
"""
|
@@ -1281,7 +1282,7 @@ class RegistrationOwnerContact(dict):
|
|
1281
1282
|
|
1282
1283
|
@property
|
1283
1284
|
@pulumi.getter
|
1284
|
-
def zip(self) -> str:
|
1285
|
+
def zip(self) -> builtins.str:
|
1285
1286
|
"""
|
1286
1287
|
Postal code of the contact's address.
|
1287
1288
|
"""
|
@@ -1289,7 +1290,7 @@ class RegistrationOwnerContact(dict):
|
|
1289
1290
|
|
1290
1291
|
@property
|
1291
1292
|
@pulumi.getter(name="addressLine2")
|
1292
|
-
def address_line2(self) -> Optional[str]:
|
1293
|
+
def address_line2(self) -> Optional[builtins.str]:
|
1293
1294
|
"""
|
1294
1295
|
Secondary address line for the contact (optional).
|
1295
1296
|
"""
|
@@ -1297,7 +1298,7 @@ class RegistrationOwnerContact(dict):
|
|
1297
1298
|
|
1298
1299
|
@property
|
1299
1300
|
@pulumi.getter(name="companyName")
|
1300
|
-
def company_name(self) -> Optional[str]:
|
1301
|
+
def company_name(self) -> Optional[builtins.str]:
|
1301
1302
|
"""
|
1302
1303
|
Name of the company associated with the contact (if applicable).
|
1303
1304
|
"""
|
@@ -1305,7 +1306,7 @@ class RegistrationOwnerContact(dict):
|
|
1305
1306
|
|
1306
1307
|
@property
|
1307
1308
|
@pulumi.getter(name="emailAlt")
|
1308
|
-
def email_alt(self) -> Optional[str]:
|
1309
|
+
def email_alt(self) -> Optional[builtins.str]:
|
1309
1310
|
"""
|
1310
1311
|
Alternative email address for the contact.
|
1311
1312
|
"""
|
@@ -1329,7 +1330,7 @@ class RegistrationOwnerContact(dict):
|
|
1329
1330
|
|
1330
1331
|
@property
|
1331
1332
|
@pulumi.getter(name="extensionNls")
|
1332
|
-
def extension_nls(self) -> Optional[Sequence[str]]:
|
1333
|
+
def extension_nls(self) -> Optional[Sequence[builtins.str]]:
|
1333
1334
|
"""
|
1334
1335
|
Extension details specific to Dutch domain registrations.
|
1335
1336
|
"""
|
@@ -1337,7 +1338,7 @@ class RegistrationOwnerContact(dict):
|
|
1337
1338
|
|
1338
1339
|
@property
|
1339
1340
|
@pulumi.getter(name="faxNumber")
|
1340
|
-
def fax_number(self) -> Optional[str]:
|
1341
|
+
def fax_number(self) -> Optional[builtins.str]:
|
1341
1342
|
"""
|
1342
1343
|
Fax number for the contact (if available).
|
1343
1344
|
"""
|
@@ -1345,7 +1346,7 @@ class RegistrationOwnerContact(dict):
|
|
1345
1346
|
|
1346
1347
|
@property
|
1347
1348
|
@pulumi.getter
|
1348
|
-
def lang(self) -> Optional[str]:
|
1349
|
+
def lang(self) -> Optional[builtins.str]:
|
1349
1350
|
"""
|
1350
1351
|
Preferred language of the contact (e.g., 'en_US', 'fr_FR').
|
1351
1352
|
"""
|
@@ -1353,7 +1354,7 @@ class RegistrationOwnerContact(dict):
|
|
1353
1354
|
|
1354
1355
|
@property
|
1355
1356
|
@pulumi.getter
|
1356
|
-
def resale(self) -> Optional[bool]:
|
1357
|
+
def resale(self) -> Optional[builtins.bool]:
|
1357
1358
|
"""
|
1358
1359
|
Indicates if the contact is used for resale purposes.
|
1359
1360
|
"""
|
@@ -1361,7 +1362,7 @@ class RegistrationOwnerContact(dict):
|
|
1361
1362
|
|
1362
1363
|
@property
|
1363
1364
|
@pulumi.getter
|
1364
|
-
def state(self) -> Optional[str]:
|
1365
|
+
def state(self) -> Optional[builtins.str]:
|
1365
1366
|
"""
|
1366
1367
|
State or region of the contact.
|
1367
1368
|
"""
|
@@ -1369,7 +1370,7 @@ class RegistrationOwnerContact(dict):
|
|
1369
1370
|
|
1370
1371
|
@property
|
1371
1372
|
@pulumi.getter(name="whoisOptIn")
|
1372
|
-
def whois_opt_in(self) -> Optional[bool]:
|
1373
|
+
def whois_opt_in(self) -> Optional[builtins.bool]:
|
1373
1374
|
"""
|
1374
1375
|
Indicates whether the contact has opted into WHOIS publishing.
|
1375
1376
|
"""
|
@@ -1396,16 +1397,16 @@ class RegistrationOwnerContactExtensionEu(dict):
|
|
1396
1397
|
return super().get(key, default)
|
1397
1398
|
|
1398
1399
|
def __init__(__self__, *,
|
1399
|
-
european_citizenship: Optional[str] = None):
|
1400
|
+
european_citizenship: Optional[builtins.str] = None):
|
1400
1401
|
"""
|
1401
|
-
:param str european_citizenship: Indicates the European citizenship of the contact.
|
1402
|
+
:param builtins.str european_citizenship: Indicates the European citizenship of the contact.
|
1402
1403
|
"""
|
1403
1404
|
if european_citizenship is not None:
|
1404
1405
|
pulumi.set(__self__, "european_citizenship", european_citizenship)
|
1405
1406
|
|
1406
1407
|
@property
|
1407
1408
|
@pulumi.getter(name="europeanCitizenship")
|
1408
|
-
def european_citizenship(self) -> Optional[str]:
|
1409
|
+
def european_citizenship(self) -> Optional[builtins.str]:
|
1409
1410
|
"""
|
1410
1411
|
Indicates the European citizenship of the contact.
|
1411
1412
|
"""
|
@@ -1444,14 +1445,14 @@ class RegistrationOwnerContactExtensionFr(dict):
|
|
1444
1445
|
code_auth_afnic_info: Optional['outputs.RegistrationOwnerContactExtensionFrCodeAuthAfnicInfo'] = None,
|
1445
1446
|
duns_info: Optional['outputs.RegistrationOwnerContactExtensionFrDunsInfo'] = None,
|
1446
1447
|
individual_info: Optional['outputs.RegistrationOwnerContactExtensionFrIndividualInfo'] = None,
|
1447
|
-
mode: Optional[str] = None,
|
1448
|
+
mode: Optional[builtins.str] = None,
|
1448
1449
|
trademark_info: Optional['outputs.RegistrationOwnerContactExtensionFrTrademarkInfo'] = None):
|
1449
1450
|
"""
|
1450
1451
|
:param 'RegistrationOwnerContactExtensionFrAssociationInfoArgs' association_info: Association-specific information for the domain (French extension).
|
1451
1452
|
:param 'RegistrationOwnerContactExtensionFrCodeAuthAfnicInfoArgs' code_auth_afnic_info: AFNIC authorization information for the contact (French extension).
|
1452
1453
|
:param 'RegistrationOwnerContactExtensionFrDunsInfoArgs' duns_info: DUNS information for the domain owner (specific to French domains).
|
1453
1454
|
:param 'RegistrationOwnerContactExtensionFrIndividualInfoArgs' individual_info: Information about the individual registration for French domains.
|
1454
|
-
:param str mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
|
1455
|
+
:param builtins.str mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
|
1455
1456
|
:param 'RegistrationOwnerContactExtensionFrTrademarkInfoArgs' trademark_info: Trademark-related information for the domain (French extension).
|
1456
1457
|
"""
|
1457
1458
|
if association_info is not None:
|
@@ -1501,7 +1502,7 @@ class RegistrationOwnerContactExtensionFr(dict):
|
|
1501
1502
|
|
1502
1503
|
@property
|
1503
1504
|
@pulumi.getter
|
1504
|
-
def mode(self) -> Optional[str]:
|
1505
|
+
def mode(self) -> Optional[builtins.str]:
|
1505
1506
|
"""
|
1506
1507
|
Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
|
1507
1508
|
"""
|
@@ -1538,11 +1539,11 @@ class RegistrationOwnerContactExtensionFrAssociationInfo(dict):
|
|
1538
1539
|
return super().get(key, default)
|
1539
1540
|
|
1540
1541
|
def __init__(__self__, *,
|
1541
|
-
publication_jo: Optional[str] = None,
|
1542
|
-
publication_jo_page: Optional[int] = None):
|
1542
|
+
publication_jo: Optional[builtins.str] = None,
|
1543
|
+
publication_jo_page: Optional[builtins.int] = None):
|
1543
1544
|
"""
|
1544
|
-
:param str publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
|
1545
|
-
:param int publication_jo_page: Page number of the publication in the Official Journal for association information.
|
1545
|
+
:param builtins.str publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
|
1546
|
+
:param builtins.int publication_jo_page: Page number of the publication in the Official Journal for association information.
|
1546
1547
|
"""
|
1547
1548
|
if publication_jo is not None:
|
1548
1549
|
pulumi.set(__self__, "publication_jo", publication_jo)
|
@@ -1551,7 +1552,7 @@ class RegistrationOwnerContactExtensionFrAssociationInfo(dict):
|
|
1551
1552
|
|
1552
1553
|
@property
|
1553
1554
|
@pulumi.getter(name="publicationJo")
|
1554
|
-
def publication_jo(self) -> Optional[str]:
|
1555
|
+
def publication_jo(self) -> Optional[builtins.str]:
|
1555
1556
|
"""
|
1556
1557
|
Publication date in the Official Journal (RFC3339 format) for association information.
|
1557
1558
|
"""
|
@@ -1559,7 +1560,7 @@ class RegistrationOwnerContactExtensionFrAssociationInfo(dict):
|
|
1559
1560
|
|
1560
1561
|
@property
|
1561
1562
|
@pulumi.getter(name="publicationJoPage")
|
1562
|
-
def publication_jo_page(self) -> Optional[int]:
|
1563
|
+
def publication_jo_page(self) -> Optional[builtins.int]:
|
1563
1564
|
"""
|
1564
1565
|
Page number of the publication in the Official Journal for association information.
|
1565
1566
|
"""
|
@@ -1586,16 +1587,16 @@ class RegistrationOwnerContactExtensionFrCodeAuthAfnicInfo(dict):
|
|
1586
1587
|
return super().get(key, default)
|
1587
1588
|
|
1588
1589
|
def __init__(__self__, *,
|
1589
|
-
code_auth_afnic: Optional[str] = None):
|
1590
|
+
code_auth_afnic: Optional[builtins.str] = None):
|
1590
1591
|
"""
|
1591
|
-
:param str code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
|
1592
|
+
:param builtins.str code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
|
1592
1593
|
"""
|
1593
1594
|
if code_auth_afnic is not None:
|
1594
1595
|
pulumi.set(__self__, "code_auth_afnic", code_auth_afnic)
|
1595
1596
|
|
1596
1597
|
@property
|
1597
1598
|
@pulumi.getter(name="codeAuthAfnic")
|
1598
|
-
def code_auth_afnic(self) -> Optional[str]:
|
1599
|
+
def code_auth_afnic(self) -> Optional[builtins.str]:
|
1599
1600
|
"""
|
1600
1601
|
AFNIC authorization code for the contact (specific to French domains).
|
1601
1602
|
"""
|
@@ -1624,11 +1625,11 @@ class RegistrationOwnerContactExtensionFrDunsInfo(dict):
|
|
1624
1625
|
return super().get(key, default)
|
1625
1626
|
|
1626
1627
|
def __init__(__self__, *,
|
1627
|
-
duns_id: Optional[str] = None,
|
1628
|
-
local_id: Optional[str] = None):
|
1628
|
+
duns_id: Optional[builtins.str] = None,
|
1629
|
+
local_id: Optional[builtins.str] = None):
|
1629
1630
|
"""
|
1630
|
-
:param str duns_id: DUNS ID associated with the domain owner (for French domains).
|
1631
|
-
:param str local_id: Local identifier of the domain owner (for French domains).
|
1631
|
+
:param builtins.str duns_id: DUNS ID associated with the domain owner (for French domains).
|
1632
|
+
:param builtins.str local_id: Local identifier of the domain owner (for French domains).
|
1632
1633
|
"""
|
1633
1634
|
if duns_id is not None:
|
1634
1635
|
pulumi.set(__self__, "duns_id", duns_id)
|
@@ -1637,7 +1638,7 @@ class RegistrationOwnerContactExtensionFrDunsInfo(dict):
|
|
1637
1638
|
|
1638
1639
|
@property
|
1639
1640
|
@pulumi.getter(name="dunsId")
|
1640
|
-
def duns_id(self) -> Optional[str]:
|
1641
|
+
def duns_id(self) -> Optional[builtins.str]:
|
1641
1642
|
"""
|
1642
1643
|
DUNS ID associated with the domain owner (for French domains).
|
1643
1644
|
"""
|
@@ -1645,7 +1646,7 @@ class RegistrationOwnerContactExtensionFrDunsInfo(dict):
|
|
1645
1646
|
|
1646
1647
|
@property
|
1647
1648
|
@pulumi.getter(name="localId")
|
1648
|
-
def local_id(self) -> Optional[str]:
|
1649
|
+
def local_id(self) -> Optional[builtins.str]:
|
1649
1650
|
"""
|
1650
1651
|
Local identifier of the domain owner (for French domains).
|
1651
1652
|
"""
|
@@ -1672,16 +1673,16 @@ class RegistrationOwnerContactExtensionFrIndividualInfo(dict):
|
|
1672
1673
|
return super().get(key, default)
|
1673
1674
|
|
1674
1675
|
def __init__(__self__, *,
|
1675
|
-
whois_opt_in: Optional[bool] = None):
|
1676
|
+
whois_opt_in: Optional[builtins.bool] = None):
|
1676
1677
|
"""
|
1677
|
-
:param bool whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
|
1678
|
+
:param builtins.bool whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
|
1678
1679
|
"""
|
1679
1680
|
if whois_opt_in is not None:
|
1680
1681
|
pulumi.set(__self__, "whois_opt_in", whois_opt_in)
|
1681
1682
|
|
1682
1683
|
@property
|
1683
1684
|
@pulumi.getter(name="whoisOptIn")
|
1684
|
-
def whois_opt_in(self) -> Optional[bool]:
|
1685
|
+
def whois_opt_in(self) -> Optional[builtins.bool]:
|
1685
1686
|
"""
|
1686
1687
|
Whether the individual contact has opted into WHOIS publishing.
|
1687
1688
|
"""
|
@@ -1708,16 +1709,16 @@ class RegistrationOwnerContactExtensionFrTrademarkInfo(dict):
|
|
1708
1709
|
return super().get(key, default)
|
1709
1710
|
|
1710
1711
|
def __init__(__self__, *,
|
1711
|
-
trademark_inpi: Optional[str] = None):
|
1712
|
+
trademark_inpi: Optional[builtins.str] = None):
|
1712
1713
|
"""
|
1713
|
-
:param str trademark_inpi: Trademark information from INPI (French extension).
|
1714
|
+
:param builtins.str trademark_inpi: Trademark information from INPI (French extension).
|
1714
1715
|
"""
|
1715
1716
|
if trademark_inpi is not None:
|
1716
1717
|
pulumi.set(__self__, "trademark_inpi", trademark_inpi)
|
1717
1718
|
|
1718
1719
|
@property
|
1719
1720
|
@pulumi.getter(name="trademarkInpi")
|
1720
|
-
def trademark_inpi(self) -> Optional[str]:
|
1721
|
+
def trademark_inpi(self) -> Optional[builtins.str]:
|
1721
1722
|
"""
|
1722
1723
|
Trademark information from INPI (French extension).
|
1723
1724
|
"""
|
@@ -1768,51 +1769,51 @@ class RegistrationTechnicalContact(dict):
|
|
1768
1769
|
return super().get(key, default)
|
1769
1770
|
|
1770
1771
|
def __init__(__self__, *,
|
1771
|
-
address_line1: str,
|
1772
|
-
city: str,
|
1773
|
-
company_identification_code: str,
|
1774
|
-
country: str,
|
1775
|
-
email: str,
|
1776
|
-
firstname: str,
|
1777
|
-
lastname: str,
|
1778
|
-
legal_form: str,
|
1779
|
-
phone_number: str,
|
1780
|
-
vat_identification_code: str,
|
1781
|
-
zip: str,
|
1782
|
-
address_line2: Optional[str] = None,
|
1783
|
-
company_name: Optional[str] = None,
|
1784
|
-
email_alt: Optional[str] = None,
|
1772
|
+
address_line1: builtins.str,
|
1773
|
+
city: builtins.str,
|
1774
|
+
company_identification_code: builtins.str,
|
1775
|
+
country: builtins.str,
|
1776
|
+
email: builtins.str,
|
1777
|
+
firstname: builtins.str,
|
1778
|
+
lastname: builtins.str,
|
1779
|
+
legal_form: builtins.str,
|
1780
|
+
phone_number: builtins.str,
|
1781
|
+
vat_identification_code: builtins.str,
|
1782
|
+
zip: builtins.str,
|
1783
|
+
address_line2: Optional[builtins.str] = None,
|
1784
|
+
company_name: Optional[builtins.str] = None,
|
1785
|
+
email_alt: Optional[builtins.str] = None,
|
1785
1786
|
extension_eu: Optional['outputs.RegistrationTechnicalContactExtensionEu'] = None,
|
1786
1787
|
extension_fr: Optional['outputs.RegistrationTechnicalContactExtensionFr'] = None,
|
1787
|
-
extension_nls: Optional[Sequence[str]] = None,
|
1788
|
-
fax_number: Optional[str] = None,
|
1789
|
-
lang: Optional[str] = None,
|
1790
|
-
resale: Optional[bool] = None,
|
1791
|
-
state: Optional[str] = None,
|
1792
|
-
whois_opt_in: Optional[bool] = None):
|
1793
|
-
"""
|
1794
|
-
:param str address_line1: Primary address line for the contact.
|
1795
|
-
:param str city: City of the contact's address.
|
1796
|
-
:param str company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
|
1797
|
-
:param str country: Country code of the contact's address (ISO format).
|
1798
|
-
:param str email: Primary email address of the contact.
|
1799
|
-
:param str firstname: First name of the contact.
|
1800
|
-
:param str lastname: Last name of the contact.
|
1801
|
-
:param str legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
|
1802
|
-
:param str phone_number: Primary phone number of the contact.
|
1803
|
-
:param str vat_identification_code: VAT identification code of the contact, if applicable.
|
1804
|
-
:param str zip: Postal code of the contact's address.
|
1805
|
-
:param str address_line2: Secondary address line for the contact (optional).
|
1806
|
-
:param str company_name: Name of the company associated with the contact (if applicable).
|
1807
|
-
:param str email_alt: Alternative email address for the contact.
|
1788
|
+
extension_nls: Optional[Sequence[builtins.str]] = None,
|
1789
|
+
fax_number: Optional[builtins.str] = None,
|
1790
|
+
lang: Optional[builtins.str] = None,
|
1791
|
+
resale: Optional[builtins.bool] = None,
|
1792
|
+
state: Optional[builtins.str] = None,
|
1793
|
+
whois_opt_in: Optional[builtins.bool] = None):
|
1794
|
+
"""
|
1795
|
+
:param builtins.str address_line1: Primary address line for the contact.
|
1796
|
+
:param builtins.str city: City of the contact's address.
|
1797
|
+
:param builtins.str company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
|
1798
|
+
:param builtins.str country: Country code of the contact's address (ISO format).
|
1799
|
+
:param builtins.str email: Primary email address of the contact.
|
1800
|
+
:param builtins.str firstname: First name of the contact.
|
1801
|
+
:param builtins.str lastname: Last name of the contact.
|
1802
|
+
:param builtins.str legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
|
1803
|
+
:param builtins.str phone_number: Primary phone number of the contact.
|
1804
|
+
:param builtins.str vat_identification_code: VAT identification code of the contact, if applicable.
|
1805
|
+
:param builtins.str zip: Postal code of the contact's address.
|
1806
|
+
:param builtins.str address_line2: Secondary address line for the contact (optional).
|
1807
|
+
:param builtins.str company_name: Name of the company associated with the contact (if applicable).
|
1808
|
+
:param builtins.str email_alt: Alternative email address for the contact.
|
1808
1809
|
:param 'RegistrationTechnicalContactExtensionEuArgs' extension_eu: Details specific to European domain extensions.
|
1809
1810
|
:param 'RegistrationTechnicalContactExtensionFrArgs' extension_fr: Details specific to French domain extensions.
|
1810
|
-
:param Sequence[str] extension_nls: Extension details specific to Dutch domain registrations.
|
1811
|
-
:param str fax_number: Fax number for the contact (if available).
|
1812
|
-
:param str lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
|
1813
|
-
:param bool resale: Indicates if the contact is used for resale purposes.
|
1814
|
-
:param str state: State or region of the contact.
|
1815
|
-
:param bool whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
|
1811
|
+
:param Sequence[builtins.str] extension_nls: Extension details specific to Dutch domain registrations.
|
1812
|
+
:param builtins.str fax_number: Fax number for the contact (if available).
|
1813
|
+
:param builtins.str lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
|
1814
|
+
:param builtins.bool resale: Indicates if the contact is used for resale purposes.
|
1815
|
+
:param builtins.str state: State or region of the contact.
|
1816
|
+
:param builtins.bool whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
|
1816
1817
|
"""
|
1817
1818
|
pulumi.set(__self__, "address_line1", address_line1)
|
1818
1819
|
pulumi.set(__self__, "city", city)
|
@@ -1850,7 +1851,7 @@ class RegistrationTechnicalContact(dict):
|
|
1850
1851
|
|
1851
1852
|
@property
|
1852
1853
|
@pulumi.getter(name="addressLine1")
|
1853
|
-
def address_line1(self) -> str:
|
1854
|
+
def address_line1(self) -> builtins.str:
|
1854
1855
|
"""
|
1855
1856
|
Primary address line for the contact.
|
1856
1857
|
"""
|
@@ -1858,7 +1859,7 @@ class RegistrationTechnicalContact(dict):
|
|
1858
1859
|
|
1859
1860
|
@property
|
1860
1861
|
@pulumi.getter
|
1861
|
-
def city(self) -> str:
|
1862
|
+
def city(self) -> builtins.str:
|
1862
1863
|
"""
|
1863
1864
|
City of the contact's address.
|
1864
1865
|
"""
|
@@ -1866,7 +1867,7 @@ class RegistrationTechnicalContact(dict):
|
|
1866
1867
|
|
1867
1868
|
@property
|
1868
1869
|
@pulumi.getter(name="companyIdentificationCode")
|
1869
|
-
def company_identification_code(self) -> str:
|
1870
|
+
def company_identification_code(self) -> builtins.str:
|
1870
1871
|
"""
|
1871
1872
|
Company identification code (e.g., SIREN/SIRET in France) for the contact.
|
1872
1873
|
"""
|
@@ -1874,7 +1875,7 @@ class RegistrationTechnicalContact(dict):
|
|
1874
1875
|
|
1875
1876
|
@property
|
1876
1877
|
@pulumi.getter
|
1877
|
-
def country(self) -> str:
|
1878
|
+
def country(self) -> builtins.str:
|
1878
1879
|
"""
|
1879
1880
|
Country code of the contact's address (ISO format).
|
1880
1881
|
"""
|
@@ -1882,7 +1883,7 @@ class RegistrationTechnicalContact(dict):
|
|
1882
1883
|
|
1883
1884
|
@property
|
1884
1885
|
@pulumi.getter
|
1885
|
-
def email(self) -> str:
|
1886
|
+
def email(self) -> builtins.str:
|
1886
1887
|
"""
|
1887
1888
|
Primary email address of the contact.
|
1888
1889
|
"""
|
@@ -1890,7 +1891,7 @@ class RegistrationTechnicalContact(dict):
|
|
1890
1891
|
|
1891
1892
|
@property
|
1892
1893
|
@pulumi.getter
|
1893
|
-
def firstname(self) -> str:
|
1894
|
+
def firstname(self) -> builtins.str:
|
1894
1895
|
"""
|
1895
1896
|
First name of the contact.
|
1896
1897
|
"""
|
@@ -1898,7 +1899,7 @@ class RegistrationTechnicalContact(dict):
|
|
1898
1899
|
|
1899
1900
|
@property
|
1900
1901
|
@pulumi.getter
|
1901
|
-
def lastname(self) -> str:
|
1902
|
+
def lastname(self) -> builtins.str:
|
1902
1903
|
"""
|
1903
1904
|
Last name of the contact.
|
1904
1905
|
"""
|
@@ -1906,7 +1907,7 @@ class RegistrationTechnicalContact(dict):
|
|
1906
1907
|
|
1907
1908
|
@property
|
1908
1909
|
@pulumi.getter(name="legalForm")
|
1909
|
-
def legal_form(self) -> str:
|
1910
|
+
def legal_form(self) -> builtins.str:
|
1910
1911
|
"""
|
1911
1912
|
Legal form of the contact (e.g., 'individual' or 'organization').
|
1912
1913
|
"""
|
@@ -1914,7 +1915,7 @@ class RegistrationTechnicalContact(dict):
|
|
1914
1915
|
|
1915
1916
|
@property
|
1916
1917
|
@pulumi.getter(name="phoneNumber")
|
1917
|
-
def phone_number(self) -> str:
|
1918
|
+
def phone_number(self) -> builtins.str:
|
1918
1919
|
"""
|
1919
1920
|
Primary phone number of the contact.
|
1920
1921
|
"""
|
@@ -1922,7 +1923,7 @@ class RegistrationTechnicalContact(dict):
|
|
1922
1923
|
|
1923
1924
|
@property
|
1924
1925
|
@pulumi.getter(name="vatIdentificationCode")
|
1925
|
-
def vat_identification_code(self) -> str:
|
1926
|
+
def vat_identification_code(self) -> builtins.str:
|
1926
1927
|
"""
|
1927
1928
|
VAT identification code of the contact, if applicable.
|
1928
1929
|
"""
|
@@ -1930,7 +1931,7 @@ class RegistrationTechnicalContact(dict):
|
|
1930
1931
|
|
1931
1932
|
@property
|
1932
1933
|
@pulumi.getter
|
1933
|
-
def zip(self) -> str:
|
1934
|
+
def zip(self) -> builtins.str:
|
1934
1935
|
"""
|
1935
1936
|
Postal code of the contact's address.
|
1936
1937
|
"""
|
@@ -1938,7 +1939,7 @@ class RegistrationTechnicalContact(dict):
|
|
1938
1939
|
|
1939
1940
|
@property
|
1940
1941
|
@pulumi.getter(name="addressLine2")
|
1941
|
-
def address_line2(self) -> Optional[str]:
|
1942
|
+
def address_line2(self) -> Optional[builtins.str]:
|
1942
1943
|
"""
|
1943
1944
|
Secondary address line for the contact (optional).
|
1944
1945
|
"""
|
@@ -1946,7 +1947,7 @@ class RegistrationTechnicalContact(dict):
|
|
1946
1947
|
|
1947
1948
|
@property
|
1948
1949
|
@pulumi.getter(name="companyName")
|
1949
|
-
def company_name(self) -> Optional[str]:
|
1950
|
+
def company_name(self) -> Optional[builtins.str]:
|
1950
1951
|
"""
|
1951
1952
|
Name of the company associated with the contact (if applicable).
|
1952
1953
|
"""
|
@@ -1954,7 +1955,7 @@ class RegistrationTechnicalContact(dict):
|
|
1954
1955
|
|
1955
1956
|
@property
|
1956
1957
|
@pulumi.getter(name="emailAlt")
|
1957
|
-
def email_alt(self) -> Optional[str]:
|
1958
|
+
def email_alt(self) -> Optional[builtins.str]:
|
1958
1959
|
"""
|
1959
1960
|
Alternative email address for the contact.
|
1960
1961
|
"""
|
@@ -1978,7 +1979,7 @@ class RegistrationTechnicalContact(dict):
|
|
1978
1979
|
|
1979
1980
|
@property
|
1980
1981
|
@pulumi.getter(name="extensionNls")
|
1981
|
-
def extension_nls(self) -> Optional[Sequence[str]]:
|
1982
|
+
def extension_nls(self) -> Optional[Sequence[builtins.str]]:
|
1982
1983
|
"""
|
1983
1984
|
Extension details specific to Dutch domain registrations.
|
1984
1985
|
"""
|
@@ -1986,7 +1987,7 @@ class RegistrationTechnicalContact(dict):
|
|
1986
1987
|
|
1987
1988
|
@property
|
1988
1989
|
@pulumi.getter(name="faxNumber")
|
1989
|
-
def fax_number(self) -> Optional[str]:
|
1990
|
+
def fax_number(self) -> Optional[builtins.str]:
|
1990
1991
|
"""
|
1991
1992
|
Fax number for the contact (if available).
|
1992
1993
|
"""
|
@@ -1994,7 +1995,7 @@ class RegistrationTechnicalContact(dict):
|
|
1994
1995
|
|
1995
1996
|
@property
|
1996
1997
|
@pulumi.getter
|
1997
|
-
def lang(self) -> Optional[str]:
|
1998
|
+
def lang(self) -> Optional[builtins.str]:
|
1998
1999
|
"""
|
1999
2000
|
Preferred language of the contact (e.g., 'en_US', 'fr_FR').
|
2000
2001
|
"""
|
@@ -2002,7 +2003,7 @@ class RegistrationTechnicalContact(dict):
|
|
2002
2003
|
|
2003
2004
|
@property
|
2004
2005
|
@pulumi.getter
|
2005
|
-
def resale(self) -> Optional[bool]:
|
2006
|
+
def resale(self) -> Optional[builtins.bool]:
|
2006
2007
|
"""
|
2007
2008
|
Indicates if the contact is used for resale purposes.
|
2008
2009
|
"""
|
@@ -2010,7 +2011,7 @@ class RegistrationTechnicalContact(dict):
|
|
2010
2011
|
|
2011
2012
|
@property
|
2012
2013
|
@pulumi.getter
|
2013
|
-
def state(self) -> Optional[str]:
|
2014
|
+
def state(self) -> Optional[builtins.str]:
|
2014
2015
|
"""
|
2015
2016
|
State or region of the contact.
|
2016
2017
|
"""
|
@@ -2018,7 +2019,7 @@ class RegistrationTechnicalContact(dict):
|
|
2018
2019
|
|
2019
2020
|
@property
|
2020
2021
|
@pulumi.getter(name="whoisOptIn")
|
2021
|
-
def whois_opt_in(self) -> Optional[bool]:
|
2022
|
+
def whois_opt_in(self) -> Optional[builtins.bool]:
|
2022
2023
|
"""
|
2023
2024
|
Indicates whether the contact has opted into WHOIS publishing.
|
2024
2025
|
"""
|
@@ -2045,16 +2046,16 @@ class RegistrationTechnicalContactExtensionEu(dict):
|
|
2045
2046
|
return super().get(key, default)
|
2046
2047
|
|
2047
2048
|
def __init__(__self__, *,
|
2048
|
-
european_citizenship: Optional[str] = None):
|
2049
|
+
european_citizenship: Optional[builtins.str] = None):
|
2049
2050
|
"""
|
2050
|
-
:param str european_citizenship: Indicates the European citizenship of the contact.
|
2051
|
+
:param builtins.str european_citizenship: Indicates the European citizenship of the contact.
|
2051
2052
|
"""
|
2052
2053
|
if european_citizenship is not None:
|
2053
2054
|
pulumi.set(__self__, "european_citizenship", european_citizenship)
|
2054
2055
|
|
2055
2056
|
@property
|
2056
2057
|
@pulumi.getter(name="europeanCitizenship")
|
2057
|
-
def european_citizenship(self) -> Optional[str]:
|
2058
|
+
def european_citizenship(self) -> Optional[builtins.str]:
|
2058
2059
|
"""
|
2059
2060
|
Indicates the European citizenship of the contact.
|
2060
2061
|
"""
|
@@ -2093,14 +2094,14 @@ class RegistrationTechnicalContactExtensionFr(dict):
|
|
2093
2094
|
code_auth_afnic_info: Optional['outputs.RegistrationTechnicalContactExtensionFrCodeAuthAfnicInfo'] = None,
|
2094
2095
|
duns_info: Optional['outputs.RegistrationTechnicalContactExtensionFrDunsInfo'] = None,
|
2095
2096
|
individual_info: Optional['outputs.RegistrationTechnicalContactExtensionFrIndividualInfo'] = None,
|
2096
|
-
mode: Optional[str] = None,
|
2097
|
+
mode: Optional[builtins.str] = None,
|
2097
2098
|
trademark_info: Optional['outputs.RegistrationTechnicalContactExtensionFrTrademarkInfo'] = None):
|
2098
2099
|
"""
|
2099
2100
|
:param 'RegistrationTechnicalContactExtensionFrAssociationInfoArgs' association_info: Association-specific information for the domain (French extension).
|
2100
2101
|
:param 'RegistrationTechnicalContactExtensionFrCodeAuthAfnicInfoArgs' code_auth_afnic_info: AFNIC authorization information for the contact (French extension).
|
2101
2102
|
:param 'RegistrationTechnicalContactExtensionFrDunsInfoArgs' duns_info: DUNS information for the domain owner (specific to French domains).
|
2102
2103
|
:param 'RegistrationTechnicalContactExtensionFrIndividualInfoArgs' individual_info: Information about the individual registration for French domains.
|
2103
|
-
:param str mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
|
2104
|
+
:param builtins.str mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
|
2104
2105
|
:param 'RegistrationTechnicalContactExtensionFrTrademarkInfoArgs' trademark_info: Trademark-related information for the domain (French extension).
|
2105
2106
|
"""
|
2106
2107
|
if association_info is not None:
|
@@ -2150,7 +2151,7 @@ class RegistrationTechnicalContactExtensionFr(dict):
|
|
2150
2151
|
|
2151
2152
|
@property
|
2152
2153
|
@pulumi.getter
|
2153
|
-
def mode(self) -> Optional[str]:
|
2154
|
+
def mode(self) -> Optional[builtins.str]:
|
2154
2155
|
"""
|
2155
2156
|
Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
|
2156
2157
|
"""
|
@@ -2187,11 +2188,11 @@ class RegistrationTechnicalContactExtensionFrAssociationInfo(dict):
|
|
2187
2188
|
return super().get(key, default)
|
2188
2189
|
|
2189
2190
|
def __init__(__self__, *,
|
2190
|
-
publication_jo: Optional[str] = None,
|
2191
|
-
publication_jo_page: Optional[int] = None):
|
2191
|
+
publication_jo: Optional[builtins.str] = None,
|
2192
|
+
publication_jo_page: Optional[builtins.int] = None):
|
2192
2193
|
"""
|
2193
|
-
:param str publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
|
2194
|
-
:param int publication_jo_page: Page number of the publication in the Official Journal for association information.
|
2194
|
+
:param builtins.str publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
|
2195
|
+
:param builtins.int publication_jo_page: Page number of the publication in the Official Journal for association information.
|
2195
2196
|
"""
|
2196
2197
|
if publication_jo is not None:
|
2197
2198
|
pulumi.set(__self__, "publication_jo", publication_jo)
|
@@ -2200,7 +2201,7 @@ class RegistrationTechnicalContactExtensionFrAssociationInfo(dict):
|
|
2200
2201
|
|
2201
2202
|
@property
|
2202
2203
|
@pulumi.getter(name="publicationJo")
|
2203
|
-
def publication_jo(self) -> Optional[str]:
|
2204
|
+
def publication_jo(self) -> Optional[builtins.str]:
|
2204
2205
|
"""
|
2205
2206
|
Publication date in the Official Journal (RFC3339 format) for association information.
|
2206
2207
|
"""
|
@@ -2208,7 +2209,7 @@ class RegistrationTechnicalContactExtensionFrAssociationInfo(dict):
|
|
2208
2209
|
|
2209
2210
|
@property
|
2210
2211
|
@pulumi.getter(name="publicationJoPage")
|
2211
|
-
def publication_jo_page(self) -> Optional[int]:
|
2212
|
+
def publication_jo_page(self) -> Optional[builtins.int]:
|
2212
2213
|
"""
|
2213
2214
|
Page number of the publication in the Official Journal for association information.
|
2214
2215
|
"""
|
@@ -2235,16 +2236,16 @@ class RegistrationTechnicalContactExtensionFrCodeAuthAfnicInfo(dict):
|
|
2235
2236
|
return super().get(key, default)
|
2236
2237
|
|
2237
2238
|
def __init__(__self__, *,
|
2238
|
-
code_auth_afnic: Optional[str] = None):
|
2239
|
+
code_auth_afnic: Optional[builtins.str] = None):
|
2239
2240
|
"""
|
2240
|
-
:param str code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
|
2241
|
+
:param builtins.str code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
|
2241
2242
|
"""
|
2242
2243
|
if code_auth_afnic is not None:
|
2243
2244
|
pulumi.set(__self__, "code_auth_afnic", code_auth_afnic)
|
2244
2245
|
|
2245
2246
|
@property
|
2246
2247
|
@pulumi.getter(name="codeAuthAfnic")
|
2247
|
-
def code_auth_afnic(self) -> Optional[str]:
|
2248
|
+
def code_auth_afnic(self) -> Optional[builtins.str]:
|
2248
2249
|
"""
|
2249
2250
|
AFNIC authorization code for the contact (specific to French domains).
|
2250
2251
|
"""
|
@@ -2273,11 +2274,11 @@ class RegistrationTechnicalContactExtensionFrDunsInfo(dict):
|
|
2273
2274
|
return super().get(key, default)
|
2274
2275
|
|
2275
2276
|
def __init__(__self__, *,
|
2276
|
-
duns_id: Optional[str] = None,
|
2277
|
-
local_id: Optional[str] = None):
|
2277
|
+
duns_id: Optional[builtins.str] = None,
|
2278
|
+
local_id: Optional[builtins.str] = None):
|
2278
2279
|
"""
|
2279
|
-
:param str duns_id: DUNS ID associated with the domain owner (for French domains).
|
2280
|
-
:param str local_id: Local identifier of the domain owner (for French domains).
|
2280
|
+
:param builtins.str duns_id: DUNS ID associated with the domain owner (for French domains).
|
2281
|
+
:param builtins.str local_id: Local identifier of the domain owner (for French domains).
|
2281
2282
|
"""
|
2282
2283
|
if duns_id is not None:
|
2283
2284
|
pulumi.set(__self__, "duns_id", duns_id)
|
@@ -2286,7 +2287,7 @@ class RegistrationTechnicalContactExtensionFrDunsInfo(dict):
|
|
2286
2287
|
|
2287
2288
|
@property
|
2288
2289
|
@pulumi.getter(name="dunsId")
|
2289
|
-
def duns_id(self) -> Optional[str]:
|
2290
|
+
def duns_id(self) -> Optional[builtins.str]:
|
2290
2291
|
"""
|
2291
2292
|
DUNS ID associated with the domain owner (for French domains).
|
2292
2293
|
"""
|
@@ -2294,7 +2295,7 @@ class RegistrationTechnicalContactExtensionFrDunsInfo(dict):
|
|
2294
2295
|
|
2295
2296
|
@property
|
2296
2297
|
@pulumi.getter(name="localId")
|
2297
|
-
def local_id(self) -> Optional[str]:
|
2298
|
+
def local_id(self) -> Optional[builtins.str]:
|
2298
2299
|
"""
|
2299
2300
|
Local identifier of the domain owner (for French domains).
|
2300
2301
|
"""
|
@@ -2321,16 +2322,16 @@ class RegistrationTechnicalContactExtensionFrIndividualInfo(dict):
|
|
2321
2322
|
return super().get(key, default)
|
2322
2323
|
|
2323
2324
|
def __init__(__self__, *,
|
2324
|
-
whois_opt_in: Optional[bool] = None):
|
2325
|
+
whois_opt_in: Optional[builtins.bool] = None):
|
2325
2326
|
"""
|
2326
|
-
:param bool whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
|
2327
|
+
:param builtins.bool whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
|
2327
2328
|
"""
|
2328
2329
|
if whois_opt_in is not None:
|
2329
2330
|
pulumi.set(__self__, "whois_opt_in", whois_opt_in)
|
2330
2331
|
|
2331
2332
|
@property
|
2332
2333
|
@pulumi.getter(name="whoisOptIn")
|
2333
|
-
def whois_opt_in(self) -> Optional[bool]:
|
2334
|
+
def whois_opt_in(self) -> Optional[builtins.bool]:
|
2334
2335
|
"""
|
2335
2336
|
Whether the individual contact has opted into WHOIS publishing.
|
2336
2337
|
"""
|
@@ -2357,16 +2358,16 @@ class RegistrationTechnicalContactExtensionFrTrademarkInfo(dict):
|
|
2357
2358
|
return super().get(key, default)
|
2358
2359
|
|
2359
2360
|
def __init__(__self__, *,
|
2360
|
-
trademark_inpi: Optional[str] = None):
|
2361
|
+
trademark_inpi: Optional[builtins.str] = None):
|
2361
2362
|
"""
|
2362
|
-
:param str trademark_inpi: Trademark information from INPI (French extension).
|
2363
|
+
:param builtins.str trademark_inpi: Trademark information from INPI (French extension).
|
2363
2364
|
"""
|
2364
2365
|
if trademark_inpi is not None:
|
2365
2366
|
pulumi.set(__self__, "trademark_inpi", trademark_inpi)
|
2366
2367
|
|
2367
2368
|
@property
|
2368
2369
|
@pulumi.getter(name="trademarkInpi")
|
2369
|
-
def trademark_inpi(self) -> Optional[str]:
|
2370
|
+
def trademark_inpi(self) -> Optional[builtins.str]:
|
2370
2371
|
"""
|
2371
2372
|
Trademark information from INPI (French extension).
|
2372
2373
|
"""
|
@@ -2394,13 +2395,13 @@ class GetRecordGeoIpResult(dict):
|
|
2394
2395
|
@pulumi.output_type
|
2395
2396
|
class GetRecordGeoIpMatchResult(dict):
|
2396
2397
|
def __init__(__self__, *,
|
2397
|
-
continents: Sequence[str],
|
2398
|
-
countries: Sequence[str],
|
2399
|
-
data: str):
|
2398
|
+
continents: Sequence[builtins.str],
|
2399
|
+
countries: Sequence[builtins.str],
|
2400
|
+
data: builtins.str):
|
2400
2401
|
"""
|
2401
|
-
:param Sequence[str] continents: List of continents (eg: EU for Europe, NA for North America, AS for Asia...). List of all continents code: https://api.scaleway.com/domain-private/v2beta1/continents
|
2402
|
-
:param Sequence[str] countries: List of countries (eg: FR for France, US for the United States, GB for Great Britain...). List of all countries code: https://api.scaleway.com/domain-private/v2beta1/countries
|
2403
|
-
:param str data: The content of the record (e.g., an IPv4 address for an `A` record or a string for a `TXT` record). Cannot be used with `record_id`.
|
2402
|
+
:param Sequence[builtins.str] continents: List of continents (eg: EU for Europe, NA for North America, AS for Asia...). List of all continents code: https://api.scaleway.com/domain-private/v2beta1/continents
|
2403
|
+
:param Sequence[builtins.str] countries: List of countries (eg: FR for France, US for the United States, GB for Great Britain...). List of all countries code: https://api.scaleway.com/domain-private/v2beta1/countries
|
2404
|
+
:param builtins.str data: The content of the record (e.g., an IPv4 address for an `A` record or a string for a `TXT` record). Cannot be used with `record_id`.
|
2404
2405
|
"""
|
2405
2406
|
pulumi.set(__self__, "continents", continents)
|
2406
2407
|
pulumi.set(__self__, "countries", countries)
|
@@ -2408,7 +2409,7 @@ class GetRecordGeoIpMatchResult(dict):
|
|
2408
2409
|
|
2409
2410
|
@property
|
2410
2411
|
@pulumi.getter
|
2411
|
-
def continents(self) -> Sequence[str]:
|
2412
|
+
def continents(self) -> Sequence[builtins.str]:
|
2412
2413
|
"""
|
2413
2414
|
List of continents (eg: EU for Europe, NA for North America, AS for Asia...). List of all continents code: https://api.scaleway.com/domain-private/v2beta1/continents
|
2414
2415
|
"""
|
@@ -2416,7 +2417,7 @@ class GetRecordGeoIpMatchResult(dict):
|
|
2416
2417
|
|
2417
2418
|
@property
|
2418
2419
|
@pulumi.getter
|
2419
|
-
def countries(self) -> Sequence[str]:
|
2420
|
+
def countries(self) -> Sequence[builtins.str]:
|
2420
2421
|
"""
|
2421
2422
|
List of countries (eg: FR for France, US for the United States, GB for Great Britain...). List of all countries code: https://api.scaleway.com/domain-private/v2beta1/countries
|
2422
2423
|
"""
|
@@ -2424,7 +2425,7 @@ class GetRecordGeoIpMatchResult(dict):
|
|
2424
2425
|
|
2425
2426
|
@property
|
2426
2427
|
@pulumi.getter
|
2427
|
-
def data(self) -> str:
|
2428
|
+
def data(self) -> builtins.str:
|
2428
2429
|
"""
|
2429
2430
|
The content of the record (e.g., an IPv4 address for an `A` record or a string for a `TXT` record). Cannot be used with `record_id`.
|
2430
2431
|
"""
|
@@ -2434,17 +2435,17 @@ class GetRecordGeoIpMatchResult(dict):
|
|
2434
2435
|
@pulumi.output_type
|
2435
2436
|
class GetRecordHttpServiceResult(dict):
|
2436
2437
|
def __init__(__self__, *,
|
2437
|
-
ips: Sequence[str],
|
2438
|
-
must_contain: str,
|
2439
|
-
strategy: str,
|
2440
|
-
url: str,
|
2441
|
-
user_agent: str):
|
2442
|
-
"""
|
2443
|
-
:param Sequence[str] ips: IPs to check
|
2444
|
-
:param str must_contain: Text to search
|
2445
|
-
:param str strategy: Strategy to return an IP from the IPs list
|
2446
|
-
:param str url: URL to match the must_contain text to validate an IP
|
2447
|
-
:param str user_agent: User-agent used when checking the URL
|
2438
|
+
ips: Sequence[builtins.str],
|
2439
|
+
must_contain: builtins.str,
|
2440
|
+
strategy: builtins.str,
|
2441
|
+
url: builtins.str,
|
2442
|
+
user_agent: builtins.str):
|
2443
|
+
"""
|
2444
|
+
:param Sequence[builtins.str] ips: IPs to check
|
2445
|
+
:param builtins.str must_contain: Text to search
|
2446
|
+
:param builtins.str strategy: Strategy to return an IP from the IPs list
|
2447
|
+
:param builtins.str url: URL to match the must_contain text to validate an IP
|
2448
|
+
:param builtins.str user_agent: User-agent used when checking the URL
|
2448
2449
|
"""
|
2449
2450
|
pulumi.set(__self__, "ips", ips)
|
2450
2451
|
pulumi.set(__self__, "must_contain", must_contain)
|
@@ -2454,7 +2455,7 @@ class GetRecordHttpServiceResult(dict):
|
|
2454
2455
|
|
2455
2456
|
@property
|
2456
2457
|
@pulumi.getter
|
2457
|
-
def ips(self) -> Sequence[str]:
|
2458
|
+
def ips(self) -> Sequence[builtins.str]:
|
2458
2459
|
"""
|
2459
2460
|
IPs to check
|
2460
2461
|
"""
|
@@ -2462,7 +2463,7 @@ class GetRecordHttpServiceResult(dict):
|
|
2462
2463
|
|
2463
2464
|
@property
|
2464
2465
|
@pulumi.getter(name="mustContain")
|
2465
|
-
def must_contain(self) -> str:
|
2466
|
+
def must_contain(self) -> builtins.str:
|
2466
2467
|
"""
|
2467
2468
|
Text to search
|
2468
2469
|
"""
|
@@ -2470,7 +2471,7 @@ class GetRecordHttpServiceResult(dict):
|
|
2470
2471
|
|
2471
2472
|
@property
|
2472
2473
|
@pulumi.getter
|
2473
|
-
def strategy(self) -> str:
|
2474
|
+
def strategy(self) -> builtins.str:
|
2474
2475
|
"""
|
2475
2476
|
Strategy to return an IP from the IPs list
|
2476
2477
|
"""
|
@@ -2478,7 +2479,7 @@ class GetRecordHttpServiceResult(dict):
|
|
2478
2479
|
|
2479
2480
|
@property
|
2480
2481
|
@pulumi.getter
|
2481
|
-
def url(self) -> str:
|
2482
|
+
def url(self) -> builtins.str:
|
2482
2483
|
"""
|
2483
2484
|
URL to match the must_contain text to validate an IP
|
2484
2485
|
"""
|
@@ -2486,7 +2487,7 @@ class GetRecordHttpServiceResult(dict):
|
|
2486
2487
|
|
2487
2488
|
@property
|
2488
2489
|
@pulumi.getter(name="userAgent")
|
2489
|
-
def user_agent(self) -> str:
|
2490
|
+
def user_agent(self) -> builtins.str:
|
2490
2491
|
"""
|
2491
2492
|
User-agent used when checking the URL
|
2492
2493
|
"""
|
@@ -2496,18 +2497,18 @@ class GetRecordHttpServiceResult(dict):
|
|
2496
2497
|
@pulumi.output_type
|
2497
2498
|
class GetRecordViewResult(dict):
|
2498
2499
|
def __init__(__self__, *,
|
2499
|
-
data: str,
|
2500
|
-
subnet: str):
|
2500
|
+
data: builtins.str,
|
2501
|
+
subnet: builtins.str):
|
2501
2502
|
"""
|
2502
|
-
:param str data: The content of the record (e.g., an IPv4 address for an `A` record or a string for a `TXT` record). Cannot be used with `record_id`.
|
2503
|
-
:param str subnet: The subnet of the view
|
2503
|
+
:param builtins.str data: The content of the record (e.g., an IPv4 address for an `A` record or a string for a `TXT` record). Cannot be used with `record_id`.
|
2504
|
+
:param builtins.str subnet: The subnet of the view
|
2504
2505
|
"""
|
2505
2506
|
pulumi.set(__self__, "data", data)
|
2506
2507
|
pulumi.set(__self__, "subnet", subnet)
|
2507
2508
|
|
2508
2509
|
@property
|
2509
2510
|
@pulumi.getter
|
2510
|
-
def data(self) -> str:
|
2511
|
+
def data(self) -> builtins.str:
|
2511
2512
|
"""
|
2512
2513
|
The content of the record (e.g., an IPv4 address for an `A` record or a string for a `TXT` record). Cannot be used with `record_id`.
|
2513
2514
|
"""
|
@@ -2515,7 +2516,7 @@ class GetRecordViewResult(dict):
|
|
2515
2516
|
|
2516
2517
|
@property
|
2517
2518
|
@pulumi.getter
|
2518
|
-
def subnet(self) -> str:
|
2519
|
+
def subnet(self) -> builtins.str:
|
2519
2520
|
"""
|
2520
2521
|
The subnet of the view
|
2521
2522
|
"""
|
@@ -2525,18 +2526,18 @@ class GetRecordViewResult(dict):
|
|
2525
2526
|
@pulumi.output_type
|
2526
2527
|
class GetRecordWeightedResult(dict):
|
2527
2528
|
def __init__(__self__, *,
|
2528
|
-
ip: str,
|
2529
|
-
weight: int):
|
2529
|
+
ip: builtins.str,
|
2530
|
+
weight: builtins.int):
|
2530
2531
|
"""
|
2531
|
-
:param str ip: The weighted IP
|
2532
|
-
:param int weight: The weight of the IP
|
2532
|
+
:param builtins.str ip: The weighted IP
|
2533
|
+
:param builtins.int weight: The weight of the IP
|
2533
2534
|
"""
|
2534
2535
|
pulumi.set(__self__, "ip", ip)
|
2535
2536
|
pulumi.set(__self__, "weight", weight)
|
2536
2537
|
|
2537
2538
|
@property
|
2538
2539
|
@pulumi.getter
|
2539
|
-
def ip(self) -> str:
|
2540
|
+
def ip(self) -> builtins.str:
|
2540
2541
|
"""
|
2541
2542
|
The weighted IP
|
2542
2543
|
"""
|
@@ -2544,7 +2545,7 @@ class GetRecordWeightedResult(dict):
|
|
2544
2545
|
|
2545
2546
|
@property
|
2546
2547
|
@pulumi.getter
|
2547
|
-
def weight(self) -> int:
|
2548
|
+
def weight(self) -> builtins.int:
|
2548
2549
|
"""
|
2549
2550
|
The weight of the IP
|
2550
2551
|
"""
|