pulumiverse-scaleway 1.30.0a1748337252__py3-none-any.whl → 1.30.0a1752168858__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumiverse_scaleway/__init__.py +11 -1
- pulumiverse_scaleway/_inputs.py +2252 -2143
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +2 -1
- pulumiverse_scaleway/account/get_availability_zones.py +9 -8
- pulumiverse_scaleway/account/get_project.py +21 -20
- pulumiverse_scaleway/account/get_projects.py +28 -21
- pulumiverse_scaleway/account/get_ssh_key.py +24 -23
- pulumiverse_scaleway/account/outputs.py +20 -19
- pulumiverse_scaleway/account/project.py +59 -57
- pulumiverse_scaleway/account/ssh_key.py +87 -85
- pulumiverse_scaleway/account_project.py +59 -57
- pulumiverse_scaleway/account_ssh_key.py +87 -85
- pulumiverse_scaleway/apple_silicon_server.py +204 -155
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
- pulumiverse_scaleway/applesilicon/outputs.py +54 -21
- pulumiverse_scaleway/applesilicon/server.py +204 -155
- pulumiverse_scaleway/baremetal_server.py +262 -260
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +10 -9
- pulumiverse_scaleway/billing/get_invoices.py +19 -18
- pulumiverse_scaleway/billing/outputs.py +73 -72
- pulumiverse_scaleway/block/__init__.py +2 -1
- pulumiverse_scaleway/block/_inputs.py +12 -11
- pulumiverse_scaleway/block/get_snapshot.py +29 -28
- pulumiverse_scaleway/block/get_volume.py +28 -27
- pulumiverse_scaleway/block/outputs.py +14 -13
- pulumiverse_scaleway/block/snapshot.py +73 -71
- pulumiverse_scaleway/block/volume.py +115 -113
- pulumiverse_scaleway/block_snapshot.py +73 -71
- pulumiverse_scaleway/block_volume.py +115 -113
- pulumiverse_scaleway/cockpit.py +38 -36
- pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
- pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
- pulumiverse_scaleway/cockpit_source.py +115 -113
- pulumiverse_scaleway/cockpit_token.py +66 -64
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -1
- pulumiverse_scaleway/config/vars.py +2 -1
- pulumiverse_scaleway/container.py +573 -343
- pulumiverse_scaleway/container_cron.py +80 -78
- pulumiverse_scaleway/container_domain.py +52 -50
- pulumiverse_scaleway/container_namespace.py +211 -140
- pulumiverse_scaleway/container_token.py +80 -78
- pulumiverse_scaleway/container_trigger.py +59 -57
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +72 -71
- pulumiverse_scaleway/containers/container.py +573 -343
- pulumiverse_scaleway/containers/cron.py +80 -78
- pulumiverse_scaleway/containers/domain.py +52 -50
- pulumiverse_scaleway/containers/get_container.py +87 -42
- pulumiverse_scaleway/containers/get_namespace.py +43 -31
- pulumiverse_scaleway/containers/namespace.py +211 -140
- pulumiverse_scaleway/containers/outputs.py +62 -61
- pulumiverse_scaleway/containers/token.py +80 -78
- pulumiverse_scaleway/containers/trigger.py +59 -57
- pulumiverse_scaleway/database.py +66 -64
- pulumiverse_scaleway/database_acl.py +31 -29
- pulumiverse_scaleway/database_backup.py +101 -99
- pulumiverse_scaleway/database_instance.py +297 -295
- pulumiverse_scaleway/database_privilege.py +73 -71
- pulumiverse_scaleway/database_read_replica.py +45 -43
- pulumiverse_scaleway/database_user.py +73 -71
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +191 -190
- pulumiverse_scaleway/databases/acl.py +31 -29
- pulumiverse_scaleway/databases/database.py +66 -64
- pulumiverse_scaleway/databases/database_backup.py +101 -99
- pulumiverse_scaleway/databases/get_acl.py +13 -12
- pulumiverse_scaleway/databases/get_database.py +19 -18
- pulumiverse_scaleway/databases/get_database_backup.py +34 -33
- pulumiverse_scaleway/databases/get_instance.py +43 -42
- pulumiverse_scaleway/databases/get_privilege.py +24 -23
- pulumiverse_scaleway/databases/instance.py +297 -295
- pulumiverse_scaleway/databases/outputs.py +188 -187
- pulumiverse_scaleway/databases/privilege.py +73 -71
- pulumiverse_scaleway/databases/read_replica.py +45 -43
- pulumiverse_scaleway/databases/serverless_database.py +80 -78
- pulumiverse_scaleway/databases/snapshot.py +101 -99
- pulumiverse_scaleway/databases/user.py +73 -71
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +531 -530
- pulumiverse_scaleway/domain/get_record.py +38 -37
- pulumiverse_scaleway/domain/get_zone.py +24 -23
- pulumiverse_scaleway/domain/outputs.py +358 -357
- pulumiverse_scaleway/domain/record.py +129 -127
- pulumiverse_scaleway/domain/registration.py +94 -92
- pulumiverse_scaleway/domain/zone.py +87 -85
- pulumiverse_scaleway/domain_record.py +129 -127
- pulumiverse_scaleway/domain_zone.py +87 -85
- pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
- pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
- pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
- pulumiverse_scaleway/edge_services_head_stage.py +31 -29
- pulumiverse_scaleway/edge_services_pipeline.py +66 -64
- pulumiverse_scaleway/edge_services_plan.py +31 -29
- pulumiverse_scaleway/edge_services_route_stage.py +59 -57
- pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
- pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
- pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
- pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
- pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
- pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
- pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
- pulumiverse_scaleway/elasticmetal/ip.py +139 -137
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
- pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
- pulumiverse_scaleway/elasticmetal/server.py +262 -260
- pulumiverse_scaleway/file_filesystem.py +552 -0
- pulumiverse_scaleway/flexible_ip.py +139 -137
- pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
- pulumiverse_scaleway/function.py +394 -284
- pulumiverse_scaleway/function_cron.py +80 -78
- pulumiverse_scaleway/function_domain.py +52 -50
- pulumiverse_scaleway/function_namespace.py +197 -126
- pulumiverse_scaleway/function_token.py +80 -78
- pulumiverse_scaleway/function_trigger.py +59 -57
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +42 -41
- pulumiverse_scaleway/functions/cron.py +80 -78
- pulumiverse_scaleway/functions/domain.py +52 -50
- pulumiverse_scaleway/functions/function.py +394 -284
- pulumiverse_scaleway/functions/get_function.py +69 -46
- pulumiverse_scaleway/functions/get_namespace.py +42 -30
- pulumiverse_scaleway/functions/namespace.py +197 -126
- pulumiverse_scaleway/functions/outputs.py +26 -25
- pulumiverse_scaleway/functions/token.py +80 -78
- pulumiverse_scaleway/functions/trigger.py +59 -57
- pulumiverse_scaleway/get_account_project.py +21 -20
- pulumiverse_scaleway/get_account_ssh_key.py +24 -23
- pulumiverse_scaleway/get_availability_zones.py +9 -8
- pulumiverse_scaleway/get_baremetal_offer.py +29 -28
- pulumiverse_scaleway/get_baremetal_option.py +19 -18
- pulumiverse_scaleway/get_baremetal_os.py +23 -22
- pulumiverse_scaleway/get_baremetal_server.py +39 -38
- pulumiverse_scaleway/get_billing_consumptions.py +10 -9
- pulumiverse_scaleway/get_billing_invoices.py +19 -18
- pulumiverse_scaleway/get_block_snapshot.py +29 -28
- pulumiverse_scaleway/get_block_volume.py +28 -27
- pulumiverse_scaleway/get_cockpit.py +10 -9
- pulumiverse_scaleway/get_cockpit_source.py +33 -32
- pulumiverse_scaleway/get_config.py +13 -12
- pulumiverse_scaleway/get_container.py +87 -42
- pulumiverse_scaleway/get_container_namespace.py +43 -31
- pulumiverse_scaleway/get_database.py +19 -18
- pulumiverse_scaleway/get_database_acl.py +13 -12
- pulumiverse_scaleway/get_database_backup.py +34 -33
- pulumiverse_scaleway/get_database_instance.py +43 -42
- pulumiverse_scaleway/get_database_privilege.py +24 -23
- pulumiverse_scaleway/get_domain_record.py +38 -37
- pulumiverse_scaleway/get_domain_zone.py +24 -23
- pulumiverse_scaleway/get_flexible_ip.py +56 -39
- pulumiverse_scaleway/get_flexible_ips.py +24 -23
- pulumiverse_scaleway/get_function.py +69 -46
- pulumiverse_scaleway/get_function_namespace.py +42 -30
- pulumiverse_scaleway/get_iam_api_key.py +17 -16
- pulumiverse_scaleway/get_iam_application.py +23 -22
- pulumiverse_scaleway/get_iam_group.py +25 -24
- pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
- pulumiverse_scaleway/get_iam_user.py +23 -22
- pulumiverse_scaleway/get_instance_image.py +42 -41
- pulumiverse_scaleway/get_instance_ip.py +20 -19
- pulumiverse_scaleway/get_instance_placement_group.py +28 -27
- pulumiverse_scaleway/get_instance_private_nic.py +31 -30
- pulumiverse_scaleway/get_instance_security_group.py +31 -30
- pulumiverse_scaleway/get_instance_server.py +59 -47
- pulumiverse_scaleway/get_instance_servers.py +24 -23
- pulumiverse_scaleway/get_instance_snapshot.py +29 -28
- pulumiverse_scaleway/get_instance_volume.py +30 -29
- pulumiverse_scaleway/get_iot_device.py +31 -30
- pulumiverse_scaleway/get_iot_hub.py +39 -38
- pulumiverse_scaleway/get_ipam_ip.py +51 -50
- pulumiverse_scaleway/get_ipam_ips.py +44 -43
- pulumiverse_scaleway/get_k8s_version.py +16 -15
- pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
- pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
- pulumiverse_scaleway/get_lb_acls.py +22 -21
- pulumiverse_scaleway/get_lb_backend.py +43 -42
- pulumiverse_scaleway/get_lb_backends.py +22 -21
- pulumiverse_scaleway/get_lb_frontend.py +26 -25
- pulumiverse_scaleway/get_lb_frontends.py +22 -21
- pulumiverse_scaleway/get_lb_ips.py +29 -28
- pulumiverse_scaleway/get_lb_route.py +16 -15
- pulumiverse_scaleway/get_lb_routes.py +17 -16
- pulumiverse_scaleway/get_lbs.py +24 -23
- pulumiverse_scaleway/get_loadbalancer.py +36 -35
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
- pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
- pulumiverse_scaleway/get_marketplace_image.py +23 -22
- pulumiverse_scaleway/get_mnq_sns.py +14 -13
- pulumiverse_scaleway/get_mnq_sqs.py +14 -13
- pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
- pulumiverse_scaleway/get_object_bucket.py +22 -21
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
- pulumiverse_scaleway/get_redis_cluster.py +34 -33
- pulumiverse_scaleway/get_registry_image.py +37 -36
- pulumiverse_scaleway/get_registry_image_tag.py +33 -32
- pulumiverse_scaleway/get_registry_namespace.py +27 -26
- pulumiverse_scaleway/get_secret.py +41 -40
- pulumiverse_scaleway/get_secret_version.py +34 -33
- pulumiverse_scaleway/get_tem_domain.py +43 -42
- pulumiverse_scaleway/get_vpc.py +35 -34
- pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
- pulumiverse_scaleway/get_vpc_private_network.py +32 -31
- pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
- pulumiverse_scaleway/get_vpc_routes.py +38 -37
- pulumiverse_scaleway/get_vpcs.py +24 -23
- pulumiverse_scaleway/get_web_host_offer.py +25 -24
- pulumiverse_scaleway/get_webhosting.py +36 -35
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +61 -60
- pulumiverse_scaleway/hosting/get_hosting.py +36 -35
- pulumiverse_scaleway/hosting/get_offer.py +25 -24
- pulumiverse_scaleway/hosting/hosting.py +164 -162
- pulumiverse_scaleway/hosting/outputs.py +139 -138
- pulumiverse_scaleway/iam/__init__.py +2 -1
- pulumiverse_scaleway/iam/_inputs.py +22 -21
- pulumiverse_scaleway/iam/api_key.py +115 -113
- pulumiverse_scaleway/iam/application.py +80 -78
- pulumiverse_scaleway/iam/get_api_key.py +17 -16
- pulumiverse_scaleway/iam/get_application.py +23 -22
- pulumiverse_scaleway/iam/get_group.py +25 -24
- pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
- pulumiverse_scaleway/iam/get_user.py +23 -22
- pulumiverse_scaleway/iam/group.py +115 -113
- pulumiverse_scaleway/iam/group_membership.py +45 -43
- pulumiverse_scaleway/iam/outputs.py +14 -13
- pulumiverse_scaleway/iam/policy.py +136 -134
- pulumiverse_scaleway/iam/ssh_key.py +87 -85
- pulumiverse_scaleway/iam/user.py +284 -273
- pulumiverse_scaleway/iam_api_key.py +115 -113
- pulumiverse_scaleway/iam_application.py +80 -78
- pulumiverse_scaleway/iam_group.py +115 -113
- pulumiverse_scaleway/iam_group_membership.py +45 -43
- pulumiverse_scaleway/iam_policy.py +136 -134
- pulumiverse_scaleway/iam_ssh_key.py +87 -85
- pulumiverse_scaleway/iam_user.py +284 -273
- pulumiverse_scaleway/inference/__init__.py +2 -1
- pulumiverse_scaleway/inference/_inputs.py +116 -61
- pulumiverse_scaleway/inference/deployment.py +225 -176
- pulumiverse_scaleway/inference/get_model.py +27 -26
- pulumiverse_scaleway/inference/model.py +129 -127
- pulumiverse_scaleway/inference/outputs.py +82 -49
- pulumiverse_scaleway/inference_deployment.py +225 -176
- pulumiverse_scaleway/instance/__init__.py +2 -1
- pulumiverse_scaleway/instance/_inputs.py +296 -295
- pulumiverse_scaleway/instance/get_image.py +42 -41
- pulumiverse_scaleway/instance/get_ip.py +20 -19
- pulumiverse_scaleway/instance/get_placement_group.py +28 -27
- pulumiverse_scaleway/instance/get_private_nic.py +31 -30
- pulumiverse_scaleway/instance/get_security_group.py +31 -30
- pulumiverse_scaleway/instance/get_server.py +59 -47
- pulumiverse_scaleway/instance/get_servers.py +24 -23
- pulumiverse_scaleway/instance/get_snapshot.py +29 -28
- pulumiverse_scaleway/instance/get_volume.py +30 -29
- pulumiverse_scaleway/instance/image.py +150 -148
- pulumiverse_scaleway/instance/ip.py +94 -92
- pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance/outputs.py +349 -348
- pulumiverse_scaleway/instance/placement_group.py +101 -99
- pulumiverse_scaleway/instance/private_nic.py +94 -92
- pulumiverse_scaleway/instance/security_group.py +150 -148
- pulumiverse_scaleway/instance/security_group_rules.py +17 -15
- pulumiverse_scaleway/instance/server.py +393 -330
- pulumiverse_scaleway/instance/snapshot.py +108 -106
- pulumiverse_scaleway/instance/user_data.py +59 -57
- pulumiverse_scaleway/instance/volume.py +129 -127
- pulumiverse_scaleway/instance_image.py +150 -148
- pulumiverse_scaleway/instance_ip.py +94 -92
- pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance_placement_group.py +101 -99
- pulumiverse_scaleway/instance_private_nic.py +94 -92
- pulumiverse_scaleway/instance_security_group.py +150 -148
- pulumiverse_scaleway/instance_security_group_rules.py +17 -15
- pulumiverse_scaleway/instance_server.py +393 -330
- pulumiverse_scaleway/instance_snapshot.py +108 -106
- pulumiverse_scaleway/instance_user_data.py +59 -57
- pulumiverse_scaleway/instance_volume.py +129 -127
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +98 -97
- pulumiverse_scaleway/iot/device.py +122 -120
- pulumiverse_scaleway/iot/get_device.py +31 -30
- pulumiverse_scaleway/iot/get_hub.py +39 -38
- pulumiverse_scaleway/iot/hub.py +206 -204
- pulumiverse_scaleway/iot/network.py +94 -92
- pulumiverse_scaleway/iot/outputs.py +78 -77
- pulumiverse_scaleway/iot/route.py +66 -64
- pulumiverse_scaleway/iot_device.py +122 -120
- pulumiverse_scaleway/iot_hub.py +206 -204
- pulumiverse_scaleway/iot_network.py +94 -92
- pulumiverse_scaleway/iot_route.py +66 -64
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +87 -86
- pulumiverse_scaleway/ipam/get_ip.py +51 -50
- pulumiverse_scaleway/ipam/get_ips.py +44 -43
- pulumiverse_scaleway/ipam/ip.py +94 -92
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/ipam/outputs.py +90 -89
- pulumiverse_scaleway/ipam_ip.py +94 -92
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +38 -37
- pulumiverse_scaleway/job/definition.py +143 -141
- pulumiverse_scaleway/job/outputs.py +24 -23
- pulumiverse_scaleway/job_definition.py +143 -141
- pulumiverse_scaleway/kubernetes/__init__.py +2 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
- pulumiverse_scaleway/kubernetes/acl.py +45 -43
- pulumiverse_scaleway/kubernetes/cluster.py +234 -232
- pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
- pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
- pulumiverse_scaleway/kubernetes/get_version.py +16 -15
- pulumiverse_scaleway/kubernetes/outputs.py +217 -216
- pulumiverse_scaleway/kubernetes/pool.py +290 -288
- pulumiverse_scaleway/kubernetes_cluster.py +234 -232
- pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
- pulumiverse_scaleway/loadbalancer.py +199 -197
- pulumiverse_scaleway/loadbalancer_acl.py +73 -71
- pulumiverse_scaleway/loadbalancer_backend.py +381 -379
- pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
- pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
- pulumiverse_scaleway/loadbalancer_ip.py +101 -99
- pulumiverse_scaleway/loadbalancer_route.py +101 -99
- pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
- pulumiverse_scaleway/loadbalancers/acl.py +73 -71
- pulumiverse_scaleway/loadbalancers/backend.py +381 -379
- pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
- pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
- pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
- pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
- pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
- pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
- pulumiverse_scaleway/loadbalancers/ip.py +101 -99
- pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
- pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
- pulumiverse_scaleway/loadbalancers/route.py +101 -99
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +32 -31
- pulumiverse_scaleway/mnq/get_sns.py +14 -13
- pulumiverse_scaleway/mnq/get_sqs.py +14 -13
- pulumiverse_scaleway/mnq/nats_account.py +52 -50
- pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq/outputs.py +20 -19
- pulumiverse_scaleway/mnq/sns.py +38 -36
- pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sns_topic.py +143 -141
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq/sqs.py +38 -36
- pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
- pulumiverse_scaleway/mnq_nats_account.py +52 -50
- pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq_sns.py +38 -36
- pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sns_topic.py +143 -141
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq_sqs.py +38 -36
- pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
- pulumiverse_scaleway/mongo_db_instance.py +199 -197
- pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
- pulumiverse_scaleway/mongodb/__init__.py +2 -1
- pulumiverse_scaleway/mongodb/_inputs.py +53 -52
- pulumiverse_scaleway/mongodb/get_instance.py +35 -34
- pulumiverse_scaleway/mongodb/instance.py +199 -197
- pulumiverse_scaleway/mongodb/outputs.py +64 -63
- pulumiverse_scaleway/mongodb/snapshot.py +101 -99
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +140 -139
- pulumiverse_scaleway/network/acl.py +59 -57
- pulumiverse_scaleway/network/gateway_network.py +143 -141
- pulumiverse_scaleway/network/get_gateway_network.py +28 -27
- pulumiverse_scaleway/network/get_private_network.py +32 -31
- pulumiverse_scaleway/network/get_public_gateway.py +36 -35
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
- pulumiverse_scaleway/network/get_routes.py +38 -37
- pulumiverse_scaleway/network/get_vpc.py +35 -34
- pulumiverse_scaleway/network/get_vpcs.py +24 -23
- pulumiverse_scaleway/network/outputs.py +206 -205
- pulumiverse_scaleway/network/private_network.py +122 -120
- pulumiverse_scaleway/network/public_gateway.py +213 -211
- pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/network/route.py +115 -113
- pulumiverse_scaleway/network/vpc.py +101 -99
- pulumiverse_scaleway/object/__init__.py +2 -1
- pulumiverse_scaleway/object/_inputs.py +127 -126
- pulumiverse_scaleway/object/bucket.py +115 -113
- pulumiverse_scaleway/object/bucket_acl.py +73 -71
- pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object/bucket_policy.py +59 -57
- pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object/get_bucket.py +22 -21
- pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
- pulumiverse_scaleway/object/item.py +232 -183
- pulumiverse_scaleway/object/outputs.py +114 -113
- pulumiverse_scaleway/object_bucket.py +115 -113
- pulumiverse_scaleway/object_bucket_acl.py +73 -71
- pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object_bucket_policy.py +59 -57
- pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object_item.py +232 -183
- pulumiverse_scaleway/observability/__init__.py +2 -1
- pulumiverse_scaleway/observability/_inputs.py +89 -88
- pulumiverse_scaleway/observability/alert_manager.py +52 -50
- pulumiverse_scaleway/observability/cockpit.py +38 -36
- pulumiverse_scaleway/observability/get_instance.py +10 -9
- pulumiverse_scaleway/observability/get_source.py +33 -32
- pulumiverse_scaleway/observability/grafana_user.py +59 -57
- pulumiverse_scaleway/observability/outputs.py +77 -76
- pulumiverse_scaleway/observability/source.py +115 -113
- pulumiverse_scaleway/observability/token.py +66 -64
- pulumiverse_scaleway/outputs.py +2797 -2732
- pulumiverse_scaleway/provider.py +87 -65
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +101 -99
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +63 -62
- pulumiverse_scaleway/redis/cluster.py +178 -176
- pulumiverse_scaleway/redis/get_cluster.py +34 -33
- pulumiverse_scaleway/redis/outputs.py +74 -73
- pulumiverse_scaleway/redis_cluster.py +178 -176
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +37 -36
- pulumiverse_scaleway/registry/get_image_tag.py +33 -32
- pulumiverse_scaleway/registry/get_namespace.py +27 -26
- pulumiverse_scaleway/registry/namespace.py +87 -85
- pulumiverse_scaleway/registry_namespace.py +87 -85
- pulumiverse_scaleway/sdb_database.py +80 -78
- pulumiverse_scaleway/secret.py +143 -141
- pulumiverse_scaleway/secret_version.py +87 -85
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +53 -52
- pulumiverse_scaleway/secrets/get_secret.py +41 -40
- pulumiverse_scaleway/secrets/get_version.py +34 -33
- pulumiverse_scaleway/secrets/outputs.py +64 -63
- pulumiverse_scaleway/secrets/secret.py +143 -141
- pulumiverse_scaleway/secrets/version.py +87 -85
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +28 -27
- pulumiverse_scaleway/tem/blocked_list.py +87 -85
- pulumiverse_scaleway/tem/domain.py +199 -197
- pulumiverse_scaleway/tem/domain_validation.py +52 -50
- pulumiverse_scaleway/tem/get_domain.py +43 -42
- pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
- pulumiverse_scaleway/tem/outputs.py +34 -33
- pulumiverse_scaleway/tem/webhook.py +108 -106
- pulumiverse_scaleway/tem_domain.py +199 -197
- pulumiverse_scaleway/tem_domain_validation.py +52 -50
- pulumiverse_scaleway/tem_webhook.py +108 -106
- pulumiverse_scaleway/vpc.py +101 -99
- pulumiverse_scaleway/vpc_gateway_network.py +143 -141
- pulumiverse_scaleway/vpc_private_network.py +122 -120
- pulumiverse_scaleway/vpc_public_gateway.py +213 -211
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/vpc_route.py +115 -113
- pulumiverse_scaleway/webhosting.py +164 -162
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
- pulumiverse_scaleway-1.30.0a1748337252.dist-info/RECORD +0 -492
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -19,27 +20,27 @@ __all__ = ['LoadbalancerRouteArgs', 'LoadbalancerRoute']
|
|
19
20
|
@pulumi.input_type
|
20
21
|
class LoadbalancerRouteArgs:
|
21
22
|
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
|
-
match_path_begin: Optional[pulumi.Input[str]] = None,
|
26
|
-
match_sni: Optional[pulumi.Input[str]] = None,
|
27
|
-
match_subdomains: Optional[pulumi.Input[bool]] = None):
|
23
|
+
backend_id: pulumi.Input[builtins.str],
|
24
|
+
frontend_id: pulumi.Input[builtins.str],
|
25
|
+
match_host_header: Optional[pulumi.Input[builtins.str]] = None,
|
26
|
+
match_path_begin: Optional[pulumi.Input[builtins.str]] = None,
|
27
|
+
match_sni: Optional[pulumi.Input[builtins.str]] = None,
|
28
|
+
match_subdomains: Optional[pulumi.Input[builtins.bool]] = None):
|
28
29
|
"""
|
29
30
|
The set of arguments for constructing a LoadbalancerRoute resource.
|
30
|
-
:param pulumi.Input[str] backend_id: The ID of the backend the route is associated with.
|
31
|
-
:param pulumi.Input[str] frontend_id: The ID of the frontend the route is associated with.
|
32
|
-
: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.
|
31
|
+
:param pulumi.Input[builtins.str] backend_id: The ID of the backend the route is associated with.
|
32
|
+
:param pulumi.Input[builtins.str] frontend_id: The ID of the frontend the route is associated with.
|
33
|
+
: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
34
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
34
35
|
|
35
36
|
> **Important:** This field should be set for routes on HTTP Load Balancers.
|
36
|
-
:param pulumi.Input[str] match_path_begin: The value to match in the URL beginning path from an incoming request.
|
37
|
+
:param pulumi.Input[builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
|
37
38
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
38
|
-
:param pulumi.Input[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
|
+
: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
40
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
40
41
|
|
41
42
|
> **Important:** This field should be set for routes on TCP Load Balancers.
|
42
|
-
:param pulumi.Input[bool] match_subdomains: If true, all subdomains will match.
|
43
|
+
:param pulumi.Input[builtins.bool] match_subdomains: If true, all subdomains will match.
|
43
44
|
"""
|
44
45
|
pulumi.set(__self__, "backend_id", backend_id)
|
45
46
|
pulumi.set(__self__, "frontend_id", frontend_id)
|
@@ -54,31 +55,31 @@ class LoadbalancerRouteArgs:
|
|
54
55
|
|
55
56
|
@property
|
56
57
|
@pulumi.getter(name="backendId")
|
57
|
-
def backend_id(self) -> pulumi.Input[str]:
|
58
|
+
def backend_id(self) -> pulumi.Input[builtins.str]:
|
58
59
|
"""
|
59
60
|
The ID of the backend the route is associated with.
|
60
61
|
"""
|
61
62
|
return pulumi.get(self, "backend_id")
|
62
63
|
|
63
64
|
@backend_id.setter
|
64
|
-
def backend_id(self, value: pulumi.Input[str]):
|
65
|
+
def backend_id(self, value: pulumi.Input[builtins.str]):
|
65
66
|
pulumi.set(self, "backend_id", value)
|
66
67
|
|
67
68
|
@property
|
68
69
|
@pulumi.getter(name="frontendId")
|
69
|
-
def frontend_id(self) -> pulumi.Input[str]:
|
70
|
+
def frontend_id(self) -> pulumi.Input[builtins.str]:
|
70
71
|
"""
|
71
72
|
The ID of the frontend the route is associated with.
|
72
73
|
"""
|
73
74
|
return pulumi.get(self, "frontend_id")
|
74
75
|
|
75
76
|
@frontend_id.setter
|
76
|
-
def frontend_id(self, value: pulumi.Input[str]):
|
77
|
+
def frontend_id(self, value: pulumi.Input[builtins.str]):
|
77
78
|
pulumi.set(self, "frontend_id", value)
|
78
79
|
|
79
80
|
@property
|
80
81
|
@pulumi.getter(name="matchHostHeader")
|
81
|
-
def match_host_header(self) -> Optional[pulumi.Input[str]]:
|
82
|
+
def match_host_header(self) -> Optional[pulumi.Input[builtins.str]]:
|
82
83
|
"""
|
83
84
|
The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
84
85
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
@@ -88,12 +89,12 @@ class LoadbalancerRouteArgs:
|
|
88
89
|
return pulumi.get(self, "match_host_header")
|
89
90
|
|
90
91
|
@match_host_header.setter
|
91
|
-
def match_host_header(self, value: Optional[pulumi.Input[str]]):
|
92
|
+
def match_host_header(self, value: Optional[pulumi.Input[builtins.str]]):
|
92
93
|
pulumi.set(self, "match_host_header", value)
|
93
94
|
|
94
95
|
@property
|
95
96
|
@pulumi.getter(name="matchPathBegin")
|
96
|
-
def match_path_begin(self) -> Optional[pulumi.Input[str]]:
|
97
|
+
def match_path_begin(self) -> Optional[pulumi.Input[builtins.str]]:
|
97
98
|
"""
|
98
99
|
The value to match in the URL beginning path from an incoming request.
|
99
100
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
@@ -101,12 +102,12 @@ class LoadbalancerRouteArgs:
|
|
101
102
|
return pulumi.get(self, "match_path_begin")
|
102
103
|
|
103
104
|
@match_path_begin.setter
|
104
|
-
def match_path_begin(self, value: Optional[pulumi.Input[str]]):
|
105
|
+
def match_path_begin(self, value: Optional[pulumi.Input[builtins.str]]):
|
105
106
|
pulumi.set(self, "match_path_begin", value)
|
106
107
|
|
107
108
|
@property
|
108
109
|
@pulumi.getter(name="matchSni")
|
109
|
-
def match_sni(self) -> Optional[pulumi.Input[str]]:
|
110
|
+
def match_sni(self) -> Optional[pulumi.Input[builtins.str]]:
|
110
111
|
"""
|
111
112
|
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.
|
112
113
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
@@ -116,50 +117,50 @@ class LoadbalancerRouteArgs:
|
|
116
117
|
return pulumi.get(self, "match_sni")
|
117
118
|
|
118
119
|
@match_sni.setter
|
119
|
-
def match_sni(self, value: Optional[pulumi.Input[str]]):
|
120
|
+
def match_sni(self, value: Optional[pulumi.Input[builtins.str]]):
|
120
121
|
pulumi.set(self, "match_sni", value)
|
121
122
|
|
122
123
|
@property
|
123
124
|
@pulumi.getter(name="matchSubdomains")
|
124
|
-
def match_subdomains(self) -> Optional[pulumi.Input[bool]]:
|
125
|
+
def match_subdomains(self) -> Optional[pulumi.Input[builtins.bool]]:
|
125
126
|
"""
|
126
127
|
If true, all subdomains will match.
|
127
128
|
"""
|
128
129
|
return pulumi.get(self, "match_subdomains")
|
129
130
|
|
130
131
|
@match_subdomains.setter
|
131
|
-
def match_subdomains(self, value: Optional[pulumi.Input[bool]]):
|
132
|
+
def match_subdomains(self, value: Optional[pulumi.Input[builtins.bool]]):
|
132
133
|
pulumi.set(self, "match_subdomains", value)
|
133
134
|
|
134
135
|
|
135
136
|
@pulumi.input_type
|
136
137
|
class _LoadbalancerRouteState:
|
137
138
|
def __init__(__self__, *,
|
138
|
-
backend_id: Optional[pulumi.Input[str]] = None,
|
139
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
140
|
-
frontend_id: Optional[pulumi.Input[str]] = None,
|
141
|
-
match_host_header: Optional[pulumi.Input[str]] = None,
|
142
|
-
match_path_begin: Optional[pulumi.Input[str]] = None,
|
143
|
-
match_sni: Optional[pulumi.Input[str]] = None,
|
144
|
-
match_subdomains: Optional[pulumi.Input[bool]] = None,
|
145
|
-
updated_at: Optional[pulumi.Input[str]] = None):
|
139
|
+
backend_id: Optional[pulumi.Input[builtins.str]] = None,
|
140
|
+
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
141
|
+
frontend_id: Optional[pulumi.Input[builtins.str]] = None,
|
142
|
+
match_host_header: Optional[pulumi.Input[builtins.str]] = None,
|
143
|
+
match_path_begin: Optional[pulumi.Input[builtins.str]] = None,
|
144
|
+
match_sni: Optional[pulumi.Input[builtins.str]] = None,
|
145
|
+
match_subdomains: Optional[pulumi.Input[builtins.bool]] = None,
|
146
|
+
updated_at: Optional[pulumi.Input[builtins.str]] = None):
|
146
147
|
"""
|
147
148
|
Input properties used for looking up and filtering LoadbalancerRoute resources.
|
148
|
-
:param pulumi.Input[str] backend_id: The ID of the backend the route is associated with.
|
149
|
-
:param pulumi.Input[str] created_at: The date on which the route was created.
|
150
|
-
:param pulumi.Input[str] frontend_id: The ID of the frontend the route is associated with.
|
151
|
-
: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.
|
149
|
+
:param pulumi.Input[builtins.str] backend_id: The ID of the backend the route is associated with.
|
150
|
+
:param pulumi.Input[builtins.str] created_at: The date on which the route was created.
|
151
|
+
:param pulumi.Input[builtins.str] frontend_id: The ID of the frontend the route is associated with.
|
152
|
+
: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
153
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
153
154
|
|
154
155
|
> **Important:** This field should be set for routes on HTTP Load Balancers.
|
155
|
-
:param pulumi.Input[str] match_path_begin: The value to match in the URL beginning path from an incoming request.
|
156
|
+
:param pulumi.Input[builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
|
156
157
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
157
|
-
:param pulumi.Input[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
|
+
: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
159
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
159
160
|
|
160
161
|
> **Important:** This field should be set for routes on TCP Load Balancers.
|
161
|
-
:param pulumi.Input[bool] match_subdomains: If true, all subdomains will match.
|
162
|
-
:param pulumi.Input[str] updated_at: The date on which the route was last updated.
|
162
|
+
:param pulumi.Input[builtins.bool] match_subdomains: If true, all subdomains will match.
|
163
|
+
:param pulumi.Input[builtins.str] updated_at: The date on which the route was last updated.
|
163
164
|
"""
|
164
165
|
if backend_id is not None:
|
165
166
|
pulumi.set(__self__, "backend_id", backend_id)
|
@@ -180,43 +181,43 @@ class _LoadbalancerRouteState:
|
|
180
181
|
|
181
182
|
@property
|
182
183
|
@pulumi.getter(name="backendId")
|
183
|
-
def backend_id(self) -> Optional[pulumi.Input[str]]:
|
184
|
+
def backend_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
184
185
|
"""
|
185
186
|
The ID of the backend the route is associated with.
|
186
187
|
"""
|
187
188
|
return pulumi.get(self, "backend_id")
|
188
189
|
|
189
190
|
@backend_id.setter
|
190
|
-
def backend_id(self, value: Optional[pulumi.Input[str]]):
|
191
|
+
def backend_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
191
192
|
pulumi.set(self, "backend_id", value)
|
192
193
|
|
193
194
|
@property
|
194
195
|
@pulumi.getter(name="createdAt")
|
195
|
-
def created_at(self) -> Optional[pulumi.Input[str]]:
|
196
|
+
def created_at(self) -> Optional[pulumi.Input[builtins.str]]:
|
196
197
|
"""
|
197
198
|
The date on which the route was created.
|
198
199
|
"""
|
199
200
|
return pulumi.get(self, "created_at")
|
200
201
|
|
201
202
|
@created_at.setter
|
202
|
-
def created_at(self, value: Optional[pulumi.Input[str]]):
|
203
|
+
def created_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
203
204
|
pulumi.set(self, "created_at", value)
|
204
205
|
|
205
206
|
@property
|
206
207
|
@pulumi.getter(name="frontendId")
|
207
|
-
def frontend_id(self) -> Optional[pulumi.Input[str]]:
|
208
|
+
def frontend_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
208
209
|
"""
|
209
210
|
The ID of the frontend the route is associated with.
|
210
211
|
"""
|
211
212
|
return pulumi.get(self, "frontend_id")
|
212
213
|
|
213
214
|
@frontend_id.setter
|
214
|
-
def frontend_id(self, value: Optional[pulumi.Input[str]]):
|
215
|
+
def frontend_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
215
216
|
pulumi.set(self, "frontend_id", value)
|
216
217
|
|
217
218
|
@property
|
218
219
|
@pulumi.getter(name="matchHostHeader")
|
219
|
-
def match_host_header(self) -> Optional[pulumi.Input[str]]:
|
220
|
+
def match_host_header(self) -> Optional[pulumi.Input[builtins.str]]:
|
220
221
|
"""
|
221
222
|
The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
222
223
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
@@ -226,12 +227,12 @@ class _LoadbalancerRouteState:
|
|
226
227
|
return pulumi.get(self, "match_host_header")
|
227
228
|
|
228
229
|
@match_host_header.setter
|
229
|
-
def match_host_header(self, value: Optional[pulumi.Input[str]]):
|
230
|
+
def match_host_header(self, value: Optional[pulumi.Input[builtins.str]]):
|
230
231
|
pulumi.set(self, "match_host_header", value)
|
231
232
|
|
232
233
|
@property
|
233
234
|
@pulumi.getter(name="matchPathBegin")
|
234
|
-
def match_path_begin(self) -> Optional[pulumi.Input[str]]:
|
235
|
+
def match_path_begin(self) -> Optional[pulumi.Input[builtins.str]]:
|
235
236
|
"""
|
236
237
|
The value to match in the URL beginning path from an incoming request.
|
237
238
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
@@ -239,12 +240,12 @@ class _LoadbalancerRouteState:
|
|
239
240
|
return pulumi.get(self, "match_path_begin")
|
240
241
|
|
241
242
|
@match_path_begin.setter
|
242
|
-
def match_path_begin(self, value: Optional[pulumi.Input[str]]):
|
243
|
+
def match_path_begin(self, value: Optional[pulumi.Input[builtins.str]]):
|
243
244
|
pulumi.set(self, "match_path_begin", value)
|
244
245
|
|
245
246
|
@property
|
246
247
|
@pulumi.getter(name="matchSni")
|
247
|
-
def match_sni(self) -> Optional[pulumi.Input[str]]:
|
248
|
+
def match_sni(self) -> Optional[pulumi.Input[builtins.str]]:
|
248
249
|
"""
|
249
250
|
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.
|
250
251
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
@@ -254,37 +255,38 @@ class _LoadbalancerRouteState:
|
|
254
255
|
return pulumi.get(self, "match_sni")
|
255
256
|
|
256
257
|
@match_sni.setter
|
257
|
-
def match_sni(self, value: Optional[pulumi.Input[str]]):
|
258
|
+
def match_sni(self, value: Optional[pulumi.Input[builtins.str]]):
|
258
259
|
pulumi.set(self, "match_sni", value)
|
259
260
|
|
260
261
|
@property
|
261
262
|
@pulumi.getter(name="matchSubdomains")
|
262
|
-
def match_subdomains(self) -> Optional[pulumi.Input[bool]]:
|
263
|
+
def match_subdomains(self) -> Optional[pulumi.Input[builtins.bool]]:
|
263
264
|
"""
|
264
265
|
If true, all subdomains will match.
|
265
266
|
"""
|
266
267
|
return pulumi.get(self, "match_subdomains")
|
267
268
|
|
268
269
|
@match_subdomains.setter
|
269
|
-
def match_subdomains(self, value: Optional[pulumi.Input[bool]]):
|
270
|
+
def match_subdomains(self, value: Optional[pulumi.Input[builtins.bool]]):
|
270
271
|
pulumi.set(self, "match_subdomains", value)
|
271
272
|
|
272
273
|
@property
|
273
274
|
@pulumi.getter(name="updatedAt")
|
274
|
-
def updated_at(self) -> Optional[pulumi.Input[str]]:
|
275
|
+
def updated_at(self) -> Optional[pulumi.Input[builtins.str]]:
|
275
276
|
"""
|
276
277
|
The date on which the route was last updated.
|
277
278
|
"""
|
278
279
|
return pulumi.get(self, "updated_at")
|
279
280
|
|
280
281
|
@updated_at.setter
|
281
|
-
def updated_at(self, value: Optional[pulumi.Input[str]]):
|
282
|
+
def updated_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
282
283
|
pulumi.set(self, "updated_at", value)
|
283
284
|
|
284
285
|
|
285
286
|
warnings.warn("""scaleway.index/loadbalancerroute.LoadbalancerRoute has been deprecated in favor of scaleway.loadbalancers/route.Route""", DeprecationWarning)
|
286
287
|
|
287
288
|
|
289
|
+
@pulumi.type_token("scaleway:index/loadbalancerRoute:LoadbalancerRoute")
|
288
290
|
class LoadbalancerRoute(pulumi.CustomResource):
|
289
291
|
warnings.warn("""scaleway.index/loadbalancerroute.LoadbalancerRoute has been deprecated in favor of scaleway.loadbalancers/route.Route""", DeprecationWarning)
|
290
292
|
|
@@ -292,12 +294,12 @@ class LoadbalancerRoute(pulumi.CustomResource):
|
|
292
294
|
def __init__(__self__,
|
293
295
|
resource_name: str,
|
294
296
|
opts: Optional[pulumi.ResourceOptions] = None,
|
295
|
-
backend_id: Optional[pulumi.Input[str]] = None,
|
296
|
-
frontend_id: Optional[pulumi.Input[str]] = None,
|
297
|
-
match_host_header: Optional[pulumi.Input[str]] = None,
|
298
|
-
match_path_begin: Optional[pulumi.Input[str]] = None,
|
299
|
-
match_sni: Optional[pulumi.Input[str]] = None,
|
300
|
-
match_subdomains: Optional[pulumi.Input[bool]] = None,
|
297
|
+
backend_id: Optional[pulumi.Input[builtins.str]] = None,
|
298
|
+
frontend_id: Optional[pulumi.Input[builtins.str]] = None,
|
299
|
+
match_host_header: Optional[pulumi.Input[builtins.str]] = None,
|
300
|
+
match_path_begin: Optional[pulumi.Input[builtins.str]] = None,
|
301
|
+
match_sni: Optional[pulumi.Input[builtins.str]] = None,
|
302
|
+
match_subdomains: Optional[pulumi.Input[builtins.bool]] = None,
|
301
303
|
__props__=None):
|
302
304
|
"""
|
303
305
|
Creates and manages Scaleway Load Balancer routes.
|
@@ -405,19 +407,19 @@ class LoadbalancerRoute(pulumi.CustomResource):
|
|
405
407
|
|
406
408
|
:param str resource_name: The name of the resource.
|
407
409
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
408
|
-
:param pulumi.Input[str] backend_id: The ID of the backend the route is associated with.
|
409
|
-
:param pulumi.Input[str] frontend_id: The ID of the frontend the route is associated with.
|
410
|
-
: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.
|
410
|
+
:param pulumi.Input[builtins.str] backend_id: The ID of the backend the route is associated with.
|
411
|
+
:param pulumi.Input[builtins.str] frontend_id: The ID of the frontend the route is associated with.
|
412
|
+
: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.
|
411
413
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
412
414
|
|
413
415
|
> **Important:** This field should be set for routes on HTTP Load Balancers.
|
414
|
-
:param pulumi.Input[str] match_path_begin: The value to match in the URL beginning path from an incoming request.
|
416
|
+
:param pulumi.Input[builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
|
415
417
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
416
|
-
:param pulumi.Input[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.
|
418
|
+
: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.
|
417
419
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
418
420
|
|
419
421
|
> **Important:** This field should be set for routes on TCP Load Balancers.
|
420
|
-
:param pulumi.Input[bool] match_subdomains: If true, all subdomains will match.
|
422
|
+
:param pulumi.Input[builtins.bool] match_subdomains: If true, all subdomains will match.
|
421
423
|
"""
|
422
424
|
...
|
423
425
|
@overload
|
@@ -544,12 +546,12 @@ class LoadbalancerRoute(pulumi.CustomResource):
|
|
544
546
|
def _internal_init(__self__,
|
545
547
|
resource_name: str,
|
546
548
|
opts: Optional[pulumi.ResourceOptions] = None,
|
547
|
-
backend_id: Optional[pulumi.Input[str]] = None,
|
548
|
-
frontend_id: Optional[pulumi.Input[str]] = None,
|
549
|
-
match_host_header: Optional[pulumi.Input[str]] = None,
|
550
|
-
match_path_begin: Optional[pulumi.Input[str]] = None,
|
551
|
-
match_sni: Optional[pulumi.Input[str]] = None,
|
552
|
-
match_subdomains: Optional[pulumi.Input[bool]] = None,
|
549
|
+
backend_id: Optional[pulumi.Input[builtins.str]] = None,
|
550
|
+
frontend_id: Optional[pulumi.Input[builtins.str]] = None,
|
551
|
+
match_host_header: Optional[pulumi.Input[builtins.str]] = None,
|
552
|
+
match_path_begin: Optional[pulumi.Input[builtins.str]] = None,
|
553
|
+
match_sni: Optional[pulumi.Input[builtins.str]] = None,
|
554
|
+
match_subdomains: Optional[pulumi.Input[builtins.bool]] = None,
|
553
555
|
__props__=None):
|
554
556
|
pulumi.log.warn("""LoadbalancerRoute is deprecated: scaleway.index/loadbalancerroute.LoadbalancerRoute has been deprecated in favor of scaleway.loadbalancers/route.Route""")
|
555
557
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -582,14 +584,14 @@ class LoadbalancerRoute(pulumi.CustomResource):
|
|
582
584
|
def get(resource_name: str,
|
583
585
|
id: pulumi.Input[str],
|
584
586
|
opts: Optional[pulumi.ResourceOptions] = None,
|
585
|
-
backend_id: Optional[pulumi.Input[str]] = None,
|
586
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
587
|
-
frontend_id: Optional[pulumi.Input[str]] = None,
|
588
|
-
match_host_header: Optional[pulumi.Input[str]] = None,
|
589
|
-
match_path_begin: Optional[pulumi.Input[str]] = None,
|
590
|
-
match_sni: Optional[pulumi.Input[str]] = None,
|
591
|
-
match_subdomains: Optional[pulumi.Input[bool]] = None,
|
592
|
-
updated_at: Optional[pulumi.Input[str]] = None) -> 'LoadbalancerRoute':
|
587
|
+
backend_id: Optional[pulumi.Input[builtins.str]] = None,
|
588
|
+
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
589
|
+
frontend_id: Optional[pulumi.Input[builtins.str]] = None,
|
590
|
+
match_host_header: Optional[pulumi.Input[builtins.str]] = None,
|
591
|
+
match_path_begin: Optional[pulumi.Input[builtins.str]] = None,
|
592
|
+
match_sni: Optional[pulumi.Input[builtins.str]] = None,
|
593
|
+
match_subdomains: Optional[pulumi.Input[builtins.bool]] = None,
|
594
|
+
updated_at: Optional[pulumi.Input[builtins.str]] = None) -> 'LoadbalancerRoute':
|
593
595
|
"""
|
594
596
|
Get an existing LoadbalancerRoute resource's state with the given name, id, and optional extra
|
595
597
|
properties used to qualify the lookup.
|
@@ -597,21 +599,21 @@ class LoadbalancerRoute(pulumi.CustomResource):
|
|
597
599
|
:param str resource_name: The unique name of the resulting resource.
|
598
600
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
599
601
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
600
|
-
:param pulumi.Input[str] backend_id: The ID of the backend the route is associated with.
|
601
|
-
:param pulumi.Input[str] created_at: The date on which the route was created.
|
602
|
-
:param pulumi.Input[str] frontend_id: The ID of the frontend the route is associated with.
|
603
|
-
: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.
|
602
|
+
:param pulumi.Input[builtins.str] backend_id: The ID of the backend the route is associated with.
|
603
|
+
:param pulumi.Input[builtins.str] created_at: The date on which the route was created.
|
604
|
+
:param pulumi.Input[builtins.str] frontend_id: The ID of the frontend the route is associated with.
|
605
|
+
: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.
|
604
606
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
605
607
|
|
606
608
|
> **Important:** This field should be set for routes on HTTP Load Balancers.
|
607
|
-
:param pulumi.Input[str] match_path_begin: The value to match in the URL beginning path from an incoming request.
|
609
|
+
:param pulumi.Input[builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
|
608
610
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
609
|
-
:param pulumi.Input[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.
|
611
|
+
: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.
|
610
612
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
611
613
|
|
612
614
|
> **Important:** This field should be set for routes on TCP Load Balancers.
|
613
|
-
:param pulumi.Input[bool] match_subdomains: If true, all subdomains will match.
|
614
|
-
:param pulumi.Input[str] updated_at: The date on which the route was last updated.
|
615
|
+
:param pulumi.Input[builtins.bool] match_subdomains: If true, all subdomains will match.
|
616
|
+
:param pulumi.Input[builtins.str] updated_at: The date on which the route was last updated.
|
615
617
|
"""
|
616
618
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
617
619
|
|
@@ -629,7 +631,7 @@ class LoadbalancerRoute(pulumi.CustomResource):
|
|
629
631
|
|
630
632
|
@property
|
631
633
|
@pulumi.getter(name="backendId")
|
632
|
-
def backend_id(self) -> pulumi.Output[str]:
|
634
|
+
def backend_id(self) -> pulumi.Output[builtins.str]:
|
633
635
|
"""
|
634
636
|
The ID of the backend the route is associated with.
|
635
637
|
"""
|
@@ -637,7 +639,7 @@ class LoadbalancerRoute(pulumi.CustomResource):
|
|
637
639
|
|
638
640
|
@property
|
639
641
|
@pulumi.getter(name="createdAt")
|
640
|
-
def created_at(self) -> pulumi.Output[str]:
|
642
|
+
def created_at(self) -> pulumi.Output[builtins.str]:
|
641
643
|
"""
|
642
644
|
The date on which the route was created.
|
643
645
|
"""
|
@@ -645,7 +647,7 @@ class LoadbalancerRoute(pulumi.CustomResource):
|
|
645
647
|
|
646
648
|
@property
|
647
649
|
@pulumi.getter(name="frontendId")
|
648
|
-
def frontend_id(self) -> pulumi.Output[str]:
|
650
|
+
def frontend_id(self) -> pulumi.Output[builtins.str]:
|
649
651
|
"""
|
650
652
|
The ID of the frontend the route is associated with.
|
651
653
|
"""
|
@@ -653,7 +655,7 @@ class LoadbalancerRoute(pulumi.CustomResource):
|
|
653
655
|
|
654
656
|
@property
|
655
657
|
@pulumi.getter(name="matchHostHeader")
|
656
|
-
def match_host_header(self) -> pulumi.Output[Optional[str]]:
|
658
|
+
def match_host_header(self) -> pulumi.Output[Optional[builtins.str]]:
|
657
659
|
"""
|
658
660
|
The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
|
659
661
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
@@ -664,7 +666,7 @@ class LoadbalancerRoute(pulumi.CustomResource):
|
|
664
666
|
|
665
667
|
@property
|
666
668
|
@pulumi.getter(name="matchPathBegin")
|
667
|
-
def match_path_begin(self) -> pulumi.Output[Optional[str]]:
|
669
|
+
def match_path_begin(self) -> pulumi.Output[Optional[builtins.str]]:
|
668
670
|
"""
|
669
671
|
The value to match in the URL beginning path from an incoming request.
|
670
672
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
@@ -673,7 +675,7 @@ class LoadbalancerRoute(pulumi.CustomResource):
|
|
673
675
|
|
674
676
|
@property
|
675
677
|
@pulumi.getter(name="matchSni")
|
676
|
-
def match_sni(self) -> pulumi.Output[Optional[str]]:
|
678
|
+
def match_sni(self) -> pulumi.Output[Optional[builtins.str]]:
|
677
679
|
"""
|
678
680
|
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.
|
679
681
|
Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
|
@@ -684,7 +686,7 @@ class LoadbalancerRoute(pulumi.CustomResource):
|
|
684
686
|
|
685
687
|
@property
|
686
688
|
@pulumi.getter(name="matchSubdomains")
|
687
|
-
def match_subdomains(self) -> pulumi.Output[Optional[bool]]:
|
689
|
+
def match_subdomains(self) -> pulumi.Output[Optional[builtins.bool]]:
|
688
690
|
"""
|
689
691
|
If true, all subdomains will match.
|
690
692
|
"""
|
@@ -692,7 +694,7 @@ class LoadbalancerRoute(pulumi.CustomResource):
|
|
692
694
|
|
693
695
|
@property
|
694
696
|
@pulumi.getter(name="updatedAt")
|
695
|
-
def updated_at(self) -> pulumi.Output[str]:
|
697
|
+
def updated_at(self) -> pulumi.Output[builtins.str]:
|
696
698
|
"""
|
697
699
|
The date on which the route was last updated.
|
698
700
|
"""
|
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
from .. import _utilities
|
6
7
|
import typing
|
7
8
|
# Export this package's modules as members:
|