pulumiverse-scaleway 1.25.0a1742464679__py3-none-any.whl → 1.25.0a1742668904__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 +929 -0
- pulumiverse_scaleway/account/__init__.py +12 -0
- pulumiverse_scaleway/account/get_availability_zones.py +139 -0
- pulumiverse_scaleway/account/get_project.py +170 -0
- pulumiverse_scaleway/account/get_ssh_key.py +205 -0
- pulumiverse_scaleway/account/project.py +318 -0
- pulumiverse_scaleway/account/ssh_key.py +456 -0
- pulumiverse_scaleway/account_project.py +6 -0
- pulumiverse_scaleway/account_ssh_key.py +12 -6
- pulumiverse_scaleway/apple_silicon_server.py +8 -2
- pulumiverse_scaleway/applesilicon/__init__.py +10 -0
- pulumiverse_scaleway/applesilicon/_inputs.py +154 -0
- pulumiverse_scaleway/applesilicon/outputs.py +119 -0
- pulumiverse_scaleway/applesilicon/server.py +690 -0
- pulumiverse_scaleway/baremetal_server.py +64 -58
- pulumiverse_scaleway/billing/__init__.py +10 -0
- pulumiverse_scaleway/billing/get_consumptions.py +134 -0
- pulumiverse_scaleway/billing/get_invoices.py +154 -0
- pulumiverse_scaleway/billing/outputs.py +288 -0
- pulumiverse_scaleway/block/__init__.py +11 -0
- pulumiverse_scaleway/block/get_snapshot.py +174 -0
- pulumiverse_scaleway/block/get_volume.py +199 -0
- pulumiverse_scaleway/block/snapshot.py +403 -0
- pulumiverse_scaleway/block/volume.py +576 -0
- pulumiverse_scaleway/block_snapshot.py +12 -6
- pulumiverse_scaleway/block_volume.py +16 -10
- pulumiverse_scaleway/cockpit.py +10 -4
- pulumiverse_scaleway/cockpit_alert_manager.py +12 -6
- pulumiverse_scaleway/cockpit_grafana_user.py +12 -6
- pulumiverse_scaleway/cockpit_source.py +12 -6
- pulumiverse_scaleway/cockpit_token.py +16 -10
- pulumiverse_scaleway/container.py +16 -10
- pulumiverse_scaleway/container_cron.py +14 -8
- pulumiverse_scaleway/container_domain.py +24 -18
- pulumiverse_scaleway/container_namespace.py +10 -4
- pulumiverse_scaleway/container_token.py +32 -26
- pulumiverse_scaleway/container_trigger.py +12 -6
- pulumiverse_scaleway/containers/__init__.py +17 -0
- pulumiverse_scaleway/containers/_inputs.py +389 -0
- pulumiverse_scaleway/containers/container.py +1635 -0
- pulumiverse_scaleway/containers/cron.py +460 -0
- pulumiverse_scaleway/containers/domain.py +408 -0
- pulumiverse_scaleway/containers/get_container.py +562 -0
- pulumiverse_scaleway/containers/get_namespace.py +283 -0
- pulumiverse_scaleway/containers/namespace.py +638 -0
- pulumiverse_scaleway/containers/outputs.py +412 -0
- pulumiverse_scaleway/containers/token.py +454 -0
- pulumiverse_scaleway/containers/trigger.py +482 -0
- pulumiverse_scaleway/database.py +10 -4
- pulumiverse_scaleway/database_acl.py +10 -4
- pulumiverse_scaleway/database_backup.py +14 -8
- pulumiverse_scaleway/database_instance.py +24 -18
- pulumiverse_scaleway/database_privilege.py +16 -10
- pulumiverse_scaleway/database_read_replica.py +22 -16
- pulumiverse_scaleway/database_user.py +10 -4
- pulumiverse_scaleway/databases/__init__.py +23 -0
- pulumiverse_scaleway/databases/_inputs.py +822 -0
- pulumiverse_scaleway/databases/acl.py +334 -0
- pulumiverse_scaleway/databases/database.py +409 -0
- pulumiverse_scaleway/databases/database_backup.py +576 -0
- pulumiverse_scaleway/databases/get_acl.py +143 -0
- pulumiverse_scaleway/databases/get_database.py +187 -0
- pulumiverse_scaleway/databases/get_database_backup.py +253 -0
- pulumiverse_scaleway/databases/get_instance.py +415 -0
- pulumiverse_scaleway/databases/get_privilege.py +181 -0
- pulumiverse_scaleway/databases/instance.py +1696 -0
- pulumiverse_scaleway/databases/outputs.py +866 -0
- pulumiverse_scaleway/databases/privilege.py +424 -0
- pulumiverse_scaleway/databases/read_replica.py +530 -0
- pulumiverse_scaleway/databases/serverless_database.py +434 -0
- pulumiverse_scaleway/databases/snapshot.py +610 -0
- pulumiverse_scaleway/databases/user.py +448 -0
- pulumiverse_scaleway/domain/__init__.py +13 -0
- pulumiverse_scaleway/domain/_inputs.py +341 -0
- pulumiverse_scaleway/domain/get_record.py +340 -0
- pulumiverse_scaleway/domain/get_zone.py +201 -0
- pulumiverse_scaleway/domain/outputs.py +408 -0
- pulumiverse_scaleway/domain/record.py +1118 -0
- pulumiverse_scaleway/domain/zone.py +432 -0
- pulumiverse_scaleway/domain_record.py +36 -30
- pulumiverse_scaleway/domain_zone.py +6 -0
- pulumiverse_scaleway/elasticmetal/__init__.py +18 -0
- pulumiverse_scaleway/elasticmetal/_inputs.py +509 -0
- pulumiverse_scaleway/elasticmetal/get_ip.py +247 -0
- pulumiverse_scaleway/elasticmetal/get_ips.py +240 -0
- pulumiverse_scaleway/elasticmetal/get_offer.py +245 -0
- pulumiverse_scaleway/elasticmetal/get_option.py +168 -0
- pulumiverse_scaleway/elasticmetal/get_os.py +174 -0
- pulumiverse_scaleway/elasticmetal/get_server.py +422 -0
- pulumiverse_scaleway/elasticmetal/ip.py +704 -0
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +512 -0
- pulumiverse_scaleway/elasticmetal/outputs.py +974 -0
- pulumiverse_scaleway/elasticmetal/server.py +1591 -0
- pulumiverse_scaleway/flexible_ip.py +22 -16
- pulumiverse_scaleway/flexible_ip_mac_address.py +22 -16
- pulumiverse_scaleway/function.py +6 -0
- pulumiverse_scaleway/function_cron.py +16 -10
- pulumiverse_scaleway/function_domain.py +16 -10
- pulumiverse_scaleway/function_namespace.py +10 -4
- pulumiverse_scaleway/function_token.py +32 -26
- pulumiverse_scaleway/function_trigger.py +12 -6
- pulumiverse_scaleway/functions/__init__.py +17 -0
- pulumiverse_scaleway/functions/_inputs.py +211 -0
- pulumiverse_scaleway/functions/cron.py +464 -0
- pulumiverse_scaleway/functions/domain.py +372 -0
- pulumiverse_scaleway/functions/function.py +1105 -0
- pulumiverse_scaleway/functions/get_function.py +365 -0
- pulumiverse_scaleway/functions/get_namespace.py +238 -0
- pulumiverse_scaleway/functions/namespace.py +582 -0
- pulumiverse_scaleway/functions/outputs.py +168 -0
- pulumiverse_scaleway/functions/token.py +462 -0
- pulumiverse_scaleway/functions/trigger.py +482 -0
- pulumiverse_scaleway/get_account_project.py +6 -2
- pulumiverse_scaleway/get_account_ssh_key.py +6 -2
- pulumiverse_scaleway/get_availability_zones.py +8 -4
- pulumiverse_scaleway/get_baremetal_offer.py +4 -0
- pulumiverse_scaleway/get_baremetal_option.py +8 -4
- pulumiverse_scaleway/get_baremetal_os.py +8 -4
- pulumiverse_scaleway/get_baremetal_server.py +8 -4
- pulumiverse_scaleway/get_billing_consumptions.py +4 -0
- pulumiverse_scaleway/get_billing_invoices.py +4 -0
- pulumiverse_scaleway/get_block_snapshot.py +6 -2
- pulumiverse_scaleway/get_block_volume.py +6 -2
- pulumiverse_scaleway/get_cockpit.py +12 -8
- pulumiverse_scaleway/get_cockpit_plan.py +10 -6
- pulumiverse_scaleway/get_cockpit_source.py +8 -4
- pulumiverse_scaleway/get_container.py +16 -12
- pulumiverse_scaleway/get_container_namespace.py +10 -6
- pulumiverse_scaleway/get_database.py +6 -2
- pulumiverse_scaleway/get_database_acl.py +6 -2
- pulumiverse_scaleway/get_database_backup.py +10 -6
- pulumiverse_scaleway/get_database_instance.py +4 -0
- pulumiverse_scaleway/get_database_privilege.py +6 -2
- pulumiverse_scaleway/get_domain_record.py +10 -6
- pulumiverse_scaleway/get_domain_zone.py +4 -0
- pulumiverse_scaleway/get_flexible_ip.py +4 -0
- pulumiverse_scaleway/get_flexible_ips.py +16 -12
- pulumiverse_scaleway/get_function.py +6 -2
- pulumiverse_scaleway/get_function_namespace.py +6 -2
- pulumiverse_scaleway/get_iam_api_key.py +6 -2
- pulumiverse_scaleway/get_iam_application.py +8 -4
- pulumiverse_scaleway/get_iam_group.py +8 -4
- pulumiverse_scaleway/get_iam_ssh_key.py +4 -0
- pulumiverse_scaleway/get_iam_user.py +8 -4
- pulumiverse_scaleway/get_instance_image.py +4 -0
- pulumiverse_scaleway/get_instance_ip.py +4 -0
- pulumiverse_scaleway/get_instance_placement_group.py +4 -0
- pulumiverse_scaleway/get_instance_private_nic.py +10 -6
- pulumiverse_scaleway/get_instance_security_group.py +4 -0
- pulumiverse_scaleway/get_instance_server.py +4 -0
- pulumiverse_scaleway/get_instance_servers.py +4 -0
- pulumiverse_scaleway/get_instance_snapshot.py +8 -4
- pulumiverse_scaleway/get_instance_volume.py +4 -0
- pulumiverse_scaleway/get_iot_device.py +4 -0
- pulumiverse_scaleway/get_iot_hub.py +4 -0
- pulumiverse_scaleway/get_ipam_ip.py +18 -14
- pulumiverse_scaleway/get_ipam_ips.py +14 -10
- pulumiverse_scaleway/get_k8s_version.py +8 -4
- pulumiverse_scaleway/get_kubernetes_cluster.py +4 -0
- pulumiverse_scaleway/get_kubernetes_node_pool.py +4 -0
- pulumiverse_scaleway/get_lb_acls.py +8 -4
- pulumiverse_scaleway/get_lb_backend.py +18 -14
- pulumiverse_scaleway/get_lb_backends.py +8 -4
- pulumiverse_scaleway/get_lb_frontend.py +16 -12
- pulumiverse_scaleway/get_lb_frontends.py +8 -4
- pulumiverse_scaleway/get_lb_ips.py +4 -0
- pulumiverse_scaleway/get_lb_route.py +16 -12
- pulumiverse_scaleway/get_lb_routes.py +8 -4
- pulumiverse_scaleway/get_lbs.py +4 -0
- pulumiverse_scaleway/get_loadbalancer.py +8 -4
- pulumiverse_scaleway/get_loadbalancer_certificate.py +4 -0
- pulumiverse_scaleway/get_loadbalancer_ip.py +4 -0
- pulumiverse_scaleway/get_mnq_sns.py +8 -4
- pulumiverse_scaleway/get_mnq_sqs.py +8 -4
- pulumiverse_scaleway/get_mongo_db_instance.py +4 -0
- pulumiverse_scaleway/get_object_bucket.py +12 -8
- pulumiverse_scaleway/get_object_bucket_policy.py +8 -4
- pulumiverse_scaleway/get_redis_cluster.py +4 -0
- pulumiverse_scaleway/get_registry_image.py +4 -0
- pulumiverse_scaleway/get_registry_image_tag.py +4 -0
- pulumiverse_scaleway/get_registry_namespace.py +4 -0
- pulumiverse_scaleway/get_secret.py +12 -8
- pulumiverse_scaleway/get_secret_version.py +14 -10
- pulumiverse_scaleway/get_tem_domain.py +4 -0
- pulumiverse_scaleway/get_vpc.py +10 -6
- pulumiverse_scaleway/get_vpc_gateway_network.py +10 -6
- pulumiverse_scaleway/get_vpc_private_network.py +10 -6
- pulumiverse_scaleway/get_vpc_public_gateway.py +10 -6
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +8 -4
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +70 -66
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +8 -4
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +26 -22
- pulumiverse_scaleway/get_vpc_routes.py +4 -0
- pulumiverse_scaleway/get_vpcs.py +4 -0
- pulumiverse_scaleway/get_web_host_offer.py +8 -4
- pulumiverse_scaleway/get_webhosting.py +8 -4
- pulumiverse_scaleway/hosting/__init__.py +12 -0
- pulumiverse_scaleway/hosting/_inputs.py +295 -0
- pulumiverse_scaleway/hosting/get_hosting.py +354 -0
- pulumiverse_scaleway/hosting/get_offer.py +229 -0
- pulumiverse_scaleway/hosting/hosting.py +870 -0
- pulumiverse_scaleway/hosting/outputs.py +626 -0
- pulumiverse_scaleway/iam/__init__.py +21 -0
- pulumiverse_scaleway/iam/_inputs.py +138 -0
- pulumiverse_scaleway/iam/api_key.py +622 -0
- pulumiverse_scaleway/iam/application.py +419 -0
- pulumiverse_scaleway/iam/get_api_key.py +210 -0
- pulumiverse_scaleway/iam/get_application.py +210 -0
- pulumiverse_scaleway/iam/get_group.py +236 -0
- pulumiverse_scaleway/iam/get_ssh_key.py +212 -0
- pulumiverse_scaleway/iam/get_user.py +177 -0
- pulumiverse_scaleway/iam/group.py +568 -0
- pulumiverse_scaleway/iam/group_membership.py +325 -0
- pulumiverse_scaleway/iam/outputs.py +111 -0
- pulumiverse_scaleway/iam/policy.py +775 -0
- pulumiverse_scaleway/iam/ssh_key.py +457 -0
- pulumiverse_scaleway/iam/user.py +515 -0
- pulumiverse_scaleway/iam_api_key.py +16 -10
- pulumiverse_scaleway/iam_application.py +8 -2
- pulumiverse_scaleway/iam_group.py +12 -6
- pulumiverse_scaleway/iam_group_membership.py +12 -6
- pulumiverse_scaleway/iam_policy.py +18 -12
- pulumiverse_scaleway/iam_ssh_key.py +8 -2
- pulumiverse_scaleway/iam_user.py +8 -2
- pulumiverse_scaleway/inference/__init__.py +10 -0
- pulumiverse_scaleway/inference/_inputs.py +209 -0
- pulumiverse_scaleway/inference/deployment.py +824 -0
- pulumiverse_scaleway/inference/outputs.py +169 -0
- pulumiverse_scaleway/inference_deployment.py +8 -2
- pulumiverse_scaleway/instance/__init__.py +29 -0
- pulumiverse_scaleway/instance/_inputs.py +1237 -0
- pulumiverse_scaleway/instance/get_image.py +305 -0
- pulumiverse_scaleway/instance/get_ip.py +204 -0
- pulumiverse_scaleway/instance/get_placement_group.py +212 -0
- pulumiverse_scaleway/instance/get_private_nic.py +226 -0
- pulumiverse_scaleway/instance/get_security_group.py +268 -0
- pulumiverse_scaleway/instance/get_server.py +488 -0
- pulumiverse_scaleway/instance/get_servers.py +187 -0
- pulumiverse_scaleway/instance/get_snapshot.py +248 -0
- pulumiverse_scaleway/instance/get_volume.py +226 -0
- pulumiverse_scaleway/instance/image.py +752 -0
- pulumiverse_scaleway/instance/ip.py +471 -0
- pulumiverse_scaleway/instance/ip_reverse_dns.py +310 -0
- pulumiverse_scaleway/instance/outputs.py +1533 -0
- pulumiverse_scaleway/instance/placement_group.py +481 -0
- pulumiverse_scaleway/instance/private_nic.py +557 -0
- pulumiverse_scaleway/instance/security_group.py +722 -0
- pulumiverse_scaleway/instance/security_group_rules.py +441 -0
- pulumiverse_scaleway/instance/server.py +1938 -0
- pulumiverse_scaleway/instance/snapshot.py +671 -0
- pulumiverse_scaleway/instance/user_data.py +437 -0
- pulumiverse_scaleway/instance/volume.py +584 -0
- pulumiverse_scaleway/instance_image.py +18 -12
- pulumiverse_scaleway/instance_ip.py +8 -2
- pulumiverse_scaleway/instance_ip_reverse_dns.py +12 -6
- pulumiverse_scaleway/instance_placement_group.py +8 -2
- pulumiverse_scaleway/instance_private_nic.py +24 -18
- pulumiverse_scaleway/instance_security_group.py +6 -0
- pulumiverse_scaleway/instance_security_group_rules.py +22 -16
- pulumiverse_scaleway/instance_server.py +74 -68
- pulumiverse_scaleway/instance_snapshot.py +22 -16
- pulumiverse_scaleway/instance_user_data.py +16 -10
- pulumiverse_scaleway/instance_volume.py +8 -2
- pulumiverse_scaleway/iot/__init__.py +15 -0
- pulumiverse_scaleway/iot/_inputs.py +539 -0
- pulumiverse_scaleway/iot/device.py +752 -0
- pulumiverse_scaleway/iot/get_device.py +257 -0
- pulumiverse_scaleway/iot/get_hub.py +322 -0
- pulumiverse_scaleway/iot/hub.py +898 -0
- pulumiverse_scaleway/iot/network.py +474 -0
- pulumiverse_scaleway/iot/outputs.py +465 -0
- pulumiverse_scaleway/iot/route.py +662 -0
- pulumiverse_scaleway/iot_device.py +14 -8
- pulumiverse_scaleway/iot_hub.py +8 -2
- pulumiverse_scaleway/iot_network.py +12 -6
- pulumiverse_scaleway/iot_route.py +32 -26
- pulumiverse_scaleway/ipam/__init__.py +13 -0
- pulumiverse_scaleway/ipam/_inputs.py +442 -0
- pulumiverse_scaleway/ipam/get_ip.py +419 -0
- pulumiverse_scaleway/ipam/get_ips.py +358 -0
- pulumiverse_scaleway/ipam/ip.py +759 -0
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +320 -0
- pulumiverse_scaleway/ipam/outputs.py +481 -0
- pulumiverse_scaleway/ipam_ip.py +30 -24
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +6 -0
- pulumiverse_scaleway/job/__init__.py +10 -0
- pulumiverse_scaleway/job/_inputs.py +73 -0
- pulumiverse_scaleway/job/definition.py +694 -0
- pulumiverse_scaleway/job/outputs.py +49 -0
- pulumiverse_scaleway/job_definition.py +8 -2
- pulumiverse_scaleway/kubernetes/__init__.py +14 -0
- pulumiverse_scaleway/kubernetes/_inputs.py +717 -0
- pulumiverse_scaleway/kubernetes/cluster.py +1540 -0
- pulumiverse_scaleway/kubernetes/get_cluster.py +417 -0
- pulumiverse_scaleway/kubernetes/get_pool.py +436 -0
- pulumiverse_scaleway/kubernetes/get_version.py +196 -0
- pulumiverse_scaleway/kubernetes/outputs.py +944 -0
- pulumiverse_scaleway/kubernetes/pool.py +1313 -0
- pulumiverse_scaleway/kubernetes_cluster.py +36 -30
- pulumiverse_scaleway/kubernetes_node_pool.py +6 -0
- pulumiverse_scaleway/loadbalancer.py +35 -29
- pulumiverse_scaleway/loadbalancer_acl.py +8 -2
- pulumiverse_scaleway/loadbalancer_backend.py +10 -4
- pulumiverse_scaleway/loadbalancer_certificate.py +6 -0
- pulumiverse_scaleway/loadbalancer_frontend.py +10 -4
- pulumiverse_scaleway/loadbalancer_ip.py +10 -4
- pulumiverse_scaleway/loadbalancer_route.py +26 -20
- pulumiverse_scaleway/loadbalancers/__init__.py +28 -0
- pulumiverse_scaleway/loadbalancers/_inputs.py +1103 -0
- pulumiverse_scaleway/loadbalancers/acl.py +522 -0
- pulumiverse_scaleway/loadbalancers/backend.py +1590 -0
- pulumiverse_scaleway/loadbalancers/certificate.py +462 -0
- pulumiverse_scaleway/loadbalancers/frontend.py +831 -0
- pulumiverse_scaleway/loadbalancers/get_acls.py +198 -0
- pulumiverse_scaleway/loadbalancers/get_backend.py +486 -0
- pulumiverse_scaleway/loadbalancers/get_backends.py +196 -0
- pulumiverse_scaleway/loadbalancers/get_certificate.py +230 -0
- pulumiverse_scaleway/loadbalancers/get_frontend.py +274 -0
- pulumiverse_scaleway/loadbalancers/get_frontends.py +196 -0
- pulumiverse_scaleway/loadbalancers/get_ip.py +228 -0
- pulumiverse_scaleway/loadbalancers/get_ips.py +198 -0
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +339 -0
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +187 -0
- pulumiverse_scaleway/loadbalancers/get_route.py +217 -0
- pulumiverse_scaleway/loadbalancers/get_routes.py +179 -0
- pulumiverse_scaleway/loadbalancers/ip.py +516 -0
- pulumiverse_scaleway/loadbalancers/load_balancer.py +1063 -0
- pulumiverse_scaleway/loadbalancers/outputs.py +2491 -0
- pulumiverse_scaleway/loadbalancers/route.py +525 -0
- pulumiverse_scaleway/mnq/__init__.py +20 -0
- pulumiverse_scaleway/mnq/_inputs.py +169 -0
- pulumiverse_scaleway/mnq/get_sns.py +150 -0
- pulumiverse_scaleway/mnq/get_sqs.py +150 -0
- pulumiverse_scaleway/mnq/nats_account.py +336 -0
- pulumiverse_scaleway/mnq/nats_credentials.py +332 -0
- pulumiverse_scaleway/mnq/outputs.py +149 -0
- pulumiverse_scaleway/mnq/sns.py +308 -0
- pulumiverse_scaleway/mnq/sns_credentials.py +415 -0
- pulumiverse_scaleway/mnq/sns_topic.py +661 -0
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +701 -0
- pulumiverse_scaleway/mnq/sqs.py +306 -0
- pulumiverse_scaleway/mnq/sqs_credentials.py +415 -0
- pulumiverse_scaleway/mnq/sqs_queue.py +802 -0
- pulumiverse_scaleway/mnq_nats_account.py +8 -2
- pulumiverse_scaleway/mnq_nats_credentials.py +10 -4
- pulumiverse_scaleway/mnq_sns.py +12 -6
- pulumiverse_scaleway/mnq_sns_credentials.py +10 -4
- pulumiverse_scaleway/mnq_sns_topic.py +16 -10
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +22 -16
- pulumiverse_scaleway/mnq_sqs.py +12 -6
- pulumiverse_scaleway/mnq_sqs_credentials.py +10 -4
- pulumiverse_scaleway/mnq_sqs_queue.py +16 -10
- pulumiverse_scaleway/mongo_db_instance.py +14 -8
- pulumiverse_scaleway/mongo_db_snapshot.py +8 -2
- pulumiverse_scaleway/mongodb/__init__.py +12 -0
- pulumiverse_scaleway/mongodb/_inputs.py +208 -0
- pulumiverse_scaleway/mongodb/get_instance.py +335 -0
- pulumiverse_scaleway/mongodb/instance.py +1000 -0
- pulumiverse_scaleway/mongodb/outputs.py +270 -0
- pulumiverse_scaleway/mongodb/snapshot.py +523 -0
- pulumiverse_scaleway/network/__init__.py +29 -0
- pulumiverse_scaleway/network/_inputs.py +383 -0
- pulumiverse_scaleway/network/gateway_network.py +868 -0
- pulumiverse_scaleway/network/get_gateway_network.py +287 -0
- pulumiverse_scaleway/network/get_private_network.py +282 -0
- pulumiverse_scaleway/network/get_public_gateway.py +304 -0
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +305 -0
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +382 -0
- pulumiverse_scaleway/network/get_public_gateway_ip.py +199 -0
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +313 -0
- pulumiverse_scaleway/network/get_routes.py +208 -0
- pulumiverse_scaleway/network/get_vpc.py +246 -0
- pulumiverse_scaleway/network/get_vpcs.py +174 -0
- pulumiverse_scaleway/network/outputs.py +747 -0
- pulumiverse_scaleway/network/private_network.py +736 -0
- pulumiverse_scaleway/network/public_gateway.py +791 -0
- pulumiverse_scaleway/network/public_gateway_dhcp.py +949 -0
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +516 -0
- pulumiverse_scaleway/network/public_gateway_ip.py +459 -0
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +308 -0
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +593 -0
- pulumiverse_scaleway/network/route.py +579 -0
- pulumiverse_scaleway/network/vpc.py +538 -0
- pulumiverse_scaleway/object/__init__.py +17 -0
- pulumiverse_scaleway/object/_inputs.py +831 -0
- pulumiverse_scaleway/object/bucket.py +876 -0
- pulumiverse_scaleway/object/bucket_acl.py +598 -0
- pulumiverse_scaleway/object/bucket_lock_configuration.py +397 -0
- pulumiverse_scaleway/object/bucket_policy.py +675 -0
- pulumiverse_scaleway/object/bucket_website_configuration.py +536 -0
- pulumiverse_scaleway/object/get_bucket.py +290 -0
- pulumiverse_scaleway/object/get_bucket_policy.py +163 -0
- pulumiverse_scaleway/object/item.py +778 -0
- pulumiverse_scaleway/object/outputs.py +802 -0
- pulumiverse_scaleway/object_bucket.py +28 -22
- pulumiverse_scaleway/object_bucket_acl.py +14 -8
- pulumiverse_scaleway/object_bucket_lock_configuration.py +12 -6
- pulumiverse_scaleway/object_bucket_policy.py +46 -40
- pulumiverse_scaleway/object_bucket_website_configuration.py +18 -12
- pulumiverse_scaleway/object_item.py +8 -2
- pulumiverse_scaleway/observability/__init__.py +17 -0
- pulumiverse_scaleway/observability/_inputs.py +417 -0
- pulumiverse_scaleway/observability/alert_manager.py +403 -0
- pulumiverse_scaleway/observability/cockpit.py +325 -0
- pulumiverse_scaleway/observability/get_instance.py +205 -0
- pulumiverse_scaleway/observability/get_plan.py +125 -0
- pulumiverse_scaleway/observability/get_source.py +262 -0
- pulumiverse_scaleway/observability/grafana_user.py +364 -0
- pulumiverse_scaleway/observability/outputs.py +425 -0
- pulumiverse_scaleway/observability/source.py +569 -0
- pulumiverse_scaleway/observability/token.py +481 -0
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +16 -10
- pulumiverse_scaleway/redis/__init__.py +11 -0
- pulumiverse_scaleway/redis/_inputs.py +330 -0
- pulumiverse_scaleway/redis/cluster.py +1203 -0
- pulumiverse_scaleway/redis/get_cluster.py +347 -0
- pulumiverse_scaleway/redis/outputs.py +356 -0
- pulumiverse_scaleway/redis_cluster.py +14 -8
- pulumiverse_scaleway/registry/__init__.py +11 -0
- pulumiverse_scaleway/registry/get_image.py +239 -0
- pulumiverse_scaleway/registry/get_image_tag.py +229 -0
- pulumiverse_scaleway/registry/get_namespace.py +199 -0
- pulumiverse_scaleway/registry/namespace.py +460 -0
- pulumiverse_scaleway/registry_namespace.py +8 -2
- pulumiverse_scaleway/sdb_database.py +10 -4
- pulumiverse_scaleway/secret.py +6 -0
- pulumiverse_scaleway/secret_version.py +12 -6
- pulumiverse_scaleway/secrets/__init__.py +13 -0
- pulumiverse_scaleway/secrets/_inputs.py +94 -0
- pulumiverse_scaleway/secrets/get_secret.py +338 -0
- pulumiverse_scaleway/secrets/get_version.py +340 -0
- pulumiverse_scaleway/secrets/outputs.py +120 -0
- pulumiverse_scaleway/secrets/secret.py +665 -0
- pulumiverse_scaleway/secrets/version.py +489 -0
- pulumiverse_scaleway/tem/__init__.py +13 -0
- pulumiverse_scaleway/tem/_inputs.py +135 -0
- pulumiverse_scaleway/tem/domain.py +1032 -0
- pulumiverse_scaleway/tem/domain_validation.py +305 -0
- pulumiverse_scaleway/tem/get_domain.py +378 -0
- pulumiverse_scaleway/tem/outputs.py +171 -0
- pulumiverse_scaleway/tem/webhook.py +642 -0
- pulumiverse_scaleway/tem_domain.py +20 -14
- pulumiverse_scaleway/tem_domain_validation.py +10 -4
- pulumiverse_scaleway/tem_webhook.py +28 -22
- pulumiverse_scaleway/vpc.py +10 -4
- pulumiverse_scaleway/vpc_gateway_network.py +40 -34
- pulumiverse_scaleway/vpc_private_network.py +10 -4
- pulumiverse_scaleway/vpc_public_gateway.py +8 -2
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +15 -9
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +32 -26
- pulumiverse_scaleway/vpc_public_gateway_ip.py +10 -4
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +12 -6
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +26 -20
- pulumiverse_scaleway/vpc_route.py +16 -10
- pulumiverse_scaleway/webhosting.py +10 -4
- {pulumiverse_scaleway-1.25.0a1742464679.dist-info → pulumiverse_scaleway-1.25.0a1742668904.dist-info}/METADATA +1 -1
- pulumiverse_scaleway-1.25.0a1742668904.dist-info/RECORD +470 -0
- {pulumiverse_scaleway-1.25.0a1742464679.dist-info → pulumiverse_scaleway-1.25.0a1742668904.dist-info}/WHEEL +1 -1
- pulumiverse_scaleway-1.25.0a1742464679.dist-info/RECORD +0 -206
- {pulumiverse_scaleway-1.25.0a1742464679.dist-info → pulumiverse_scaleway-1.25.0a1742668904.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,2491 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
|
18
|
+
__all__ = [
|
19
|
+
'AclAction',
|
20
|
+
'AclActionRedirect',
|
21
|
+
'AclMatch',
|
22
|
+
'BackendHealthCheckHttp',
|
23
|
+
'BackendHealthCheckHttps',
|
24
|
+
'BackendHealthCheckTcp',
|
25
|
+
'CertificateCustomCertificate',
|
26
|
+
'CertificateLetsencrypt',
|
27
|
+
'FrontendAcl',
|
28
|
+
'FrontendAclAction',
|
29
|
+
'FrontendAclActionRedirect',
|
30
|
+
'FrontendAclMatch',
|
31
|
+
'LoadBalancerPrivateNetwork',
|
32
|
+
'GetAclsAclResult',
|
33
|
+
'GetAclsAclActionResult',
|
34
|
+
'GetAclsAclActionRedirectResult',
|
35
|
+
'GetAclsAclMatchResult',
|
36
|
+
'GetBackendHealthCheckHttpResult',
|
37
|
+
'GetBackendHealthCheckTcpResult',
|
38
|
+
'GetBackendsBackendResult',
|
39
|
+
'GetBackendsBackendHealthCheckHttpResult',
|
40
|
+
'GetBackendsBackendHealthCheckTcpResult',
|
41
|
+
'GetCertificateCustomCertificateResult',
|
42
|
+
'GetCertificateLetsencryptResult',
|
43
|
+
'GetFrontendAclResult',
|
44
|
+
'GetFrontendAclActionResult',
|
45
|
+
'GetFrontendAclActionRedirectResult',
|
46
|
+
'GetFrontendAclMatchResult',
|
47
|
+
'GetFrontendsFrontendResult',
|
48
|
+
'GetIpsIpResult',
|
49
|
+
'GetLoadBalancerPrivateNetworkResult',
|
50
|
+
'GetLoadBalancersLbResult',
|
51
|
+
'GetLoadBalancersLbInstanceResult',
|
52
|
+
'GetLoadBalancersLbIpResult',
|
53
|
+
'GetRoutesRouteResult',
|
54
|
+
]
|
55
|
+
|
56
|
+
@pulumi.output_type
|
57
|
+
class AclAction(dict):
|
58
|
+
def __init__(__self__, *,
|
59
|
+
type: str,
|
60
|
+
redirects: Optional[Sequence['outputs.AclActionRedirect']] = None):
|
61
|
+
"""
|
62
|
+
:param str type: The action type. Possible values are: `allow` or `deny` or `redirect`.
|
63
|
+
:param Sequence['AclActionRedirectArgs'] redirects: Redirect parameters when using an ACL with `redirect` action.
|
64
|
+
"""
|
65
|
+
pulumi.set(__self__, "type", type)
|
66
|
+
if redirects is not None:
|
67
|
+
pulumi.set(__self__, "redirects", redirects)
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter
|
71
|
+
def type(self) -> str:
|
72
|
+
"""
|
73
|
+
The action type. Possible values are: `allow` or `deny` or `redirect`.
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "type")
|
76
|
+
|
77
|
+
@property
|
78
|
+
@pulumi.getter
|
79
|
+
def redirects(self) -> Optional[Sequence['outputs.AclActionRedirect']]:
|
80
|
+
"""
|
81
|
+
Redirect parameters when using an ACL with `redirect` action.
|
82
|
+
"""
|
83
|
+
return pulumi.get(self, "redirects")
|
84
|
+
|
85
|
+
|
86
|
+
@pulumi.output_type
|
87
|
+
class AclActionRedirect(dict):
|
88
|
+
def __init__(__self__, *,
|
89
|
+
code: Optional[int] = None,
|
90
|
+
target: Optional[str] = None,
|
91
|
+
type: Optional[str] = None):
|
92
|
+
"""
|
93
|
+
:param int code: The HTTP redirect code to use. Valid values are `301`, `302`, `303`, `307` and `308`.
|
94
|
+
:param str target: An URL can be used in case of a location redirect (e.g. `https://scaleway.com` will redirect to this same URL). A scheme name (e.g. `https`, `http`, `ftp`, `git`) will replace the request's original scheme.
|
95
|
+
:param str type: The redirect type. Possible values are: `location` or `scheme`.
|
96
|
+
"""
|
97
|
+
if code is not None:
|
98
|
+
pulumi.set(__self__, "code", code)
|
99
|
+
if target is not None:
|
100
|
+
pulumi.set(__self__, "target", target)
|
101
|
+
if type is not None:
|
102
|
+
pulumi.set(__self__, "type", type)
|
103
|
+
|
104
|
+
@property
|
105
|
+
@pulumi.getter
|
106
|
+
def code(self) -> Optional[int]:
|
107
|
+
"""
|
108
|
+
The HTTP redirect code to use. Valid values are `301`, `302`, `303`, `307` and `308`.
|
109
|
+
"""
|
110
|
+
return pulumi.get(self, "code")
|
111
|
+
|
112
|
+
@property
|
113
|
+
@pulumi.getter
|
114
|
+
def target(self) -> Optional[str]:
|
115
|
+
"""
|
116
|
+
An URL can be used in case of a location redirect (e.g. `https://scaleway.com` will redirect to this same URL). A scheme name (e.g. `https`, `http`, `ftp`, `git`) will replace the request's original scheme.
|
117
|
+
"""
|
118
|
+
return pulumi.get(self, "target")
|
119
|
+
|
120
|
+
@property
|
121
|
+
@pulumi.getter
|
122
|
+
def type(self) -> Optional[str]:
|
123
|
+
"""
|
124
|
+
The redirect type. Possible values are: `location` or `scheme`.
|
125
|
+
"""
|
126
|
+
return pulumi.get(self, "type")
|
127
|
+
|
128
|
+
|
129
|
+
@pulumi.output_type
|
130
|
+
class AclMatch(dict):
|
131
|
+
@staticmethod
|
132
|
+
def __key_warning(key: str):
|
133
|
+
suggest = None
|
134
|
+
if key == "httpFilter":
|
135
|
+
suggest = "http_filter"
|
136
|
+
elif key == "httpFilterOption":
|
137
|
+
suggest = "http_filter_option"
|
138
|
+
elif key == "httpFilterValues":
|
139
|
+
suggest = "http_filter_values"
|
140
|
+
elif key == "ipSubnets":
|
141
|
+
suggest = "ip_subnets"
|
142
|
+
|
143
|
+
if suggest:
|
144
|
+
pulumi.log.warn(f"Key '{key}' not found in AclMatch. Access the value via the '{suggest}' property getter instead.")
|
145
|
+
|
146
|
+
def __getitem__(self, key: str) -> Any:
|
147
|
+
AclMatch.__key_warning(key)
|
148
|
+
return super().__getitem__(key)
|
149
|
+
|
150
|
+
def get(self, key: str, default = None) -> Any:
|
151
|
+
AclMatch.__key_warning(key)
|
152
|
+
return super().get(key, default)
|
153
|
+
|
154
|
+
def __init__(__self__, *,
|
155
|
+
http_filter: Optional[str] = None,
|
156
|
+
http_filter_option: Optional[str] = None,
|
157
|
+
http_filter_values: Optional[Sequence[str]] = None,
|
158
|
+
invert: Optional[bool] = None,
|
159
|
+
ip_subnets: Optional[Sequence[str]] = None):
|
160
|
+
"""
|
161
|
+
:param str http_filter: The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
|
162
|
+
It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
|
163
|
+
Possible values are: `acl_http_filter_none`, `path_begin`, `path_end`, `http_header_match` or `regex`.
|
164
|
+
:param str http_filter_option: If you have `http_filter` at `http_header_match`, you can use this field to filter on the HTTP header's value.
|
165
|
+
:param Sequence[str] http_filter_values: A list of possible values to match for the given HTTP filter.
|
166
|
+
Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
|
167
|
+
:param bool invert: If set to `true`, the condition will be of type "unless".
|
168
|
+
:param Sequence[str] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
169
|
+
"""
|
170
|
+
if http_filter is not None:
|
171
|
+
pulumi.set(__self__, "http_filter", http_filter)
|
172
|
+
if http_filter_option is not None:
|
173
|
+
pulumi.set(__self__, "http_filter_option", http_filter_option)
|
174
|
+
if http_filter_values is not None:
|
175
|
+
pulumi.set(__self__, "http_filter_values", http_filter_values)
|
176
|
+
if invert is not None:
|
177
|
+
pulumi.set(__self__, "invert", invert)
|
178
|
+
if ip_subnets is not None:
|
179
|
+
pulumi.set(__self__, "ip_subnets", ip_subnets)
|
180
|
+
|
181
|
+
@property
|
182
|
+
@pulumi.getter(name="httpFilter")
|
183
|
+
def http_filter(self) -> Optional[str]:
|
184
|
+
"""
|
185
|
+
The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
|
186
|
+
It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
|
187
|
+
Possible values are: `acl_http_filter_none`, `path_begin`, `path_end`, `http_header_match` or `regex`.
|
188
|
+
"""
|
189
|
+
return pulumi.get(self, "http_filter")
|
190
|
+
|
191
|
+
@property
|
192
|
+
@pulumi.getter(name="httpFilterOption")
|
193
|
+
def http_filter_option(self) -> Optional[str]:
|
194
|
+
"""
|
195
|
+
If you have `http_filter` at `http_header_match`, you can use this field to filter on the HTTP header's value.
|
196
|
+
"""
|
197
|
+
return pulumi.get(self, "http_filter_option")
|
198
|
+
|
199
|
+
@property
|
200
|
+
@pulumi.getter(name="httpFilterValues")
|
201
|
+
def http_filter_values(self) -> Optional[Sequence[str]]:
|
202
|
+
"""
|
203
|
+
A list of possible values to match for the given HTTP filter.
|
204
|
+
Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
|
205
|
+
"""
|
206
|
+
return pulumi.get(self, "http_filter_values")
|
207
|
+
|
208
|
+
@property
|
209
|
+
@pulumi.getter
|
210
|
+
def invert(self) -> Optional[bool]:
|
211
|
+
"""
|
212
|
+
If set to `true`, the condition will be of type "unless".
|
213
|
+
"""
|
214
|
+
return pulumi.get(self, "invert")
|
215
|
+
|
216
|
+
@property
|
217
|
+
@pulumi.getter(name="ipSubnets")
|
218
|
+
def ip_subnets(self) -> Optional[Sequence[str]]:
|
219
|
+
"""
|
220
|
+
A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
221
|
+
"""
|
222
|
+
return pulumi.get(self, "ip_subnets")
|
223
|
+
|
224
|
+
|
225
|
+
@pulumi.output_type
|
226
|
+
class BackendHealthCheckHttp(dict):
|
227
|
+
@staticmethod
|
228
|
+
def __key_warning(key: str):
|
229
|
+
suggest = None
|
230
|
+
if key == "hostHeader":
|
231
|
+
suggest = "host_header"
|
232
|
+
|
233
|
+
if suggest:
|
234
|
+
pulumi.log.warn(f"Key '{key}' not found in BackendHealthCheckHttp. Access the value via the '{suggest}' property getter instead.")
|
235
|
+
|
236
|
+
def __getitem__(self, key: str) -> Any:
|
237
|
+
BackendHealthCheckHttp.__key_warning(key)
|
238
|
+
return super().__getitem__(key)
|
239
|
+
|
240
|
+
def get(self, key: str, default = None) -> Any:
|
241
|
+
BackendHealthCheckHttp.__key_warning(key)
|
242
|
+
return super().get(key, default)
|
243
|
+
|
244
|
+
def __init__(__self__, *,
|
245
|
+
uri: str,
|
246
|
+
code: Optional[int] = None,
|
247
|
+
host_header: Optional[str] = None,
|
248
|
+
method: Optional[str] = None):
|
249
|
+
"""
|
250
|
+
:param str uri: The HTTP endpoint URL to call for HC requests
|
251
|
+
:param int code: The expected HTTP status code
|
252
|
+
:param str host_header: The HTTP host header to use for HC requests
|
253
|
+
:param str method: The HTTP method to use for HC requests
|
254
|
+
"""
|
255
|
+
pulumi.set(__self__, "uri", uri)
|
256
|
+
if code is not None:
|
257
|
+
pulumi.set(__self__, "code", code)
|
258
|
+
if host_header is not None:
|
259
|
+
pulumi.set(__self__, "host_header", host_header)
|
260
|
+
if method is not None:
|
261
|
+
pulumi.set(__self__, "method", method)
|
262
|
+
|
263
|
+
@property
|
264
|
+
@pulumi.getter
|
265
|
+
def uri(self) -> str:
|
266
|
+
"""
|
267
|
+
The HTTP endpoint URL to call for HC requests
|
268
|
+
"""
|
269
|
+
return pulumi.get(self, "uri")
|
270
|
+
|
271
|
+
@property
|
272
|
+
@pulumi.getter
|
273
|
+
def code(self) -> Optional[int]:
|
274
|
+
"""
|
275
|
+
The expected HTTP status code
|
276
|
+
"""
|
277
|
+
return pulumi.get(self, "code")
|
278
|
+
|
279
|
+
@property
|
280
|
+
@pulumi.getter(name="hostHeader")
|
281
|
+
def host_header(self) -> Optional[str]:
|
282
|
+
"""
|
283
|
+
The HTTP host header to use for HC requests
|
284
|
+
"""
|
285
|
+
return pulumi.get(self, "host_header")
|
286
|
+
|
287
|
+
@property
|
288
|
+
@pulumi.getter
|
289
|
+
def method(self) -> Optional[str]:
|
290
|
+
"""
|
291
|
+
The HTTP method to use for HC requests
|
292
|
+
"""
|
293
|
+
return pulumi.get(self, "method")
|
294
|
+
|
295
|
+
|
296
|
+
@pulumi.output_type
|
297
|
+
class BackendHealthCheckHttps(dict):
|
298
|
+
@staticmethod
|
299
|
+
def __key_warning(key: str):
|
300
|
+
suggest = None
|
301
|
+
if key == "hostHeader":
|
302
|
+
suggest = "host_header"
|
303
|
+
|
304
|
+
if suggest:
|
305
|
+
pulumi.log.warn(f"Key '{key}' not found in BackendHealthCheckHttps. Access the value via the '{suggest}' property getter instead.")
|
306
|
+
|
307
|
+
def __getitem__(self, key: str) -> Any:
|
308
|
+
BackendHealthCheckHttps.__key_warning(key)
|
309
|
+
return super().__getitem__(key)
|
310
|
+
|
311
|
+
def get(self, key: str, default = None) -> Any:
|
312
|
+
BackendHealthCheckHttps.__key_warning(key)
|
313
|
+
return super().get(key, default)
|
314
|
+
|
315
|
+
def __init__(__self__, *,
|
316
|
+
uri: str,
|
317
|
+
code: Optional[int] = None,
|
318
|
+
host_header: Optional[str] = None,
|
319
|
+
method: Optional[str] = None,
|
320
|
+
sni: Optional[str] = None):
|
321
|
+
"""
|
322
|
+
:param str uri: The HTTPS endpoint URL to call for HC requests
|
323
|
+
:param int code: The expected HTTP status code
|
324
|
+
:param str host_header: The HTTP host header to use for HC requests
|
325
|
+
:param str method: The HTTP method to use for HC requests
|
326
|
+
:param str sni: The SNI to use for HC requests over SSL
|
327
|
+
"""
|
328
|
+
pulumi.set(__self__, "uri", uri)
|
329
|
+
if code is not None:
|
330
|
+
pulumi.set(__self__, "code", code)
|
331
|
+
if host_header is not None:
|
332
|
+
pulumi.set(__self__, "host_header", host_header)
|
333
|
+
if method is not None:
|
334
|
+
pulumi.set(__self__, "method", method)
|
335
|
+
if sni is not None:
|
336
|
+
pulumi.set(__self__, "sni", sni)
|
337
|
+
|
338
|
+
@property
|
339
|
+
@pulumi.getter
|
340
|
+
def uri(self) -> str:
|
341
|
+
"""
|
342
|
+
The HTTPS endpoint URL to call for HC requests
|
343
|
+
"""
|
344
|
+
return pulumi.get(self, "uri")
|
345
|
+
|
346
|
+
@property
|
347
|
+
@pulumi.getter
|
348
|
+
def code(self) -> Optional[int]:
|
349
|
+
"""
|
350
|
+
The expected HTTP status code
|
351
|
+
"""
|
352
|
+
return pulumi.get(self, "code")
|
353
|
+
|
354
|
+
@property
|
355
|
+
@pulumi.getter(name="hostHeader")
|
356
|
+
def host_header(self) -> Optional[str]:
|
357
|
+
"""
|
358
|
+
The HTTP host header to use for HC requests
|
359
|
+
"""
|
360
|
+
return pulumi.get(self, "host_header")
|
361
|
+
|
362
|
+
@property
|
363
|
+
@pulumi.getter
|
364
|
+
def method(self) -> Optional[str]:
|
365
|
+
"""
|
366
|
+
The HTTP method to use for HC requests
|
367
|
+
"""
|
368
|
+
return pulumi.get(self, "method")
|
369
|
+
|
370
|
+
@property
|
371
|
+
@pulumi.getter
|
372
|
+
def sni(self) -> Optional[str]:
|
373
|
+
"""
|
374
|
+
The SNI to use for HC requests over SSL
|
375
|
+
"""
|
376
|
+
return pulumi.get(self, "sni")
|
377
|
+
|
378
|
+
|
379
|
+
@pulumi.output_type
|
380
|
+
class BackendHealthCheckTcp(dict):
|
381
|
+
def __init__(__self__):
|
382
|
+
pass
|
383
|
+
|
384
|
+
|
385
|
+
@pulumi.output_type
|
386
|
+
class CertificateCustomCertificate(dict):
|
387
|
+
@staticmethod
|
388
|
+
def __key_warning(key: str):
|
389
|
+
suggest = None
|
390
|
+
if key == "certificateChain":
|
391
|
+
suggest = "certificate_chain"
|
392
|
+
|
393
|
+
if suggest:
|
394
|
+
pulumi.log.warn(f"Key '{key}' not found in CertificateCustomCertificate. Access the value via the '{suggest}' property getter instead.")
|
395
|
+
|
396
|
+
def __getitem__(self, key: str) -> Any:
|
397
|
+
CertificateCustomCertificate.__key_warning(key)
|
398
|
+
return super().__getitem__(key)
|
399
|
+
|
400
|
+
def get(self, key: str, default = None) -> Any:
|
401
|
+
CertificateCustomCertificate.__key_warning(key)
|
402
|
+
return super().get(key, default)
|
403
|
+
|
404
|
+
def __init__(__self__, *,
|
405
|
+
certificate_chain: str):
|
406
|
+
"""
|
407
|
+
:param str certificate_chain: The full PEM-formatted certificate chain
|
408
|
+
"""
|
409
|
+
pulumi.set(__self__, "certificate_chain", certificate_chain)
|
410
|
+
|
411
|
+
@property
|
412
|
+
@pulumi.getter(name="certificateChain")
|
413
|
+
def certificate_chain(self) -> str:
|
414
|
+
"""
|
415
|
+
The full PEM-formatted certificate chain
|
416
|
+
"""
|
417
|
+
return pulumi.get(self, "certificate_chain")
|
418
|
+
|
419
|
+
|
420
|
+
@pulumi.output_type
|
421
|
+
class CertificateLetsencrypt(dict):
|
422
|
+
@staticmethod
|
423
|
+
def __key_warning(key: str):
|
424
|
+
suggest = None
|
425
|
+
if key == "commonName":
|
426
|
+
suggest = "common_name"
|
427
|
+
elif key == "subjectAlternativeNames":
|
428
|
+
suggest = "subject_alternative_names"
|
429
|
+
|
430
|
+
if suggest:
|
431
|
+
pulumi.log.warn(f"Key '{key}' not found in CertificateLetsencrypt. Access the value via the '{suggest}' property getter instead.")
|
432
|
+
|
433
|
+
def __getitem__(self, key: str) -> Any:
|
434
|
+
CertificateLetsencrypt.__key_warning(key)
|
435
|
+
return super().__getitem__(key)
|
436
|
+
|
437
|
+
def get(self, key: str, default = None) -> Any:
|
438
|
+
CertificateLetsencrypt.__key_warning(key)
|
439
|
+
return super().get(key, default)
|
440
|
+
|
441
|
+
def __init__(__self__, *,
|
442
|
+
common_name: str,
|
443
|
+
subject_alternative_names: Optional[Sequence[str]] = None):
|
444
|
+
"""
|
445
|
+
:param str common_name: Main domain of the certificate
|
446
|
+
:param Sequence[str] subject_alternative_names: The alternative domain names of the certificate
|
447
|
+
"""
|
448
|
+
pulumi.set(__self__, "common_name", common_name)
|
449
|
+
if subject_alternative_names is not None:
|
450
|
+
pulumi.set(__self__, "subject_alternative_names", subject_alternative_names)
|
451
|
+
|
452
|
+
@property
|
453
|
+
@pulumi.getter(name="commonName")
|
454
|
+
def common_name(self) -> str:
|
455
|
+
"""
|
456
|
+
Main domain of the certificate
|
457
|
+
"""
|
458
|
+
return pulumi.get(self, "common_name")
|
459
|
+
|
460
|
+
@property
|
461
|
+
@pulumi.getter(name="subjectAlternativeNames")
|
462
|
+
def subject_alternative_names(self) -> Optional[Sequence[str]]:
|
463
|
+
"""
|
464
|
+
The alternative domain names of the certificate
|
465
|
+
"""
|
466
|
+
return pulumi.get(self, "subject_alternative_names")
|
467
|
+
|
468
|
+
|
469
|
+
@pulumi.output_type
|
470
|
+
class FrontendAcl(dict):
|
471
|
+
@staticmethod
|
472
|
+
def __key_warning(key: str):
|
473
|
+
suggest = None
|
474
|
+
if key == "createdAt":
|
475
|
+
suggest = "created_at"
|
476
|
+
elif key == "updatedAt":
|
477
|
+
suggest = "updated_at"
|
478
|
+
|
479
|
+
if suggest:
|
480
|
+
pulumi.log.warn(f"Key '{key}' not found in FrontendAcl. Access the value via the '{suggest}' property getter instead.")
|
481
|
+
|
482
|
+
def __getitem__(self, key: str) -> Any:
|
483
|
+
FrontendAcl.__key_warning(key)
|
484
|
+
return super().__getitem__(key)
|
485
|
+
|
486
|
+
def get(self, key: str, default = None) -> Any:
|
487
|
+
FrontendAcl.__key_warning(key)
|
488
|
+
return super().get(key, default)
|
489
|
+
|
490
|
+
def __init__(__self__, *,
|
491
|
+
action: 'outputs.FrontendAclAction',
|
492
|
+
match: 'outputs.FrontendAclMatch',
|
493
|
+
created_at: Optional[str] = None,
|
494
|
+
description: Optional[str] = None,
|
495
|
+
name: Optional[str] = None,
|
496
|
+
updated_at: Optional[str] = None):
|
497
|
+
"""
|
498
|
+
:param 'FrontendAclActionArgs' action: Action to undertake when an ACL filter matches.
|
499
|
+
:param 'FrontendAclMatchArgs' match: The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
500
|
+
:param str created_at: IsDate and time of ACL's creation (RFC 3339 format)
|
501
|
+
:param str description: Description of the ACL
|
502
|
+
:param str name: The ACL name. If not provided it will be randomly generated.
|
503
|
+
:param str updated_at: IsDate and time of ACL's update (RFC 3339 format)
|
504
|
+
"""
|
505
|
+
pulumi.set(__self__, "action", action)
|
506
|
+
pulumi.set(__self__, "match", match)
|
507
|
+
if created_at is not None:
|
508
|
+
pulumi.set(__self__, "created_at", created_at)
|
509
|
+
if description is not None:
|
510
|
+
pulumi.set(__self__, "description", description)
|
511
|
+
if name is not None:
|
512
|
+
pulumi.set(__self__, "name", name)
|
513
|
+
if updated_at is not None:
|
514
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
515
|
+
|
516
|
+
@property
|
517
|
+
@pulumi.getter
|
518
|
+
def action(self) -> 'outputs.FrontendAclAction':
|
519
|
+
"""
|
520
|
+
Action to undertake when an ACL filter matches.
|
521
|
+
"""
|
522
|
+
return pulumi.get(self, "action")
|
523
|
+
|
524
|
+
@property
|
525
|
+
@pulumi.getter
|
526
|
+
def match(self) -> 'outputs.FrontendAclMatch':
|
527
|
+
"""
|
528
|
+
The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
529
|
+
"""
|
530
|
+
return pulumi.get(self, "match")
|
531
|
+
|
532
|
+
@property
|
533
|
+
@pulumi.getter(name="createdAt")
|
534
|
+
def created_at(self) -> Optional[str]:
|
535
|
+
"""
|
536
|
+
IsDate and time of ACL's creation (RFC 3339 format)
|
537
|
+
"""
|
538
|
+
return pulumi.get(self, "created_at")
|
539
|
+
|
540
|
+
@property
|
541
|
+
@pulumi.getter
|
542
|
+
def description(self) -> Optional[str]:
|
543
|
+
"""
|
544
|
+
Description of the ACL
|
545
|
+
"""
|
546
|
+
return pulumi.get(self, "description")
|
547
|
+
|
548
|
+
@property
|
549
|
+
@pulumi.getter
|
550
|
+
def name(self) -> Optional[str]:
|
551
|
+
"""
|
552
|
+
The ACL name. If not provided it will be randomly generated.
|
553
|
+
"""
|
554
|
+
return pulumi.get(self, "name")
|
555
|
+
|
556
|
+
@property
|
557
|
+
@pulumi.getter(name="updatedAt")
|
558
|
+
def updated_at(self) -> Optional[str]:
|
559
|
+
"""
|
560
|
+
IsDate and time of ACL's update (RFC 3339 format)
|
561
|
+
"""
|
562
|
+
return pulumi.get(self, "updated_at")
|
563
|
+
|
564
|
+
|
565
|
+
@pulumi.output_type
|
566
|
+
class FrontendAclAction(dict):
|
567
|
+
def __init__(__self__, *,
|
568
|
+
type: str,
|
569
|
+
redirects: Optional[Sequence['outputs.FrontendAclActionRedirect']] = None):
|
570
|
+
"""
|
571
|
+
:param str type: The action type. Possible values are: `allow` or `deny` or `redirect`.
|
572
|
+
:param Sequence['FrontendAclActionRedirectArgs'] redirects: Redirect parameters when using an ACL with `redirect` action.
|
573
|
+
"""
|
574
|
+
pulumi.set(__self__, "type", type)
|
575
|
+
if redirects is not None:
|
576
|
+
pulumi.set(__self__, "redirects", redirects)
|
577
|
+
|
578
|
+
@property
|
579
|
+
@pulumi.getter
|
580
|
+
def type(self) -> str:
|
581
|
+
"""
|
582
|
+
The action type. Possible values are: `allow` or `deny` or `redirect`.
|
583
|
+
"""
|
584
|
+
return pulumi.get(self, "type")
|
585
|
+
|
586
|
+
@property
|
587
|
+
@pulumi.getter
|
588
|
+
def redirects(self) -> Optional[Sequence['outputs.FrontendAclActionRedirect']]:
|
589
|
+
"""
|
590
|
+
Redirect parameters when using an ACL with `redirect` action.
|
591
|
+
"""
|
592
|
+
return pulumi.get(self, "redirects")
|
593
|
+
|
594
|
+
|
595
|
+
@pulumi.output_type
|
596
|
+
class FrontendAclActionRedirect(dict):
|
597
|
+
def __init__(__self__, *,
|
598
|
+
code: Optional[int] = None,
|
599
|
+
target: Optional[str] = None,
|
600
|
+
type: Optional[str] = None):
|
601
|
+
"""
|
602
|
+
:param int code: The HTTP redirect code to use. Valid values are `301`, `302`, `303`, `307` and `308`.
|
603
|
+
:param str target: A URL can be used in case of a location redirect (e.g. `https://scaleway.com` will redirect to this same URL). A scheme name (e.g. `https`, `http`, `ftp`, `git`) will replace the request's original scheme.
|
604
|
+
:param str type: The redirect type. Possible values are: `location` or `scheme`.
|
605
|
+
"""
|
606
|
+
if code is not None:
|
607
|
+
pulumi.set(__self__, "code", code)
|
608
|
+
if target is not None:
|
609
|
+
pulumi.set(__self__, "target", target)
|
610
|
+
if type is not None:
|
611
|
+
pulumi.set(__self__, "type", type)
|
612
|
+
|
613
|
+
@property
|
614
|
+
@pulumi.getter
|
615
|
+
def code(self) -> Optional[int]:
|
616
|
+
"""
|
617
|
+
The HTTP redirect code to use. Valid values are `301`, `302`, `303`, `307` and `308`.
|
618
|
+
"""
|
619
|
+
return pulumi.get(self, "code")
|
620
|
+
|
621
|
+
@property
|
622
|
+
@pulumi.getter
|
623
|
+
def target(self) -> Optional[str]:
|
624
|
+
"""
|
625
|
+
A URL can be used in case of a location redirect (e.g. `https://scaleway.com` will redirect to this same URL). A scheme name (e.g. `https`, `http`, `ftp`, `git`) will replace the request's original scheme.
|
626
|
+
"""
|
627
|
+
return pulumi.get(self, "target")
|
628
|
+
|
629
|
+
@property
|
630
|
+
@pulumi.getter
|
631
|
+
def type(self) -> Optional[str]:
|
632
|
+
"""
|
633
|
+
The redirect type. Possible values are: `location` or `scheme`.
|
634
|
+
"""
|
635
|
+
return pulumi.get(self, "type")
|
636
|
+
|
637
|
+
|
638
|
+
@pulumi.output_type
|
639
|
+
class FrontendAclMatch(dict):
|
640
|
+
@staticmethod
|
641
|
+
def __key_warning(key: str):
|
642
|
+
suggest = None
|
643
|
+
if key == "httpFilter":
|
644
|
+
suggest = "http_filter"
|
645
|
+
elif key == "httpFilterOption":
|
646
|
+
suggest = "http_filter_option"
|
647
|
+
elif key == "httpFilterValues":
|
648
|
+
suggest = "http_filter_values"
|
649
|
+
elif key == "ipSubnets":
|
650
|
+
suggest = "ip_subnets"
|
651
|
+
|
652
|
+
if suggest:
|
653
|
+
pulumi.log.warn(f"Key '{key}' not found in FrontendAclMatch. Access the value via the '{suggest}' property getter instead.")
|
654
|
+
|
655
|
+
def __getitem__(self, key: str) -> Any:
|
656
|
+
FrontendAclMatch.__key_warning(key)
|
657
|
+
return super().__getitem__(key)
|
658
|
+
|
659
|
+
def get(self, key: str, default = None) -> Any:
|
660
|
+
FrontendAclMatch.__key_warning(key)
|
661
|
+
return super().get(key, default)
|
662
|
+
|
663
|
+
def __init__(__self__, *,
|
664
|
+
http_filter: Optional[str] = None,
|
665
|
+
http_filter_option: Optional[str] = None,
|
666
|
+
http_filter_values: Optional[Sequence[str]] = None,
|
667
|
+
invert: Optional[bool] = None,
|
668
|
+
ip_subnets: Optional[Sequence[str]] = None):
|
669
|
+
"""
|
670
|
+
:param str http_filter: The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
|
671
|
+
It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
|
672
|
+
Possible values are: `acl_http_filter_none`, `path_begin`, `path_end`, `http_header_match` or `regex`.
|
673
|
+
:param str http_filter_option: If you have `http_filter` at `http_header_match`, you can use this field to filter on the HTTP header's value.
|
674
|
+
:param Sequence[str] http_filter_values: A list of possible values to match for the given HTTP filter.
|
675
|
+
Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
|
676
|
+
:param bool invert: If set to `true`, the condition will be of type "unless".
|
677
|
+
:param Sequence[str] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
678
|
+
"""
|
679
|
+
if http_filter is not None:
|
680
|
+
pulumi.set(__self__, "http_filter", http_filter)
|
681
|
+
if http_filter_option is not None:
|
682
|
+
pulumi.set(__self__, "http_filter_option", http_filter_option)
|
683
|
+
if http_filter_values is not None:
|
684
|
+
pulumi.set(__self__, "http_filter_values", http_filter_values)
|
685
|
+
if invert is not None:
|
686
|
+
pulumi.set(__self__, "invert", invert)
|
687
|
+
if ip_subnets is not None:
|
688
|
+
pulumi.set(__self__, "ip_subnets", ip_subnets)
|
689
|
+
|
690
|
+
@property
|
691
|
+
@pulumi.getter(name="httpFilter")
|
692
|
+
def http_filter(self) -> Optional[str]:
|
693
|
+
"""
|
694
|
+
The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
|
695
|
+
It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
|
696
|
+
Possible values are: `acl_http_filter_none`, `path_begin`, `path_end`, `http_header_match` or `regex`.
|
697
|
+
"""
|
698
|
+
return pulumi.get(self, "http_filter")
|
699
|
+
|
700
|
+
@property
|
701
|
+
@pulumi.getter(name="httpFilterOption")
|
702
|
+
def http_filter_option(self) -> Optional[str]:
|
703
|
+
"""
|
704
|
+
If you have `http_filter` at `http_header_match`, you can use this field to filter on the HTTP header's value.
|
705
|
+
"""
|
706
|
+
return pulumi.get(self, "http_filter_option")
|
707
|
+
|
708
|
+
@property
|
709
|
+
@pulumi.getter(name="httpFilterValues")
|
710
|
+
def http_filter_values(self) -> Optional[Sequence[str]]:
|
711
|
+
"""
|
712
|
+
A list of possible values to match for the given HTTP filter.
|
713
|
+
Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
|
714
|
+
"""
|
715
|
+
return pulumi.get(self, "http_filter_values")
|
716
|
+
|
717
|
+
@property
|
718
|
+
@pulumi.getter
|
719
|
+
def invert(self) -> Optional[bool]:
|
720
|
+
"""
|
721
|
+
If set to `true`, the condition will be of type "unless".
|
722
|
+
"""
|
723
|
+
return pulumi.get(self, "invert")
|
724
|
+
|
725
|
+
@property
|
726
|
+
@pulumi.getter(name="ipSubnets")
|
727
|
+
def ip_subnets(self) -> Optional[Sequence[str]]:
|
728
|
+
"""
|
729
|
+
A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
730
|
+
"""
|
731
|
+
return pulumi.get(self, "ip_subnets")
|
732
|
+
|
733
|
+
|
734
|
+
@pulumi.output_type
|
735
|
+
class LoadBalancerPrivateNetwork(dict):
|
736
|
+
@staticmethod
|
737
|
+
def __key_warning(key: str):
|
738
|
+
suggest = None
|
739
|
+
if key == "privateNetworkId":
|
740
|
+
suggest = "private_network_id"
|
741
|
+
elif key == "dhcpConfig":
|
742
|
+
suggest = "dhcp_config"
|
743
|
+
elif key == "ipamIds":
|
744
|
+
suggest = "ipam_ids"
|
745
|
+
elif key == "staticConfig":
|
746
|
+
suggest = "static_config"
|
747
|
+
|
748
|
+
if suggest:
|
749
|
+
pulumi.log.warn(f"Key '{key}' not found in LoadBalancerPrivateNetwork. Access the value via the '{suggest}' property getter instead.")
|
750
|
+
|
751
|
+
def __getitem__(self, key: str) -> Any:
|
752
|
+
LoadBalancerPrivateNetwork.__key_warning(key)
|
753
|
+
return super().__getitem__(key)
|
754
|
+
|
755
|
+
def get(self, key: str, default = None) -> Any:
|
756
|
+
LoadBalancerPrivateNetwork.__key_warning(key)
|
757
|
+
return super().get(key, default)
|
758
|
+
|
759
|
+
def __init__(__self__, *,
|
760
|
+
private_network_id: str,
|
761
|
+
dhcp_config: Optional[bool] = None,
|
762
|
+
ipam_ids: Optional[str] = None,
|
763
|
+
static_config: Optional[str] = None,
|
764
|
+
status: Optional[str] = None,
|
765
|
+
zone: Optional[str] = None):
|
766
|
+
"""
|
767
|
+
:param str private_network_id: The ID of the Private Network to attach to.
|
768
|
+
- > **Important:** Updates to `private_network` will recreate the attachment.
|
769
|
+
:param bool dhcp_config: Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
|
770
|
+
:param str ipam_ids: IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
|
771
|
+
:param str static_config: Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
|
772
|
+
:param str status: The status of the private network connection.
|
773
|
+
:param str zone: `zone`) The zone of the Load Balancer.
|
774
|
+
"""
|
775
|
+
pulumi.set(__self__, "private_network_id", private_network_id)
|
776
|
+
if dhcp_config is not None:
|
777
|
+
pulumi.set(__self__, "dhcp_config", dhcp_config)
|
778
|
+
if ipam_ids is not None:
|
779
|
+
pulumi.set(__self__, "ipam_ids", ipam_ids)
|
780
|
+
if static_config is not None:
|
781
|
+
pulumi.set(__self__, "static_config", static_config)
|
782
|
+
if status is not None:
|
783
|
+
pulumi.set(__self__, "status", status)
|
784
|
+
if zone is not None:
|
785
|
+
pulumi.set(__self__, "zone", zone)
|
786
|
+
|
787
|
+
@property
|
788
|
+
@pulumi.getter(name="privateNetworkId")
|
789
|
+
def private_network_id(self) -> str:
|
790
|
+
"""
|
791
|
+
The ID of the Private Network to attach to.
|
792
|
+
- > **Important:** Updates to `private_network` will recreate the attachment.
|
793
|
+
"""
|
794
|
+
return pulumi.get(self, "private_network_id")
|
795
|
+
|
796
|
+
@property
|
797
|
+
@pulumi.getter(name="dhcpConfig")
|
798
|
+
@_utilities.deprecated("""dhcp_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
|
799
|
+
def dhcp_config(self) -> Optional[bool]:
|
800
|
+
"""
|
801
|
+
Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
|
802
|
+
"""
|
803
|
+
return pulumi.get(self, "dhcp_config")
|
804
|
+
|
805
|
+
@property
|
806
|
+
@pulumi.getter(name="ipamIds")
|
807
|
+
def ipam_ids(self) -> Optional[str]:
|
808
|
+
"""
|
809
|
+
IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
|
810
|
+
"""
|
811
|
+
return pulumi.get(self, "ipam_ids")
|
812
|
+
|
813
|
+
@property
|
814
|
+
@pulumi.getter(name="staticConfig")
|
815
|
+
@_utilities.deprecated("""static_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
|
816
|
+
def static_config(self) -> Optional[str]:
|
817
|
+
"""
|
818
|
+
Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
|
819
|
+
"""
|
820
|
+
return pulumi.get(self, "static_config")
|
821
|
+
|
822
|
+
@property
|
823
|
+
@pulumi.getter
|
824
|
+
def status(self) -> Optional[str]:
|
825
|
+
"""
|
826
|
+
The status of the private network connection.
|
827
|
+
"""
|
828
|
+
return pulumi.get(self, "status")
|
829
|
+
|
830
|
+
@property
|
831
|
+
@pulumi.getter
|
832
|
+
def zone(self) -> Optional[str]:
|
833
|
+
"""
|
834
|
+
`zone`) The zone of the Load Balancer.
|
835
|
+
"""
|
836
|
+
return pulumi.get(self, "zone")
|
837
|
+
|
838
|
+
|
839
|
+
@pulumi.output_type
|
840
|
+
class GetAclsAclResult(dict):
|
841
|
+
def __init__(__self__, *,
|
842
|
+
actions: Sequence['outputs.GetAclsAclActionResult'],
|
843
|
+
created_at: str,
|
844
|
+
description: str,
|
845
|
+
frontend_id: str,
|
846
|
+
id: str,
|
847
|
+
index: int,
|
848
|
+
matches: Sequence['outputs.GetAclsAclMatchResult'],
|
849
|
+
name: str,
|
850
|
+
update_at: str):
|
851
|
+
"""
|
852
|
+
:param Sequence['GetAclsAclActionArgs'] actions: The action to be undertaken when an ACL filter matches.
|
853
|
+
:param str created_at: The date on which the ACL was created (RFC 3339 format).
|
854
|
+
:param str description: The description of the ACL resource.
|
855
|
+
:param str frontend_id: The frontend ID this ACL is attached to. ACLs with a matching frontend ID are listed.
|
856
|
+
> **Important:** LB frontend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
|
857
|
+
:param str id: The associated ACL ID.
|
858
|
+
> **Important:** LB ACLs' IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
|
859
|
+
:param int index: The priority of this ACL in the ordered list.
|
860
|
+
:param Sequence['GetAclsAclMatchArgs'] matches: The ACL match rule.
|
861
|
+
:param str name: The ACL name to filter for. ACLs with a matching name are listed.
|
862
|
+
:param str update_at: The date on which the ACL was last updated (RFC 3339 format).
|
863
|
+
"""
|
864
|
+
pulumi.set(__self__, "actions", actions)
|
865
|
+
pulumi.set(__self__, "created_at", created_at)
|
866
|
+
pulumi.set(__self__, "description", description)
|
867
|
+
pulumi.set(__self__, "frontend_id", frontend_id)
|
868
|
+
pulumi.set(__self__, "id", id)
|
869
|
+
pulumi.set(__self__, "index", index)
|
870
|
+
pulumi.set(__self__, "matches", matches)
|
871
|
+
pulumi.set(__self__, "name", name)
|
872
|
+
pulumi.set(__self__, "update_at", update_at)
|
873
|
+
|
874
|
+
@property
|
875
|
+
@pulumi.getter
|
876
|
+
def actions(self) -> Sequence['outputs.GetAclsAclActionResult']:
|
877
|
+
"""
|
878
|
+
The action to be undertaken when an ACL filter matches.
|
879
|
+
"""
|
880
|
+
return pulumi.get(self, "actions")
|
881
|
+
|
882
|
+
@property
|
883
|
+
@pulumi.getter(name="createdAt")
|
884
|
+
def created_at(self) -> str:
|
885
|
+
"""
|
886
|
+
The date on which the ACL was created (RFC 3339 format).
|
887
|
+
"""
|
888
|
+
return pulumi.get(self, "created_at")
|
889
|
+
|
890
|
+
@property
|
891
|
+
@pulumi.getter
|
892
|
+
def description(self) -> str:
|
893
|
+
"""
|
894
|
+
The description of the ACL resource.
|
895
|
+
"""
|
896
|
+
return pulumi.get(self, "description")
|
897
|
+
|
898
|
+
@property
|
899
|
+
@pulumi.getter(name="frontendId")
|
900
|
+
def frontend_id(self) -> str:
|
901
|
+
"""
|
902
|
+
The frontend ID this ACL is attached to. ACLs with a matching frontend ID are listed.
|
903
|
+
> **Important:** LB frontend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
|
904
|
+
"""
|
905
|
+
return pulumi.get(self, "frontend_id")
|
906
|
+
|
907
|
+
@property
|
908
|
+
@pulumi.getter
|
909
|
+
def id(self) -> str:
|
910
|
+
"""
|
911
|
+
The associated ACL ID.
|
912
|
+
> **Important:** LB ACLs' IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
|
913
|
+
"""
|
914
|
+
return pulumi.get(self, "id")
|
915
|
+
|
916
|
+
@property
|
917
|
+
@pulumi.getter
|
918
|
+
def index(self) -> int:
|
919
|
+
"""
|
920
|
+
The priority of this ACL in the ordered list.
|
921
|
+
"""
|
922
|
+
return pulumi.get(self, "index")
|
923
|
+
|
924
|
+
@property
|
925
|
+
@pulumi.getter
|
926
|
+
def matches(self) -> Sequence['outputs.GetAclsAclMatchResult']:
|
927
|
+
"""
|
928
|
+
The ACL match rule.
|
929
|
+
"""
|
930
|
+
return pulumi.get(self, "matches")
|
931
|
+
|
932
|
+
@property
|
933
|
+
@pulumi.getter
|
934
|
+
def name(self) -> str:
|
935
|
+
"""
|
936
|
+
The ACL name to filter for. ACLs with a matching name are listed.
|
937
|
+
"""
|
938
|
+
return pulumi.get(self, "name")
|
939
|
+
|
940
|
+
@property
|
941
|
+
@pulumi.getter(name="updateAt")
|
942
|
+
def update_at(self) -> str:
|
943
|
+
"""
|
944
|
+
The date on which the ACL was last updated (RFC 3339 format).
|
945
|
+
"""
|
946
|
+
return pulumi.get(self, "update_at")
|
947
|
+
|
948
|
+
|
949
|
+
@pulumi.output_type
|
950
|
+
class GetAclsAclActionResult(dict):
|
951
|
+
def __init__(__self__, *,
|
952
|
+
redirects: Sequence['outputs.GetAclsAclActionRedirectResult'],
|
953
|
+
type: str):
|
954
|
+
"""
|
955
|
+
:param Sequence['GetAclsAclActionRedirectArgs'] redirects: Redirect parameters when using an ACL with `redirect` action.
|
956
|
+
:param str type: The redirect type.
|
957
|
+
"""
|
958
|
+
pulumi.set(__self__, "redirects", redirects)
|
959
|
+
pulumi.set(__self__, "type", type)
|
960
|
+
|
961
|
+
@property
|
962
|
+
@pulumi.getter
|
963
|
+
def redirects(self) -> Sequence['outputs.GetAclsAclActionRedirectResult']:
|
964
|
+
"""
|
965
|
+
Redirect parameters when using an ACL with `redirect` action.
|
966
|
+
"""
|
967
|
+
return pulumi.get(self, "redirects")
|
968
|
+
|
969
|
+
@property
|
970
|
+
@pulumi.getter
|
971
|
+
def type(self) -> str:
|
972
|
+
"""
|
973
|
+
The redirect type.
|
974
|
+
"""
|
975
|
+
return pulumi.get(self, "type")
|
976
|
+
|
977
|
+
|
978
|
+
@pulumi.output_type
|
979
|
+
class GetAclsAclActionRedirectResult(dict):
|
980
|
+
def __init__(__self__, *,
|
981
|
+
code: int,
|
982
|
+
target: str,
|
983
|
+
type: str):
|
984
|
+
"""
|
985
|
+
:param int code: The HTTP redirect code to use.
|
986
|
+
:param str target: The URL used in case of a location redirect, or the scheme name that replaces the request's original scheme.
|
987
|
+
:param str type: The redirect type.
|
988
|
+
"""
|
989
|
+
pulumi.set(__self__, "code", code)
|
990
|
+
pulumi.set(__self__, "target", target)
|
991
|
+
pulumi.set(__self__, "type", type)
|
992
|
+
|
993
|
+
@property
|
994
|
+
@pulumi.getter
|
995
|
+
def code(self) -> int:
|
996
|
+
"""
|
997
|
+
The HTTP redirect code to use.
|
998
|
+
"""
|
999
|
+
return pulumi.get(self, "code")
|
1000
|
+
|
1001
|
+
@property
|
1002
|
+
@pulumi.getter
|
1003
|
+
def target(self) -> str:
|
1004
|
+
"""
|
1005
|
+
The URL used in case of a location redirect, or the scheme name that replaces the request's original scheme.
|
1006
|
+
"""
|
1007
|
+
return pulumi.get(self, "target")
|
1008
|
+
|
1009
|
+
@property
|
1010
|
+
@pulumi.getter
|
1011
|
+
def type(self) -> str:
|
1012
|
+
"""
|
1013
|
+
The redirect type.
|
1014
|
+
"""
|
1015
|
+
return pulumi.get(self, "type")
|
1016
|
+
|
1017
|
+
|
1018
|
+
@pulumi.output_type
|
1019
|
+
class GetAclsAclMatchResult(dict):
|
1020
|
+
def __init__(__self__, *,
|
1021
|
+
http_filter: str,
|
1022
|
+
http_filter_option: str,
|
1023
|
+
http_filter_values: Sequence[str],
|
1024
|
+
invert: bool,
|
1025
|
+
ip_subnets: Sequence[str]):
|
1026
|
+
"""
|
1027
|
+
:param str http_filter: The HTTP filter to match.
|
1028
|
+
:param str http_filter_option: A list of possible values for the HTTP filter based on the HTTP header.
|
1029
|
+
:param Sequence[str] http_filter_values: The possible values to match for a given HTTP filter.
|
1030
|
+
:param bool invert: The condition will be of type "unless" if invert is set to `true`
|
1031
|
+
:param Sequence[str] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
1032
|
+
"""
|
1033
|
+
pulumi.set(__self__, "http_filter", http_filter)
|
1034
|
+
pulumi.set(__self__, "http_filter_option", http_filter_option)
|
1035
|
+
pulumi.set(__self__, "http_filter_values", http_filter_values)
|
1036
|
+
pulumi.set(__self__, "invert", invert)
|
1037
|
+
pulumi.set(__self__, "ip_subnets", ip_subnets)
|
1038
|
+
|
1039
|
+
@property
|
1040
|
+
@pulumi.getter(name="httpFilter")
|
1041
|
+
def http_filter(self) -> str:
|
1042
|
+
"""
|
1043
|
+
The HTTP filter to match.
|
1044
|
+
"""
|
1045
|
+
return pulumi.get(self, "http_filter")
|
1046
|
+
|
1047
|
+
@property
|
1048
|
+
@pulumi.getter(name="httpFilterOption")
|
1049
|
+
def http_filter_option(self) -> str:
|
1050
|
+
"""
|
1051
|
+
A list of possible values for the HTTP filter based on the HTTP header.
|
1052
|
+
"""
|
1053
|
+
return pulumi.get(self, "http_filter_option")
|
1054
|
+
|
1055
|
+
@property
|
1056
|
+
@pulumi.getter(name="httpFilterValues")
|
1057
|
+
def http_filter_values(self) -> Sequence[str]:
|
1058
|
+
"""
|
1059
|
+
The possible values to match for a given HTTP filter.
|
1060
|
+
"""
|
1061
|
+
return pulumi.get(self, "http_filter_values")
|
1062
|
+
|
1063
|
+
@property
|
1064
|
+
@pulumi.getter
|
1065
|
+
def invert(self) -> bool:
|
1066
|
+
"""
|
1067
|
+
The condition will be of type "unless" if invert is set to `true`
|
1068
|
+
"""
|
1069
|
+
return pulumi.get(self, "invert")
|
1070
|
+
|
1071
|
+
@property
|
1072
|
+
@pulumi.getter(name="ipSubnets")
|
1073
|
+
def ip_subnets(self) -> Sequence[str]:
|
1074
|
+
"""
|
1075
|
+
A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
1076
|
+
"""
|
1077
|
+
return pulumi.get(self, "ip_subnets")
|
1078
|
+
|
1079
|
+
|
1080
|
+
@pulumi.output_type
|
1081
|
+
class GetBackendHealthCheckHttpResult(dict):
|
1082
|
+
def __init__(__self__, *,
|
1083
|
+
code: int,
|
1084
|
+
host_header: str,
|
1085
|
+
method: str,
|
1086
|
+
sni: str,
|
1087
|
+
uri: str):
|
1088
|
+
"""
|
1089
|
+
:param int code: The expected HTTP status code
|
1090
|
+
:param str host_header: The HTTP host header to use for HC requests
|
1091
|
+
:param str method: The HTTP method to use for HC requests
|
1092
|
+
:param str sni: The SNI to use for HC requests over SSL
|
1093
|
+
:param str uri: The HTTPS endpoint URL to call for HC requests
|
1094
|
+
"""
|
1095
|
+
pulumi.set(__self__, "code", code)
|
1096
|
+
pulumi.set(__self__, "host_header", host_header)
|
1097
|
+
pulumi.set(__self__, "method", method)
|
1098
|
+
pulumi.set(__self__, "sni", sni)
|
1099
|
+
pulumi.set(__self__, "uri", uri)
|
1100
|
+
|
1101
|
+
@property
|
1102
|
+
@pulumi.getter
|
1103
|
+
def code(self) -> int:
|
1104
|
+
"""
|
1105
|
+
The expected HTTP status code
|
1106
|
+
"""
|
1107
|
+
return pulumi.get(self, "code")
|
1108
|
+
|
1109
|
+
@property
|
1110
|
+
@pulumi.getter(name="hostHeader")
|
1111
|
+
def host_header(self) -> str:
|
1112
|
+
"""
|
1113
|
+
The HTTP host header to use for HC requests
|
1114
|
+
"""
|
1115
|
+
return pulumi.get(self, "host_header")
|
1116
|
+
|
1117
|
+
@property
|
1118
|
+
@pulumi.getter
|
1119
|
+
def method(self) -> str:
|
1120
|
+
"""
|
1121
|
+
The HTTP method to use for HC requests
|
1122
|
+
"""
|
1123
|
+
return pulumi.get(self, "method")
|
1124
|
+
|
1125
|
+
@property
|
1126
|
+
@pulumi.getter
|
1127
|
+
def sni(self) -> str:
|
1128
|
+
"""
|
1129
|
+
The SNI to use for HC requests over SSL
|
1130
|
+
"""
|
1131
|
+
return pulumi.get(self, "sni")
|
1132
|
+
|
1133
|
+
@property
|
1134
|
+
@pulumi.getter
|
1135
|
+
def uri(self) -> str:
|
1136
|
+
"""
|
1137
|
+
The HTTPS endpoint URL to call for HC requests
|
1138
|
+
"""
|
1139
|
+
return pulumi.get(self, "uri")
|
1140
|
+
|
1141
|
+
|
1142
|
+
@pulumi.output_type
|
1143
|
+
class GetBackendHealthCheckTcpResult(dict):
|
1144
|
+
def __init__(__self__):
|
1145
|
+
pass
|
1146
|
+
|
1147
|
+
|
1148
|
+
@pulumi.output_type
|
1149
|
+
class GetBackendsBackendResult(dict):
|
1150
|
+
def __init__(__self__, *,
|
1151
|
+
created_at: str,
|
1152
|
+
failover_host: str,
|
1153
|
+
forward_port: int,
|
1154
|
+
forward_port_algorithm: str,
|
1155
|
+
forward_protocol: str,
|
1156
|
+
health_check_delay: str,
|
1157
|
+
health_check_http: Sequence['outputs.GetBackendsBackendHealthCheckHttpResult'],
|
1158
|
+
health_check_https: Sequence['outputs.GetBackendsBackendHealthCheckHttpResult'],
|
1159
|
+
health_check_max_retries: int,
|
1160
|
+
health_check_port: int,
|
1161
|
+
health_check_tcps: Sequence['outputs.GetBackendsBackendHealthCheckTcpResult'],
|
1162
|
+
health_check_timeout: str,
|
1163
|
+
id: str,
|
1164
|
+
ignore_ssl_server_verify: bool,
|
1165
|
+
lb_id: str,
|
1166
|
+
name: str,
|
1167
|
+
on_marked_down_action: str,
|
1168
|
+
proxy_protocol: str,
|
1169
|
+
server_ips: Sequence[str],
|
1170
|
+
ssl_bridging: bool,
|
1171
|
+
sticky_sessions: str,
|
1172
|
+
sticky_sessions_cookie_name: str,
|
1173
|
+
timeout_connect: str,
|
1174
|
+
timeout_server: str,
|
1175
|
+
timeout_tunnel: str,
|
1176
|
+
update_at: str):
|
1177
|
+
"""
|
1178
|
+
:param str created_at: The date on which the backend was created (RFC 3339 format).
|
1179
|
+
:param str failover_host: Scaleway S3 bucket website to be served if all backend servers are down.
|
1180
|
+
:param int forward_port: User sessions will be forwarded to this backend server port.
|
1181
|
+
:param str forward_port_algorithm: Load balancing algorithm.
|
1182
|
+
:param str forward_protocol: Backend protocol.
|
1183
|
+
:param str health_check_delay: Interval between two health check requests.
|
1184
|
+
:param Sequence['GetBackendsBackendHealthCheckHttpArgs'] health_check_http: This block enables HTTP health checks.
|
1185
|
+
:param Sequence['GetBackendsBackendHealthCheckHttpArgs'] health_check_https: This block enables HTTPS health checks.
|
1186
|
+
:param int health_check_max_retries: Number of allowed failed health check requests before the backend server is marked as down.
|
1187
|
+
:param int health_check_port: Port the health check requests will be sent to.
|
1188
|
+
:param Sequence['GetBackendsBackendHealthCheckTcpArgs'] health_check_tcps: This block enables TCP health checks.
|
1189
|
+
:param str health_check_timeout: Timeout before a health check request is considered failed.
|
1190
|
+
:param str id: The associated backend ID.
|
1191
|
+
:param bool ignore_ssl_server_verify: Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection.
|
1192
|
+
:param str lb_id: The Load Balancer ID this backend is attached to. Backends with a matching ID are listed.
|
1193
|
+
:param str name: The backend name to filter for. Backends with a matching name are listed.
|
1194
|
+
:param str on_marked_down_action: Modify what occurs when a backend server is marked down.
|
1195
|
+
:param str proxy_protocol: The type of PROXY protocol.
|
1196
|
+
:param Sequence[str] server_ips: List of backend server IP addresses.
|
1197
|
+
:param bool ssl_bridging: Enables SSL between Load Balancer and backend servers.
|
1198
|
+
:param str sticky_sessions: Enables cookie-based session persistence.
|
1199
|
+
:param str sticky_sessions_cookie_name: Cookie name for sticky sessions.
|
1200
|
+
:param str timeout_connect: Maximum initial server connection establishment time.
|
1201
|
+
:param str timeout_server: Maximum server connection inactivity time.
|
1202
|
+
:param str timeout_tunnel: Maximum tunnel inactivity time.
|
1203
|
+
:param str update_at: The date on which the backend was last updated (RFC 3339 format).
|
1204
|
+
"""
|
1205
|
+
pulumi.set(__self__, "created_at", created_at)
|
1206
|
+
pulumi.set(__self__, "failover_host", failover_host)
|
1207
|
+
pulumi.set(__self__, "forward_port", forward_port)
|
1208
|
+
pulumi.set(__self__, "forward_port_algorithm", forward_port_algorithm)
|
1209
|
+
pulumi.set(__self__, "forward_protocol", forward_protocol)
|
1210
|
+
pulumi.set(__self__, "health_check_delay", health_check_delay)
|
1211
|
+
pulumi.set(__self__, "health_check_http", health_check_http)
|
1212
|
+
pulumi.set(__self__, "health_check_https", health_check_https)
|
1213
|
+
pulumi.set(__self__, "health_check_max_retries", health_check_max_retries)
|
1214
|
+
pulumi.set(__self__, "health_check_port", health_check_port)
|
1215
|
+
pulumi.set(__self__, "health_check_tcps", health_check_tcps)
|
1216
|
+
pulumi.set(__self__, "health_check_timeout", health_check_timeout)
|
1217
|
+
pulumi.set(__self__, "id", id)
|
1218
|
+
pulumi.set(__self__, "ignore_ssl_server_verify", ignore_ssl_server_verify)
|
1219
|
+
pulumi.set(__self__, "lb_id", lb_id)
|
1220
|
+
pulumi.set(__self__, "name", name)
|
1221
|
+
pulumi.set(__self__, "on_marked_down_action", on_marked_down_action)
|
1222
|
+
pulumi.set(__self__, "proxy_protocol", proxy_protocol)
|
1223
|
+
pulumi.set(__self__, "server_ips", server_ips)
|
1224
|
+
pulumi.set(__self__, "ssl_bridging", ssl_bridging)
|
1225
|
+
pulumi.set(__self__, "sticky_sessions", sticky_sessions)
|
1226
|
+
pulumi.set(__self__, "sticky_sessions_cookie_name", sticky_sessions_cookie_name)
|
1227
|
+
pulumi.set(__self__, "timeout_connect", timeout_connect)
|
1228
|
+
pulumi.set(__self__, "timeout_server", timeout_server)
|
1229
|
+
pulumi.set(__self__, "timeout_tunnel", timeout_tunnel)
|
1230
|
+
pulumi.set(__self__, "update_at", update_at)
|
1231
|
+
|
1232
|
+
@property
|
1233
|
+
@pulumi.getter(name="createdAt")
|
1234
|
+
def created_at(self) -> str:
|
1235
|
+
"""
|
1236
|
+
The date on which the backend was created (RFC 3339 format).
|
1237
|
+
"""
|
1238
|
+
return pulumi.get(self, "created_at")
|
1239
|
+
|
1240
|
+
@property
|
1241
|
+
@pulumi.getter(name="failoverHost")
|
1242
|
+
def failover_host(self) -> str:
|
1243
|
+
"""
|
1244
|
+
Scaleway S3 bucket website to be served if all backend servers are down.
|
1245
|
+
"""
|
1246
|
+
return pulumi.get(self, "failover_host")
|
1247
|
+
|
1248
|
+
@property
|
1249
|
+
@pulumi.getter(name="forwardPort")
|
1250
|
+
def forward_port(self) -> int:
|
1251
|
+
"""
|
1252
|
+
User sessions will be forwarded to this backend server port.
|
1253
|
+
"""
|
1254
|
+
return pulumi.get(self, "forward_port")
|
1255
|
+
|
1256
|
+
@property
|
1257
|
+
@pulumi.getter(name="forwardPortAlgorithm")
|
1258
|
+
def forward_port_algorithm(self) -> str:
|
1259
|
+
"""
|
1260
|
+
Load balancing algorithm.
|
1261
|
+
"""
|
1262
|
+
return pulumi.get(self, "forward_port_algorithm")
|
1263
|
+
|
1264
|
+
@property
|
1265
|
+
@pulumi.getter(name="forwardProtocol")
|
1266
|
+
def forward_protocol(self) -> str:
|
1267
|
+
"""
|
1268
|
+
Backend protocol.
|
1269
|
+
"""
|
1270
|
+
return pulumi.get(self, "forward_protocol")
|
1271
|
+
|
1272
|
+
@property
|
1273
|
+
@pulumi.getter(name="healthCheckDelay")
|
1274
|
+
def health_check_delay(self) -> str:
|
1275
|
+
"""
|
1276
|
+
Interval between two health check requests.
|
1277
|
+
"""
|
1278
|
+
return pulumi.get(self, "health_check_delay")
|
1279
|
+
|
1280
|
+
@property
|
1281
|
+
@pulumi.getter(name="healthCheckHttp")
|
1282
|
+
def health_check_http(self) -> Sequence['outputs.GetBackendsBackendHealthCheckHttpResult']:
|
1283
|
+
"""
|
1284
|
+
This block enables HTTP health checks.
|
1285
|
+
"""
|
1286
|
+
return pulumi.get(self, "health_check_http")
|
1287
|
+
|
1288
|
+
@property
|
1289
|
+
@pulumi.getter(name="healthCheckHttps")
|
1290
|
+
def health_check_https(self) -> Sequence['outputs.GetBackendsBackendHealthCheckHttpResult']:
|
1291
|
+
"""
|
1292
|
+
This block enables HTTPS health checks.
|
1293
|
+
"""
|
1294
|
+
return pulumi.get(self, "health_check_https")
|
1295
|
+
|
1296
|
+
@property
|
1297
|
+
@pulumi.getter(name="healthCheckMaxRetries")
|
1298
|
+
def health_check_max_retries(self) -> int:
|
1299
|
+
"""
|
1300
|
+
Number of allowed failed health check requests before the backend server is marked as down.
|
1301
|
+
"""
|
1302
|
+
return pulumi.get(self, "health_check_max_retries")
|
1303
|
+
|
1304
|
+
@property
|
1305
|
+
@pulumi.getter(name="healthCheckPort")
|
1306
|
+
def health_check_port(self) -> int:
|
1307
|
+
"""
|
1308
|
+
Port the health check requests will be sent to.
|
1309
|
+
"""
|
1310
|
+
return pulumi.get(self, "health_check_port")
|
1311
|
+
|
1312
|
+
@property
|
1313
|
+
@pulumi.getter(name="healthCheckTcps")
|
1314
|
+
def health_check_tcps(self) -> Sequence['outputs.GetBackendsBackendHealthCheckTcpResult']:
|
1315
|
+
"""
|
1316
|
+
This block enables TCP health checks.
|
1317
|
+
"""
|
1318
|
+
return pulumi.get(self, "health_check_tcps")
|
1319
|
+
|
1320
|
+
@property
|
1321
|
+
@pulumi.getter(name="healthCheckTimeout")
|
1322
|
+
def health_check_timeout(self) -> str:
|
1323
|
+
"""
|
1324
|
+
Timeout before a health check request is considered failed.
|
1325
|
+
"""
|
1326
|
+
return pulumi.get(self, "health_check_timeout")
|
1327
|
+
|
1328
|
+
@property
|
1329
|
+
@pulumi.getter
|
1330
|
+
def id(self) -> str:
|
1331
|
+
"""
|
1332
|
+
The associated backend ID.
|
1333
|
+
"""
|
1334
|
+
return pulumi.get(self, "id")
|
1335
|
+
|
1336
|
+
@property
|
1337
|
+
@pulumi.getter(name="ignoreSslServerVerify")
|
1338
|
+
def ignore_ssl_server_verify(self) -> bool:
|
1339
|
+
"""
|
1340
|
+
Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection.
|
1341
|
+
"""
|
1342
|
+
return pulumi.get(self, "ignore_ssl_server_verify")
|
1343
|
+
|
1344
|
+
@property
|
1345
|
+
@pulumi.getter(name="lbId")
|
1346
|
+
def lb_id(self) -> str:
|
1347
|
+
"""
|
1348
|
+
The Load Balancer ID this backend is attached to. Backends with a matching ID are listed.
|
1349
|
+
"""
|
1350
|
+
return pulumi.get(self, "lb_id")
|
1351
|
+
|
1352
|
+
@property
|
1353
|
+
@pulumi.getter
|
1354
|
+
def name(self) -> str:
|
1355
|
+
"""
|
1356
|
+
The backend name to filter for. Backends with a matching name are listed.
|
1357
|
+
"""
|
1358
|
+
return pulumi.get(self, "name")
|
1359
|
+
|
1360
|
+
@property
|
1361
|
+
@pulumi.getter(name="onMarkedDownAction")
|
1362
|
+
def on_marked_down_action(self) -> str:
|
1363
|
+
"""
|
1364
|
+
Modify what occurs when a backend server is marked down.
|
1365
|
+
"""
|
1366
|
+
return pulumi.get(self, "on_marked_down_action")
|
1367
|
+
|
1368
|
+
@property
|
1369
|
+
@pulumi.getter(name="proxyProtocol")
|
1370
|
+
def proxy_protocol(self) -> str:
|
1371
|
+
"""
|
1372
|
+
The type of PROXY protocol.
|
1373
|
+
"""
|
1374
|
+
return pulumi.get(self, "proxy_protocol")
|
1375
|
+
|
1376
|
+
@property
|
1377
|
+
@pulumi.getter(name="serverIps")
|
1378
|
+
def server_ips(self) -> Sequence[str]:
|
1379
|
+
"""
|
1380
|
+
List of backend server IP addresses.
|
1381
|
+
"""
|
1382
|
+
return pulumi.get(self, "server_ips")
|
1383
|
+
|
1384
|
+
@property
|
1385
|
+
@pulumi.getter(name="sslBridging")
|
1386
|
+
def ssl_bridging(self) -> bool:
|
1387
|
+
"""
|
1388
|
+
Enables SSL between Load Balancer and backend servers.
|
1389
|
+
"""
|
1390
|
+
return pulumi.get(self, "ssl_bridging")
|
1391
|
+
|
1392
|
+
@property
|
1393
|
+
@pulumi.getter(name="stickySessions")
|
1394
|
+
def sticky_sessions(self) -> str:
|
1395
|
+
"""
|
1396
|
+
Enables cookie-based session persistence.
|
1397
|
+
"""
|
1398
|
+
return pulumi.get(self, "sticky_sessions")
|
1399
|
+
|
1400
|
+
@property
|
1401
|
+
@pulumi.getter(name="stickySessionsCookieName")
|
1402
|
+
def sticky_sessions_cookie_name(self) -> str:
|
1403
|
+
"""
|
1404
|
+
Cookie name for sticky sessions.
|
1405
|
+
"""
|
1406
|
+
return pulumi.get(self, "sticky_sessions_cookie_name")
|
1407
|
+
|
1408
|
+
@property
|
1409
|
+
@pulumi.getter(name="timeoutConnect")
|
1410
|
+
def timeout_connect(self) -> str:
|
1411
|
+
"""
|
1412
|
+
Maximum initial server connection establishment time.
|
1413
|
+
"""
|
1414
|
+
return pulumi.get(self, "timeout_connect")
|
1415
|
+
|
1416
|
+
@property
|
1417
|
+
@pulumi.getter(name="timeoutServer")
|
1418
|
+
def timeout_server(self) -> str:
|
1419
|
+
"""
|
1420
|
+
Maximum server connection inactivity time.
|
1421
|
+
"""
|
1422
|
+
return pulumi.get(self, "timeout_server")
|
1423
|
+
|
1424
|
+
@property
|
1425
|
+
@pulumi.getter(name="timeoutTunnel")
|
1426
|
+
def timeout_tunnel(self) -> str:
|
1427
|
+
"""
|
1428
|
+
Maximum tunnel inactivity time.
|
1429
|
+
"""
|
1430
|
+
return pulumi.get(self, "timeout_tunnel")
|
1431
|
+
|
1432
|
+
@property
|
1433
|
+
@pulumi.getter(name="updateAt")
|
1434
|
+
def update_at(self) -> str:
|
1435
|
+
"""
|
1436
|
+
The date on which the backend was last updated (RFC 3339 format).
|
1437
|
+
"""
|
1438
|
+
return pulumi.get(self, "update_at")
|
1439
|
+
|
1440
|
+
|
1441
|
+
@pulumi.output_type
|
1442
|
+
class GetBackendsBackendHealthCheckHttpResult(dict):
|
1443
|
+
def __init__(__self__, *,
|
1444
|
+
code: int,
|
1445
|
+
host_header: str,
|
1446
|
+
method: str,
|
1447
|
+
sni: str,
|
1448
|
+
uri: str):
|
1449
|
+
"""
|
1450
|
+
:param int code: The expected HTTP status code.
|
1451
|
+
:param str host_header: The HTTP host header to use for health check requests.
|
1452
|
+
:param str method: The HTTP method to use for health check requests.
|
1453
|
+
:param str sni: The SNI to use for HC requests over SSL.
|
1454
|
+
:param str uri: The HTTPS endpoint URL to call for health check requests.
|
1455
|
+
"""
|
1456
|
+
pulumi.set(__self__, "code", code)
|
1457
|
+
pulumi.set(__self__, "host_header", host_header)
|
1458
|
+
pulumi.set(__self__, "method", method)
|
1459
|
+
pulumi.set(__self__, "sni", sni)
|
1460
|
+
pulumi.set(__self__, "uri", uri)
|
1461
|
+
|
1462
|
+
@property
|
1463
|
+
@pulumi.getter
|
1464
|
+
def code(self) -> int:
|
1465
|
+
"""
|
1466
|
+
The expected HTTP status code.
|
1467
|
+
"""
|
1468
|
+
return pulumi.get(self, "code")
|
1469
|
+
|
1470
|
+
@property
|
1471
|
+
@pulumi.getter(name="hostHeader")
|
1472
|
+
def host_header(self) -> str:
|
1473
|
+
"""
|
1474
|
+
The HTTP host header to use for health check requests.
|
1475
|
+
"""
|
1476
|
+
return pulumi.get(self, "host_header")
|
1477
|
+
|
1478
|
+
@property
|
1479
|
+
@pulumi.getter
|
1480
|
+
def method(self) -> str:
|
1481
|
+
"""
|
1482
|
+
The HTTP method to use for health check requests.
|
1483
|
+
"""
|
1484
|
+
return pulumi.get(self, "method")
|
1485
|
+
|
1486
|
+
@property
|
1487
|
+
@pulumi.getter
|
1488
|
+
def sni(self) -> str:
|
1489
|
+
"""
|
1490
|
+
The SNI to use for HC requests over SSL.
|
1491
|
+
"""
|
1492
|
+
return pulumi.get(self, "sni")
|
1493
|
+
|
1494
|
+
@property
|
1495
|
+
@pulumi.getter
|
1496
|
+
def uri(self) -> str:
|
1497
|
+
"""
|
1498
|
+
The HTTPS endpoint URL to call for health check requests.
|
1499
|
+
"""
|
1500
|
+
return pulumi.get(self, "uri")
|
1501
|
+
|
1502
|
+
|
1503
|
+
@pulumi.output_type
|
1504
|
+
class GetBackendsBackendHealthCheckTcpResult(dict):
|
1505
|
+
def __init__(__self__):
|
1506
|
+
pass
|
1507
|
+
|
1508
|
+
|
1509
|
+
@pulumi.output_type
|
1510
|
+
class GetCertificateCustomCertificateResult(dict):
|
1511
|
+
def __init__(__self__, *,
|
1512
|
+
certificate_chain: str):
|
1513
|
+
"""
|
1514
|
+
:param str certificate_chain: The full PEM-formatted certificate chain
|
1515
|
+
"""
|
1516
|
+
pulumi.set(__self__, "certificate_chain", certificate_chain)
|
1517
|
+
|
1518
|
+
@property
|
1519
|
+
@pulumi.getter(name="certificateChain")
|
1520
|
+
def certificate_chain(self) -> str:
|
1521
|
+
"""
|
1522
|
+
The full PEM-formatted certificate chain
|
1523
|
+
"""
|
1524
|
+
return pulumi.get(self, "certificate_chain")
|
1525
|
+
|
1526
|
+
|
1527
|
+
@pulumi.output_type
|
1528
|
+
class GetCertificateLetsencryptResult(dict):
|
1529
|
+
def __init__(__self__, *,
|
1530
|
+
common_name: str,
|
1531
|
+
subject_alternative_names: Sequence[str]):
|
1532
|
+
"""
|
1533
|
+
:param str common_name: The main domain name of the certificate
|
1534
|
+
:param Sequence[str] subject_alternative_names: The alternative domain names of the certificate
|
1535
|
+
"""
|
1536
|
+
pulumi.set(__self__, "common_name", common_name)
|
1537
|
+
pulumi.set(__self__, "subject_alternative_names", subject_alternative_names)
|
1538
|
+
|
1539
|
+
@property
|
1540
|
+
@pulumi.getter(name="commonName")
|
1541
|
+
def common_name(self) -> str:
|
1542
|
+
"""
|
1543
|
+
The main domain name of the certificate
|
1544
|
+
"""
|
1545
|
+
return pulumi.get(self, "common_name")
|
1546
|
+
|
1547
|
+
@property
|
1548
|
+
@pulumi.getter(name="subjectAlternativeNames")
|
1549
|
+
def subject_alternative_names(self) -> Sequence[str]:
|
1550
|
+
"""
|
1551
|
+
The alternative domain names of the certificate
|
1552
|
+
"""
|
1553
|
+
return pulumi.get(self, "subject_alternative_names")
|
1554
|
+
|
1555
|
+
|
1556
|
+
@pulumi.output_type
|
1557
|
+
class GetFrontendAclResult(dict):
|
1558
|
+
def __init__(__self__, *,
|
1559
|
+
actions: Sequence['outputs.GetFrontendAclActionResult'],
|
1560
|
+
created_at: str,
|
1561
|
+
description: str,
|
1562
|
+
matches: Sequence['outputs.GetFrontendAclMatchResult'],
|
1563
|
+
name: str,
|
1564
|
+
updated_at: str):
|
1565
|
+
"""
|
1566
|
+
:param Sequence['GetFrontendAclActionArgs'] actions: Action to undertake when an ACL filter matches
|
1567
|
+
:param str created_at: IsDate and time of ACL's creation (RFC 3339 format)
|
1568
|
+
:param str description: Description of the ACL
|
1569
|
+
:param Sequence['GetFrontendAclMatchArgs'] matches: The ACL match rule
|
1570
|
+
:param str name: The name of the frontend.
|
1571
|
+
- When using the `name` you should specify the `lb-id`
|
1572
|
+
:param str updated_at: IsDate and time of ACL's update (RFC 3339 format)
|
1573
|
+
"""
|
1574
|
+
pulumi.set(__self__, "actions", actions)
|
1575
|
+
pulumi.set(__self__, "created_at", created_at)
|
1576
|
+
pulumi.set(__self__, "description", description)
|
1577
|
+
pulumi.set(__self__, "matches", matches)
|
1578
|
+
pulumi.set(__self__, "name", name)
|
1579
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
1580
|
+
|
1581
|
+
@property
|
1582
|
+
@pulumi.getter
|
1583
|
+
def actions(self) -> Sequence['outputs.GetFrontendAclActionResult']:
|
1584
|
+
"""
|
1585
|
+
Action to undertake when an ACL filter matches
|
1586
|
+
"""
|
1587
|
+
return pulumi.get(self, "actions")
|
1588
|
+
|
1589
|
+
@property
|
1590
|
+
@pulumi.getter(name="createdAt")
|
1591
|
+
def created_at(self) -> str:
|
1592
|
+
"""
|
1593
|
+
IsDate and time of ACL's creation (RFC 3339 format)
|
1594
|
+
"""
|
1595
|
+
return pulumi.get(self, "created_at")
|
1596
|
+
|
1597
|
+
@property
|
1598
|
+
@pulumi.getter
|
1599
|
+
def description(self) -> str:
|
1600
|
+
"""
|
1601
|
+
Description of the ACL
|
1602
|
+
"""
|
1603
|
+
return pulumi.get(self, "description")
|
1604
|
+
|
1605
|
+
@property
|
1606
|
+
@pulumi.getter
|
1607
|
+
def matches(self) -> Sequence['outputs.GetFrontendAclMatchResult']:
|
1608
|
+
"""
|
1609
|
+
The ACL match rule
|
1610
|
+
"""
|
1611
|
+
return pulumi.get(self, "matches")
|
1612
|
+
|
1613
|
+
@property
|
1614
|
+
@pulumi.getter
|
1615
|
+
def name(self) -> str:
|
1616
|
+
"""
|
1617
|
+
The name of the frontend.
|
1618
|
+
- When using the `name` you should specify the `lb-id`
|
1619
|
+
"""
|
1620
|
+
return pulumi.get(self, "name")
|
1621
|
+
|
1622
|
+
@property
|
1623
|
+
@pulumi.getter(name="updatedAt")
|
1624
|
+
def updated_at(self) -> str:
|
1625
|
+
"""
|
1626
|
+
IsDate and time of ACL's update (RFC 3339 format)
|
1627
|
+
"""
|
1628
|
+
return pulumi.get(self, "updated_at")
|
1629
|
+
|
1630
|
+
|
1631
|
+
@pulumi.output_type
|
1632
|
+
class GetFrontendAclActionResult(dict):
|
1633
|
+
def __init__(__self__, *,
|
1634
|
+
redirects: Sequence['outputs.GetFrontendAclActionRedirectResult'],
|
1635
|
+
type: str):
|
1636
|
+
"""
|
1637
|
+
:param Sequence['GetFrontendAclActionRedirectArgs'] redirects: Redirect parameters when using an ACL with `redirect` action
|
1638
|
+
:param str type: The action type
|
1639
|
+
"""
|
1640
|
+
pulumi.set(__self__, "redirects", redirects)
|
1641
|
+
pulumi.set(__self__, "type", type)
|
1642
|
+
|
1643
|
+
@property
|
1644
|
+
@pulumi.getter
|
1645
|
+
def redirects(self) -> Sequence['outputs.GetFrontendAclActionRedirectResult']:
|
1646
|
+
"""
|
1647
|
+
Redirect parameters when using an ACL with `redirect` action
|
1648
|
+
"""
|
1649
|
+
return pulumi.get(self, "redirects")
|
1650
|
+
|
1651
|
+
@property
|
1652
|
+
@pulumi.getter
|
1653
|
+
def type(self) -> str:
|
1654
|
+
"""
|
1655
|
+
The action type
|
1656
|
+
"""
|
1657
|
+
return pulumi.get(self, "type")
|
1658
|
+
|
1659
|
+
|
1660
|
+
@pulumi.output_type
|
1661
|
+
class GetFrontendAclActionRedirectResult(dict):
|
1662
|
+
def __init__(__self__, *,
|
1663
|
+
code: int,
|
1664
|
+
target: str,
|
1665
|
+
type: str):
|
1666
|
+
"""
|
1667
|
+
:param int code: The HTTP redirect code to use
|
1668
|
+
:param str target: An URL can be used in case of a location redirect
|
1669
|
+
:param str type: The redirect type
|
1670
|
+
"""
|
1671
|
+
pulumi.set(__self__, "code", code)
|
1672
|
+
pulumi.set(__self__, "target", target)
|
1673
|
+
pulumi.set(__self__, "type", type)
|
1674
|
+
|
1675
|
+
@property
|
1676
|
+
@pulumi.getter
|
1677
|
+
def code(self) -> int:
|
1678
|
+
"""
|
1679
|
+
The HTTP redirect code to use
|
1680
|
+
"""
|
1681
|
+
return pulumi.get(self, "code")
|
1682
|
+
|
1683
|
+
@property
|
1684
|
+
@pulumi.getter
|
1685
|
+
def target(self) -> str:
|
1686
|
+
"""
|
1687
|
+
An URL can be used in case of a location redirect
|
1688
|
+
"""
|
1689
|
+
return pulumi.get(self, "target")
|
1690
|
+
|
1691
|
+
@property
|
1692
|
+
@pulumi.getter
|
1693
|
+
def type(self) -> str:
|
1694
|
+
"""
|
1695
|
+
The redirect type
|
1696
|
+
"""
|
1697
|
+
return pulumi.get(self, "type")
|
1698
|
+
|
1699
|
+
|
1700
|
+
@pulumi.output_type
|
1701
|
+
class GetFrontendAclMatchResult(dict):
|
1702
|
+
def __init__(__self__, *,
|
1703
|
+
http_filter: str,
|
1704
|
+
http_filter_option: str,
|
1705
|
+
http_filter_values: Sequence[str],
|
1706
|
+
invert: bool,
|
1707
|
+
ip_subnets: Sequence[str]):
|
1708
|
+
"""
|
1709
|
+
:param str http_filter: The HTTP filter to match
|
1710
|
+
:param str http_filter_option: You can use this field with http_header_match acl type to set the header name to filter
|
1711
|
+
:param Sequence[str] http_filter_values: A list of possible values to match for the given HTTP filter
|
1712
|
+
:param bool invert: If set to true, the condition will be of type "unless"
|
1713
|
+
:param Sequence[str] ip_subnets: A list of IPs or CIDR v4/v6 addresses of the client of the session to match
|
1714
|
+
"""
|
1715
|
+
pulumi.set(__self__, "http_filter", http_filter)
|
1716
|
+
pulumi.set(__self__, "http_filter_option", http_filter_option)
|
1717
|
+
pulumi.set(__self__, "http_filter_values", http_filter_values)
|
1718
|
+
pulumi.set(__self__, "invert", invert)
|
1719
|
+
pulumi.set(__self__, "ip_subnets", ip_subnets)
|
1720
|
+
|
1721
|
+
@property
|
1722
|
+
@pulumi.getter(name="httpFilter")
|
1723
|
+
def http_filter(self) -> str:
|
1724
|
+
"""
|
1725
|
+
The HTTP filter to match
|
1726
|
+
"""
|
1727
|
+
return pulumi.get(self, "http_filter")
|
1728
|
+
|
1729
|
+
@property
|
1730
|
+
@pulumi.getter(name="httpFilterOption")
|
1731
|
+
def http_filter_option(self) -> str:
|
1732
|
+
"""
|
1733
|
+
You can use this field with http_header_match acl type to set the header name to filter
|
1734
|
+
"""
|
1735
|
+
return pulumi.get(self, "http_filter_option")
|
1736
|
+
|
1737
|
+
@property
|
1738
|
+
@pulumi.getter(name="httpFilterValues")
|
1739
|
+
def http_filter_values(self) -> Sequence[str]:
|
1740
|
+
"""
|
1741
|
+
A list of possible values to match for the given HTTP filter
|
1742
|
+
"""
|
1743
|
+
return pulumi.get(self, "http_filter_values")
|
1744
|
+
|
1745
|
+
@property
|
1746
|
+
@pulumi.getter
|
1747
|
+
def invert(self) -> bool:
|
1748
|
+
"""
|
1749
|
+
If set to true, the condition will be of type "unless"
|
1750
|
+
"""
|
1751
|
+
return pulumi.get(self, "invert")
|
1752
|
+
|
1753
|
+
@property
|
1754
|
+
@pulumi.getter(name="ipSubnets")
|
1755
|
+
def ip_subnets(self) -> Sequence[str]:
|
1756
|
+
"""
|
1757
|
+
A list of IPs or CIDR v4/v6 addresses of the client of the session to match
|
1758
|
+
"""
|
1759
|
+
return pulumi.get(self, "ip_subnets")
|
1760
|
+
|
1761
|
+
|
1762
|
+
@pulumi.output_type
|
1763
|
+
class GetFrontendsFrontendResult(dict):
|
1764
|
+
def __init__(__self__, *,
|
1765
|
+
backend_id: str,
|
1766
|
+
certificate_ids: Sequence[str],
|
1767
|
+
created_at: str,
|
1768
|
+
enable_http3: bool,
|
1769
|
+
id: str,
|
1770
|
+
inbound_port: int,
|
1771
|
+
lb_id: str,
|
1772
|
+
name: str,
|
1773
|
+
timeout_client: str,
|
1774
|
+
update_at: str):
|
1775
|
+
"""
|
1776
|
+
:param str backend_id: The Load Balancer backend ID this frontend is attached to.
|
1777
|
+
> **Important:** Load Balancer backend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
|
1778
|
+
:param Sequence[str] certificate_ids: List of certificate IDs that are used by the frontend.
|
1779
|
+
:param str created_at: The date on which the frontend was created (RFC 3339 format).
|
1780
|
+
:param bool enable_http3: Whether HTTP/3 protocol is activated.
|
1781
|
+
:param str id: The ID of the associated frontend.
|
1782
|
+
> **Important:** LB frontend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
|
1783
|
+
:param int inbound_port: TCP port the frontend listens to.
|
1784
|
+
:param str lb_id: The Load Balancer ID this frontend is attached to. Frontends with a matching ID are listed.
|
1785
|
+
:param str name: The frontend name to filter for. Frontends with a matching name are listed.
|
1786
|
+
:param str timeout_client: Maximum inactivity time on the client side.
|
1787
|
+
:param str update_at: The date aont which the frontend was last updated (RFC 3339 format).
|
1788
|
+
"""
|
1789
|
+
pulumi.set(__self__, "backend_id", backend_id)
|
1790
|
+
pulumi.set(__self__, "certificate_ids", certificate_ids)
|
1791
|
+
pulumi.set(__self__, "created_at", created_at)
|
1792
|
+
pulumi.set(__self__, "enable_http3", enable_http3)
|
1793
|
+
pulumi.set(__self__, "id", id)
|
1794
|
+
pulumi.set(__self__, "inbound_port", inbound_port)
|
1795
|
+
pulumi.set(__self__, "lb_id", lb_id)
|
1796
|
+
pulumi.set(__self__, "name", name)
|
1797
|
+
pulumi.set(__self__, "timeout_client", timeout_client)
|
1798
|
+
pulumi.set(__self__, "update_at", update_at)
|
1799
|
+
|
1800
|
+
@property
|
1801
|
+
@pulumi.getter(name="backendId")
|
1802
|
+
def backend_id(self) -> str:
|
1803
|
+
"""
|
1804
|
+
The Load Balancer backend ID this frontend is attached to.
|
1805
|
+
> **Important:** Load Balancer backend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
|
1806
|
+
"""
|
1807
|
+
return pulumi.get(self, "backend_id")
|
1808
|
+
|
1809
|
+
@property
|
1810
|
+
@pulumi.getter(name="certificateIds")
|
1811
|
+
def certificate_ids(self) -> Sequence[str]:
|
1812
|
+
"""
|
1813
|
+
List of certificate IDs that are used by the frontend.
|
1814
|
+
"""
|
1815
|
+
return pulumi.get(self, "certificate_ids")
|
1816
|
+
|
1817
|
+
@property
|
1818
|
+
@pulumi.getter(name="createdAt")
|
1819
|
+
def created_at(self) -> str:
|
1820
|
+
"""
|
1821
|
+
The date on which the frontend was created (RFC 3339 format).
|
1822
|
+
"""
|
1823
|
+
return pulumi.get(self, "created_at")
|
1824
|
+
|
1825
|
+
@property
|
1826
|
+
@pulumi.getter(name="enableHttp3")
|
1827
|
+
def enable_http3(self) -> bool:
|
1828
|
+
"""
|
1829
|
+
Whether HTTP/3 protocol is activated.
|
1830
|
+
"""
|
1831
|
+
return pulumi.get(self, "enable_http3")
|
1832
|
+
|
1833
|
+
@property
|
1834
|
+
@pulumi.getter
|
1835
|
+
def id(self) -> str:
|
1836
|
+
"""
|
1837
|
+
The ID of the associated frontend.
|
1838
|
+
> **Important:** LB frontend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
|
1839
|
+
"""
|
1840
|
+
return pulumi.get(self, "id")
|
1841
|
+
|
1842
|
+
@property
|
1843
|
+
@pulumi.getter(name="inboundPort")
|
1844
|
+
def inbound_port(self) -> int:
|
1845
|
+
"""
|
1846
|
+
TCP port the frontend listens to.
|
1847
|
+
"""
|
1848
|
+
return pulumi.get(self, "inbound_port")
|
1849
|
+
|
1850
|
+
@property
|
1851
|
+
@pulumi.getter(name="lbId")
|
1852
|
+
def lb_id(self) -> str:
|
1853
|
+
"""
|
1854
|
+
The Load Balancer ID this frontend is attached to. Frontends with a matching ID are listed.
|
1855
|
+
"""
|
1856
|
+
return pulumi.get(self, "lb_id")
|
1857
|
+
|
1858
|
+
@property
|
1859
|
+
@pulumi.getter
|
1860
|
+
def name(self) -> str:
|
1861
|
+
"""
|
1862
|
+
The frontend name to filter for. Frontends with a matching name are listed.
|
1863
|
+
"""
|
1864
|
+
return pulumi.get(self, "name")
|
1865
|
+
|
1866
|
+
@property
|
1867
|
+
@pulumi.getter(name="timeoutClient")
|
1868
|
+
def timeout_client(self) -> str:
|
1869
|
+
"""
|
1870
|
+
Maximum inactivity time on the client side.
|
1871
|
+
"""
|
1872
|
+
return pulumi.get(self, "timeout_client")
|
1873
|
+
|
1874
|
+
@property
|
1875
|
+
@pulumi.getter(name="updateAt")
|
1876
|
+
def update_at(self) -> str:
|
1877
|
+
"""
|
1878
|
+
The date aont which the frontend was last updated (RFC 3339 format).
|
1879
|
+
"""
|
1880
|
+
return pulumi.get(self, "update_at")
|
1881
|
+
|
1882
|
+
|
1883
|
+
@pulumi.output_type
|
1884
|
+
class GetIpsIpResult(dict):
|
1885
|
+
def __init__(__self__, *,
|
1886
|
+
id: str,
|
1887
|
+
ip_address: str,
|
1888
|
+
lb_id: str,
|
1889
|
+
organization_id: str,
|
1890
|
+
project_id: str,
|
1891
|
+
reverse: str,
|
1892
|
+
tags: Sequence[str],
|
1893
|
+
zone: str):
|
1894
|
+
"""
|
1895
|
+
:param str id: The ID of the associated IP.
|
1896
|
+
:param str ip_address: The IP address
|
1897
|
+
:param str lb_id: The ID of the associated Load BalancerD, if any
|
1898
|
+
:param str organization_id: The ID of the Organization the Load Balancer is associated with.
|
1899
|
+
:param str project_id: The ID of the Project the Load Balancer is associated with.
|
1900
|
+
:param str reverse: The reverse domain associated with this IP.
|
1901
|
+
:param Sequence[str] tags: List of tags used as filter. IPs with these exact tags are listed.
|
1902
|
+
:param str zone: `zone`) The zone in which the IPs exist.
|
1903
|
+
"""
|
1904
|
+
pulumi.set(__self__, "id", id)
|
1905
|
+
pulumi.set(__self__, "ip_address", ip_address)
|
1906
|
+
pulumi.set(__self__, "lb_id", lb_id)
|
1907
|
+
pulumi.set(__self__, "organization_id", organization_id)
|
1908
|
+
pulumi.set(__self__, "project_id", project_id)
|
1909
|
+
pulumi.set(__self__, "reverse", reverse)
|
1910
|
+
pulumi.set(__self__, "tags", tags)
|
1911
|
+
pulumi.set(__self__, "zone", zone)
|
1912
|
+
|
1913
|
+
@property
|
1914
|
+
@pulumi.getter
|
1915
|
+
def id(self) -> str:
|
1916
|
+
"""
|
1917
|
+
The ID of the associated IP.
|
1918
|
+
"""
|
1919
|
+
return pulumi.get(self, "id")
|
1920
|
+
|
1921
|
+
@property
|
1922
|
+
@pulumi.getter(name="ipAddress")
|
1923
|
+
def ip_address(self) -> str:
|
1924
|
+
"""
|
1925
|
+
The IP address
|
1926
|
+
"""
|
1927
|
+
return pulumi.get(self, "ip_address")
|
1928
|
+
|
1929
|
+
@property
|
1930
|
+
@pulumi.getter(name="lbId")
|
1931
|
+
def lb_id(self) -> str:
|
1932
|
+
"""
|
1933
|
+
The ID of the associated Load BalancerD, if any
|
1934
|
+
"""
|
1935
|
+
return pulumi.get(self, "lb_id")
|
1936
|
+
|
1937
|
+
@property
|
1938
|
+
@pulumi.getter(name="organizationId")
|
1939
|
+
def organization_id(self) -> str:
|
1940
|
+
"""
|
1941
|
+
The ID of the Organization the Load Balancer is associated with.
|
1942
|
+
"""
|
1943
|
+
return pulumi.get(self, "organization_id")
|
1944
|
+
|
1945
|
+
@property
|
1946
|
+
@pulumi.getter(name="projectId")
|
1947
|
+
def project_id(self) -> str:
|
1948
|
+
"""
|
1949
|
+
The ID of the Project the Load Balancer is associated with.
|
1950
|
+
"""
|
1951
|
+
return pulumi.get(self, "project_id")
|
1952
|
+
|
1953
|
+
@property
|
1954
|
+
@pulumi.getter
|
1955
|
+
def reverse(self) -> str:
|
1956
|
+
"""
|
1957
|
+
The reverse domain associated with this IP.
|
1958
|
+
"""
|
1959
|
+
return pulumi.get(self, "reverse")
|
1960
|
+
|
1961
|
+
@property
|
1962
|
+
@pulumi.getter
|
1963
|
+
def tags(self) -> Sequence[str]:
|
1964
|
+
"""
|
1965
|
+
List of tags used as filter. IPs with these exact tags are listed.
|
1966
|
+
"""
|
1967
|
+
return pulumi.get(self, "tags")
|
1968
|
+
|
1969
|
+
@property
|
1970
|
+
@pulumi.getter
|
1971
|
+
def zone(self) -> str:
|
1972
|
+
"""
|
1973
|
+
`zone`) The zone in which the IPs exist.
|
1974
|
+
"""
|
1975
|
+
return pulumi.get(self, "zone")
|
1976
|
+
|
1977
|
+
|
1978
|
+
@pulumi.output_type
|
1979
|
+
class GetLoadBalancerPrivateNetworkResult(dict):
|
1980
|
+
def __init__(__self__, *,
|
1981
|
+
dhcp_config: bool,
|
1982
|
+
ipam_ids: Sequence[str],
|
1983
|
+
private_network_id: str,
|
1984
|
+
static_configs: Sequence[str],
|
1985
|
+
status: str,
|
1986
|
+
zone: str):
|
1987
|
+
"""
|
1988
|
+
:param bool dhcp_config: Set to true if you want to let DHCP assign IP addresses
|
1989
|
+
:param Sequence[str] ipam_ids: IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network
|
1990
|
+
:param str private_network_id: The Private Network ID
|
1991
|
+
:param Sequence[str] static_configs: Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
|
1992
|
+
:param str status: The status of private network connection
|
1993
|
+
:param str zone: (Defaults to provider `zone`) The zone in which the Load Balancer exists.
|
1994
|
+
"""
|
1995
|
+
pulumi.set(__self__, "dhcp_config", dhcp_config)
|
1996
|
+
pulumi.set(__self__, "ipam_ids", ipam_ids)
|
1997
|
+
pulumi.set(__self__, "private_network_id", private_network_id)
|
1998
|
+
pulumi.set(__self__, "static_configs", static_configs)
|
1999
|
+
pulumi.set(__self__, "status", status)
|
2000
|
+
pulumi.set(__self__, "zone", zone)
|
2001
|
+
|
2002
|
+
@property
|
2003
|
+
@pulumi.getter(name="dhcpConfig")
|
2004
|
+
def dhcp_config(self) -> bool:
|
2005
|
+
"""
|
2006
|
+
Set to true if you want to let DHCP assign IP addresses
|
2007
|
+
"""
|
2008
|
+
return pulumi.get(self, "dhcp_config")
|
2009
|
+
|
2010
|
+
@property
|
2011
|
+
@pulumi.getter(name="ipamIds")
|
2012
|
+
def ipam_ids(self) -> Sequence[str]:
|
2013
|
+
"""
|
2014
|
+
IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network
|
2015
|
+
"""
|
2016
|
+
return pulumi.get(self, "ipam_ids")
|
2017
|
+
|
2018
|
+
@property
|
2019
|
+
@pulumi.getter(name="privateNetworkId")
|
2020
|
+
def private_network_id(self) -> str:
|
2021
|
+
"""
|
2022
|
+
The Private Network ID
|
2023
|
+
"""
|
2024
|
+
return pulumi.get(self, "private_network_id")
|
2025
|
+
|
2026
|
+
@property
|
2027
|
+
@pulumi.getter(name="staticConfigs")
|
2028
|
+
def static_configs(self) -> Sequence[str]:
|
2029
|
+
"""
|
2030
|
+
Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
|
2031
|
+
"""
|
2032
|
+
return pulumi.get(self, "static_configs")
|
2033
|
+
|
2034
|
+
@property
|
2035
|
+
@pulumi.getter
|
2036
|
+
def status(self) -> str:
|
2037
|
+
"""
|
2038
|
+
The status of private network connection
|
2039
|
+
"""
|
2040
|
+
return pulumi.get(self, "status")
|
2041
|
+
|
2042
|
+
@property
|
2043
|
+
@pulumi.getter
|
2044
|
+
def zone(self) -> str:
|
2045
|
+
"""
|
2046
|
+
(Defaults to provider `zone`) The zone in which the Load Balancer exists.
|
2047
|
+
"""
|
2048
|
+
return pulumi.get(self, "zone")
|
2049
|
+
|
2050
|
+
|
2051
|
+
@pulumi.output_type
|
2052
|
+
class GetLoadBalancersLbResult(dict):
|
2053
|
+
def __init__(__self__, *,
|
2054
|
+
backend_count: int,
|
2055
|
+
created_at: str,
|
2056
|
+
description: str,
|
2057
|
+
frontend_count: int,
|
2058
|
+
id: str,
|
2059
|
+
instances: Sequence['outputs.GetLoadBalancersLbInstanceResult'],
|
2060
|
+
ips: Sequence['outputs.GetLoadBalancersLbIpResult'],
|
2061
|
+
name: str,
|
2062
|
+
organization_id: str,
|
2063
|
+
private_network_count: int,
|
2064
|
+
project_id: str,
|
2065
|
+
route_count: int,
|
2066
|
+
ssl_compatibility_level: str,
|
2067
|
+
status: str,
|
2068
|
+
subscriber: str,
|
2069
|
+
tags: Sequence[str],
|
2070
|
+
type: str,
|
2071
|
+
updated_at: str,
|
2072
|
+
zone: str):
|
2073
|
+
"""
|
2074
|
+
:param int backend_count: Number of backends the Load Balancer has.
|
2075
|
+
:param str created_at: Date on which the Load Balancer was created.
|
2076
|
+
:param str description: The description of the Load Balancer.
|
2077
|
+
:param int frontend_count: Number of frontends the Load Balancer has.
|
2078
|
+
:param str id: The ID of the Load Balancer.
|
2079
|
+
:param Sequence['GetLoadBalancersLbInstanceArgs'] instances: List of underlying Instances.
|
2080
|
+
:param Sequence['GetLoadBalancersLbIpArgs'] ips: List of IPs attached to the Load Balancer.
|
2081
|
+
:param str name: The Load Balancer name to filter for. Load Balancers with a matching name are listed.
|
2082
|
+
:param str organization_id: The ID of the Organization the Load Balancer is associated with.
|
2083
|
+
:param int private_network_count: Number of Private Networks attached to the Load balancer.
|
2084
|
+
:param str project_id: The ID of the Project the Load Balancer is associated with.
|
2085
|
+
:param int route_count: Number of routes the Load balancer has.
|
2086
|
+
:param str ssl_compatibility_level: Determines the minimal SSL version which needs to be supported on the client side.
|
2087
|
+
:param str status: The state of the Load Balancer Instance. Possible values are: `unknown`, `ready`, `pending`, `stopped`, `error`, `locked` and `migrating`.
|
2088
|
+
:param str subscriber: The subscriber information.
|
2089
|
+
:param Sequence[str] tags: List of tags to filter for. Load Balancers with these exact tags are listed.
|
2090
|
+
:param str type: The offer type of the Load Balancer.
|
2091
|
+
:param str updated_at: Date on which the Load Balancer was updated.
|
2092
|
+
:param str zone: `zone`) The zone in which the Load Balancers exist.
|
2093
|
+
"""
|
2094
|
+
pulumi.set(__self__, "backend_count", backend_count)
|
2095
|
+
pulumi.set(__self__, "created_at", created_at)
|
2096
|
+
pulumi.set(__self__, "description", description)
|
2097
|
+
pulumi.set(__self__, "frontend_count", frontend_count)
|
2098
|
+
pulumi.set(__self__, "id", id)
|
2099
|
+
pulumi.set(__self__, "instances", instances)
|
2100
|
+
pulumi.set(__self__, "ips", ips)
|
2101
|
+
pulumi.set(__self__, "name", name)
|
2102
|
+
pulumi.set(__self__, "organization_id", organization_id)
|
2103
|
+
pulumi.set(__self__, "private_network_count", private_network_count)
|
2104
|
+
pulumi.set(__self__, "project_id", project_id)
|
2105
|
+
pulumi.set(__self__, "route_count", route_count)
|
2106
|
+
pulumi.set(__self__, "ssl_compatibility_level", ssl_compatibility_level)
|
2107
|
+
pulumi.set(__self__, "status", status)
|
2108
|
+
pulumi.set(__self__, "subscriber", subscriber)
|
2109
|
+
pulumi.set(__self__, "tags", tags)
|
2110
|
+
pulumi.set(__self__, "type", type)
|
2111
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
2112
|
+
pulumi.set(__self__, "zone", zone)
|
2113
|
+
|
2114
|
+
@property
|
2115
|
+
@pulumi.getter(name="backendCount")
|
2116
|
+
def backend_count(self) -> int:
|
2117
|
+
"""
|
2118
|
+
Number of backends the Load Balancer has.
|
2119
|
+
"""
|
2120
|
+
return pulumi.get(self, "backend_count")
|
2121
|
+
|
2122
|
+
@property
|
2123
|
+
@pulumi.getter(name="createdAt")
|
2124
|
+
def created_at(self) -> str:
|
2125
|
+
"""
|
2126
|
+
Date on which the Load Balancer was created.
|
2127
|
+
"""
|
2128
|
+
return pulumi.get(self, "created_at")
|
2129
|
+
|
2130
|
+
@property
|
2131
|
+
@pulumi.getter
|
2132
|
+
def description(self) -> str:
|
2133
|
+
"""
|
2134
|
+
The description of the Load Balancer.
|
2135
|
+
"""
|
2136
|
+
return pulumi.get(self, "description")
|
2137
|
+
|
2138
|
+
@property
|
2139
|
+
@pulumi.getter(name="frontendCount")
|
2140
|
+
def frontend_count(self) -> int:
|
2141
|
+
"""
|
2142
|
+
Number of frontends the Load Balancer has.
|
2143
|
+
"""
|
2144
|
+
return pulumi.get(self, "frontend_count")
|
2145
|
+
|
2146
|
+
@property
|
2147
|
+
@pulumi.getter
|
2148
|
+
def id(self) -> str:
|
2149
|
+
"""
|
2150
|
+
The ID of the Load Balancer.
|
2151
|
+
"""
|
2152
|
+
return pulumi.get(self, "id")
|
2153
|
+
|
2154
|
+
@property
|
2155
|
+
@pulumi.getter
|
2156
|
+
def instances(self) -> Sequence['outputs.GetLoadBalancersLbInstanceResult']:
|
2157
|
+
"""
|
2158
|
+
List of underlying Instances.
|
2159
|
+
"""
|
2160
|
+
return pulumi.get(self, "instances")
|
2161
|
+
|
2162
|
+
@property
|
2163
|
+
@pulumi.getter
|
2164
|
+
def ips(self) -> Sequence['outputs.GetLoadBalancersLbIpResult']:
|
2165
|
+
"""
|
2166
|
+
List of IPs attached to the Load Balancer.
|
2167
|
+
"""
|
2168
|
+
return pulumi.get(self, "ips")
|
2169
|
+
|
2170
|
+
@property
|
2171
|
+
@pulumi.getter
|
2172
|
+
def name(self) -> str:
|
2173
|
+
"""
|
2174
|
+
The Load Balancer name to filter for. Load Balancers with a matching name are listed.
|
2175
|
+
"""
|
2176
|
+
return pulumi.get(self, "name")
|
2177
|
+
|
2178
|
+
@property
|
2179
|
+
@pulumi.getter(name="organizationId")
|
2180
|
+
def organization_id(self) -> str:
|
2181
|
+
"""
|
2182
|
+
The ID of the Organization the Load Balancer is associated with.
|
2183
|
+
"""
|
2184
|
+
return pulumi.get(self, "organization_id")
|
2185
|
+
|
2186
|
+
@property
|
2187
|
+
@pulumi.getter(name="privateNetworkCount")
|
2188
|
+
def private_network_count(self) -> int:
|
2189
|
+
"""
|
2190
|
+
Number of Private Networks attached to the Load balancer.
|
2191
|
+
"""
|
2192
|
+
return pulumi.get(self, "private_network_count")
|
2193
|
+
|
2194
|
+
@property
|
2195
|
+
@pulumi.getter(name="projectId")
|
2196
|
+
def project_id(self) -> str:
|
2197
|
+
"""
|
2198
|
+
The ID of the Project the Load Balancer is associated with.
|
2199
|
+
"""
|
2200
|
+
return pulumi.get(self, "project_id")
|
2201
|
+
|
2202
|
+
@property
|
2203
|
+
@pulumi.getter(name="routeCount")
|
2204
|
+
def route_count(self) -> int:
|
2205
|
+
"""
|
2206
|
+
Number of routes the Load balancer has.
|
2207
|
+
"""
|
2208
|
+
return pulumi.get(self, "route_count")
|
2209
|
+
|
2210
|
+
@property
|
2211
|
+
@pulumi.getter(name="sslCompatibilityLevel")
|
2212
|
+
def ssl_compatibility_level(self) -> str:
|
2213
|
+
"""
|
2214
|
+
Determines the minimal SSL version which needs to be supported on the client side.
|
2215
|
+
"""
|
2216
|
+
return pulumi.get(self, "ssl_compatibility_level")
|
2217
|
+
|
2218
|
+
@property
|
2219
|
+
@pulumi.getter
|
2220
|
+
def status(self) -> str:
|
2221
|
+
"""
|
2222
|
+
The state of the Load Balancer Instance. Possible values are: `unknown`, `ready`, `pending`, `stopped`, `error`, `locked` and `migrating`.
|
2223
|
+
"""
|
2224
|
+
return pulumi.get(self, "status")
|
2225
|
+
|
2226
|
+
@property
|
2227
|
+
@pulumi.getter
|
2228
|
+
def subscriber(self) -> str:
|
2229
|
+
"""
|
2230
|
+
The subscriber information.
|
2231
|
+
"""
|
2232
|
+
return pulumi.get(self, "subscriber")
|
2233
|
+
|
2234
|
+
@property
|
2235
|
+
@pulumi.getter
|
2236
|
+
def tags(self) -> Sequence[str]:
|
2237
|
+
"""
|
2238
|
+
List of tags to filter for. Load Balancers with these exact tags are listed.
|
2239
|
+
"""
|
2240
|
+
return pulumi.get(self, "tags")
|
2241
|
+
|
2242
|
+
@property
|
2243
|
+
@pulumi.getter
|
2244
|
+
def type(self) -> str:
|
2245
|
+
"""
|
2246
|
+
The offer type of the Load Balancer.
|
2247
|
+
"""
|
2248
|
+
return pulumi.get(self, "type")
|
2249
|
+
|
2250
|
+
@property
|
2251
|
+
@pulumi.getter(name="updatedAt")
|
2252
|
+
def updated_at(self) -> str:
|
2253
|
+
"""
|
2254
|
+
Date on which the Load Balancer was updated.
|
2255
|
+
"""
|
2256
|
+
return pulumi.get(self, "updated_at")
|
2257
|
+
|
2258
|
+
@property
|
2259
|
+
@pulumi.getter
|
2260
|
+
def zone(self) -> str:
|
2261
|
+
"""
|
2262
|
+
`zone`) The zone in which the Load Balancers exist.
|
2263
|
+
"""
|
2264
|
+
return pulumi.get(self, "zone")
|
2265
|
+
|
2266
|
+
|
2267
|
+
@pulumi.output_type
|
2268
|
+
class GetLoadBalancersLbInstanceResult(dict):
|
2269
|
+
def __init__(__self__, *,
|
2270
|
+
created_at: str,
|
2271
|
+
id: str,
|
2272
|
+
ip_address: str,
|
2273
|
+
status: str,
|
2274
|
+
updated_at: str,
|
2275
|
+
zone: str):
|
2276
|
+
"""
|
2277
|
+
:param str created_at: Date on which the Load Balancer was created.
|
2278
|
+
:param str id: The ID of the Load Balancer.
|
2279
|
+
:param str status: The state of the Load Balancer Instance. Possible values are: `unknown`, `ready`, `pending`, `stopped`, `error`, `locked` and `migrating`.
|
2280
|
+
:param str updated_at: Date on which the Load Balancer was updated.
|
2281
|
+
:param str zone: `zone`) The zone in which the Load Balancers exist.
|
2282
|
+
"""
|
2283
|
+
pulumi.set(__self__, "created_at", created_at)
|
2284
|
+
pulumi.set(__self__, "id", id)
|
2285
|
+
pulumi.set(__self__, "ip_address", ip_address)
|
2286
|
+
pulumi.set(__self__, "status", status)
|
2287
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
2288
|
+
pulumi.set(__self__, "zone", zone)
|
2289
|
+
|
2290
|
+
@property
|
2291
|
+
@pulumi.getter(name="createdAt")
|
2292
|
+
def created_at(self) -> str:
|
2293
|
+
"""
|
2294
|
+
Date on which the Load Balancer was created.
|
2295
|
+
"""
|
2296
|
+
return pulumi.get(self, "created_at")
|
2297
|
+
|
2298
|
+
@property
|
2299
|
+
@pulumi.getter
|
2300
|
+
def id(self) -> str:
|
2301
|
+
"""
|
2302
|
+
The ID of the Load Balancer.
|
2303
|
+
"""
|
2304
|
+
return pulumi.get(self, "id")
|
2305
|
+
|
2306
|
+
@property
|
2307
|
+
@pulumi.getter(name="ipAddress")
|
2308
|
+
def ip_address(self) -> str:
|
2309
|
+
return pulumi.get(self, "ip_address")
|
2310
|
+
|
2311
|
+
@property
|
2312
|
+
@pulumi.getter
|
2313
|
+
def status(self) -> str:
|
2314
|
+
"""
|
2315
|
+
The state of the Load Balancer Instance. Possible values are: `unknown`, `ready`, `pending`, `stopped`, `error`, `locked` and `migrating`.
|
2316
|
+
"""
|
2317
|
+
return pulumi.get(self, "status")
|
2318
|
+
|
2319
|
+
@property
|
2320
|
+
@pulumi.getter(name="updatedAt")
|
2321
|
+
def updated_at(self) -> str:
|
2322
|
+
"""
|
2323
|
+
Date on which the Load Balancer was updated.
|
2324
|
+
"""
|
2325
|
+
return pulumi.get(self, "updated_at")
|
2326
|
+
|
2327
|
+
@property
|
2328
|
+
@pulumi.getter
|
2329
|
+
def zone(self) -> str:
|
2330
|
+
"""
|
2331
|
+
`zone`) The zone in which the Load Balancers exist.
|
2332
|
+
"""
|
2333
|
+
return pulumi.get(self, "zone")
|
2334
|
+
|
2335
|
+
|
2336
|
+
@pulumi.output_type
|
2337
|
+
class GetLoadBalancersLbIpResult(dict):
|
2338
|
+
def __init__(__self__, *,
|
2339
|
+
id: str,
|
2340
|
+
ip_address: str,
|
2341
|
+
lb_id: str,
|
2342
|
+
organization_id: str,
|
2343
|
+
project_id: str,
|
2344
|
+
reverse: str,
|
2345
|
+
zone: str):
|
2346
|
+
"""
|
2347
|
+
:param str id: The ID of the Load Balancer.
|
2348
|
+
:param str organization_id: The ID of the Organization the Load Balancer is associated with.
|
2349
|
+
:param str project_id: The ID of the Project the Load Balancer is associated with.
|
2350
|
+
:param str zone: `zone`) The zone in which the Load Balancers exist.
|
2351
|
+
"""
|
2352
|
+
pulumi.set(__self__, "id", id)
|
2353
|
+
pulumi.set(__self__, "ip_address", ip_address)
|
2354
|
+
pulumi.set(__self__, "lb_id", lb_id)
|
2355
|
+
pulumi.set(__self__, "organization_id", organization_id)
|
2356
|
+
pulumi.set(__self__, "project_id", project_id)
|
2357
|
+
pulumi.set(__self__, "reverse", reverse)
|
2358
|
+
pulumi.set(__self__, "zone", zone)
|
2359
|
+
|
2360
|
+
@property
|
2361
|
+
@pulumi.getter
|
2362
|
+
def id(self) -> str:
|
2363
|
+
"""
|
2364
|
+
The ID of the Load Balancer.
|
2365
|
+
"""
|
2366
|
+
return pulumi.get(self, "id")
|
2367
|
+
|
2368
|
+
@property
|
2369
|
+
@pulumi.getter(name="ipAddress")
|
2370
|
+
def ip_address(self) -> str:
|
2371
|
+
return pulumi.get(self, "ip_address")
|
2372
|
+
|
2373
|
+
@property
|
2374
|
+
@pulumi.getter(name="lbId")
|
2375
|
+
def lb_id(self) -> str:
|
2376
|
+
return pulumi.get(self, "lb_id")
|
2377
|
+
|
2378
|
+
@property
|
2379
|
+
@pulumi.getter(name="organizationId")
|
2380
|
+
def organization_id(self) -> str:
|
2381
|
+
"""
|
2382
|
+
The ID of the Organization the Load Balancer is associated with.
|
2383
|
+
"""
|
2384
|
+
return pulumi.get(self, "organization_id")
|
2385
|
+
|
2386
|
+
@property
|
2387
|
+
@pulumi.getter(name="projectId")
|
2388
|
+
def project_id(self) -> str:
|
2389
|
+
"""
|
2390
|
+
The ID of the Project the Load Balancer is associated with.
|
2391
|
+
"""
|
2392
|
+
return pulumi.get(self, "project_id")
|
2393
|
+
|
2394
|
+
@property
|
2395
|
+
@pulumi.getter
|
2396
|
+
def reverse(self) -> str:
|
2397
|
+
return pulumi.get(self, "reverse")
|
2398
|
+
|
2399
|
+
@property
|
2400
|
+
@pulumi.getter
|
2401
|
+
def zone(self) -> str:
|
2402
|
+
"""
|
2403
|
+
`zone`) The zone in which the Load Balancers exist.
|
2404
|
+
"""
|
2405
|
+
return pulumi.get(self, "zone")
|
2406
|
+
|
2407
|
+
|
2408
|
+
@pulumi.output_type
|
2409
|
+
class GetRoutesRouteResult(dict):
|
2410
|
+
def __init__(__self__, *,
|
2411
|
+
backend_id: str,
|
2412
|
+
created_at: str,
|
2413
|
+
frontend_id: str,
|
2414
|
+
id: str,
|
2415
|
+
match_host_header: str,
|
2416
|
+
match_sni: str,
|
2417
|
+
update_at: str):
|
2418
|
+
"""
|
2419
|
+
:param str backend_id: The backend ID to redirect to
|
2420
|
+
:param str created_at: The date on which the route was created (RFC 3339 format).
|
2421
|
+
:param str frontend_id: The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
|
2422
|
+
:param str id: The associated route ID.
|
2423
|
+
:param str match_host_header: Specifies the host of the server to which the request is being sent.
|
2424
|
+
:param str match_sni: Server Name Indication TLS extension field from an incoming connection made via an SSL/TLS transport layer.
|
2425
|
+
:param str update_at: The date on which the route was last updated (RFC 3339 format).
|
2426
|
+
"""
|
2427
|
+
pulumi.set(__self__, "backend_id", backend_id)
|
2428
|
+
pulumi.set(__self__, "created_at", created_at)
|
2429
|
+
pulumi.set(__self__, "frontend_id", frontend_id)
|
2430
|
+
pulumi.set(__self__, "id", id)
|
2431
|
+
pulumi.set(__self__, "match_host_header", match_host_header)
|
2432
|
+
pulumi.set(__self__, "match_sni", match_sni)
|
2433
|
+
pulumi.set(__self__, "update_at", update_at)
|
2434
|
+
|
2435
|
+
@property
|
2436
|
+
@pulumi.getter(name="backendId")
|
2437
|
+
def backend_id(self) -> str:
|
2438
|
+
"""
|
2439
|
+
The backend ID to redirect to
|
2440
|
+
"""
|
2441
|
+
return pulumi.get(self, "backend_id")
|
2442
|
+
|
2443
|
+
@property
|
2444
|
+
@pulumi.getter(name="createdAt")
|
2445
|
+
def created_at(self) -> str:
|
2446
|
+
"""
|
2447
|
+
The date on which the route was created (RFC 3339 format).
|
2448
|
+
"""
|
2449
|
+
return pulumi.get(self, "created_at")
|
2450
|
+
|
2451
|
+
@property
|
2452
|
+
@pulumi.getter(name="frontendId")
|
2453
|
+
def frontend_id(self) -> str:
|
2454
|
+
"""
|
2455
|
+
The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
|
2456
|
+
"""
|
2457
|
+
return pulumi.get(self, "frontend_id")
|
2458
|
+
|
2459
|
+
@property
|
2460
|
+
@pulumi.getter
|
2461
|
+
def id(self) -> str:
|
2462
|
+
"""
|
2463
|
+
The associated route ID.
|
2464
|
+
"""
|
2465
|
+
return pulumi.get(self, "id")
|
2466
|
+
|
2467
|
+
@property
|
2468
|
+
@pulumi.getter(name="matchHostHeader")
|
2469
|
+
def match_host_header(self) -> str:
|
2470
|
+
"""
|
2471
|
+
Specifies the host of the server to which the request is being sent.
|
2472
|
+
"""
|
2473
|
+
return pulumi.get(self, "match_host_header")
|
2474
|
+
|
2475
|
+
@property
|
2476
|
+
@pulumi.getter(name="matchSni")
|
2477
|
+
def match_sni(self) -> str:
|
2478
|
+
"""
|
2479
|
+
Server Name Indication TLS extension field from an incoming connection made via an SSL/TLS transport layer.
|
2480
|
+
"""
|
2481
|
+
return pulumi.get(self, "match_sni")
|
2482
|
+
|
2483
|
+
@property
|
2484
|
+
@pulumi.getter(name="updateAt")
|
2485
|
+
def update_at(self) -> str:
|
2486
|
+
"""
|
2487
|
+
The date on which the route was last updated (RFC 3339 format).
|
2488
|
+
"""
|
2489
|
+
return pulumi.get(self, "update_at")
|
2490
|
+
|
2491
|
+
|