pulumiverse-scaleway 1.30.0a1750140900__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.0a1750140900.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.0a1750140900.dist-info/RECORD +0 -492
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1750140900.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,20 +20,20 @@ __all__ = ['EdgeServicesDnsStageArgs', 'EdgeServicesDnsStage']
|
|
19
20
|
@pulumi.input_type
|
20
21
|
class EdgeServicesDnsStageArgs:
|
21
22
|
def __init__(__self__, *,
|
22
|
-
pipeline_id: pulumi.Input[str],
|
23
|
-
backend_stage_id: Optional[pulumi.Input[str]] = None,
|
24
|
-
cache_stage_id: Optional[pulumi.Input[str]] = None,
|
25
|
-
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
26
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
27
|
-
tls_stage_id: Optional[pulumi.Input[str]] = None):
|
23
|
+
pipeline_id: pulumi.Input[builtins.str],
|
24
|
+
backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
25
|
+
cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
26
|
+
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
27
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
28
|
+
tls_stage_id: Optional[pulumi.Input[builtins.str]] = None):
|
28
29
|
"""
|
29
30
|
The set of arguments for constructing a EdgeServicesDnsStage resource.
|
30
|
-
:param pulumi.Input[str] pipeline_id: The ID of the pipeline.
|
31
|
-
:param pulumi.Input[str] backend_stage_id: The backend stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
32
|
-
:param pulumi.Input[str] cache_stage_id: The cache stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
33
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] fqdns: Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
34
|
-
:param pulumi.Input[str] project_id: `project_id`) The ID of the project the DNS stage is associated with.
|
35
|
-
:param pulumi.Input[str] tls_stage_id: The TLS stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
31
|
+
:param pulumi.Input[builtins.str] pipeline_id: The ID of the pipeline.
|
32
|
+
:param pulumi.Input[builtins.str] backend_stage_id: The backend stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
33
|
+
:param pulumi.Input[builtins.str] cache_stage_id: The cache stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
34
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] fqdns: Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
35
|
+
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the DNS stage is associated with.
|
36
|
+
:param pulumi.Input[builtins.str] tls_stage_id: The TLS stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
36
37
|
"""
|
37
38
|
pulumi.set(__self__, "pipeline_id", pipeline_id)
|
38
39
|
if backend_stage_id is not None:
|
@@ -48,100 +49,100 @@ class EdgeServicesDnsStageArgs:
|
|
48
49
|
|
49
50
|
@property
|
50
51
|
@pulumi.getter(name="pipelineId")
|
51
|
-
def pipeline_id(self) -> pulumi.Input[str]:
|
52
|
+
def pipeline_id(self) -> pulumi.Input[builtins.str]:
|
52
53
|
"""
|
53
54
|
The ID of the pipeline.
|
54
55
|
"""
|
55
56
|
return pulumi.get(self, "pipeline_id")
|
56
57
|
|
57
58
|
@pipeline_id.setter
|
58
|
-
def pipeline_id(self, value: pulumi.Input[str]):
|
59
|
+
def pipeline_id(self, value: pulumi.Input[builtins.str]):
|
59
60
|
pulumi.set(self, "pipeline_id", value)
|
60
61
|
|
61
62
|
@property
|
62
63
|
@pulumi.getter(name="backendStageId")
|
63
|
-
def backend_stage_id(self) -> Optional[pulumi.Input[str]]:
|
64
|
+
def backend_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
64
65
|
"""
|
65
66
|
The backend stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
66
67
|
"""
|
67
68
|
return pulumi.get(self, "backend_stage_id")
|
68
69
|
|
69
70
|
@backend_stage_id.setter
|
70
|
-
def backend_stage_id(self, value: Optional[pulumi.Input[str]]):
|
71
|
+
def backend_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
71
72
|
pulumi.set(self, "backend_stage_id", value)
|
72
73
|
|
73
74
|
@property
|
74
75
|
@pulumi.getter(name="cacheStageId")
|
75
|
-
def cache_stage_id(self) -> Optional[pulumi.Input[str]]:
|
76
|
+
def cache_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
76
77
|
"""
|
77
78
|
The cache stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
78
79
|
"""
|
79
80
|
return pulumi.get(self, "cache_stage_id")
|
80
81
|
|
81
82
|
@cache_stage_id.setter
|
82
|
-
def cache_stage_id(self, value: Optional[pulumi.Input[str]]):
|
83
|
+
def cache_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
83
84
|
pulumi.set(self, "cache_stage_id", value)
|
84
85
|
|
85
86
|
@property
|
86
87
|
@pulumi.getter
|
87
|
-
def fqdns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
88
|
+
def fqdns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
88
89
|
"""
|
89
90
|
Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
90
91
|
"""
|
91
92
|
return pulumi.get(self, "fqdns")
|
92
93
|
|
93
94
|
@fqdns.setter
|
94
|
-
def fqdns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
95
|
+
def fqdns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
95
96
|
pulumi.set(self, "fqdns", value)
|
96
97
|
|
97
98
|
@property
|
98
99
|
@pulumi.getter(name="projectId")
|
99
|
-
def project_id(self) -> Optional[pulumi.Input[str]]:
|
100
|
+
def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
100
101
|
"""
|
101
102
|
`project_id`) The ID of the project the DNS stage is associated with.
|
102
103
|
"""
|
103
104
|
return pulumi.get(self, "project_id")
|
104
105
|
|
105
106
|
@project_id.setter
|
106
|
-
def project_id(self, value: Optional[pulumi.Input[str]]):
|
107
|
+
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
107
108
|
pulumi.set(self, "project_id", value)
|
108
109
|
|
109
110
|
@property
|
110
111
|
@pulumi.getter(name="tlsStageId")
|
111
|
-
def tls_stage_id(self) -> Optional[pulumi.Input[str]]:
|
112
|
+
def tls_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
112
113
|
"""
|
113
114
|
The TLS stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
114
115
|
"""
|
115
116
|
return pulumi.get(self, "tls_stage_id")
|
116
117
|
|
117
118
|
@tls_stage_id.setter
|
118
|
-
def tls_stage_id(self, value: Optional[pulumi.Input[str]]):
|
119
|
+
def tls_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
119
120
|
pulumi.set(self, "tls_stage_id", value)
|
120
121
|
|
121
122
|
|
122
123
|
@pulumi.input_type
|
123
124
|
class _EdgeServicesDnsStageState:
|
124
125
|
def __init__(__self__, *,
|
125
|
-
backend_stage_id: Optional[pulumi.Input[str]] = None,
|
126
|
-
cache_stage_id: Optional[pulumi.Input[str]] = None,
|
127
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
128
|
-
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
129
|
-
pipeline_id: Optional[pulumi.Input[str]] = None,
|
130
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
131
|
-
tls_stage_id: Optional[pulumi.Input[str]] = None,
|
132
|
-
type: Optional[pulumi.Input[str]] = None,
|
133
|
-
updated_at: Optional[pulumi.Input[str]] = None):
|
126
|
+
backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
127
|
+
cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
128
|
+
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
129
|
+
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
130
|
+
pipeline_id: Optional[pulumi.Input[builtins.str]] = None,
|
131
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
132
|
+
tls_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
133
|
+
type: Optional[pulumi.Input[builtins.str]] = None,
|
134
|
+
updated_at: Optional[pulumi.Input[builtins.str]] = None):
|
134
135
|
"""
|
135
136
|
Input properties used for looking up and filtering EdgeServicesDnsStage resources.
|
136
|
-
:param pulumi.Input[str] backend_stage_id: The backend stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
137
|
-
:param pulumi.Input[str] cache_stage_id: The cache stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
138
|
-
:param pulumi.Input[str] created_at: The date and time of the creation of the DNS stage.
|
139
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] fqdns: Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
140
|
-
:param pulumi.Input[str] pipeline_id: The ID of the pipeline.
|
141
|
-
:param pulumi.Input[str] project_id: `project_id`) The ID of the project the DNS stage is associated with.
|
142
|
-
:param pulumi.Input[str] tls_stage_id: The TLS stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
143
|
-
:param pulumi.Input[str] type: The type of the stage.
|
144
|
-
:param pulumi.Input[str] updated_at: The date and time of the last update of the DNS stage.
|
137
|
+
:param pulumi.Input[builtins.str] backend_stage_id: The backend stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
138
|
+
:param pulumi.Input[builtins.str] cache_stage_id: The cache stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
139
|
+
:param pulumi.Input[builtins.str] created_at: The date and time of the creation of the DNS stage.
|
140
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] fqdns: Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
141
|
+
:param pulumi.Input[builtins.str] pipeline_id: The ID of the pipeline.
|
142
|
+
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the DNS stage is associated with.
|
143
|
+
:param pulumi.Input[builtins.str] tls_stage_id: The TLS stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
144
|
+
:param pulumi.Input[builtins.str] type: The type of the stage.
|
145
|
+
:param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the DNS stage.
|
145
146
|
"""
|
146
147
|
if backend_stage_id is not None:
|
147
148
|
pulumi.set(__self__, "backend_stage_id", backend_stage_id)
|
@@ -164,124 +165,125 @@ class _EdgeServicesDnsStageState:
|
|
164
165
|
|
165
166
|
@property
|
166
167
|
@pulumi.getter(name="backendStageId")
|
167
|
-
def backend_stage_id(self) -> Optional[pulumi.Input[str]]:
|
168
|
+
def backend_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
168
169
|
"""
|
169
170
|
The backend stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
170
171
|
"""
|
171
172
|
return pulumi.get(self, "backend_stage_id")
|
172
173
|
|
173
174
|
@backend_stage_id.setter
|
174
|
-
def backend_stage_id(self, value: Optional[pulumi.Input[str]]):
|
175
|
+
def backend_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
175
176
|
pulumi.set(self, "backend_stage_id", value)
|
176
177
|
|
177
178
|
@property
|
178
179
|
@pulumi.getter(name="cacheStageId")
|
179
|
-
def cache_stage_id(self) -> Optional[pulumi.Input[str]]:
|
180
|
+
def cache_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
180
181
|
"""
|
181
182
|
The cache stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
182
183
|
"""
|
183
184
|
return pulumi.get(self, "cache_stage_id")
|
184
185
|
|
185
186
|
@cache_stage_id.setter
|
186
|
-
def cache_stage_id(self, value: Optional[pulumi.Input[str]]):
|
187
|
+
def cache_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
187
188
|
pulumi.set(self, "cache_stage_id", value)
|
188
189
|
|
189
190
|
@property
|
190
191
|
@pulumi.getter(name="createdAt")
|
191
|
-
def created_at(self) -> Optional[pulumi.Input[str]]:
|
192
|
+
def created_at(self) -> Optional[pulumi.Input[builtins.str]]:
|
192
193
|
"""
|
193
194
|
The date and time of the creation of the DNS stage.
|
194
195
|
"""
|
195
196
|
return pulumi.get(self, "created_at")
|
196
197
|
|
197
198
|
@created_at.setter
|
198
|
-
def created_at(self, value: Optional[pulumi.Input[str]]):
|
199
|
+
def created_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
199
200
|
pulumi.set(self, "created_at", value)
|
200
201
|
|
201
202
|
@property
|
202
203
|
@pulumi.getter
|
203
|
-
def fqdns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
204
|
+
def fqdns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
204
205
|
"""
|
205
206
|
Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
206
207
|
"""
|
207
208
|
return pulumi.get(self, "fqdns")
|
208
209
|
|
209
210
|
@fqdns.setter
|
210
|
-
def fqdns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
211
|
+
def fqdns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
211
212
|
pulumi.set(self, "fqdns", value)
|
212
213
|
|
213
214
|
@property
|
214
215
|
@pulumi.getter(name="pipelineId")
|
215
|
-
def pipeline_id(self) -> Optional[pulumi.Input[str]]:
|
216
|
+
def pipeline_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
216
217
|
"""
|
217
218
|
The ID of the pipeline.
|
218
219
|
"""
|
219
220
|
return pulumi.get(self, "pipeline_id")
|
220
221
|
|
221
222
|
@pipeline_id.setter
|
222
|
-
def pipeline_id(self, value: Optional[pulumi.Input[str]]):
|
223
|
+
def pipeline_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
223
224
|
pulumi.set(self, "pipeline_id", value)
|
224
225
|
|
225
226
|
@property
|
226
227
|
@pulumi.getter(name="projectId")
|
227
|
-
def project_id(self) -> Optional[pulumi.Input[str]]:
|
228
|
+
def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
228
229
|
"""
|
229
230
|
`project_id`) The ID of the project the DNS stage is associated with.
|
230
231
|
"""
|
231
232
|
return pulumi.get(self, "project_id")
|
232
233
|
|
233
234
|
@project_id.setter
|
234
|
-
def project_id(self, value: Optional[pulumi.Input[str]]):
|
235
|
+
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
235
236
|
pulumi.set(self, "project_id", value)
|
236
237
|
|
237
238
|
@property
|
238
239
|
@pulumi.getter(name="tlsStageId")
|
239
|
-
def tls_stage_id(self) -> Optional[pulumi.Input[str]]:
|
240
|
+
def tls_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
240
241
|
"""
|
241
242
|
The TLS stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
242
243
|
"""
|
243
244
|
return pulumi.get(self, "tls_stage_id")
|
244
245
|
|
245
246
|
@tls_stage_id.setter
|
246
|
-
def tls_stage_id(self, value: Optional[pulumi.Input[str]]):
|
247
|
+
def tls_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
247
248
|
pulumi.set(self, "tls_stage_id", value)
|
248
249
|
|
249
250
|
@property
|
250
251
|
@pulumi.getter
|
251
|
-
def type(self) -> Optional[pulumi.Input[str]]:
|
252
|
+
def type(self) -> Optional[pulumi.Input[builtins.str]]:
|
252
253
|
"""
|
253
254
|
The type of the stage.
|
254
255
|
"""
|
255
256
|
return pulumi.get(self, "type")
|
256
257
|
|
257
258
|
@type.setter
|
258
|
-
def type(self, value: Optional[pulumi.Input[str]]):
|
259
|
+
def type(self, value: Optional[pulumi.Input[builtins.str]]):
|
259
260
|
pulumi.set(self, "type", value)
|
260
261
|
|
261
262
|
@property
|
262
263
|
@pulumi.getter(name="updatedAt")
|
263
|
-
def updated_at(self) -> Optional[pulumi.Input[str]]:
|
264
|
+
def updated_at(self) -> Optional[pulumi.Input[builtins.str]]:
|
264
265
|
"""
|
265
266
|
The date and time of the last update of the DNS stage.
|
266
267
|
"""
|
267
268
|
return pulumi.get(self, "updated_at")
|
268
269
|
|
269
270
|
@updated_at.setter
|
270
|
-
def updated_at(self, value: Optional[pulumi.Input[str]]):
|
271
|
+
def updated_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
271
272
|
pulumi.set(self, "updated_at", value)
|
272
273
|
|
273
274
|
|
275
|
+
@pulumi.type_token("scaleway:index/edgeServicesDnsStage:EdgeServicesDnsStage")
|
274
276
|
class EdgeServicesDnsStage(pulumi.CustomResource):
|
275
277
|
@overload
|
276
278
|
def __init__(__self__,
|
277
279
|
resource_name: str,
|
278
280
|
opts: Optional[pulumi.ResourceOptions] = None,
|
279
|
-
backend_stage_id: Optional[pulumi.Input[str]] = None,
|
280
|
-
cache_stage_id: Optional[pulumi.Input[str]] = None,
|
281
|
-
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
282
|
-
pipeline_id: Optional[pulumi.Input[str]] = None,
|
283
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
284
|
-
tls_stage_id: Optional[pulumi.Input[str]] = None,
|
281
|
+
backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
282
|
+
cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
283
|
+
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
284
|
+
pipeline_id: Optional[pulumi.Input[builtins.str]] = None,
|
285
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
286
|
+
tls_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
285
287
|
__props__=None):
|
286
288
|
"""
|
287
289
|
Creates and manages Scaleway Edge Services DNS Stages.
|
@@ -311,12 +313,12 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
311
313
|
|
312
314
|
:param str resource_name: The name of the resource.
|
313
315
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
314
|
-
:param pulumi.Input[str] backend_stage_id: The backend stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
315
|
-
:param pulumi.Input[str] cache_stage_id: The cache stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
316
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] fqdns: Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
317
|
-
:param pulumi.Input[str] pipeline_id: The ID of the pipeline.
|
318
|
-
:param pulumi.Input[str] project_id: `project_id`) The ID of the project the DNS stage is associated with.
|
319
|
-
:param pulumi.Input[str] tls_stage_id: The TLS stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
316
|
+
:param pulumi.Input[builtins.str] backend_stage_id: The backend stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
317
|
+
:param pulumi.Input[builtins.str] cache_stage_id: The cache stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
318
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] fqdns: Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
319
|
+
:param pulumi.Input[builtins.str] pipeline_id: The ID of the pipeline.
|
320
|
+
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the DNS stage is associated with.
|
321
|
+
:param pulumi.Input[builtins.str] tls_stage_id: The TLS stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
320
322
|
"""
|
321
323
|
...
|
322
324
|
@overload
|
@@ -365,12 +367,12 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
365
367
|
def _internal_init(__self__,
|
366
368
|
resource_name: str,
|
367
369
|
opts: Optional[pulumi.ResourceOptions] = None,
|
368
|
-
backend_stage_id: Optional[pulumi.Input[str]] = None,
|
369
|
-
cache_stage_id: Optional[pulumi.Input[str]] = None,
|
370
|
-
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
371
|
-
pipeline_id: Optional[pulumi.Input[str]] = None,
|
372
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
373
|
-
tls_stage_id: Optional[pulumi.Input[str]] = None,
|
370
|
+
backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
371
|
+
cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
372
|
+
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
373
|
+
pipeline_id: Optional[pulumi.Input[builtins.str]] = None,
|
374
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
375
|
+
tls_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
374
376
|
__props__=None):
|
375
377
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
376
378
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -401,15 +403,15 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
401
403
|
def get(resource_name: str,
|
402
404
|
id: pulumi.Input[str],
|
403
405
|
opts: Optional[pulumi.ResourceOptions] = None,
|
404
|
-
backend_stage_id: Optional[pulumi.Input[str]] = None,
|
405
|
-
cache_stage_id: Optional[pulumi.Input[str]] = None,
|
406
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
407
|
-
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
408
|
-
pipeline_id: Optional[pulumi.Input[str]] = None,
|
409
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
410
|
-
tls_stage_id: Optional[pulumi.Input[str]] = None,
|
411
|
-
type: Optional[pulumi.Input[str]] = None,
|
412
|
-
updated_at: Optional[pulumi.Input[str]] = None) -> 'EdgeServicesDnsStage':
|
406
|
+
backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
407
|
+
cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
408
|
+
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
409
|
+
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
410
|
+
pipeline_id: Optional[pulumi.Input[builtins.str]] = None,
|
411
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
412
|
+
tls_stage_id: Optional[pulumi.Input[builtins.str]] = None,
|
413
|
+
type: Optional[pulumi.Input[builtins.str]] = None,
|
414
|
+
updated_at: Optional[pulumi.Input[builtins.str]] = None) -> 'EdgeServicesDnsStage':
|
413
415
|
"""
|
414
416
|
Get an existing EdgeServicesDnsStage resource's state with the given name, id, and optional extra
|
415
417
|
properties used to qualify the lookup.
|
@@ -417,15 +419,15 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
417
419
|
:param str resource_name: The unique name of the resulting resource.
|
418
420
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
419
421
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
420
|
-
:param pulumi.Input[str] backend_stage_id: The backend stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
421
|
-
:param pulumi.Input[str] cache_stage_id: The cache stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
422
|
-
:param pulumi.Input[str] created_at: The date and time of the creation of the DNS stage.
|
423
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] fqdns: Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
424
|
-
:param pulumi.Input[str] pipeline_id: The ID of the pipeline.
|
425
|
-
:param pulumi.Input[str] project_id: `project_id`) The ID of the project the DNS stage is associated with.
|
426
|
-
:param pulumi.Input[str] tls_stage_id: The TLS stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
427
|
-
:param pulumi.Input[str] type: The type of the stage.
|
428
|
-
:param pulumi.Input[str] updated_at: The date and time of the last update of the DNS stage.
|
422
|
+
:param pulumi.Input[builtins.str] backend_stage_id: The backend stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
423
|
+
:param pulumi.Input[builtins.str] cache_stage_id: The cache stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
424
|
+
:param pulumi.Input[builtins.str] created_at: The date and time of the creation of the DNS stage.
|
425
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] fqdns: Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
426
|
+
:param pulumi.Input[builtins.str] pipeline_id: The ID of the pipeline.
|
427
|
+
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the DNS stage is associated with.
|
428
|
+
:param pulumi.Input[builtins.str] tls_stage_id: The TLS stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
429
|
+
:param pulumi.Input[builtins.str] type: The type of the stage.
|
430
|
+
:param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the DNS stage.
|
429
431
|
"""
|
430
432
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
431
433
|
|
@@ -444,7 +446,7 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
444
446
|
|
445
447
|
@property
|
446
448
|
@pulumi.getter(name="backendStageId")
|
447
|
-
def backend_stage_id(self) -> pulumi.Output[str]:
|
449
|
+
def backend_stage_id(self) -> pulumi.Output[builtins.str]:
|
448
450
|
"""
|
449
451
|
The backend stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
450
452
|
"""
|
@@ -452,7 +454,7 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
452
454
|
|
453
455
|
@property
|
454
456
|
@pulumi.getter(name="cacheStageId")
|
455
|
-
def cache_stage_id(self) -> pulumi.Output[str]:
|
457
|
+
def cache_stage_id(self) -> pulumi.Output[builtins.str]:
|
456
458
|
"""
|
457
459
|
The cache stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
458
460
|
"""
|
@@ -460,7 +462,7 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
460
462
|
|
461
463
|
@property
|
462
464
|
@pulumi.getter(name="createdAt")
|
463
|
-
def created_at(self) -> pulumi.Output[str]:
|
465
|
+
def created_at(self) -> pulumi.Output[builtins.str]:
|
464
466
|
"""
|
465
467
|
The date and time of the creation of the DNS stage.
|
466
468
|
"""
|
@@ -468,7 +470,7 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
468
470
|
|
469
471
|
@property
|
470
472
|
@pulumi.getter
|
471
|
-
def fqdns(self) -> pulumi.Output[Sequence[str]]:
|
473
|
+
def fqdns(self) -> pulumi.Output[Sequence[builtins.str]]:
|
472
474
|
"""
|
473
475
|
Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
474
476
|
"""
|
@@ -476,7 +478,7 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
476
478
|
|
477
479
|
@property
|
478
480
|
@pulumi.getter(name="pipelineId")
|
479
|
-
def pipeline_id(self) -> pulumi.Output[str]:
|
481
|
+
def pipeline_id(self) -> pulumi.Output[builtins.str]:
|
480
482
|
"""
|
481
483
|
The ID of the pipeline.
|
482
484
|
"""
|
@@ -484,7 +486,7 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
484
486
|
|
485
487
|
@property
|
486
488
|
@pulumi.getter(name="projectId")
|
487
|
-
def project_id(self) -> pulumi.Output[str]:
|
489
|
+
def project_id(self) -> pulumi.Output[builtins.str]:
|
488
490
|
"""
|
489
491
|
`project_id`) The ID of the project the DNS stage is associated with.
|
490
492
|
"""
|
@@ -492,7 +494,7 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
492
494
|
|
493
495
|
@property
|
494
496
|
@pulumi.getter(name="tlsStageId")
|
495
|
-
def tls_stage_id(self) -> pulumi.Output[str]:
|
497
|
+
def tls_stage_id(self) -> pulumi.Output[builtins.str]:
|
496
498
|
"""
|
497
499
|
The TLS stage ID the DNS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id` and `tls_stage_id` should be specified.
|
498
500
|
"""
|
@@ -500,7 +502,7 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
500
502
|
|
501
503
|
@property
|
502
504
|
@pulumi.getter
|
503
|
-
def type(self) -> pulumi.Output[str]:
|
505
|
+
def type(self) -> pulumi.Output[builtins.str]:
|
504
506
|
"""
|
505
507
|
The type of the stage.
|
506
508
|
"""
|
@@ -508,7 +510,7 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
508
510
|
|
509
511
|
@property
|
510
512
|
@pulumi.getter(name="updatedAt")
|
511
|
-
def updated_at(self) -> pulumi.Output[str]:
|
513
|
+
def updated_at(self) -> pulumi.Output[builtins.str]:
|
512
514
|
"""
|
513
515
|
The date and time of the last update of the DNS stage.
|
514
516
|
"""
|