pulumiverse-scaleway 1.27.0a1744869119__py3-none-any.whl → 1.39.0a1764841480__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumiverse_scaleway/__init__.py +109 -2
- pulumiverse_scaleway/_inputs.py +3936 -2603
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +4 -1
- pulumiverse_scaleway/account/get_availability_zones.py +12 -12
- pulumiverse_scaleway/account/get_project.py +28 -28
- pulumiverse_scaleway/account/get_projects.py +241 -0
- pulumiverse_scaleway/account/get_ssh_key.py +34 -34
- pulumiverse_scaleway/account/outputs.py +95 -0
- pulumiverse_scaleway/account/project.py +72 -71
- pulumiverse_scaleway/account/ssh_key.py +107 -106
- pulumiverse_scaleway/account_project.py +72 -71
- pulumiverse_scaleway/account_ssh_key.py +107 -106
- pulumiverse_scaleway/apple_silicon_server.py +334 -201
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +105 -51
- pulumiverse_scaleway/applesilicon/outputs.py +65 -33
- pulumiverse_scaleway/applesilicon/server.py +334 -201
- pulumiverse_scaleway/audittrail/__init__.py +10 -0
- pulumiverse_scaleway/audittrail/get_event.py +410 -0
- pulumiverse_scaleway/audittrail/outputs.py +234 -0
- pulumiverse_scaleway/autoscaling/__init__.py +13 -0
- pulumiverse_scaleway/autoscaling/_inputs.py +558 -0
- pulumiverse_scaleway/autoscaling/instance_group.py +807 -0
- pulumiverse_scaleway/autoscaling/instance_policy.py +634 -0
- pulumiverse_scaleway/autoscaling/instance_template.py +878 -0
- pulumiverse_scaleway/autoscaling/outputs.py +438 -0
- pulumiverse_scaleway/baremetal_server.py +622 -524
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +19 -15
- pulumiverse_scaleway/billing/get_invoices.py +25 -25
- pulumiverse_scaleway/billing/outputs.py +96 -96
- pulumiverse_scaleway/block/__init__.py +4 -1
- pulumiverse_scaleway/block/_inputs.py +125 -0
- pulumiverse_scaleway/block/get_snapshot.py +60 -37
- pulumiverse_scaleway/block/get_volume.py +38 -38
- pulumiverse_scaleway/block/outputs.py +139 -0
- pulumiverse_scaleway/block/snapshot.py +272 -98
- pulumiverse_scaleway/block/volume.py +145 -144
- pulumiverse_scaleway/block_snapshot.py +272 -98
- pulumiverse_scaleway/block_volume.py +145 -144
- pulumiverse_scaleway/cockpit.py +71 -49
- pulumiverse_scaleway/cockpit_alert_manager.py +66 -65
- pulumiverse_scaleway/cockpit_grafana_user.py +72 -113
- pulumiverse_scaleway/cockpit_source.py +142 -141
- pulumiverse_scaleway/cockpit_token.py +84 -83
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -2
- pulumiverse_scaleway/config/vars.py +11 -11
- pulumiverse_scaleway/container.py +653 -424
- pulumiverse_scaleway/container_cron.py +97 -96
- pulumiverse_scaleway/container_domain.py +63 -62
- pulumiverse_scaleway/container_namespace.py +251 -172
- pulumiverse_scaleway/container_token.py +97 -96
- pulumiverse_scaleway/container_trigger.py +77 -76
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +87 -87
- pulumiverse_scaleway/containers/container.py +653 -424
- pulumiverse_scaleway/containers/cron.py +97 -96
- pulumiverse_scaleway/containers/domain.py +63 -62
- pulumiverse_scaleway/containers/get_container.py +117 -73
- pulumiverse_scaleway/containers/get_namespace.py +56 -45
- pulumiverse_scaleway/containers/namespace.py +251 -172
- pulumiverse_scaleway/containers/outputs.py +84 -84
- pulumiverse_scaleway/containers/token.py +97 -96
- pulumiverse_scaleway/containers/trigger.py +77 -76
- pulumiverse_scaleway/database.py +81 -80
- pulumiverse_scaleway/database_acl.py +148 -39
- pulumiverse_scaleway/database_backup.py +124 -123
- pulumiverse_scaleway/database_instance.py +531 -436
- pulumiverse_scaleway/database_privilege.py +88 -87
- pulumiverse_scaleway/database_read_replica.py +60 -59
- pulumiverse_scaleway/database_user.py +171 -98
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +364 -216
- pulumiverse_scaleway/databases/acl.py +148 -39
- pulumiverse_scaleway/databases/database.py +81 -80
- pulumiverse_scaleway/databases/database_backup.py +124 -123
- pulumiverse_scaleway/databases/get_acl.py +17 -17
- pulumiverse_scaleway/databases/get_database.py +26 -26
- pulumiverse_scaleway/databases/get_database_backup.py +46 -46
- pulumiverse_scaleway/databases/get_instance.py +95 -73
- pulumiverse_scaleway/databases/get_privilege.py +30 -30
- pulumiverse_scaleway/databases/instance.py +531 -436
- pulumiverse_scaleway/databases/outputs.py +419 -232
- pulumiverse_scaleway/databases/privilege.py +88 -87
- pulumiverse_scaleway/databases/read_replica.py +60 -59
- pulumiverse_scaleway/databases/serverless_database.py +97 -96
- pulumiverse_scaleway/databases/snapshot.py +127 -126
- pulumiverse_scaleway/databases/user.py +171 -98
- pulumiverse_scaleway/datawarehouse/__init__.py +13 -0
- pulumiverse_scaleway/datawarehouse/_inputs.py +149 -0
- pulumiverse_scaleway/datawarehouse/database.py +338 -0
- pulumiverse_scaleway/datawarehouse/deployment.py +821 -0
- pulumiverse_scaleway/datawarehouse/outputs.py +113 -0
- pulumiverse_scaleway/datawarehouse/user.py +451 -0
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +661 -661
- pulumiverse_scaleway/domain/get_record.py +53 -64
- pulumiverse_scaleway/domain/get_zone.py +36 -30
- pulumiverse_scaleway/domain/outputs.py +501 -501
- pulumiverse_scaleway/domain/record.py +156 -202
- pulumiverse_scaleway/domain/registration.py +123 -122
- pulumiverse_scaleway/domain/zone.py +108 -107
- pulumiverse_scaleway/domain_record.py +156 -202
- pulumiverse_scaleway/domain_zone.py +108 -107
- pulumiverse_scaleway/edge_services_backend_stage.py +61 -60
- pulumiverse_scaleway/edge_services_cache_stage.py +283 -111
- pulumiverse_scaleway/edge_services_dns_stage.py +169 -140
- pulumiverse_scaleway/edge_services_head_stage.py +37 -36
- pulumiverse_scaleway/edge_services_pipeline.py +125 -82
- pulumiverse_scaleway/edge_services_plan.py +37 -36
- pulumiverse_scaleway/edge_services_route_stage.py +75 -74
- pulumiverse_scaleway/edge_services_tls_stage.py +219 -124
- pulumiverse_scaleway/edge_services_waf_stage.py +106 -105
- pulumiverse_scaleway/elasticmetal/__init__.py +3 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +203 -129
- pulumiverse_scaleway/elasticmetal/get_ip.py +70 -54
- pulumiverse_scaleway/elasticmetal/get_ips.py +31 -31
- pulumiverse_scaleway/elasticmetal/get_offer.py +43 -41
- pulumiverse_scaleway/elasticmetal/get_option.py +24 -24
- pulumiverse_scaleway/elasticmetal/get_os.py +28 -28
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +215 -0
- pulumiverse_scaleway/elasticmetal/get_server.py +101 -68
- pulumiverse_scaleway/elasticmetal/ip.py +170 -169
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +107 -106
- pulumiverse_scaleway/elasticmetal/outputs.py +379 -287
- pulumiverse_scaleway/elasticmetal/server.py +622 -524
- pulumiverse_scaleway/file_filesystem.py +555 -0
- pulumiverse_scaleway/flexible_ip.py +170 -169
- pulumiverse_scaleway/flexible_ip_mac_address.py +107 -106
- pulumiverse_scaleway/function.py +457 -348
- pulumiverse_scaleway/function_cron.py +97 -96
- pulumiverse_scaleway/function_domain.py +63 -62
- pulumiverse_scaleway/function_namespace.py +234 -155
- pulumiverse_scaleway/function_token.py +97 -96
- pulumiverse_scaleway/function_trigger.py +77 -76
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +50 -50
- pulumiverse_scaleway/functions/cron.py +97 -96
- pulumiverse_scaleway/functions/domain.py +63 -62
- pulumiverse_scaleway/functions/function.py +457 -348
- pulumiverse_scaleway/functions/get_function.py +93 -71
- pulumiverse_scaleway/functions/get_namespace.py +54 -43
- pulumiverse_scaleway/functions/namespace.py +234 -155
- pulumiverse_scaleway/functions/outputs.py +34 -34
- pulumiverse_scaleway/functions/token.py +97 -96
- pulumiverse_scaleway/functions/trigger.py +77 -76
- pulumiverse_scaleway/get_account_project.py +28 -28
- pulumiverse_scaleway/get_account_ssh_key.py +34 -34
- pulumiverse_scaleway/get_availability_zones.py +12 -12
- pulumiverse_scaleway/get_baremetal_offer.py +43 -41
- pulumiverse_scaleway/get_baremetal_option.py +24 -24
- pulumiverse_scaleway/get_baremetal_os.py +28 -28
- pulumiverse_scaleway/get_baremetal_server.py +101 -68
- pulumiverse_scaleway/get_billing_consumptions.py +19 -15
- pulumiverse_scaleway/get_billing_invoices.py +25 -25
- pulumiverse_scaleway/get_block_snapshot.py +60 -37
- pulumiverse_scaleway/get_block_volume.py +38 -38
- pulumiverse_scaleway/get_cockpit.py +16 -16
- pulumiverse_scaleway/get_cockpit_source.py +88 -45
- pulumiverse_scaleway/get_config.py +24 -24
- pulumiverse_scaleway/get_container.py +117 -73
- pulumiverse_scaleway/get_container_namespace.py +56 -45
- pulumiverse_scaleway/get_database.py +26 -26
- pulumiverse_scaleway/get_database_acl.py +17 -17
- pulumiverse_scaleway/get_database_backup.py +46 -46
- pulumiverse_scaleway/get_database_instance.py +95 -73
- pulumiverse_scaleway/get_database_privilege.py +30 -30
- pulumiverse_scaleway/get_domain_record.py +53 -64
- pulumiverse_scaleway/get_domain_zone.py +36 -30
- pulumiverse_scaleway/get_flexible_ip.py +70 -54
- pulumiverse_scaleway/get_flexible_ips.py +31 -31
- pulumiverse_scaleway/get_function.py +93 -71
- pulumiverse_scaleway/get_function_namespace.py +54 -43
- pulumiverse_scaleway/get_iam_api_key.py +28 -28
- pulumiverse_scaleway/get_iam_application.py +32 -32
- pulumiverse_scaleway/get_iam_group.py +36 -36
- pulumiverse_scaleway/get_iam_ssh_key.py +34 -34
- pulumiverse_scaleway/get_iam_user.py +30 -30
- pulumiverse_scaleway/get_instance_image.py +58 -58
- pulumiverse_scaleway/get_instance_ip.py +42 -30
- pulumiverse_scaleway/get_instance_placement_group.py +38 -38
- pulumiverse_scaleway/get_instance_private_nic.py +53 -41
- pulumiverse_scaleway/get_instance_security_group.py +46 -46
- pulumiverse_scaleway/get_instance_server.py +108 -145
- pulumiverse_scaleway/get_instance_servers.py +31 -31
- pulumiverse_scaleway/get_instance_snapshot.py +41 -41
- pulumiverse_scaleway/get_instance_volume.py +42 -42
- pulumiverse_scaleway/get_iot_device.py +46 -46
- pulumiverse_scaleway/get_iot_hub.py +60 -60
- pulumiverse_scaleway/get_ipam_ip.py +65 -65
- pulumiverse_scaleway/get_ipam_ips.py +56 -56
- pulumiverse_scaleway/get_k8s_version.py +34 -23
- pulumiverse_scaleway/get_kubernetes_cluster.py +98 -65
- pulumiverse_scaleway/get_kubernetes_node_pool.py +86 -75
- pulumiverse_scaleway/get_lb_acls.py +29 -29
- pulumiverse_scaleway/get_lb_backend.py +75 -75
- pulumiverse_scaleway/get_lb_backends.py +29 -29
- pulumiverse_scaleway/get_lb_frontend.py +76 -43
- pulumiverse_scaleway/get_lb_frontends.py +29 -29
- pulumiverse_scaleway/get_lb_ips.py +37 -37
- pulumiverse_scaleway/get_lb_route.py +36 -25
- pulumiverse_scaleway/get_lb_routes.py +23 -23
- pulumiverse_scaleway/get_lbs.py +31 -31
- pulumiverse_scaleway/get_loadbalancer.py +78 -56
- pulumiverse_scaleway/get_loadbalancer_certificate.py +96 -36
- pulumiverse_scaleway/get_loadbalancer_ip.py +40 -40
- pulumiverse_scaleway/get_marketplace_image.py +28 -28
- pulumiverse_scaleway/get_mnq_sns.py +18 -18
- pulumiverse_scaleway/get_mnq_sqs.py +18 -18
- pulumiverse_scaleway/get_mongo_db_instance.py +110 -55
- pulumiverse_scaleway/get_object_bucket.py +35 -35
- pulumiverse_scaleway/get_object_bucket_policy.py +22 -22
- pulumiverse_scaleway/get_redis_cluster.py +65 -54
- pulumiverse_scaleway/get_registry_image.py +48 -48
- pulumiverse_scaleway/get_registry_image_tag.py +44 -44
- pulumiverse_scaleway/get_registry_namespace.py +36 -36
- pulumiverse_scaleway/get_secret.py +58 -58
- pulumiverse_scaleway/get_secret_version.py +46 -46
- pulumiverse_scaleway/get_tem_domain.py +103 -70
- pulumiverse_scaleway/get_vpc.py +58 -47
- pulumiverse_scaleway/get_vpc_gateway_network.py +55 -44
- pulumiverse_scaleway/get_vpc_private_network.py +58 -47
- pulumiverse_scaleway/get_vpc_public_gateway.py +56 -56
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +44 -44
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +44 -44
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +24 -24
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +32 -32
- pulumiverse_scaleway/get_vpc_routes.py +47 -47
- pulumiverse_scaleway/get_vpcs.py +31 -31
- pulumiverse_scaleway/get_web_host_offer.py +34 -34
- pulumiverse_scaleway/get_webhosting.py +58 -58
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +117 -75
- pulumiverse_scaleway/hosting/get_hosting.py +58 -58
- pulumiverse_scaleway/hosting/get_offer.py +34 -34
- pulumiverse_scaleway/hosting/hosting.py +213 -212
- pulumiverse_scaleway/hosting/outputs.py +276 -192
- pulumiverse_scaleway/iam/__init__.py +3 -1
- pulumiverse_scaleway/iam/_inputs.py +26 -26
- pulumiverse_scaleway/iam/api_key.py +142 -141
- pulumiverse_scaleway/iam/application.py +98 -97
- pulumiverse_scaleway/iam/get_api_key.py +28 -28
- pulumiverse_scaleway/iam/get_application.py +32 -32
- pulumiverse_scaleway/iam/get_group.py +36 -36
- pulumiverse_scaleway/iam/get_policy.py +293 -0
- pulumiverse_scaleway/iam/get_ssh_key.py +34 -34
- pulumiverse_scaleway/iam/get_user.py +30 -30
- pulumiverse_scaleway/iam/group.py +140 -139
- pulumiverse_scaleway/iam/group_membership.py +54 -53
- pulumiverse_scaleway/iam/outputs.py +70 -18
- pulumiverse_scaleway/iam/policy.py +169 -168
- pulumiverse_scaleway/iam/ssh_key.py +107 -106
- pulumiverse_scaleway/iam/user.py +598 -134
- pulumiverse_scaleway/iam_api_key.py +142 -141
- pulumiverse_scaleway/iam_application.py +98 -97
- pulumiverse_scaleway/iam_group.py +140 -139
- pulumiverse_scaleway/iam_group_membership.py +54 -53
- pulumiverse_scaleway/iam_policy.py +169 -168
- pulumiverse_scaleway/iam_ssh_key.py +107 -106
- pulumiverse_scaleway/iam_user.py +598 -134
- pulumiverse_scaleway/inference/__init__.py +4 -1
- pulumiverse_scaleway/inference/_inputs.py +232 -50
- pulumiverse_scaleway/inference/deployment.py +319 -220
- pulumiverse_scaleway/inference/get_model.py +299 -0
- pulumiverse_scaleway/inference/model.py +684 -0
- pulumiverse_scaleway/inference/outputs.py +250 -34
- pulumiverse_scaleway/inference_deployment.py +319 -220
- pulumiverse_scaleway/instance/__init__.py +3 -1
- pulumiverse_scaleway/instance/_inputs.py +650 -437
- pulumiverse_scaleway/instance/get_image.py +58 -58
- pulumiverse_scaleway/instance/get_ip.py +42 -30
- pulumiverse_scaleway/instance/get_placement_group.py +38 -38
- pulumiverse_scaleway/instance/get_private_nic.py +53 -41
- pulumiverse_scaleway/instance/get_security_group.py +46 -46
- pulumiverse_scaleway/instance/get_server.py +108 -145
- pulumiverse_scaleway/instance/get_server_type.py +271 -0
- pulumiverse_scaleway/instance/get_servers.py +31 -31
- pulumiverse_scaleway/instance/get_snapshot.py +41 -41
- pulumiverse_scaleway/instance/get_volume.py +42 -42
- pulumiverse_scaleway/instance/image.py +260 -205
- pulumiverse_scaleway/instance/ip.py +116 -115
- pulumiverse_scaleway/instance/ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/instance/outputs.py +981 -548
- pulumiverse_scaleway/instance/placement_group.py +123 -122
- pulumiverse_scaleway/instance/private_nic.py +163 -113
- pulumiverse_scaleway/instance/security_group.py +188 -187
- pulumiverse_scaleway/instance/security_group_rules.py +42 -41
- pulumiverse_scaleway/instance/server.py +590 -562
- pulumiverse_scaleway/instance/snapshot.py +150 -157
- pulumiverse_scaleway/instance/user_data.py +75 -74
- pulumiverse_scaleway/instance/volume.py +174 -159
- pulumiverse_scaleway/instance_image.py +260 -205
- pulumiverse_scaleway/instance_ip.py +116 -115
- pulumiverse_scaleway/instance_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/instance_placement_group.py +123 -122
- pulumiverse_scaleway/instance_private_nic.py +163 -113
- pulumiverse_scaleway/instance_security_group.py +188 -187
- pulumiverse_scaleway/instance_security_group_rules.py +42 -41
- pulumiverse_scaleway/instance_server.py +590 -562
- pulumiverse_scaleway/instance_snapshot.py +150 -157
- pulumiverse_scaleway/instance_user_data.py +75 -74
- pulumiverse_scaleway/instance_volume.py +174 -159
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +119 -119
- pulumiverse_scaleway/iot/device.py +156 -193
- pulumiverse_scaleway/iot/get_device.py +46 -46
- pulumiverse_scaleway/iot/get_hub.py +60 -60
- pulumiverse_scaleway/iot/hub.py +259 -258
- pulumiverse_scaleway/iot/network.py +115 -114
- pulumiverse_scaleway/iot/outputs.py +107 -107
- pulumiverse_scaleway/iot/route.py +109 -108
- pulumiverse_scaleway/iot_device.py +156 -193
- pulumiverse_scaleway/iot_hub.py +259 -258
- pulumiverse_scaleway/iot_network.py +115 -114
- pulumiverse_scaleway/iot_route.py +109 -108
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +108 -108
- pulumiverse_scaleway/ipam/get_ip.py +65 -65
- pulumiverse_scaleway/ipam/get_ips.py +56 -56
- pulumiverse_scaleway/ipam/ip.py +160 -131
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +141 -70
- pulumiverse_scaleway/ipam/outputs.py +122 -122
- pulumiverse_scaleway/ipam_ip.py +160 -131
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +141 -70
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +127 -14
- pulumiverse_scaleway/job/definition.py +283 -175
- pulumiverse_scaleway/job/outputs.py +98 -10
- pulumiverse_scaleway/job_definition.py +283 -175
- pulumiverse_scaleway/key_manager_key.py +939 -0
- pulumiverse_scaleway/kubernetes/__init__.py +3 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +388 -185
- pulumiverse_scaleway/kubernetes/acl.py +447 -0
- pulumiverse_scaleway/kubernetes/cluster.py +594 -307
- pulumiverse_scaleway/kubernetes/get_cluster.py +98 -65
- pulumiverse_scaleway/kubernetes/get_pool.py +86 -75
- pulumiverse_scaleway/kubernetes/get_version.py +34 -23
- pulumiverse_scaleway/kubernetes/outputs.py +444 -250
- pulumiverse_scaleway/kubernetes/pool.py +427 -365
- pulumiverse_scaleway/kubernetes_cluster.py +594 -307
- pulumiverse_scaleway/kubernetes_node_pool.py +427 -365
- pulumiverse_scaleway/loadbalancer.py +329 -246
- pulumiverse_scaleway/loadbalancer_acl.py +102 -101
- pulumiverse_scaleway/loadbalancer_backend.py +534 -487
- pulumiverse_scaleway/loadbalancer_certificate.py +97 -96
- pulumiverse_scaleway/loadbalancer_frontend.py +271 -167
- pulumiverse_scaleway/loadbalancer_ip.py +124 -123
- pulumiverse_scaleway/loadbalancer_route.py +244 -119
- pulumiverse_scaleway/loadbalancers/__init__.py +3 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +367 -273
- pulumiverse_scaleway/loadbalancers/acl.py +102 -101
- pulumiverse_scaleway/loadbalancers/backend.py +534 -487
- pulumiverse_scaleway/loadbalancers/certificate.py +97 -96
- pulumiverse_scaleway/loadbalancers/frontend.py +271 -167
- pulumiverse_scaleway/loadbalancers/get_acls.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_backend.py +75 -75
- pulumiverse_scaleway/loadbalancers/get_backends.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_certificate.py +96 -36
- pulumiverse_scaleway/loadbalancers/get_frontend.py +76 -43
- pulumiverse_scaleway/loadbalancers/get_frontends.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_ip.py +40 -40
- pulumiverse_scaleway/loadbalancers/get_ips.py +37 -37
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +78 -56
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +31 -31
- pulumiverse_scaleway/loadbalancers/get_route.py +36 -25
- pulumiverse_scaleway/loadbalancers/get_routes.py +23 -23
- pulumiverse_scaleway/loadbalancers/ip.py +124 -123
- pulumiverse_scaleway/loadbalancers/load_balancer.py +329 -246
- pulumiverse_scaleway/loadbalancers/outputs.py +870 -716
- pulumiverse_scaleway/loadbalancers/private_network.py +505 -0
- pulumiverse_scaleway/loadbalancers/route.py +244 -119
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +90 -38
- pulumiverse_scaleway/mnq/get_sns.py +18 -18
- pulumiverse_scaleway/mnq/get_sqs.py +18 -18
- pulumiverse_scaleway/mnq/nats_account.py +63 -62
- pulumiverse_scaleway/mnq/nats_credentials.py +63 -62
- pulumiverse_scaleway/mnq/outputs.py +73 -26
- pulumiverse_scaleway/mnq/sns.py +46 -45
- pulumiverse_scaleway/mnq/sns_credentials.py +82 -81
- pulumiverse_scaleway/mnq/sns_topic.py +174 -173
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +182 -181
- pulumiverse_scaleway/mnq/sqs.py +46 -45
- pulumiverse_scaleway/mnq/sqs_credentials.py +82 -81
- pulumiverse_scaleway/mnq/sqs_queue.py +392 -232
- pulumiverse_scaleway/mnq_nats_account.py +63 -62
- pulumiverse_scaleway/mnq_nats_credentials.py +63 -62
- pulumiverse_scaleway/mnq_sns.py +46 -45
- pulumiverse_scaleway/mnq_sns_credentials.py +82 -81
- pulumiverse_scaleway/mnq_sns_topic.py +174 -173
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +182 -181
- pulumiverse_scaleway/mnq_sqs.py +46 -45
- pulumiverse_scaleway/mnq_sqs_credentials.py +82 -81
- pulumiverse_scaleway/mnq_sqs_queue.py +392 -232
- pulumiverse_scaleway/mongo_db_instance.py +569 -268
- pulumiverse_scaleway/mongo_db_snapshot.py +127 -126
- pulumiverse_scaleway/mongodb/__init__.py +3 -1
- pulumiverse_scaleway/mongodb/_inputs.py +178 -51
- pulumiverse_scaleway/mongodb/get_instance.py +110 -55
- pulumiverse_scaleway/mongodb/instance.py +569 -268
- pulumiverse_scaleway/mongodb/outputs.py +192 -68
- pulumiverse_scaleway/mongodb/snapshot.py +127 -126
- pulumiverse_scaleway/mongodb/user.py +507 -0
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +209 -155
- pulumiverse_scaleway/network/acl.py +100 -101
- pulumiverse_scaleway/network/gateway_network.py +228 -180
- pulumiverse_scaleway/network/get_gateway_network.py +55 -44
- pulumiverse_scaleway/network/get_private_network.py +58 -47
- pulumiverse_scaleway/network/get_public_gateway.py +56 -56
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +44 -44
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +44 -44
- pulumiverse_scaleway/network/get_public_gateway_ip.py +24 -24
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +32 -32
- pulumiverse_scaleway/network/get_routes.py +47 -47
- pulumiverse_scaleway/network/get_vpc.py +58 -47
- pulumiverse_scaleway/network/get_vpcs.py +31 -31
- pulumiverse_scaleway/network/outputs.py +338 -270
- pulumiverse_scaleway/network/private_network.py +203 -155
- pulumiverse_scaleway/network/public_gateway.py +261 -260
- pulumiverse_scaleway/network/public_gateway_dhcp.py +285 -284
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +107 -106
- pulumiverse_scaleway/network/public_gateway_ip.py +107 -106
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +132 -131
- pulumiverse_scaleway/network/route.py +230 -141
- pulumiverse_scaleway/network/vpc.py +172 -124
- pulumiverse_scaleway/object/__init__.py +3 -1
- pulumiverse_scaleway/object/_inputs.py +202 -166
- pulumiverse_scaleway/object/bucket.py +162 -148
- pulumiverse_scaleway/object/bucket_acl.py +97 -94
- pulumiverse_scaleway/object/bucket_lock_configuration.py +57 -56
- pulumiverse_scaleway/object/bucket_policy.py +71 -134
- pulumiverse_scaleway/object/bucket_website_configuration.py +104 -85
- pulumiverse_scaleway/object/get.py +290 -0
- pulumiverse_scaleway/object/get_bucket.py +35 -35
- pulumiverse_scaleway/object/get_bucket_policy.py +22 -22
- pulumiverse_scaleway/object/item.py +301 -223
- pulumiverse_scaleway/object/outputs.py +210 -166
- pulumiverse_scaleway/object_bucket.py +162 -148
- pulumiverse_scaleway/object_bucket_acl.py +97 -94
- pulumiverse_scaleway/object_bucket_lock_configuration.py +57 -56
- pulumiverse_scaleway/object_bucket_policy.py +71 -134
- pulumiverse_scaleway/object_bucket_website_configuration.py +104 -85
- pulumiverse_scaleway/object_item.py +301 -223
- pulumiverse_scaleway/observability/__init__.py +4 -2
- pulumiverse_scaleway/observability/_inputs.py +106 -106
- pulumiverse_scaleway/observability/alert_manager.py +66 -65
- pulumiverse_scaleway/observability/cockpit.py +71 -49
- pulumiverse_scaleway/observability/get_grafana.py +103 -0
- pulumiverse_scaleway/observability/get_instance.py +16 -16
- pulumiverse_scaleway/observability/get_source.py +88 -45
- pulumiverse_scaleway/observability/get_sources.py +375 -0
- pulumiverse_scaleway/observability/grafana_user.py +72 -113
- pulumiverse_scaleway/observability/outputs.py +241 -101
- pulumiverse_scaleway/observability/source.py +142 -141
- pulumiverse_scaleway/observability/token.py +84 -83
- pulumiverse_scaleway/outputs.py +5235 -3665
- pulumiverse_scaleway/provider.py +107 -82
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +127 -126
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +163 -69
- pulumiverse_scaleway/redis/cluster.py +273 -225
- pulumiverse_scaleway/redis/get_cluster.py +65 -54
- pulumiverse_scaleway/redis/outputs.py +199 -87
- pulumiverse_scaleway/redis_cluster.py +273 -225
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +48 -48
- pulumiverse_scaleway/registry/get_image_tag.py +44 -44
- pulumiverse_scaleway/registry/get_namespace.py +36 -36
- pulumiverse_scaleway/registry/namespace.py +106 -105
- pulumiverse_scaleway/registry_namespace.py +106 -105
- pulumiverse_scaleway/sdb_database.py +97 -96
- pulumiverse_scaleway/secret.py +188 -179
- pulumiverse_scaleway/secret_version.py +107 -106
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +63 -63
- pulumiverse_scaleway/secrets/get_secret.py +58 -58
- pulumiverse_scaleway/secrets/get_version.py +46 -46
- pulumiverse_scaleway/secrets/outputs.py +84 -84
- pulumiverse_scaleway/secrets/secret.py +188 -179
- pulumiverse_scaleway/secrets/version.py +107 -106
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +33 -33
- pulumiverse_scaleway/tem/blocked_list.py +105 -104
- pulumiverse_scaleway/tem/domain.py +384 -257
- pulumiverse_scaleway/tem/domain_validation.py +63 -62
- pulumiverse_scaleway/tem/get_domain.py +103 -70
- pulumiverse_scaleway/tem/get_offer_subscription.py +34 -34
- pulumiverse_scaleway/tem/outputs.py +44 -44
- pulumiverse_scaleway/tem/webhook.py +132 -131
- pulumiverse_scaleway/tem_domain.py +384 -257
- pulumiverse_scaleway/tem_domain_validation.py +63 -62
- pulumiverse_scaleway/tem_webhook.py +132 -131
- pulumiverse_scaleway/vpc.py +172 -124
- pulumiverse_scaleway/vpc_gateway_network.py +228 -180
- pulumiverse_scaleway/vpc_private_network.py +203 -155
- pulumiverse_scaleway/vpc_public_gateway.py +261 -260
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +285 -284
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +107 -106
- pulumiverse_scaleway/vpc_public_gateway_ip.py +107 -106
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +132 -131
- pulumiverse_scaleway/vpc_route.py +230 -141
- pulumiverse_scaleway/webhosting.py +213 -212
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.39.0a1764841480.dist-info/RECORD +513 -0
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/WHEEL +1 -1
- pulumiverse_scaleway/get_cockpit_plan.py +0 -129
- pulumiverse_scaleway/observability/get_plan.py +0 -125
- pulumiverse_scaleway-1.27.0a1744869119.dist-info/RECORD +0 -483
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -19,20 +19,20 @@ __all__ = ['EdgeServicesDnsStageArgs', 'EdgeServicesDnsStage']
|
|
|
19
19
|
@pulumi.input_type
|
|
20
20
|
class EdgeServicesDnsStageArgs:
|
|
21
21
|
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):
|
|
22
|
+
pipeline_id: pulumi.Input[_builtins.str],
|
|
23
|
+
backend_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
24
|
+
cache_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
25
|
+
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
26
|
+
project_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
|
+
tls_stage_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
28
28
|
"""
|
|
29
29
|
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.
|
|
32
|
-
:param pulumi.Input[str] cache_stage_id: The cache stage ID the DNS stage will be linked to.
|
|
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.
|
|
30
|
+
:param pulumi.Input[_builtins.str] pipeline_id: The ID of the pipeline.
|
|
31
|
+
: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.
|
|
32
|
+
: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.
|
|
33
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] fqdns: Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
|
34
|
+
:param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the DNS stage is associated with.
|
|
35
|
+
: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
36
|
"""
|
|
37
37
|
pulumi.set(__self__, "pipeline_id", pipeline_id)
|
|
38
38
|
if backend_stage_id is not None:
|
|
@@ -46,102 +46,104 @@ class EdgeServicesDnsStageArgs:
|
|
|
46
46
|
if tls_stage_id is not None:
|
|
47
47
|
pulumi.set(__self__, "tls_stage_id", tls_stage_id)
|
|
48
48
|
|
|
49
|
-
@property
|
|
49
|
+
@_builtins.property
|
|
50
50
|
@pulumi.getter(name="pipelineId")
|
|
51
|
-
def pipeline_id(self) -> pulumi.Input[str]:
|
|
51
|
+
def pipeline_id(self) -> pulumi.Input[_builtins.str]:
|
|
52
52
|
"""
|
|
53
53
|
The ID of the pipeline.
|
|
54
54
|
"""
|
|
55
55
|
return pulumi.get(self, "pipeline_id")
|
|
56
56
|
|
|
57
57
|
@pipeline_id.setter
|
|
58
|
-
def pipeline_id(self, value: pulumi.Input[str]):
|
|
58
|
+
def pipeline_id(self, value: pulumi.Input[_builtins.str]):
|
|
59
59
|
pulumi.set(self, "pipeline_id", value)
|
|
60
60
|
|
|
61
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
62
62
|
@pulumi.getter(name="backendStageId")
|
|
63
|
-
def backend_stage_id(self) -> Optional[pulumi.Input[str]]:
|
|
63
|
+
def backend_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
64
64
|
"""
|
|
65
|
-
The backend stage ID the DNS stage will be linked to.
|
|
65
|
+
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
66
|
"""
|
|
67
67
|
return pulumi.get(self, "backend_stage_id")
|
|
68
68
|
|
|
69
69
|
@backend_stage_id.setter
|
|
70
|
-
def backend_stage_id(self, value: Optional[pulumi.Input[str]]):
|
|
70
|
+
def backend_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
71
71
|
pulumi.set(self, "backend_stage_id", value)
|
|
72
72
|
|
|
73
|
-
@property
|
|
73
|
+
@_builtins.property
|
|
74
74
|
@pulumi.getter(name="cacheStageId")
|
|
75
|
-
def cache_stage_id(self) -> Optional[pulumi.Input[str]]:
|
|
75
|
+
def cache_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
76
76
|
"""
|
|
77
|
-
The cache stage ID the DNS stage will be linked to.
|
|
77
|
+
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
78
|
"""
|
|
79
79
|
return pulumi.get(self, "cache_stage_id")
|
|
80
80
|
|
|
81
81
|
@cache_stage_id.setter
|
|
82
|
-
def cache_stage_id(self, value: Optional[pulumi.Input[str]]):
|
|
82
|
+
def cache_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
83
83
|
pulumi.set(self, "cache_stage_id", value)
|
|
84
84
|
|
|
85
|
-
@property
|
|
85
|
+
@_builtins.property
|
|
86
86
|
@pulumi.getter
|
|
87
|
-
def fqdns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
87
|
+
def fqdns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
88
88
|
"""
|
|
89
89
|
Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
|
90
90
|
"""
|
|
91
91
|
return pulumi.get(self, "fqdns")
|
|
92
92
|
|
|
93
93
|
@fqdns.setter
|
|
94
|
-
def fqdns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
94
|
+
def fqdns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
95
95
|
pulumi.set(self, "fqdns", value)
|
|
96
96
|
|
|
97
|
-
@property
|
|
97
|
+
@_builtins.property
|
|
98
98
|
@pulumi.getter(name="projectId")
|
|
99
|
-
def project_id(self) -> Optional[pulumi.Input[str]]:
|
|
99
|
+
def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
100
100
|
"""
|
|
101
101
|
`project_id`) The ID of the project the DNS stage is associated with.
|
|
102
102
|
"""
|
|
103
103
|
return pulumi.get(self, "project_id")
|
|
104
104
|
|
|
105
105
|
@project_id.setter
|
|
106
|
-
def project_id(self, value: Optional[pulumi.Input[str]]):
|
|
106
|
+
def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
107
107
|
pulumi.set(self, "project_id", value)
|
|
108
108
|
|
|
109
|
-
@property
|
|
109
|
+
@_builtins.property
|
|
110
110
|
@pulumi.getter(name="tlsStageId")
|
|
111
|
-
def tls_stage_id(self) -> Optional[pulumi.Input[str]]:
|
|
111
|
+
def tls_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
112
112
|
"""
|
|
113
|
-
The TLS stage ID the DNS stage will be linked to.
|
|
113
|
+
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
114
|
"""
|
|
115
115
|
return pulumi.get(self, "tls_stage_id")
|
|
116
116
|
|
|
117
117
|
@tls_stage_id.setter
|
|
118
|
-
def tls_stage_id(self, value: Optional[pulumi.Input[str]]):
|
|
118
|
+
def tls_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
119
119
|
pulumi.set(self, "tls_stage_id", value)
|
|
120
120
|
|
|
121
121
|
|
|
122
122
|
@pulumi.input_type
|
|
123
123
|
class _EdgeServicesDnsStageState:
|
|
124
124
|
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
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
125
|
+
backend_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
126
|
+
cache_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
127
|
+
created_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
128
|
+
default_fqdn: 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.
|
|
137
|
-
:param pulumi.Input[str] cache_stage_id: The cache stage ID the DNS stage will be linked to.
|
|
138
|
-
:param pulumi.Input[str] created_at: The date and time of the creation of the DNS stage.
|
|
139
|
-
:param pulumi.Input[
|
|
140
|
-
:param pulumi.Input[str]
|
|
141
|
-
:param pulumi.Input[str]
|
|
142
|
-
:param pulumi.Input[str]
|
|
143
|
-
:param pulumi.Input[str]
|
|
144
|
-
:param pulumi.Input[str]
|
|
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[_builtins.str] default_fqdn: The Default Fully Qualified Domain Name attached to the stage.
|
|
141
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] fqdns: Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
|
142
|
+
:param pulumi.Input[_builtins.str] pipeline_id: The ID of the pipeline.
|
|
143
|
+
:param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the DNS stage is associated with.
|
|
144
|
+
: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.
|
|
145
|
+
:param pulumi.Input[_builtins.str] type: The type of the stage.
|
|
146
|
+
:param pulumi.Input[_builtins.str] updated_at: The date and time of the last update of the DNS stage.
|
|
145
147
|
"""
|
|
146
148
|
if backend_stage_id is not None:
|
|
147
149
|
pulumi.set(__self__, "backend_stage_id", backend_stage_id)
|
|
@@ -149,6 +151,8 @@ class _EdgeServicesDnsStageState:
|
|
|
149
151
|
pulumi.set(__self__, "cache_stage_id", cache_stage_id)
|
|
150
152
|
if created_at is not None:
|
|
151
153
|
pulumi.set(__self__, "created_at", created_at)
|
|
154
|
+
if default_fqdn is not None:
|
|
155
|
+
pulumi.set(__self__, "default_fqdn", default_fqdn)
|
|
152
156
|
if fqdns is not None:
|
|
153
157
|
pulumi.set(__self__, "fqdns", fqdns)
|
|
154
158
|
if pipeline_id is not None:
|
|
@@ -162,126 +166,139 @@ class _EdgeServicesDnsStageState:
|
|
|
162
166
|
if updated_at is not None:
|
|
163
167
|
pulumi.set(__self__, "updated_at", updated_at)
|
|
164
168
|
|
|
165
|
-
@property
|
|
169
|
+
@_builtins.property
|
|
166
170
|
@pulumi.getter(name="backendStageId")
|
|
167
|
-
def backend_stage_id(self) -> Optional[pulumi.Input[str]]:
|
|
171
|
+
def backend_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
168
172
|
"""
|
|
169
|
-
The backend stage ID the DNS stage will be linked to.
|
|
173
|
+
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
174
|
"""
|
|
171
175
|
return pulumi.get(self, "backend_stage_id")
|
|
172
176
|
|
|
173
177
|
@backend_stage_id.setter
|
|
174
|
-
def backend_stage_id(self, value: Optional[pulumi.Input[str]]):
|
|
178
|
+
def backend_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
175
179
|
pulumi.set(self, "backend_stage_id", value)
|
|
176
180
|
|
|
177
|
-
@property
|
|
181
|
+
@_builtins.property
|
|
178
182
|
@pulumi.getter(name="cacheStageId")
|
|
179
|
-
def cache_stage_id(self) -> Optional[pulumi.Input[str]]:
|
|
183
|
+
def cache_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
180
184
|
"""
|
|
181
|
-
The cache stage ID the DNS stage will be linked to.
|
|
185
|
+
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
186
|
"""
|
|
183
187
|
return pulumi.get(self, "cache_stage_id")
|
|
184
188
|
|
|
185
189
|
@cache_stage_id.setter
|
|
186
|
-
def cache_stage_id(self, value: Optional[pulumi.Input[str]]):
|
|
190
|
+
def cache_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
187
191
|
pulumi.set(self, "cache_stage_id", value)
|
|
188
192
|
|
|
189
|
-
@property
|
|
193
|
+
@_builtins.property
|
|
190
194
|
@pulumi.getter(name="createdAt")
|
|
191
|
-
def created_at(self) -> Optional[pulumi.Input[str]]:
|
|
195
|
+
def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
192
196
|
"""
|
|
193
197
|
The date and time of the creation of the DNS stage.
|
|
194
198
|
"""
|
|
195
199
|
return pulumi.get(self, "created_at")
|
|
196
200
|
|
|
197
201
|
@created_at.setter
|
|
198
|
-
def created_at(self, value: Optional[pulumi.Input[str]]):
|
|
202
|
+
def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
199
203
|
pulumi.set(self, "created_at", value)
|
|
200
204
|
|
|
201
|
-
@property
|
|
205
|
+
@_builtins.property
|
|
206
|
+
@pulumi.getter(name="defaultFqdn")
|
|
207
|
+
def default_fqdn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
208
|
+
"""
|
|
209
|
+
The Default Fully Qualified Domain Name attached to the stage.
|
|
210
|
+
"""
|
|
211
|
+
return pulumi.get(self, "default_fqdn")
|
|
212
|
+
|
|
213
|
+
@default_fqdn.setter
|
|
214
|
+
def default_fqdn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
215
|
+
pulumi.set(self, "default_fqdn", value)
|
|
216
|
+
|
|
217
|
+
@_builtins.property
|
|
202
218
|
@pulumi.getter
|
|
203
|
-
def fqdns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
219
|
+
def fqdns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
204
220
|
"""
|
|
205
221
|
Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
|
206
222
|
"""
|
|
207
223
|
return pulumi.get(self, "fqdns")
|
|
208
224
|
|
|
209
225
|
@fqdns.setter
|
|
210
|
-
def fqdns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
226
|
+
def fqdns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
211
227
|
pulumi.set(self, "fqdns", value)
|
|
212
228
|
|
|
213
|
-
@property
|
|
229
|
+
@_builtins.property
|
|
214
230
|
@pulumi.getter(name="pipelineId")
|
|
215
|
-
def pipeline_id(self) -> Optional[pulumi.Input[str]]:
|
|
231
|
+
def pipeline_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
216
232
|
"""
|
|
217
233
|
The ID of the pipeline.
|
|
218
234
|
"""
|
|
219
235
|
return pulumi.get(self, "pipeline_id")
|
|
220
236
|
|
|
221
237
|
@pipeline_id.setter
|
|
222
|
-
def pipeline_id(self, value: Optional[pulumi.Input[str]]):
|
|
238
|
+
def pipeline_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
223
239
|
pulumi.set(self, "pipeline_id", value)
|
|
224
240
|
|
|
225
|
-
@property
|
|
241
|
+
@_builtins.property
|
|
226
242
|
@pulumi.getter(name="projectId")
|
|
227
|
-
def project_id(self) -> Optional[pulumi.Input[str]]:
|
|
243
|
+
def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
228
244
|
"""
|
|
229
245
|
`project_id`) The ID of the project the DNS stage is associated with.
|
|
230
246
|
"""
|
|
231
247
|
return pulumi.get(self, "project_id")
|
|
232
248
|
|
|
233
249
|
@project_id.setter
|
|
234
|
-
def project_id(self, value: Optional[pulumi.Input[str]]):
|
|
250
|
+
def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
235
251
|
pulumi.set(self, "project_id", value)
|
|
236
252
|
|
|
237
|
-
@property
|
|
253
|
+
@_builtins.property
|
|
238
254
|
@pulumi.getter(name="tlsStageId")
|
|
239
|
-
def tls_stage_id(self) -> Optional[pulumi.Input[str]]:
|
|
255
|
+
def tls_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
240
256
|
"""
|
|
241
|
-
The TLS stage ID the DNS stage will be linked to.
|
|
257
|
+
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
258
|
"""
|
|
243
259
|
return pulumi.get(self, "tls_stage_id")
|
|
244
260
|
|
|
245
261
|
@tls_stage_id.setter
|
|
246
|
-
def tls_stage_id(self, value: Optional[pulumi.Input[str]]):
|
|
262
|
+
def tls_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
247
263
|
pulumi.set(self, "tls_stage_id", value)
|
|
248
264
|
|
|
249
|
-
@property
|
|
265
|
+
@_builtins.property
|
|
250
266
|
@pulumi.getter
|
|
251
|
-
def type(self) -> Optional[pulumi.Input[str]]:
|
|
267
|
+
def type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
252
268
|
"""
|
|
253
269
|
The type of the stage.
|
|
254
270
|
"""
|
|
255
271
|
return pulumi.get(self, "type")
|
|
256
272
|
|
|
257
273
|
@type.setter
|
|
258
|
-
def type(self, value: Optional[pulumi.Input[str]]):
|
|
274
|
+
def type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
259
275
|
pulumi.set(self, "type", value)
|
|
260
276
|
|
|
261
|
-
@property
|
|
277
|
+
@_builtins.property
|
|
262
278
|
@pulumi.getter(name="updatedAt")
|
|
263
|
-
def updated_at(self) -> Optional[pulumi.Input[str]]:
|
|
279
|
+
def updated_at(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
264
280
|
"""
|
|
265
281
|
The date and time of the last update of the DNS stage.
|
|
266
282
|
"""
|
|
267
283
|
return pulumi.get(self, "updated_at")
|
|
268
284
|
|
|
269
285
|
@updated_at.setter
|
|
270
|
-
def updated_at(self, value: Optional[pulumi.Input[str]]):
|
|
286
|
+
def updated_at(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
271
287
|
pulumi.set(self, "updated_at", value)
|
|
272
288
|
|
|
273
289
|
|
|
290
|
+
@pulumi.type_token("scaleway:index/edgeServicesDnsStage:EdgeServicesDnsStage")
|
|
274
291
|
class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
275
292
|
@overload
|
|
276
293
|
def __init__(__self__,
|
|
277
294
|
resource_name: str,
|
|
278
295
|
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,
|
|
296
|
+
backend_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
297
|
+
cache_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
298
|
+
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
299
|
+
pipeline_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
300
|
+
project_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
301
|
+
tls_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
285
302
|
__props__=None):
|
|
286
303
|
"""
|
|
287
304
|
Creates and manages Scaleway Edge Services DNS Stages.
|
|
@@ -311,12 +328,12 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
|
311
328
|
|
|
312
329
|
:param str resource_name: The name of the resource.
|
|
313
330
|
: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.
|
|
315
|
-
:param pulumi.Input[str] cache_stage_id: The cache stage ID the DNS stage will be linked to.
|
|
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.
|
|
331
|
+
: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.
|
|
332
|
+
: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.
|
|
333
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] fqdns: Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
|
334
|
+
:param pulumi.Input[_builtins.str] pipeline_id: The ID of the pipeline.
|
|
335
|
+
:param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the DNS stage is associated with.
|
|
336
|
+
: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
337
|
"""
|
|
321
338
|
...
|
|
322
339
|
@overload
|
|
@@ -365,12 +382,12 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
|
365
382
|
def _internal_init(__self__,
|
|
366
383
|
resource_name: str,
|
|
367
384
|
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,
|
|
385
|
+
backend_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
386
|
+
cache_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
387
|
+
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
388
|
+
pipeline_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
389
|
+
project_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
390
|
+
tls_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
374
391
|
__props__=None):
|
|
375
392
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
376
393
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -389,6 +406,7 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
|
389
406
|
__props__.__dict__["project_id"] = project_id
|
|
390
407
|
__props__.__dict__["tls_stage_id"] = tls_stage_id
|
|
391
408
|
__props__.__dict__["created_at"] = None
|
|
409
|
+
__props__.__dict__["default_fqdn"] = None
|
|
392
410
|
__props__.__dict__["type"] = None
|
|
393
411
|
__props__.__dict__["updated_at"] = None
|
|
394
412
|
super(EdgeServicesDnsStage, __self__).__init__(
|
|
@@ -401,15 +419,16 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
|
401
419
|
def get(resource_name: str,
|
|
402
420
|
id: pulumi.Input[str],
|
|
403
421
|
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
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
422
|
+
backend_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
423
|
+
cache_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
424
|
+
created_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
425
|
+
default_fqdn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
426
|
+
fqdns: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
427
|
+
pipeline_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
428
|
+
project_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
429
|
+
tls_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
430
|
+
type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
431
|
+
updated_at: Optional[pulumi.Input[_builtins.str]] = None) -> 'EdgeServicesDnsStage':
|
|
413
432
|
"""
|
|
414
433
|
Get an existing EdgeServicesDnsStage resource's state with the given name, id, and optional extra
|
|
415
434
|
properties used to qualify the lookup.
|
|
@@ -417,15 +436,16 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
|
417
436
|
:param str resource_name: The unique name of the resulting resource.
|
|
418
437
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
419
438
|
: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.
|
|
421
|
-
:param pulumi.Input[str] cache_stage_id: The cache stage ID the DNS stage will be linked to.
|
|
422
|
-
:param pulumi.Input[str] created_at: The date and time of the creation of the DNS stage.
|
|
423
|
-
:param pulumi.Input[
|
|
424
|
-
:param pulumi.Input[str]
|
|
425
|
-
:param pulumi.Input[str]
|
|
426
|
-
:param pulumi.Input[str]
|
|
427
|
-
:param pulumi.Input[str]
|
|
428
|
-
:param pulumi.Input[str]
|
|
439
|
+
: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.
|
|
440
|
+
: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.
|
|
441
|
+
:param pulumi.Input[_builtins.str] created_at: The date and time of the creation of the DNS stage.
|
|
442
|
+
:param pulumi.Input[_builtins.str] default_fqdn: The Default Fully Qualified Domain Name attached to the stage.
|
|
443
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] fqdns: Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
|
444
|
+
:param pulumi.Input[_builtins.str] pipeline_id: The ID of the pipeline.
|
|
445
|
+
:param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the DNS stage is associated with.
|
|
446
|
+
: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.
|
|
447
|
+
:param pulumi.Input[_builtins.str] type: The type of the stage.
|
|
448
|
+
:param pulumi.Input[_builtins.str] updated_at: The date and time of the last update of the DNS stage.
|
|
429
449
|
"""
|
|
430
450
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
431
451
|
|
|
@@ -434,6 +454,7 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
|
434
454
|
__props__.__dict__["backend_stage_id"] = backend_stage_id
|
|
435
455
|
__props__.__dict__["cache_stage_id"] = cache_stage_id
|
|
436
456
|
__props__.__dict__["created_at"] = created_at
|
|
457
|
+
__props__.__dict__["default_fqdn"] = default_fqdn
|
|
437
458
|
__props__.__dict__["fqdns"] = fqdns
|
|
438
459
|
__props__.__dict__["pipeline_id"] = pipeline_id
|
|
439
460
|
__props__.__dict__["project_id"] = project_id
|
|
@@ -442,73 +463,81 @@ class EdgeServicesDnsStage(pulumi.CustomResource):
|
|
|
442
463
|
__props__.__dict__["updated_at"] = updated_at
|
|
443
464
|
return EdgeServicesDnsStage(resource_name, opts=opts, __props__=__props__)
|
|
444
465
|
|
|
445
|
-
@property
|
|
466
|
+
@_builtins.property
|
|
446
467
|
@pulumi.getter(name="backendStageId")
|
|
447
|
-
def backend_stage_id(self) -> pulumi.Output[str]:
|
|
468
|
+
def backend_stage_id(self) -> pulumi.Output[_builtins.str]:
|
|
448
469
|
"""
|
|
449
|
-
The backend stage ID the DNS stage will be linked to.
|
|
470
|
+
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
471
|
"""
|
|
451
472
|
return pulumi.get(self, "backend_stage_id")
|
|
452
473
|
|
|
453
|
-
@property
|
|
474
|
+
@_builtins.property
|
|
454
475
|
@pulumi.getter(name="cacheStageId")
|
|
455
|
-
def cache_stage_id(self) -> pulumi.Output[str]:
|
|
476
|
+
def cache_stage_id(self) -> pulumi.Output[_builtins.str]:
|
|
456
477
|
"""
|
|
457
|
-
The cache stage ID the DNS stage will be linked to.
|
|
478
|
+
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
479
|
"""
|
|
459
480
|
return pulumi.get(self, "cache_stage_id")
|
|
460
481
|
|
|
461
|
-
@property
|
|
482
|
+
@_builtins.property
|
|
462
483
|
@pulumi.getter(name="createdAt")
|
|
463
|
-
def created_at(self) -> pulumi.Output[str]:
|
|
484
|
+
def created_at(self) -> pulumi.Output[_builtins.str]:
|
|
464
485
|
"""
|
|
465
486
|
The date and time of the creation of the DNS stage.
|
|
466
487
|
"""
|
|
467
488
|
return pulumi.get(self, "created_at")
|
|
468
489
|
|
|
469
|
-
@property
|
|
490
|
+
@_builtins.property
|
|
491
|
+
@pulumi.getter(name="defaultFqdn")
|
|
492
|
+
def default_fqdn(self) -> pulumi.Output[_builtins.str]:
|
|
493
|
+
"""
|
|
494
|
+
The Default Fully Qualified Domain Name attached to the stage.
|
|
495
|
+
"""
|
|
496
|
+
return pulumi.get(self, "default_fqdn")
|
|
497
|
+
|
|
498
|
+
@_builtins.property
|
|
470
499
|
@pulumi.getter
|
|
471
|
-
def fqdns(self) -> pulumi.Output[Sequence[str]]:
|
|
500
|
+
def fqdns(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
472
501
|
"""
|
|
473
502
|
Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage.
|
|
474
503
|
"""
|
|
475
504
|
return pulumi.get(self, "fqdns")
|
|
476
505
|
|
|
477
|
-
@property
|
|
506
|
+
@_builtins.property
|
|
478
507
|
@pulumi.getter(name="pipelineId")
|
|
479
|
-
def pipeline_id(self) -> pulumi.Output[str]:
|
|
508
|
+
def pipeline_id(self) -> pulumi.Output[_builtins.str]:
|
|
480
509
|
"""
|
|
481
510
|
The ID of the pipeline.
|
|
482
511
|
"""
|
|
483
512
|
return pulumi.get(self, "pipeline_id")
|
|
484
513
|
|
|
485
|
-
@property
|
|
514
|
+
@_builtins.property
|
|
486
515
|
@pulumi.getter(name="projectId")
|
|
487
|
-
def project_id(self) -> pulumi.Output[str]:
|
|
516
|
+
def project_id(self) -> pulumi.Output[_builtins.str]:
|
|
488
517
|
"""
|
|
489
518
|
`project_id`) The ID of the project the DNS stage is associated with.
|
|
490
519
|
"""
|
|
491
520
|
return pulumi.get(self, "project_id")
|
|
492
521
|
|
|
493
|
-
@property
|
|
522
|
+
@_builtins.property
|
|
494
523
|
@pulumi.getter(name="tlsStageId")
|
|
495
|
-
def tls_stage_id(self) -> pulumi.Output[str]:
|
|
524
|
+
def tls_stage_id(self) -> pulumi.Output[_builtins.str]:
|
|
496
525
|
"""
|
|
497
|
-
The TLS stage ID the DNS stage will be linked to.
|
|
526
|
+
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
527
|
"""
|
|
499
528
|
return pulumi.get(self, "tls_stage_id")
|
|
500
529
|
|
|
501
|
-
@property
|
|
530
|
+
@_builtins.property
|
|
502
531
|
@pulumi.getter
|
|
503
|
-
def type(self) -> pulumi.Output[str]:
|
|
532
|
+
def type(self) -> pulumi.Output[_builtins.str]:
|
|
504
533
|
"""
|
|
505
534
|
The type of the stage.
|
|
506
535
|
"""
|
|
507
536
|
return pulumi.get(self, "type")
|
|
508
537
|
|
|
509
|
-
@property
|
|
538
|
+
@_builtins.property
|
|
510
539
|
@pulumi.getter(name="updatedAt")
|
|
511
|
-
def updated_at(self) -> pulumi.Output[str]:
|
|
540
|
+
def updated_at(self) -> pulumi.Output[_builtins.str]:
|
|
512
541
|
"""
|
|
513
542
|
The date and time of the last update of the DNS stage.
|
|
514
543
|
"""
|