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
|
|
@@ -19,126 +19,147 @@ __all__ = ['RouteArgs', 'Route']
|
|
|
19
19
|
@pulumi.input_type
|
|
20
20
|
class RouteArgs:
|
|
21
21
|
def __init__(__self__, *,
|
|
22
|
-
backend_id: pulumi.Input[str],
|
|
23
|
-
frontend_id: pulumi.Input[str],
|
|
24
|
-
match_host_header: Optional[pulumi.Input[str]] = None,
|
|
25
|
-
|
|
26
|
-
|
|
22
|
+
backend_id: pulumi.Input[_builtins.str],
|
|
23
|
+
frontend_id: pulumi.Input[_builtins.str],
|
|
24
|
+
match_host_header: Optional[pulumi.Input[_builtins.str]] = None,
|
|
25
|
+
match_path_begin: Optional[pulumi.Input[_builtins.str]] = None,
|
|
26
|
+
match_sni: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
|
+
match_subdomains: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
27
28
|
"""
|
|
28
29
|
The set of arguments for constructing a Route resource.
|
|
29
|
-
:param pulumi.Input[str] backend_id: The ID of the backend the route is associated with.
|
|
30
|
-
:param pulumi.Input[str] frontend_id: The ID of the frontend the route is associated with.
|
|
31
|
-
:param pulumi.Input[str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
|
32
|
-
Only one of `match_sni` and `
|
|
30
|
+
:param pulumi.Input[_builtins.str] backend_id: The ID of the backend the route is associated with.
|
|
31
|
+
:param pulumi.Input[_builtins.str] frontend_id: The ID of the frontend the route is associated with.
|
|
32
|
+
:param pulumi.Input[_builtins.str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
|
33
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
33
34
|
|
|
34
35
|
> **Important:** This field should be set for routes on HTTP Load Balancers.
|
|
35
|
-
:param pulumi.Input[str]
|
|
36
|
-
Only one of `match_sni` and `
|
|
36
|
+
:param pulumi.Input[_builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
|
|
37
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
38
|
+
:param pulumi.Input[_builtins.str] match_sni: The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
|
|
39
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
37
40
|
|
|
38
41
|
> **Important:** This field should be set for routes on TCP Load Balancers.
|
|
39
|
-
:param pulumi.Input[bool] match_subdomains: If true, all subdomains will match.
|
|
42
|
+
:param pulumi.Input[_builtins.bool] match_subdomains: If true, all subdomains will match.
|
|
40
43
|
"""
|
|
41
44
|
pulumi.set(__self__, "backend_id", backend_id)
|
|
42
45
|
pulumi.set(__self__, "frontend_id", frontend_id)
|
|
43
46
|
if match_host_header is not None:
|
|
44
47
|
pulumi.set(__self__, "match_host_header", match_host_header)
|
|
48
|
+
if match_path_begin is not None:
|
|
49
|
+
pulumi.set(__self__, "match_path_begin", match_path_begin)
|
|
45
50
|
if match_sni is not None:
|
|
46
51
|
pulumi.set(__self__, "match_sni", match_sni)
|
|
47
52
|
if match_subdomains is not None:
|
|
48
53
|
pulumi.set(__self__, "match_subdomains", match_subdomains)
|
|
49
54
|
|
|
50
|
-
@property
|
|
55
|
+
@_builtins.property
|
|
51
56
|
@pulumi.getter(name="backendId")
|
|
52
|
-
def backend_id(self) -> pulumi.Input[str]:
|
|
57
|
+
def backend_id(self) -> pulumi.Input[_builtins.str]:
|
|
53
58
|
"""
|
|
54
59
|
The ID of the backend the route is associated with.
|
|
55
60
|
"""
|
|
56
61
|
return pulumi.get(self, "backend_id")
|
|
57
62
|
|
|
58
63
|
@backend_id.setter
|
|
59
|
-
def backend_id(self, value: pulumi.Input[str]):
|
|
64
|
+
def backend_id(self, value: pulumi.Input[_builtins.str]):
|
|
60
65
|
pulumi.set(self, "backend_id", value)
|
|
61
66
|
|
|
62
|
-
@property
|
|
67
|
+
@_builtins.property
|
|
63
68
|
@pulumi.getter(name="frontendId")
|
|
64
|
-
def frontend_id(self) -> pulumi.Input[str]:
|
|
69
|
+
def frontend_id(self) -> pulumi.Input[_builtins.str]:
|
|
65
70
|
"""
|
|
66
71
|
The ID of the frontend the route is associated with.
|
|
67
72
|
"""
|
|
68
73
|
return pulumi.get(self, "frontend_id")
|
|
69
74
|
|
|
70
75
|
@frontend_id.setter
|
|
71
|
-
def frontend_id(self, value: pulumi.Input[str]):
|
|
76
|
+
def frontend_id(self, value: pulumi.Input[_builtins.str]):
|
|
72
77
|
pulumi.set(self, "frontend_id", value)
|
|
73
78
|
|
|
74
|
-
@property
|
|
79
|
+
@_builtins.property
|
|
75
80
|
@pulumi.getter(name="matchHostHeader")
|
|
76
|
-
def match_host_header(self) -> Optional[pulumi.Input[str]]:
|
|
81
|
+
def match_host_header(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
77
82
|
"""
|
|
78
83
|
The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
|
79
|
-
Only one of `match_sni` and `
|
|
84
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
80
85
|
|
|
81
86
|
> **Important:** This field should be set for routes on HTTP Load Balancers.
|
|
82
87
|
"""
|
|
83
88
|
return pulumi.get(self, "match_host_header")
|
|
84
89
|
|
|
85
90
|
@match_host_header.setter
|
|
86
|
-
def match_host_header(self, value: Optional[pulumi.Input[str]]):
|
|
91
|
+
def match_host_header(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
87
92
|
pulumi.set(self, "match_host_header", value)
|
|
88
93
|
|
|
89
|
-
@property
|
|
94
|
+
@_builtins.property
|
|
95
|
+
@pulumi.getter(name="matchPathBegin")
|
|
96
|
+
def match_path_begin(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
97
|
+
"""
|
|
98
|
+
The value to match in the URL beginning path from an incoming request.
|
|
99
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
100
|
+
"""
|
|
101
|
+
return pulumi.get(self, "match_path_begin")
|
|
102
|
+
|
|
103
|
+
@match_path_begin.setter
|
|
104
|
+
def match_path_begin(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
105
|
+
pulumi.set(self, "match_path_begin", value)
|
|
106
|
+
|
|
107
|
+
@_builtins.property
|
|
90
108
|
@pulumi.getter(name="matchSni")
|
|
91
|
-
def match_sni(self) -> Optional[pulumi.Input[str]]:
|
|
109
|
+
def match_sni(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
92
110
|
"""
|
|
93
111
|
The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
|
|
94
|
-
Only one of `match_sni` and `
|
|
112
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
95
113
|
|
|
96
114
|
> **Important:** This field should be set for routes on TCP Load Balancers.
|
|
97
115
|
"""
|
|
98
116
|
return pulumi.get(self, "match_sni")
|
|
99
117
|
|
|
100
118
|
@match_sni.setter
|
|
101
|
-
def match_sni(self, value: Optional[pulumi.Input[str]]):
|
|
119
|
+
def match_sni(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
102
120
|
pulumi.set(self, "match_sni", value)
|
|
103
121
|
|
|
104
|
-
@property
|
|
122
|
+
@_builtins.property
|
|
105
123
|
@pulumi.getter(name="matchSubdomains")
|
|
106
|
-
def match_subdomains(self) -> Optional[pulumi.Input[bool]]:
|
|
124
|
+
def match_subdomains(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
107
125
|
"""
|
|
108
126
|
If true, all subdomains will match.
|
|
109
127
|
"""
|
|
110
128
|
return pulumi.get(self, "match_subdomains")
|
|
111
129
|
|
|
112
130
|
@match_subdomains.setter
|
|
113
|
-
def match_subdomains(self, value: Optional[pulumi.Input[bool]]):
|
|
131
|
+
def match_subdomains(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
114
132
|
pulumi.set(self, "match_subdomains", value)
|
|
115
133
|
|
|
116
134
|
|
|
117
135
|
@pulumi.input_type
|
|
118
136
|
class _RouteState:
|
|
119
137
|
def __init__(__self__, *,
|
|
120
|
-
backend_id: Optional[pulumi.Input[str]] = None,
|
|
121
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
|
122
|
-
frontend_id: Optional[pulumi.Input[str]] = None,
|
|
123
|
-
match_host_header: Optional[pulumi.Input[str]] = None,
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
138
|
+
backend_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
139
|
+
created_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
140
|
+
frontend_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
141
|
+
match_host_header: Optional[pulumi.Input[_builtins.str]] = None,
|
|
142
|
+
match_path_begin: Optional[pulumi.Input[_builtins.str]] = None,
|
|
143
|
+
match_sni: Optional[pulumi.Input[_builtins.str]] = None,
|
|
144
|
+
match_subdomains: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
145
|
+
updated_at: Optional[pulumi.Input[_builtins.str]] = None):
|
|
127
146
|
"""
|
|
128
147
|
Input properties used for looking up and filtering Route resources.
|
|
129
|
-
:param pulumi.Input[str] backend_id: The ID of the backend the route is associated with.
|
|
130
|
-
:param pulumi.Input[str] created_at: The date on which the route was created.
|
|
131
|
-
:param pulumi.Input[str] frontend_id: The ID of the frontend the route is associated with.
|
|
132
|
-
:param pulumi.Input[str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
|
133
|
-
Only one of `match_sni` and `
|
|
148
|
+
:param pulumi.Input[_builtins.str] backend_id: The ID of the backend the route is associated with.
|
|
149
|
+
:param pulumi.Input[_builtins.str] created_at: The date on which the route was created.
|
|
150
|
+
:param pulumi.Input[_builtins.str] frontend_id: The ID of the frontend the route is associated with.
|
|
151
|
+
:param pulumi.Input[_builtins.str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
|
152
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
134
153
|
|
|
135
154
|
> **Important:** This field should be set for routes on HTTP Load Balancers.
|
|
136
|
-
:param pulumi.Input[str]
|
|
137
|
-
Only one of `match_sni` and `
|
|
155
|
+
:param pulumi.Input[_builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
|
|
156
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
157
|
+
:param pulumi.Input[_builtins.str] match_sni: The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
|
|
158
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
138
159
|
|
|
139
160
|
> **Important:** This field should be set for routes on TCP Load Balancers.
|
|
140
|
-
:param pulumi.Input[bool] match_subdomains: If true, all subdomains will match.
|
|
141
|
-
:param pulumi.Input[str] updated_at: The date on which the route was last updated.
|
|
161
|
+
:param pulumi.Input[_builtins.bool] match_subdomains: If true, all subdomains will match.
|
|
162
|
+
:param pulumi.Input[_builtins.str] updated_at: The date on which the route was last updated.
|
|
142
163
|
"""
|
|
143
164
|
if backend_id is not None:
|
|
144
165
|
pulumi.set(__self__, "backend_id", backend_id)
|
|
@@ -148,6 +169,8 @@ class _RouteState:
|
|
|
148
169
|
pulumi.set(__self__, "frontend_id", frontend_id)
|
|
149
170
|
if match_host_header is not None:
|
|
150
171
|
pulumi.set(__self__, "match_host_header", match_host_header)
|
|
172
|
+
if match_path_begin is not None:
|
|
173
|
+
pulumi.set(__self__, "match_path_begin", match_path_begin)
|
|
151
174
|
if match_sni is not None:
|
|
152
175
|
pulumi.set(__self__, "match_sni", match_sni)
|
|
153
176
|
if match_subdomains is not None:
|
|
@@ -155,107 +178,122 @@ class _RouteState:
|
|
|
155
178
|
if updated_at is not None:
|
|
156
179
|
pulumi.set(__self__, "updated_at", updated_at)
|
|
157
180
|
|
|
158
|
-
@property
|
|
181
|
+
@_builtins.property
|
|
159
182
|
@pulumi.getter(name="backendId")
|
|
160
|
-
def backend_id(self) -> Optional[pulumi.Input[str]]:
|
|
183
|
+
def backend_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
161
184
|
"""
|
|
162
185
|
The ID of the backend the route is associated with.
|
|
163
186
|
"""
|
|
164
187
|
return pulumi.get(self, "backend_id")
|
|
165
188
|
|
|
166
189
|
@backend_id.setter
|
|
167
|
-
def backend_id(self, value: Optional[pulumi.Input[str]]):
|
|
190
|
+
def backend_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
168
191
|
pulumi.set(self, "backend_id", value)
|
|
169
192
|
|
|
170
|
-
@property
|
|
193
|
+
@_builtins.property
|
|
171
194
|
@pulumi.getter(name="createdAt")
|
|
172
|
-
def created_at(self) -> Optional[pulumi.Input[str]]:
|
|
195
|
+
def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
173
196
|
"""
|
|
174
197
|
The date on which the route was created.
|
|
175
198
|
"""
|
|
176
199
|
return pulumi.get(self, "created_at")
|
|
177
200
|
|
|
178
201
|
@created_at.setter
|
|
179
|
-
def created_at(self, value: Optional[pulumi.Input[str]]):
|
|
202
|
+
def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
180
203
|
pulumi.set(self, "created_at", value)
|
|
181
204
|
|
|
182
|
-
@property
|
|
205
|
+
@_builtins.property
|
|
183
206
|
@pulumi.getter(name="frontendId")
|
|
184
|
-
def frontend_id(self) -> Optional[pulumi.Input[str]]:
|
|
207
|
+
def frontend_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
185
208
|
"""
|
|
186
209
|
The ID of the frontend the route is associated with.
|
|
187
210
|
"""
|
|
188
211
|
return pulumi.get(self, "frontend_id")
|
|
189
212
|
|
|
190
213
|
@frontend_id.setter
|
|
191
|
-
def frontend_id(self, value: Optional[pulumi.Input[str]]):
|
|
214
|
+
def frontend_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
192
215
|
pulumi.set(self, "frontend_id", value)
|
|
193
216
|
|
|
194
|
-
@property
|
|
217
|
+
@_builtins.property
|
|
195
218
|
@pulumi.getter(name="matchHostHeader")
|
|
196
|
-
def match_host_header(self) -> Optional[pulumi.Input[str]]:
|
|
219
|
+
def match_host_header(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
197
220
|
"""
|
|
198
221
|
The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
|
199
|
-
Only one of `match_sni` and `
|
|
222
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
200
223
|
|
|
201
224
|
> **Important:** This field should be set for routes on HTTP Load Balancers.
|
|
202
225
|
"""
|
|
203
226
|
return pulumi.get(self, "match_host_header")
|
|
204
227
|
|
|
205
228
|
@match_host_header.setter
|
|
206
|
-
def match_host_header(self, value: Optional[pulumi.Input[str]]):
|
|
229
|
+
def match_host_header(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
207
230
|
pulumi.set(self, "match_host_header", value)
|
|
208
231
|
|
|
209
|
-
@property
|
|
232
|
+
@_builtins.property
|
|
233
|
+
@pulumi.getter(name="matchPathBegin")
|
|
234
|
+
def match_path_begin(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
235
|
+
"""
|
|
236
|
+
The value to match in the URL beginning path from an incoming request.
|
|
237
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
238
|
+
"""
|
|
239
|
+
return pulumi.get(self, "match_path_begin")
|
|
240
|
+
|
|
241
|
+
@match_path_begin.setter
|
|
242
|
+
def match_path_begin(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
243
|
+
pulumi.set(self, "match_path_begin", value)
|
|
244
|
+
|
|
245
|
+
@_builtins.property
|
|
210
246
|
@pulumi.getter(name="matchSni")
|
|
211
|
-
def match_sni(self) -> Optional[pulumi.Input[str]]:
|
|
247
|
+
def match_sni(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
212
248
|
"""
|
|
213
249
|
The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
|
|
214
|
-
Only one of `match_sni` and `
|
|
250
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
215
251
|
|
|
216
252
|
> **Important:** This field should be set for routes on TCP Load Balancers.
|
|
217
253
|
"""
|
|
218
254
|
return pulumi.get(self, "match_sni")
|
|
219
255
|
|
|
220
256
|
@match_sni.setter
|
|
221
|
-
def match_sni(self, value: Optional[pulumi.Input[str]]):
|
|
257
|
+
def match_sni(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
222
258
|
pulumi.set(self, "match_sni", value)
|
|
223
259
|
|
|
224
|
-
@property
|
|
260
|
+
@_builtins.property
|
|
225
261
|
@pulumi.getter(name="matchSubdomains")
|
|
226
|
-
def match_subdomains(self) -> Optional[pulumi.Input[bool]]:
|
|
262
|
+
def match_subdomains(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
227
263
|
"""
|
|
228
264
|
If true, all subdomains will match.
|
|
229
265
|
"""
|
|
230
266
|
return pulumi.get(self, "match_subdomains")
|
|
231
267
|
|
|
232
268
|
@match_subdomains.setter
|
|
233
|
-
def match_subdomains(self, value: Optional[pulumi.Input[bool]]):
|
|
269
|
+
def match_subdomains(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
234
270
|
pulumi.set(self, "match_subdomains", value)
|
|
235
271
|
|
|
236
|
-
@property
|
|
272
|
+
@_builtins.property
|
|
237
273
|
@pulumi.getter(name="updatedAt")
|
|
238
|
-
def updated_at(self) -> Optional[pulumi.Input[str]]:
|
|
274
|
+
def updated_at(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
239
275
|
"""
|
|
240
276
|
The date on which the route was last updated.
|
|
241
277
|
"""
|
|
242
278
|
return pulumi.get(self, "updated_at")
|
|
243
279
|
|
|
244
280
|
@updated_at.setter
|
|
245
|
-
def updated_at(self, value: Optional[pulumi.Input[str]]):
|
|
281
|
+
def updated_at(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
246
282
|
pulumi.set(self, "updated_at", value)
|
|
247
283
|
|
|
248
284
|
|
|
285
|
+
@pulumi.type_token("scaleway:loadbalancers/route:Route")
|
|
249
286
|
class Route(pulumi.CustomResource):
|
|
250
287
|
@overload
|
|
251
288
|
def __init__(__self__,
|
|
252
289
|
resource_name: str,
|
|
253
290
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
254
|
-
backend_id: Optional[pulumi.Input[str]] = None,
|
|
255
|
-
frontend_id: Optional[pulumi.Input[str]] = None,
|
|
256
|
-
match_host_header: Optional[pulumi.Input[str]] = None,
|
|
257
|
-
|
|
258
|
-
|
|
291
|
+
backend_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
292
|
+
frontend_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
293
|
+
match_host_header: Optional[pulumi.Input[_builtins.str]] = None,
|
|
294
|
+
match_path_begin: Optional[pulumi.Input[_builtins.str]] = None,
|
|
295
|
+
match_sni: Optional[pulumi.Input[_builtins.str]] = None,
|
|
296
|
+
match_subdomains: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
259
297
|
__props__=None):
|
|
260
298
|
"""
|
|
261
299
|
Creates and manages Scaleway Load Balancer routes.
|
|
@@ -316,6 +354,41 @@ class Route(pulumi.CustomResource):
|
|
|
316
354
|
match_host_header="host.scaleway.com")
|
|
317
355
|
```
|
|
318
356
|
|
|
357
|
+
### With path-begin matching for HTTP backends
|
|
358
|
+
|
|
359
|
+
```python
|
|
360
|
+
import pulumi
|
|
361
|
+
import pulumiverse_scaleway as scaleway
|
|
362
|
+
|
|
363
|
+
ip = scaleway.loadbalancers.Ip("ip")
|
|
364
|
+
lb = scaleway.loadbalancers.LoadBalancer("lb",
|
|
365
|
+
ip_id=ip.id,
|
|
366
|
+
name="my-lb",
|
|
367
|
+
type="lb-s")
|
|
368
|
+
app = scaleway.loadbalancers.Backend("app",
|
|
369
|
+
lb_id=lb.id,
|
|
370
|
+
forward_protocol="http",
|
|
371
|
+
forward_port=80,
|
|
372
|
+
proxy_protocol="none")
|
|
373
|
+
admin = scaleway.loadbalancers.Backend("admin",
|
|
374
|
+
lb_id=lb.id,
|
|
375
|
+
forward_protocol="http",
|
|
376
|
+
forward_port=8080,
|
|
377
|
+
proxy_protocol="none")
|
|
378
|
+
frontend = scaleway.loadbalancers.Frontend("frontend",
|
|
379
|
+
lb_id=lb.id,
|
|
380
|
+
backend_id=app.id,
|
|
381
|
+
inbound_port=80)
|
|
382
|
+
admin_route = scaleway.loadbalancers.Route("admin_route",
|
|
383
|
+
frontend_id=frontend.id,
|
|
384
|
+
backend_id=admin.id,
|
|
385
|
+
match_path_begin="/admin")
|
|
386
|
+
default_route = scaleway.loadbalancers.Route("default_route",
|
|
387
|
+
frontend_id=frontend.id,
|
|
388
|
+
backend_id=app.id,
|
|
389
|
+
match_path_begin="/")
|
|
390
|
+
```
|
|
391
|
+
|
|
319
392
|
## Import
|
|
320
393
|
|
|
321
394
|
Load Balancer frontends can be imported using `{zone}/{id}`, e.g.
|
|
@@ -328,17 +401,19 @@ class Route(pulumi.CustomResource):
|
|
|
328
401
|
|
|
329
402
|
:param str resource_name: The name of the resource.
|
|
330
403
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
331
|
-
:param pulumi.Input[str] backend_id: The ID of the backend the route is associated with.
|
|
332
|
-
:param pulumi.Input[str] frontend_id: The ID of the frontend the route is associated with.
|
|
333
|
-
:param pulumi.Input[str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
|
334
|
-
Only one of `match_sni` and `
|
|
404
|
+
:param pulumi.Input[_builtins.str] backend_id: The ID of the backend the route is associated with.
|
|
405
|
+
:param pulumi.Input[_builtins.str] frontend_id: The ID of the frontend the route is associated with.
|
|
406
|
+
:param pulumi.Input[_builtins.str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
|
407
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
335
408
|
|
|
336
409
|
> **Important:** This field should be set for routes on HTTP Load Balancers.
|
|
337
|
-
:param pulumi.Input[str]
|
|
338
|
-
Only one of `match_sni` and `
|
|
410
|
+
:param pulumi.Input[_builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
|
|
411
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
412
|
+
:param pulumi.Input[_builtins.str] match_sni: The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
|
|
413
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
339
414
|
|
|
340
415
|
> **Important:** This field should be set for routes on TCP Load Balancers.
|
|
341
|
-
:param pulumi.Input[bool] match_subdomains: If true, all subdomains will match.
|
|
416
|
+
:param pulumi.Input[_builtins.bool] match_subdomains: If true, all subdomains will match.
|
|
342
417
|
"""
|
|
343
418
|
...
|
|
344
419
|
@overload
|
|
@@ -405,6 +480,41 @@ class Route(pulumi.CustomResource):
|
|
|
405
480
|
match_host_header="host.scaleway.com")
|
|
406
481
|
```
|
|
407
482
|
|
|
483
|
+
### With path-begin matching for HTTP backends
|
|
484
|
+
|
|
485
|
+
```python
|
|
486
|
+
import pulumi
|
|
487
|
+
import pulumiverse_scaleway as scaleway
|
|
488
|
+
|
|
489
|
+
ip = scaleway.loadbalancers.Ip("ip")
|
|
490
|
+
lb = scaleway.loadbalancers.LoadBalancer("lb",
|
|
491
|
+
ip_id=ip.id,
|
|
492
|
+
name="my-lb",
|
|
493
|
+
type="lb-s")
|
|
494
|
+
app = scaleway.loadbalancers.Backend("app",
|
|
495
|
+
lb_id=lb.id,
|
|
496
|
+
forward_protocol="http",
|
|
497
|
+
forward_port=80,
|
|
498
|
+
proxy_protocol="none")
|
|
499
|
+
admin = scaleway.loadbalancers.Backend("admin",
|
|
500
|
+
lb_id=lb.id,
|
|
501
|
+
forward_protocol="http",
|
|
502
|
+
forward_port=8080,
|
|
503
|
+
proxy_protocol="none")
|
|
504
|
+
frontend = scaleway.loadbalancers.Frontend("frontend",
|
|
505
|
+
lb_id=lb.id,
|
|
506
|
+
backend_id=app.id,
|
|
507
|
+
inbound_port=80)
|
|
508
|
+
admin_route = scaleway.loadbalancers.Route("admin_route",
|
|
509
|
+
frontend_id=frontend.id,
|
|
510
|
+
backend_id=admin.id,
|
|
511
|
+
match_path_begin="/admin")
|
|
512
|
+
default_route = scaleway.loadbalancers.Route("default_route",
|
|
513
|
+
frontend_id=frontend.id,
|
|
514
|
+
backend_id=app.id,
|
|
515
|
+
match_path_begin="/")
|
|
516
|
+
```
|
|
517
|
+
|
|
408
518
|
## Import
|
|
409
519
|
|
|
410
520
|
Load Balancer frontends can be imported using `{zone}/{id}`, e.g.
|
|
@@ -430,11 +540,12 @@ class Route(pulumi.CustomResource):
|
|
|
430
540
|
def _internal_init(__self__,
|
|
431
541
|
resource_name: str,
|
|
432
542
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
433
|
-
backend_id: Optional[pulumi.Input[str]] = None,
|
|
434
|
-
frontend_id: Optional[pulumi.Input[str]] = None,
|
|
435
|
-
match_host_header: Optional[pulumi.Input[str]] = None,
|
|
436
|
-
|
|
437
|
-
|
|
543
|
+
backend_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
544
|
+
frontend_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
545
|
+
match_host_header: Optional[pulumi.Input[_builtins.str]] = None,
|
|
546
|
+
match_path_begin: Optional[pulumi.Input[_builtins.str]] = None,
|
|
547
|
+
match_sni: Optional[pulumi.Input[_builtins.str]] = None,
|
|
548
|
+
match_subdomains: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
438
549
|
__props__=None):
|
|
439
550
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
440
551
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -451,6 +562,7 @@ class Route(pulumi.CustomResource):
|
|
|
451
562
|
raise TypeError("Missing required property 'frontend_id'")
|
|
452
563
|
__props__.__dict__["frontend_id"] = frontend_id
|
|
453
564
|
__props__.__dict__["match_host_header"] = match_host_header
|
|
565
|
+
__props__.__dict__["match_path_begin"] = match_path_begin
|
|
454
566
|
__props__.__dict__["match_sni"] = match_sni
|
|
455
567
|
__props__.__dict__["match_subdomains"] = match_subdomains
|
|
456
568
|
__props__.__dict__["created_at"] = None
|
|
@@ -467,13 +579,14 @@ class Route(pulumi.CustomResource):
|
|
|
467
579
|
def get(resource_name: str,
|
|
468
580
|
id: pulumi.Input[str],
|
|
469
581
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
470
|
-
backend_id: Optional[pulumi.Input[str]] = None,
|
|
471
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
|
472
|
-
frontend_id: Optional[pulumi.Input[str]] = None,
|
|
473
|
-
match_host_header: Optional[pulumi.Input[str]] = None,
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
582
|
+
backend_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
583
|
+
created_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
584
|
+
frontend_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
585
|
+
match_host_header: Optional[pulumi.Input[_builtins.str]] = None,
|
|
586
|
+
match_path_begin: Optional[pulumi.Input[_builtins.str]] = None,
|
|
587
|
+
match_sni: Optional[pulumi.Input[_builtins.str]] = None,
|
|
588
|
+
match_subdomains: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
589
|
+
updated_at: Optional[pulumi.Input[_builtins.str]] = None) -> 'Route':
|
|
477
590
|
"""
|
|
478
591
|
Get an existing Route resource's state with the given name, id, and optional extra
|
|
479
592
|
properties used to qualify the lookup.
|
|
@@ -481,19 +594,21 @@ class Route(pulumi.CustomResource):
|
|
|
481
594
|
:param str resource_name: The unique name of the resulting resource.
|
|
482
595
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
483
596
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
484
|
-
:param pulumi.Input[str] backend_id: The ID of the backend the route is associated with.
|
|
485
|
-
:param pulumi.Input[str] created_at: The date on which the route was created.
|
|
486
|
-
:param pulumi.Input[str] frontend_id: The ID of the frontend the route is associated with.
|
|
487
|
-
:param pulumi.Input[str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
|
488
|
-
Only one of `match_sni` and `
|
|
597
|
+
:param pulumi.Input[_builtins.str] backend_id: The ID of the backend the route is associated with.
|
|
598
|
+
:param pulumi.Input[_builtins.str] created_at: The date on which the route was created.
|
|
599
|
+
:param pulumi.Input[_builtins.str] frontend_id: The ID of the frontend the route is associated with.
|
|
600
|
+
:param pulumi.Input[_builtins.str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
|
601
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
489
602
|
|
|
490
603
|
> **Important:** This field should be set for routes on HTTP Load Balancers.
|
|
491
|
-
:param pulumi.Input[str]
|
|
492
|
-
Only one of `match_sni` and `
|
|
604
|
+
:param pulumi.Input[_builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
|
|
605
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
606
|
+
:param pulumi.Input[_builtins.str] match_sni: The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
|
|
607
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
493
608
|
|
|
494
609
|
> **Important:** This field should be set for routes on TCP Load Balancers.
|
|
495
|
-
:param pulumi.Input[bool] match_subdomains: If true, all subdomains will match.
|
|
496
|
-
:param pulumi.Input[str] updated_at: The date on which the route was last updated.
|
|
610
|
+
:param pulumi.Input[_builtins.bool] match_subdomains: If true, all subdomains will match.
|
|
611
|
+
:param pulumi.Input[_builtins.str] updated_at: The date on which the route was last updated.
|
|
497
612
|
"""
|
|
498
613
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
499
614
|
|
|
@@ -503,68 +618,78 @@ class Route(pulumi.CustomResource):
|
|
|
503
618
|
__props__.__dict__["created_at"] = created_at
|
|
504
619
|
__props__.__dict__["frontend_id"] = frontend_id
|
|
505
620
|
__props__.__dict__["match_host_header"] = match_host_header
|
|
621
|
+
__props__.__dict__["match_path_begin"] = match_path_begin
|
|
506
622
|
__props__.__dict__["match_sni"] = match_sni
|
|
507
623
|
__props__.__dict__["match_subdomains"] = match_subdomains
|
|
508
624
|
__props__.__dict__["updated_at"] = updated_at
|
|
509
625
|
return Route(resource_name, opts=opts, __props__=__props__)
|
|
510
626
|
|
|
511
|
-
@property
|
|
627
|
+
@_builtins.property
|
|
512
628
|
@pulumi.getter(name="backendId")
|
|
513
|
-
def backend_id(self) -> pulumi.Output[str]:
|
|
629
|
+
def backend_id(self) -> pulumi.Output[_builtins.str]:
|
|
514
630
|
"""
|
|
515
631
|
The ID of the backend the route is associated with.
|
|
516
632
|
"""
|
|
517
633
|
return pulumi.get(self, "backend_id")
|
|
518
634
|
|
|
519
|
-
@property
|
|
635
|
+
@_builtins.property
|
|
520
636
|
@pulumi.getter(name="createdAt")
|
|
521
|
-
def created_at(self) -> pulumi.Output[str]:
|
|
637
|
+
def created_at(self) -> pulumi.Output[_builtins.str]:
|
|
522
638
|
"""
|
|
523
639
|
The date on which the route was created.
|
|
524
640
|
"""
|
|
525
641
|
return pulumi.get(self, "created_at")
|
|
526
642
|
|
|
527
|
-
@property
|
|
643
|
+
@_builtins.property
|
|
528
644
|
@pulumi.getter(name="frontendId")
|
|
529
|
-
def frontend_id(self) -> pulumi.Output[str]:
|
|
645
|
+
def frontend_id(self) -> pulumi.Output[_builtins.str]:
|
|
530
646
|
"""
|
|
531
647
|
The ID of the frontend the route is associated with.
|
|
532
648
|
"""
|
|
533
649
|
return pulumi.get(self, "frontend_id")
|
|
534
650
|
|
|
535
|
-
@property
|
|
651
|
+
@_builtins.property
|
|
536
652
|
@pulumi.getter(name="matchHostHeader")
|
|
537
|
-
def match_host_header(self) -> pulumi.Output[Optional[str]]:
|
|
653
|
+
def match_host_header(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
538
654
|
"""
|
|
539
655
|
The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
|
540
|
-
Only one of `match_sni` and `
|
|
656
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
541
657
|
|
|
542
658
|
> **Important:** This field should be set for routes on HTTP Load Balancers.
|
|
543
659
|
"""
|
|
544
660
|
return pulumi.get(self, "match_host_header")
|
|
545
661
|
|
|
546
|
-
@property
|
|
662
|
+
@_builtins.property
|
|
663
|
+
@pulumi.getter(name="matchPathBegin")
|
|
664
|
+
def match_path_begin(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
665
|
+
"""
|
|
666
|
+
The value to match in the URL beginning path from an incoming request.
|
|
667
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
668
|
+
"""
|
|
669
|
+
return pulumi.get(self, "match_path_begin")
|
|
670
|
+
|
|
671
|
+
@_builtins.property
|
|
547
672
|
@pulumi.getter(name="matchSni")
|
|
548
|
-
def match_sni(self) -> pulumi.Output[Optional[str]]:
|
|
673
|
+
def match_sni(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
549
674
|
"""
|
|
550
675
|
The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
|
|
551
|
-
Only one of `match_sni` and `
|
|
676
|
+
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
|
552
677
|
|
|
553
678
|
> **Important:** This field should be set for routes on TCP Load Balancers.
|
|
554
679
|
"""
|
|
555
680
|
return pulumi.get(self, "match_sni")
|
|
556
681
|
|
|
557
|
-
@property
|
|
682
|
+
@_builtins.property
|
|
558
683
|
@pulumi.getter(name="matchSubdomains")
|
|
559
|
-
def match_subdomains(self) -> pulumi.Output[Optional[bool]]:
|
|
684
|
+
def match_subdomains(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
560
685
|
"""
|
|
561
686
|
If true, all subdomains will match.
|
|
562
687
|
"""
|
|
563
688
|
return pulumi.get(self, "match_subdomains")
|
|
564
689
|
|
|
565
|
-
@property
|
|
690
|
+
@_builtins.property
|
|
566
691
|
@pulumi.getter(name="updatedAt")
|
|
567
|
-
def updated_at(self) -> pulumi.Output[str]:
|
|
692
|
+
def updated_at(self) -> pulumi.Output[_builtins.str]:
|
|
568
693
|
"""
|
|
569
694
|
The date on which the route was last updated.
|
|
570
695
|
"""
|