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