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