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
|
@@ -21,24 +22,24 @@ __all__ = ['EdgeServicesTlsStageArgs', 'EdgeServicesTlsStage']
|
|
21
22
|
@pulumi.input_type
|
22
23
|
class EdgeServicesTlsStageArgs:
|
23
24
|
def __init__(__self__, *,
|
24
|
-
pipeline_id: pulumi.Input[str],
|
25
|
-
backend_stage_id: Optional[pulumi.Input[str]] = None,
|
26
|
-
cache_stage_id: Optional[pulumi.Input[str]] = None,
|
27
|
-
managed_certificate: Optional[pulumi.Input[bool]] = None,
|
28
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
29
|
-
route_stage_id: Optional[pulumi.Input[str]] = None,
|
25
|
+
pipeline_id: pulumi.Input[builtins.str],
|
26
|
+
backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
27
|
+
cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
28
|
+
managed_certificate: Optional[pulumi.Input[builtins.bool]] = None,
|
29
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
30
|
+
route_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
30
31
|
secrets: Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]] = None,
|
31
|
-
waf_stage_id: Optional[pulumi.Input[str]] = None):
|
32
|
+
waf_stage_id: Optional[pulumi.Input[builtins.str]] = None):
|
32
33
|
"""
|
33
34
|
The set of arguments for constructing a EdgeServicesTlsStage resource.
|
34
|
-
:param pulumi.Input[str] pipeline_id: The ID of the pipeline.
|
35
|
-
:param pulumi.Input[str] backend_stage_id: The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
36
|
-
:param pulumi.Input[str] cache_stage_id: The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
37
|
-
:param pulumi.Input[bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
|
38
|
-
:param pulumi.Input[str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
|
39
|
-
:param pulumi.Input[str] route_stage_id: The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
35
|
+
:param pulumi.Input[builtins.str] pipeline_id: The ID of the pipeline.
|
36
|
+
:param pulumi.Input[builtins.str] backend_stage_id: The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
37
|
+
:param pulumi.Input[builtins.str] cache_stage_id: The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
38
|
+
:param pulumi.Input[builtins.bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
|
39
|
+
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
|
40
|
+
:param pulumi.Input[builtins.str] route_stage_id: The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
40
41
|
:param pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]] secrets: The TLS secrets.
|
41
|
-
:param pulumi.Input[str] waf_stage_id: The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
42
|
+
:param pulumi.Input[builtins.str] waf_stage_id: The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
42
43
|
"""
|
43
44
|
pulumi.set(__self__, "pipeline_id", pipeline_id)
|
44
45
|
if backend_stage_id is not None:
|
@@ -58,74 +59,74 @@ class EdgeServicesTlsStageArgs:
|
|
58
59
|
|
59
60
|
@property
|
60
61
|
@pulumi.getter(name="pipelineId")
|
61
|
-
def pipeline_id(self) -> pulumi.Input[str]:
|
62
|
+
def pipeline_id(self) -> pulumi.Input[builtins.str]:
|
62
63
|
"""
|
63
64
|
The ID of the pipeline.
|
64
65
|
"""
|
65
66
|
return pulumi.get(self, "pipeline_id")
|
66
67
|
|
67
68
|
@pipeline_id.setter
|
68
|
-
def pipeline_id(self, value: pulumi.Input[str]):
|
69
|
+
def pipeline_id(self, value: pulumi.Input[builtins.str]):
|
69
70
|
pulumi.set(self, "pipeline_id", value)
|
70
71
|
|
71
72
|
@property
|
72
73
|
@pulumi.getter(name="backendStageId")
|
73
|
-
def backend_stage_id(self) -> Optional[pulumi.Input[str]]:
|
74
|
+
def backend_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
74
75
|
"""
|
75
76
|
The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
76
77
|
"""
|
77
78
|
return pulumi.get(self, "backend_stage_id")
|
78
79
|
|
79
80
|
@backend_stage_id.setter
|
80
|
-
def backend_stage_id(self, value: Optional[pulumi.Input[str]]):
|
81
|
+
def backend_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
81
82
|
pulumi.set(self, "backend_stage_id", value)
|
82
83
|
|
83
84
|
@property
|
84
85
|
@pulumi.getter(name="cacheStageId")
|
85
|
-
def cache_stage_id(self) -> Optional[pulumi.Input[str]]:
|
86
|
+
def cache_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
86
87
|
"""
|
87
88
|
The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
88
89
|
"""
|
89
90
|
return pulumi.get(self, "cache_stage_id")
|
90
91
|
|
91
92
|
@cache_stage_id.setter
|
92
|
-
def cache_stage_id(self, value: Optional[pulumi.Input[str]]):
|
93
|
+
def cache_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
93
94
|
pulumi.set(self, "cache_stage_id", value)
|
94
95
|
|
95
96
|
@property
|
96
97
|
@pulumi.getter(name="managedCertificate")
|
97
|
-
def managed_certificate(self) -> Optional[pulumi.Input[bool]]:
|
98
|
+
def managed_certificate(self) -> Optional[pulumi.Input[builtins.bool]]:
|
98
99
|
"""
|
99
100
|
Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
|
100
101
|
"""
|
101
102
|
return pulumi.get(self, "managed_certificate")
|
102
103
|
|
103
104
|
@managed_certificate.setter
|
104
|
-
def managed_certificate(self, value: Optional[pulumi.Input[bool]]):
|
105
|
+
def managed_certificate(self, value: Optional[pulumi.Input[builtins.bool]]):
|
105
106
|
pulumi.set(self, "managed_certificate", value)
|
106
107
|
|
107
108
|
@property
|
108
109
|
@pulumi.getter(name="projectId")
|
109
|
-
def project_id(self) -> Optional[pulumi.Input[str]]:
|
110
|
+
def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
110
111
|
"""
|
111
112
|
`project_id`) The ID of the project the TLS stage is associated with.
|
112
113
|
"""
|
113
114
|
return pulumi.get(self, "project_id")
|
114
115
|
|
115
116
|
@project_id.setter
|
116
|
-
def project_id(self, value: Optional[pulumi.Input[str]]):
|
117
|
+
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
117
118
|
pulumi.set(self, "project_id", value)
|
118
119
|
|
119
120
|
@property
|
120
121
|
@pulumi.getter(name="routeStageId")
|
121
|
-
def route_stage_id(self) -> Optional[pulumi.Input[str]]:
|
122
|
+
def route_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
122
123
|
"""
|
123
124
|
The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
124
125
|
"""
|
125
126
|
return pulumi.get(self, "route_stage_id")
|
126
127
|
|
127
128
|
@route_stage_id.setter
|
128
|
-
def route_stage_id(self, value: Optional[pulumi.Input[str]]):
|
129
|
+
def route_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
129
130
|
pulumi.set(self, "route_stage_id", value)
|
130
131
|
|
131
132
|
@property
|
@@ -142,44 +143,44 @@ class EdgeServicesTlsStageArgs:
|
|
142
143
|
|
143
144
|
@property
|
144
145
|
@pulumi.getter(name="wafStageId")
|
145
|
-
def waf_stage_id(self) -> Optional[pulumi.Input[str]]:
|
146
|
+
def waf_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
146
147
|
"""
|
147
148
|
The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
148
149
|
"""
|
149
150
|
return pulumi.get(self, "waf_stage_id")
|
150
151
|
|
151
152
|
@waf_stage_id.setter
|
152
|
-
def waf_stage_id(self, value: Optional[pulumi.Input[str]]):
|
153
|
+
def waf_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
153
154
|
pulumi.set(self, "waf_stage_id", value)
|
154
155
|
|
155
156
|
|
156
157
|
@pulumi.input_type
|
157
158
|
class _EdgeServicesTlsStageState:
|
158
159
|
def __init__(__self__, *,
|
159
|
-
backend_stage_id: Optional[pulumi.Input[str]] = None,
|
160
|
-
cache_stage_id: Optional[pulumi.Input[str]] = None,
|
161
|
-
certificate_expires_at: Optional[pulumi.Input[str]] = None,
|
162
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
163
|
-
managed_certificate: Optional[pulumi.Input[bool]] = None,
|
164
|
-
pipeline_id: Optional[pulumi.Input[str]] = None,
|
165
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
166
|
-
route_stage_id: Optional[pulumi.Input[str]] = None,
|
160
|
+
backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
161
|
+
cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
162
|
+
certificate_expires_at: Optional[pulumi.Input[builtins.str]] = None,
|
163
|
+
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
164
|
+
managed_certificate: Optional[pulumi.Input[builtins.bool]] = None,
|
165
|
+
pipeline_id: Optional[pulumi.Input[builtins.str]] = None,
|
166
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
167
|
+
route_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
167
168
|
secrets: Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]] = None,
|
168
|
-
updated_at: Optional[pulumi.Input[str]] = None,
|
169
|
-
waf_stage_id: Optional[pulumi.Input[str]] = None):
|
169
|
+
updated_at: Optional[pulumi.Input[builtins.str]] = None,
|
170
|
+
waf_stage_id: Optional[pulumi.Input[builtins.str]] = None):
|
170
171
|
"""
|
171
172
|
Input properties used for looking up and filtering EdgeServicesTlsStage resources.
|
172
|
-
:param pulumi.Input[str] backend_stage_id: The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
173
|
-
:param pulumi.Input[str] cache_stage_id: The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
174
|
-
:param pulumi.Input[str] certificate_expires_at: The expiration date of the certificate.
|
175
|
-
:param pulumi.Input[str] created_at: The date and time of the creation of the TLS stage.
|
176
|
-
:param pulumi.Input[bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
|
177
|
-
:param pulumi.Input[str] pipeline_id: The ID of the pipeline.
|
178
|
-
:param pulumi.Input[str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
|
179
|
-
:param pulumi.Input[str] route_stage_id: The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
173
|
+
:param pulumi.Input[builtins.str] backend_stage_id: The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
174
|
+
:param pulumi.Input[builtins.str] cache_stage_id: The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
175
|
+
:param pulumi.Input[builtins.str] certificate_expires_at: The expiration date of the certificate.
|
176
|
+
:param pulumi.Input[builtins.str] created_at: The date and time of the creation of the TLS stage.
|
177
|
+
:param pulumi.Input[builtins.bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
|
178
|
+
:param pulumi.Input[builtins.str] pipeline_id: The ID of the pipeline.
|
179
|
+
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
|
180
|
+
:param pulumi.Input[builtins.str] route_stage_id: The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
180
181
|
:param pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]] secrets: The TLS secrets.
|
181
|
-
:param pulumi.Input[str] updated_at: The date and time of the last update of the TLS stage.
|
182
|
-
:param pulumi.Input[str] waf_stage_id: The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
182
|
+
:param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the TLS stage.
|
183
|
+
:param pulumi.Input[builtins.str] waf_stage_id: The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
183
184
|
"""
|
184
185
|
if backend_stage_id is not None:
|
185
186
|
pulumi.set(__self__, "backend_stage_id", backend_stage_id)
|
@@ -206,98 +207,98 @@ class _EdgeServicesTlsStageState:
|
|
206
207
|
|
207
208
|
@property
|
208
209
|
@pulumi.getter(name="backendStageId")
|
209
|
-
def backend_stage_id(self) -> Optional[pulumi.Input[str]]:
|
210
|
+
def backend_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
210
211
|
"""
|
211
212
|
The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
212
213
|
"""
|
213
214
|
return pulumi.get(self, "backend_stage_id")
|
214
215
|
|
215
216
|
@backend_stage_id.setter
|
216
|
-
def backend_stage_id(self, value: Optional[pulumi.Input[str]]):
|
217
|
+
def backend_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
217
218
|
pulumi.set(self, "backend_stage_id", value)
|
218
219
|
|
219
220
|
@property
|
220
221
|
@pulumi.getter(name="cacheStageId")
|
221
|
-
def cache_stage_id(self) -> Optional[pulumi.Input[str]]:
|
222
|
+
def cache_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
222
223
|
"""
|
223
224
|
The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
224
225
|
"""
|
225
226
|
return pulumi.get(self, "cache_stage_id")
|
226
227
|
|
227
228
|
@cache_stage_id.setter
|
228
|
-
def cache_stage_id(self, value: Optional[pulumi.Input[str]]):
|
229
|
+
def cache_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
229
230
|
pulumi.set(self, "cache_stage_id", value)
|
230
231
|
|
231
232
|
@property
|
232
233
|
@pulumi.getter(name="certificateExpiresAt")
|
233
|
-
def certificate_expires_at(self) -> Optional[pulumi.Input[str]]:
|
234
|
+
def certificate_expires_at(self) -> Optional[pulumi.Input[builtins.str]]:
|
234
235
|
"""
|
235
236
|
The expiration date of the certificate.
|
236
237
|
"""
|
237
238
|
return pulumi.get(self, "certificate_expires_at")
|
238
239
|
|
239
240
|
@certificate_expires_at.setter
|
240
|
-
def certificate_expires_at(self, value: Optional[pulumi.Input[str]]):
|
241
|
+
def certificate_expires_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
241
242
|
pulumi.set(self, "certificate_expires_at", value)
|
242
243
|
|
243
244
|
@property
|
244
245
|
@pulumi.getter(name="createdAt")
|
245
|
-
def created_at(self) -> Optional[pulumi.Input[str]]:
|
246
|
+
def created_at(self) -> Optional[pulumi.Input[builtins.str]]:
|
246
247
|
"""
|
247
248
|
The date and time of the creation of the TLS stage.
|
248
249
|
"""
|
249
250
|
return pulumi.get(self, "created_at")
|
250
251
|
|
251
252
|
@created_at.setter
|
252
|
-
def created_at(self, value: Optional[pulumi.Input[str]]):
|
253
|
+
def created_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
253
254
|
pulumi.set(self, "created_at", value)
|
254
255
|
|
255
256
|
@property
|
256
257
|
@pulumi.getter(name="managedCertificate")
|
257
|
-
def managed_certificate(self) -> Optional[pulumi.Input[bool]]:
|
258
|
+
def managed_certificate(self) -> Optional[pulumi.Input[builtins.bool]]:
|
258
259
|
"""
|
259
260
|
Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
|
260
261
|
"""
|
261
262
|
return pulumi.get(self, "managed_certificate")
|
262
263
|
|
263
264
|
@managed_certificate.setter
|
264
|
-
def managed_certificate(self, value: Optional[pulumi.Input[bool]]):
|
265
|
+
def managed_certificate(self, value: Optional[pulumi.Input[builtins.bool]]):
|
265
266
|
pulumi.set(self, "managed_certificate", value)
|
266
267
|
|
267
268
|
@property
|
268
269
|
@pulumi.getter(name="pipelineId")
|
269
|
-
def pipeline_id(self) -> Optional[pulumi.Input[str]]:
|
270
|
+
def pipeline_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
270
271
|
"""
|
271
272
|
The ID of the pipeline.
|
272
273
|
"""
|
273
274
|
return pulumi.get(self, "pipeline_id")
|
274
275
|
|
275
276
|
@pipeline_id.setter
|
276
|
-
def pipeline_id(self, value: Optional[pulumi.Input[str]]):
|
277
|
+
def pipeline_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
277
278
|
pulumi.set(self, "pipeline_id", value)
|
278
279
|
|
279
280
|
@property
|
280
281
|
@pulumi.getter(name="projectId")
|
281
|
-
def project_id(self) -> Optional[pulumi.Input[str]]:
|
282
|
+
def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
282
283
|
"""
|
283
284
|
`project_id`) The ID of the project the TLS stage is associated with.
|
284
285
|
"""
|
285
286
|
return pulumi.get(self, "project_id")
|
286
287
|
|
287
288
|
@project_id.setter
|
288
|
-
def project_id(self, value: Optional[pulumi.Input[str]]):
|
289
|
+
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
289
290
|
pulumi.set(self, "project_id", value)
|
290
291
|
|
291
292
|
@property
|
292
293
|
@pulumi.getter(name="routeStageId")
|
293
|
-
def route_stage_id(self) -> Optional[pulumi.Input[str]]:
|
294
|
+
def route_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
294
295
|
"""
|
295
296
|
The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
296
297
|
"""
|
297
298
|
return pulumi.get(self, "route_stage_id")
|
298
299
|
|
299
300
|
@route_stage_id.setter
|
300
|
-
def route_stage_id(self, value: Optional[pulumi.Input[str]]):
|
301
|
+
def route_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
301
302
|
pulumi.set(self, "route_stage_id", value)
|
302
303
|
|
303
304
|
@property
|
@@ -314,42 +315,43 @@ class _EdgeServicesTlsStageState:
|
|
314
315
|
|
315
316
|
@property
|
316
317
|
@pulumi.getter(name="updatedAt")
|
317
|
-
def updated_at(self) -> Optional[pulumi.Input[str]]:
|
318
|
+
def updated_at(self) -> Optional[pulumi.Input[builtins.str]]:
|
318
319
|
"""
|
319
320
|
The date and time of the last update of the TLS stage.
|
320
321
|
"""
|
321
322
|
return pulumi.get(self, "updated_at")
|
322
323
|
|
323
324
|
@updated_at.setter
|
324
|
-
def updated_at(self, value: Optional[pulumi.Input[str]]):
|
325
|
+
def updated_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
325
326
|
pulumi.set(self, "updated_at", value)
|
326
327
|
|
327
328
|
@property
|
328
329
|
@pulumi.getter(name="wafStageId")
|
329
|
-
def waf_stage_id(self) -> Optional[pulumi.Input[str]]:
|
330
|
+
def waf_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
330
331
|
"""
|
331
332
|
The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
332
333
|
"""
|
333
334
|
return pulumi.get(self, "waf_stage_id")
|
334
335
|
|
335
336
|
@waf_stage_id.setter
|
336
|
-
def waf_stage_id(self, value: Optional[pulumi.Input[str]]):
|
337
|
+
def waf_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
337
338
|
pulumi.set(self, "waf_stage_id", value)
|
338
339
|
|
339
340
|
|
341
|
+
@pulumi.type_token("scaleway:index/edgeServicesTlsStage:EdgeServicesTlsStage")
|
340
342
|
class EdgeServicesTlsStage(pulumi.CustomResource):
|
341
343
|
@overload
|
342
344
|
def __init__(__self__,
|
343
345
|
resource_name: str,
|
344
346
|
opts: Optional[pulumi.ResourceOptions] = None,
|
345
|
-
backend_stage_id: Optional[pulumi.Input[str]] = None,
|
346
|
-
cache_stage_id: Optional[pulumi.Input[str]] = None,
|
347
|
-
managed_certificate: Optional[pulumi.Input[bool]] = None,
|
348
|
-
pipeline_id: Optional[pulumi.Input[str]] = None,
|
349
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
350
|
-
route_stage_id: Optional[pulumi.Input[str]] = None,
|
347
|
+
backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
348
|
+
cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
349
|
+
managed_certificate: Optional[pulumi.Input[builtins.bool]] = None,
|
350
|
+
pipeline_id: Optional[pulumi.Input[builtins.str]] = None,
|
351
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
352
|
+
route_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
351
353
|
secrets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]]] = None,
|
352
|
-
waf_stage_id: Optional[pulumi.Input[str]] = None,
|
354
|
+
waf_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
353
355
|
__props__=None):
|
354
356
|
"""
|
355
357
|
Creates and manages Scaleway Edge Services TLS Stages.
|
@@ -393,14 +395,14 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
393
395
|
|
394
396
|
:param str resource_name: The name of the resource.
|
395
397
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
396
|
-
:param pulumi.Input[str] backend_stage_id: The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
397
|
-
:param pulumi.Input[str] cache_stage_id: The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
398
|
-
:param pulumi.Input[bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
|
399
|
-
:param pulumi.Input[str] pipeline_id: The ID of the pipeline.
|
400
|
-
:param pulumi.Input[str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
|
401
|
-
:param pulumi.Input[str] route_stage_id: The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
398
|
+
:param pulumi.Input[builtins.str] backend_stage_id: The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
399
|
+
:param pulumi.Input[builtins.str] cache_stage_id: The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
400
|
+
:param pulumi.Input[builtins.bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
|
401
|
+
:param pulumi.Input[builtins.str] pipeline_id: The ID of the pipeline.
|
402
|
+
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
|
403
|
+
:param pulumi.Input[builtins.str] route_stage_id: The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
402
404
|
:param pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]] secrets: The TLS secrets.
|
403
|
-
:param pulumi.Input[str] waf_stage_id: The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
405
|
+
:param pulumi.Input[builtins.str] waf_stage_id: The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
404
406
|
"""
|
405
407
|
...
|
406
408
|
@overload
|
@@ -463,14 +465,14 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
463
465
|
def _internal_init(__self__,
|
464
466
|
resource_name: str,
|
465
467
|
opts: Optional[pulumi.ResourceOptions] = None,
|
466
|
-
backend_stage_id: Optional[pulumi.Input[str]] = None,
|
467
|
-
cache_stage_id: Optional[pulumi.Input[str]] = None,
|
468
|
-
managed_certificate: Optional[pulumi.Input[bool]] = None,
|
469
|
-
pipeline_id: Optional[pulumi.Input[str]] = None,
|
470
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
471
|
-
route_stage_id: Optional[pulumi.Input[str]] = None,
|
468
|
+
backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
469
|
+
cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
470
|
+
managed_certificate: Optional[pulumi.Input[builtins.bool]] = None,
|
471
|
+
pipeline_id: Optional[pulumi.Input[builtins.str]] = None,
|
472
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
473
|
+
route_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
472
474
|
secrets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]]] = None,
|
473
|
-
waf_stage_id: Optional[pulumi.Input[str]] = None,
|
475
|
+
waf_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
474
476
|
__props__=None):
|
475
477
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
476
478
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -503,17 +505,17 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
503
505
|
def get(resource_name: str,
|
504
506
|
id: pulumi.Input[str],
|
505
507
|
opts: Optional[pulumi.ResourceOptions] = None,
|
506
|
-
backend_stage_id: Optional[pulumi.Input[str]] = None,
|
507
|
-
cache_stage_id: Optional[pulumi.Input[str]] = None,
|
508
|
-
certificate_expires_at: Optional[pulumi.Input[str]] = None,
|
509
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
510
|
-
managed_certificate: Optional[pulumi.Input[bool]] = None,
|
511
|
-
pipeline_id: Optional[pulumi.Input[str]] = None,
|
512
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
513
|
-
route_stage_id: Optional[pulumi.Input[str]] = None,
|
508
|
+
backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
509
|
+
cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
510
|
+
certificate_expires_at: Optional[pulumi.Input[builtins.str]] = None,
|
511
|
+
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
512
|
+
managed_certificate: Optional[pulumi.Input[builtins.bool]] = None,
|
513
|
+
pipeline_id: Optional[pulumi.Input[builtins.str]] = None,
|
514
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
515
|
+
route_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
514
516
|
secrets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]]] = None,
|
515
|
-
updated_at: Optional[pulumi.Input[str]] = None,
|
516
|
-
waf_stage_id: Optional[pulumi.Input[str]] = None) -> 'EdgeServicesTlsStage':
|
517
|
+
updated_at: Optional[pulumi.Input[builtins.str]] = None,
|
518
|
+
waf_stage_id: Optional[pulumi.Input[builtins.str]] = None) -> 'EdgeServicesTlsStage':
|
517
519
|
"""
|
518
520
|
Get an existing EdgeServicesTlsStage resource's state with the given name, id, and optional extra
|
519
521
|
properties used to qualify the lookup.
|
@@ -521,17 +523,17 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
521
523
|
:param str resource_name: The unique name of the resulting resource.
|
522
524
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
523
525
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
524
|
-
:param pulumi.Input[str] backend_stage_id: The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
525
|
-
:param pulumi.Input[str] cache_stage_id: The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
526
|
-
:param pulumi.Input[str] certificate_expires_at: The expiration date of the certificate.
|
527
|
-
:param pulumi.Input[str] created_at: The date and time of the creation of the TLS stage.
|
528
|
-
:param pulumi.Input[bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
|
529
|
-
:param pulumi.Input[str] pipeline_id: The ID of the pipeline.
|
530
|
-
:param pulumi.Input[str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
|
531
|
-
:param pulumi.Input[str] route_stage_id: The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
526
|
+
:param pulumi.Input[builtins.str] backend_stage_id: The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
527
|
+
:param pulumi.Input[builtins.str] cache_stage_id: The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
528
|
+
:param pulumi.Input[builtins.str] certificate_expires_at: The expiration date of the certificate.
|
529
|
+
:param pulumi.Input[builtins.str] created_at: The date and time of the creation of the TLS stage.
|
530
|
+
:param pulumi.Input[builtins.bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
|
531
|
+
:param pulumi.Input[builtins.str] pipeline_id: The ID of the pipeline.
|
532
|
+
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
|
533
|
+
:param pulumi.Input[builtins.str] route_stage_id: The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
532
534
|
:param pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]] secrets: The TLS secrets.
|
533
|
-
:param pulumi.Input[str] updated_at: The date and time of the last update of the TLS stage.
|
534
|
-
:param pulumi.Input[str] waf_stage_id: The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
535
|
+
:param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the TLS stage.
|
536
|
+
:param pulumi.Input[builtins.str] waf_stage_id: The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
535
537
|
"""
|
536
538
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
537
539
|
|
@@ -552,7 +554,7 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
552
554
|
|
553
555
|
@property
|
554
556
|
@pulumi.getter(name="backendStageId")
|
555
|
-
def backend_stage_id(self) -> pulumi.Output[str]:
|
557
|
+
def backend_stage_id(self) -> pulumi.Output[builtins.str]:
|
556
558
|
"""
|
557
559
|
The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
558
560
|
"""
|
@@ -560,7 +562,7 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
560
562
|
|
561
563
|
@property
|
562
564
|
@pulumi.getter(name="cacheStageId")
|
563
|
-
def cache_stage_id(self) -> pulumi.Output[str]:
|
565
|
+
def cache_stage_id(self) -> pulumi.Output[builtins.str]:
|
564
566
|
"""
|
565
567
|
The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
566
568
|
"""
|
@@ -568,7 +570,7 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
568
570
|
|
569
571
|
@property
|
570
572
|
@pulumi.getter(name="certificateExpiresAt")
|
571
|
-
def certificate_expires_at(self) -> pulumi.Output[str]:
|
573
|
+
def certificate_expires_at(self) -> pulumi.Output[builtins.str]:
|
572
574
|
"""
|
573
575
|
The expiration date of the certificate.
|
574
576
|
"""
|
@@ -576,7 +578,7 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
576
578
|
|
577
579
|
@property
|
578
580
|
@pulumi.getter(name="createdAt")
|
579
|
-
def created_at(self) -> pulumi.Output[str]:
|
581
|
+
def created_at(self) -> pulumi.Output[builtins.str]:
|
580
582
|
"""
|
581
583
|
The date and time of the creation of the TLS stage.
|
582
584
|
"""
|
@@ -584,7 +586,7 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
584
586
|
|
585
587
|
@property
|
586
588
|
@pulumi.getter(name="managedCertificate")
|
587
|
-
def managed_certificate(self) -> pulumi.Output[bool]:
|
589
|
+
def managed_certificate(self) -> pulumi.Output[builtins.bool]:
|
588
590
|
"""
|
589
591
|
Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
|
590
592
|
"""
|
@@ -592,7 +594,7 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
592
594
|
|
593
595
|
@property
|
594
596
|
@pulumi.getter(name="pipelineId")
|
595
|
-
def pipeline_id(self) -> pulumi.Output[str]:
|
597
|
+
def pipeline_id(self) -> pulumi.Output[builtins.str]:
|
596
598
|
"""
|
597
599
|
The ID of the pipeline.
|
598
600
|
"""
|
@@ -600,7 +602,7 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
600
602
|
|
601
603
|
@property
|
602
604
|
@pulumi.getter(name="projectId")
|
603
|
-
def project_id(self) -> pulumi.Output[str]:
|
605
|
+
def project_id(self) -> pulumi.Output[builtins.str]:
|
604
606
|
"""
|
605
607
|
`project_id`) The ID of the project the TLS stage is associated with.
|
606
608
|
"""
|
@@ -608,7 +610,7 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
608
610
|
|
609
611
|
@property
|
610
612
|
@pulumi.getter(name="routeStageId")
|
611
|
-
def route_stage_id(self) -> pulumi.Output[str]:
|
613
|
+
def route_stage_id(self) -> pulumi.Output[builtins.str]:
|
612
614
|
"""
|
613
615
|
The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
614
616
|
"""
|
@@ -624,7 +626,7 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
624
626
|
|
625
627
|
@property
|
626
628
|
@pulumi.getter(name="updatedAt")
|
627
|
-
def updated_at(self) -> pulumi.Output[str]:
|
629
|
+
def updated_at(self) -> pulumi.Output[builtins.str]:
|
628
630
|
"""
|
629
631
|
The date and time of the last update of the TLS stage.
|
630
632
|
"""
|
@@ -632,7 +634,7 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
|
|
632
634
|
|
633
635
|
@property
|
634
636
|
@pulumi.getter(name="wafStageId")
|
635
|
-
def waf_stage_id(self) -> pulumi.Output[str]:
|
637
|
+
def waf_stage_id(self) -> pulumi.Output[builtins.str]:
|
636
638
|
"""
|
637
639
|
The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
|
638
640
|
"""
|