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
|
|
@@ -29,7 +29,7 @@ class GetVpcGatewayNetworkResult:
|
|
|
29
29
|
"""
|
|
30
30
|
A collection of values returned by getVpcGatewayNetwork.
|
|
31
31
|
"""
|
|
32
|
-
def __init__(__self__, cleanup_dhcp=None, created_at=None, dhcp_id=None, enable_dhcp=None, enable_masquerade=None, gateway_id=None, gateway_network_id=None, id=None, ipam_configs=None, mac_address=None, private_network_id=None, static_address=None, status=None, updated_at=None, zone=None):
|
|
32
|
+
def __init__(__self__, cleanup_dhcp=None, created_at=None, dhcp_id=None, enable_dhcp=None, enable_masquerade=None, gateway_id=None, gateway_network_id=None, id=None, ipam_configs=None, mac_address=None, private_ips=None, private_network_id=None, static_address=None, status=None, updated_at=None, zone=None):
|
|
33
33
|
if cleanup_dhcp and not isinstance(cleanup_dhcp, bool):
|
|
34
34
|
raise TypeError("Expected argument 'cleanup_dhcp' to be a bool")
|
|
35
35
|
pulumi.set(__self__, "cleanup_dhcp", cleanup_dhcp)
|
|
@@ -60,6 +60,9 @@ class GetVpcGatewayNetworkResult:
|
|
|
60
60
|
if mac_address and not isinstance(mac_address, str):
|
|
61
61
|
raise TypeError("Expected argument 'mac_address' to be a str")
|
|
62
62
|
pulumi.set(__self__, "mac_address", mac_address)
|
|
63
|
+
if private_ips and not isinstance(private_ips, list):
|
|
64
|
+
raise TypeError("Expected argument 'private_ips' to be a list")
|
|
65
|
+
pulumi.set(__self__, "private_ips", private_ips)
|
|
63
66
|
if private_network_id and not isinstance(private_network_id, str):
|
|
64
67
|
raise TypeError("Expected argument 'private_network_id' to be a str")
|
|
65
68
|
pulumi.set(__self__, "private_network_id", private_network_id)
|
|
@@ -76,82 +79,87 @@ class GetVpcGatewayNetworkResult:
|
|
|
76
79
|
raise TypeError("Expected argument 'zone' to be a str")
|
|
77
80
|
pulumi.set(__self__, "zone", zone)
|
|
78
81
|
|
|
79
|
-
@property
|
|
82
|
+
@_builtins.property
|
|
80
83
|
@pulumi.getter(name="cleanupDhcp")
|
|
81
|
-
def cleanup_dhcp(self) -> bool:
|
|
84
|
+
def cleanup_dhcp(self) -> _builtins.bool:
|
|
82
85
|
return pulumi.get(self, "cleanup_dhcp")
|
|
83
86
|
|
|
84
|
-
@property
|
|
87
|
+
@_builtins.property
|
|
85
88
|
@pulumi.getter(name="createdAt")
|
|
86
|
-
def created_at(self) -> str:
|
|
89
|
+
def created_at(self) -> _builtins.str:
|
|
87
90
|
return pulumi.get(self, "created_at")
|
|
88
91
|
|
|
89
|
-
@property
|
|
92
|
+
@_builtins.property
|
|
90
93
|
@pulumi.getter(name="dhcpId")
|
|
91
|
-
def dhcp_id(self) -> Optional[str]:
|
|
94
|
+
def dhcp_id(self) -> Optional[_builtins.str]:
|
|
92
95
|
return pulumi.get(self, "dhcp_id")
|
|
93
96
|
|
|
94
|
-
@property
|
|
97
|
+
@_builtins.property
|
|
95
98
|
@pulumi.getter(name="enableDhcp")
|
|
96
|
-
def enable_dhcp(self) -> bool:
|
|
99
|
+
def enable_dhcp(self) -> _builtins.bool:
|
|
97
100
|
return pulumi.get(self, "enable_dhcp")
|
|
98
101
|
|
|
99
|
-
@property
|
|
102
|
+
@_builtins.property
|
|
100
103
|
@pulumi.getter(name="enableMasquerade")
|
|
101
|
-
def enable_masquerade(self) -> Optional[bool]:
|
|
104
|
+
def enable_masquerade(self) -> Optional[_builtins.bool]:
|
|
102
105
|
return pulumi.get(self, "enable_masquerade")
|
|
103
106
|
|
|
104
|
-
@property
|
|
107
|
+
@_builtins.property
|
|
105
108
|
@pulumi.getter(name="gatewayId")
|
|
106
|
-
def gateway_id(self) -> Optional[str]:
|
|
109
|
+
def gateway_id(self) -> Optional[_builtins.str]:
|
|
107
110
|
return pulumi.get(self, "gateway_id")
|
|
108
111
|
|
|
109
|
-
@property
|
|
112
|
+
@_builtins.property
|
|
110
113
|
@pulumi.getter(name="gatewayNetworkId")
|
|
111
|
-
def gateway_network_id(self) -> Optional[str]:
|
|
114
|
+
def gateway_network_id(self) -> Optional[_builtins.str]:
|
|
112
115
|
return pulumi.get(self, "gateway_network_id")
|
|
113
116
|
|
|
114
|
-
@property
|
|
117
|
+
@_builtins.property
|
|
115
118
|
@pulumi.getter
|
|
116
|
-
def id(self) -> str:
|
|
119
|
+
def id(self) -> _builtins.str:
|
|
117
120
|
"""
|
|
118
121
|
The provider-assigned unique ID for this managed resource.
|
|
119
122
|
"""
|
|
120
123
|
return pulumi.get(self, "id")
|
|
121
124
|
|
|
122
|
-
@property
|
|
125
|
+
@_builtins.property
|
|
123
126
|
@pulumi.getter(name="ipamConfigs")
|
|
124
127
|
def ipam_configs(self) -> Sequence['outputs.GetVpcGatewayNetworkIpamConfigResult']:
|
|
125
128
|
return pulumi.get(self, "ipam_configs")
|
|
126
129
|
|
|
127
|
-
@property
|
|
130
|
+
@_builtins.property
|
|
128
131
|
@pulumi.getter(name="macAddress")
|
|
129
|
-
def mac_address(self) -> str:
|
|
132
|
+
def mac_address(self) -> _builtins.str:
|
|
130
133
|
return pulumi.get(self, "mac_address")
|
|
131
134
|
|
|
132
|
-
@property
|
|
135
|
+
@_builtins.property
|
|
136
|
+
@pulumi.getter(name="privateIps")
|
|
137
|
+
def private_ips(self) -> Sequence['outputs.GetVpcGatewayNetworkPrivateIpResult']:
|
|
138
|
+
return pulumi.get(self, "private_ips")
|
|
139
|
+
|
|
140
|
+
@_builtins.property
|
|
133
141
|
@pulumi.getter(name="privateNetworkId")
|
|
134
|
-
def private_network_id(self) -> Optional[str]:
|
|
142
|
+
def private_network_id(self) -> Optional[_builtins.str]:
|
|
135
143
|
return pulumi.get(self, "private_network_id")
|
|
136
144
|
|
|
137
|
-
@property
|
|
145
|
+
@_builtins.property
|
|
138
146
|
@pulumi.getter(name="staticAddress")
|
|
139
|
-
def static_address(self) -> str:
|
|
147
|
+
def static_address(self) -> _builtins.str:
|
|
140
148
|
return pulumi.get(self, "static_address")
|
|
141
149
|
|
|
142
|
-
@property
|
|
150
|
+
@_builtins.property
|
|
143
151
|
@pulumi.getter
|
|
144
|
-
def status(self) -> str:
|
|
152
|
+
def status(self) -> _builtins.str:
|
|
145
153
|
return pulumi.get(self, "status")
|
|
146
154
|
|
|
147
|
-
@property
|
|
155
|
+
@_builtins.property
|
|
148
156
|
@pulumi.getter(name="updatedAt")
|
|
149
|
-
def updated_at(self) -> str:
|
|
157
|
+
def updated_at(self) -> _builtins.str:
|
|
150
158
|
return pulumi.get(self, "updated_at")
|
|
151
159
|
|
|
152
|
-
@property
|
|
160
|
+
@_builtins.property
|
|
153
161
|
@pulumi.getter
|
|
154
|
-
def zone(self) -> str:
|
|
162
|
+
def zone(self) -> _builtins.str:
|
|
155
163
|
return pulumi.get(self, "zone")
|
|
156
164
|
|
|
157
165
|
|
|
@@ -171,6 +179,7 @@ class AwaitableGetVpcGatewayNetworkResult(GetVpcGatewayNetworkResult):
|
|
|
171
179
|
id=self.id,
|
|
172
180
|
ipam_configs=self.ipam_configs,
|
|
173
181
|
mac_address=self.mac_address,
|
|
182
|
+
private_ips=self.private_ips,
|
|
174
183
|
private_network_id=self.private_network_id,
|
|
175
184
|
static_address=self.static_address,
|
|
176
185
|
status=self.status,
|
|
@@ -178,11 +187,11 @@ class AwaitableGetVpcGatewayNetworkResult(GetVpcGatewayNetworkResult):
|
|
|
178
187
|
zone=self.zone)
|
|
179
188
|
|
|
180
189
|
|
|
181
|
-
def get_vpc_gateway_network(dhcp_id: Optional[str] = None,
|
|
182
|
-
enable_masquerade: Optional[bool] = None,
|
|
183
|
-
gateway_id: Optional[str] = None,
|
|
184
|
-
gateway_network_id: Optional[str] = None,
|
|
185
|
-
private_network_id: Optional[str] = None,
|
|
190
|
+
def get_vpc_gateway_network(dhcp_id: Optional[_builtins.str] = None,
|
|
191
|
+
enable_masquerade: Optional[_builtins.bool] = None,
|
|
192
|
+
gateway_id: Optional[_builtins.str] = None,
|
|
193
|
+
gateway_network_id: Optional[_builtins.str] = None,
|
|
194
|
+
private_network_id: Optional[_builtins.str] = None,
|
|
186
195
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcGatewayNetworkResult:
|
|
187
196
|
"""
|
|
188
197
|
Gets information about a GatewayNetwork (a connection between a Public Gateway and a Private Network).
|
|
@@ -206,7 +215,7 @@ def get_vpc_gateway_network(dhcp_id: Optional[str] = None,
|
|
|
206
215
|
```
|
|
207
216
|
|
|
208
217
|
|
|
209
|
-
:param str gateway_network_id: ID of the GatewayNetwork.
|
|
218
|
+
:param _builtins.str gateway_network_id: ID of the GatewayNetwork.
|
|
210
219
|
"""
|
|
211
220
|
pulumi.log.warn("""get_vpc_gateway_network is deprecated: scaleway.index/getvpcgatewaynetwork.getVpcGatewayNetwork has been deprecated in favor of scaleway.network/getgatewaynetwork.getGatewayNetwork""")
|
|
212
221
|
__args__ = dict()
|
|
@@ -229,16 +238,17 @@ def get_vpc_gateway_network(dhcp_id: Optional[str] = None,
|
|
|
229
238
|
id=pulumi.get(__ret__, 'id'),
|
|
230
239
|
ipam_configs=pulumi.get(__ret__, 'ipam_configs'),
|
|
231
240
|
mac_address=pulumi.get(__ret__, 'mac_address'),
|
|
241
|
+
private_ips=pulumi.get(__ret__, 'private_ips'),
|
|
232
242
|
private_network_id=pulumi.get(__ret__, 'private_network_id'),
|
|
233
243
|
static_address=pulumi.get(__ret__, 'static_address'),
|
|
234
244
|
status=pulumi.get(__ret__, 'status'),
|
|
235
245
|
updated_at=pulumi.get(__ret__, 'updated_at'),
|
|
236
246
|
zone=pulumi.get(__ret__, 'zone'))
|
|
237
|
-
def get_vpc_gateway_network_output(dhcp_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
238
|
-
enable_masquerade: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
239
|
-
gateway_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
240
|
-
gateway_network_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
241
|
-
private_network_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
247
|
+
def get_vpc_gateway_network_output(dhcp_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
248
|
+
enable_masquerade: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
249
|
+
gateway_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
250
|
+
gateway_network_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
251
|
+
private_network_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
242
252
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcGatewayNetworkResult]:
|
|
243
253
|
"""
|
|
244
254
|
Gets information about a GatewayNetwork (a connection between a Public Gateway and a Private Network).
|
|
@@ -262,7 +272,7 @@ def get_vpc_gateway_network_output(dhcp_id: Optional[pulumi.Input[Optional[str]]
|
|
|
262
272
|
```
|
|
263
273
|
|
|
264
274
|
|
|
265
|
-
:param str gateway_network_id: ID of the GatewayNetwork.
|
|
275
|
+
:param _builtins.str gateway_network_id: ID of the GatewayNetwork.
|
|
266
276
|
"""
|
|
267
277
|
pulumi.log.warn("""get_vpc_gateway_network is deprecated: scaleway.index/getvpcgatewaynetwork.getVpcGatewayNetwork has been deprecated in favor of scaleway.network/getgatewaynetwork.getGatewayNetwork""")
|
|
268
278
|
__args__ = dict()
|
|
@@ -284,6 +294,7 @@ def get_vpc_gateway_network_output(dhcp_id: Optional[pulumi.Input[Optional[str]]
|
|
|
284
294
|
id=pulumi.get(__response__, 'id'),
|
|
285
295
|
ipam_configs=pulumi.get(__response__, 'ipam_configs'),
|
|
286
296
|
mac_address=pulumi.get(__response__, 'mac_address'),
|
|
297
|
+
private_ips=pulumi.get(__response__, 'private_ips'),
|
|
287
298
|
private_network_id=pulumi.get(__response__, 'private_network_id'),
|
|
288
299
|
static_address=pulumi.get(__response__, 'static_address'),
|
|
289
300
|
status=pulumi.get(__response__, 'status'),
|
|
@@ -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
|
|
@@ -29,10 +29,13 @@ class GetVpcPrivateNetworkResult:
|
|
|
29
29
|
"""
|
|
30
30
|
A collection of values returned by getVpcPrivateNetwork.
|
|
31
31
|
"""
|
|
32
|
-
def __init__(__self__, created_at=None, id=None, ipv4_subnets=None, ipv6_subnets=None, is_regional=None, name=None, organization_id=None, private_network_id=None, project_id=None, region=None, tags=None, updated_at=None, vpc_id=None, zone=None):
|
|
32
|
+
def __init__(__self__, created_at=None, enable_default_route_propagation=None, id=None, ipv4_subnets=None, ipv6_subnets=None, is_regional=None, name=None, organization_id=None, private_network_id=None, project_id=None, region=None, tags=None, updated_at=None, vpc_id=None, zone=None):
|
|
33
33
|
if created_at and not isinstance(created_at, str):
|
|
34
34
|
raise TypeError("Expected argument 'created_at' to be a str")
|
|
35
35
|
pulumi.set(__self__, "created_at", created_at)
|
|
36
|
+
if enable_default_route_propagation and not isinstance(enable_default_route_propagation, bool):
|
|
37
|
+
raise TypeError("Expected argument 'enable_default_route_propagation' to be a bool")
|
|
38
|
+
pulumi.set(__self__, "enable_default_route_propagation", enable_default_route_propagation)
|
|
36
39
|
if id and not isinstance(id, str):
|
|
37
40
|
raise TypeError("Expected argument 'id' to be a str")
|
|
38
41
|
pulumi.set(__self__, "id", id)
|
|
@@ -73,20 +76,25 @@ class GetVpcPrivateNetworkResult:
|
|
|
73
76
|
raise TypeError("Expected argument 'zone' to be a str")
|
|
74
77
|
pulumi.set(__self__, "zone", zone)
|
|
75
78
|
|
|
76
|
-
@property
|
|
79
|
+
@_builtins.property
|
|
77
80
|
@pulumi.getter(name="createdAt")
|
|
78
|
-
def created_at(self) -> str:
|
|
81
|
+
def created_at(self) -> _builtins.str:
|
|
79
82
|
return pulumi.get(self, "created_at")
|
|
80
83
|
|
|
81
|
-
@property
|
|
84
|
+
@_builtins.property
|
|
85
|
+
@pulumi.getter(name="enableDefaultRoutePropagation")
|
|
86
|
+
def enable_default_route_propagation(self) -> _builtins.bool:
|
|
87
|
+
return pulumi.get(self, "enable_default_route_propagation")
|
|
88
|
+
|
|
89
|
+
@_builtins.property
|
|
82
90
|
@pulumi.getter
|
|
83
|
-
def id(self) -> str:
|
|
91
|
+
def id(self) -> _builtins.str:
|
|
84
92
|
"""
|
|
85
93
|
The provider-assigned unique ID for this managed resource.
|
|
86
94
|
"""
|
|
87
95
|
return pulumi.get(self, "id")
|
|
88
96
|
|
|
89
|
-
@property
|
|
97
|
+
@_builtins.property
|
|
90
98
|
@pulumi.getter(name="ipv4Subnets")
|
|
91
99
|
def ipv4_subnets(self) -> Sequence['outputs.GetVpcPrivateNetworkIpv4SubnetResult']:
|
|
92
100
|
"""
|
|
@@ -94,7 +102,7 @@ class GetVpcPrivateNetworkResult:
|
|
|
94
102
|
"""
|
|
95
103
|
return pulumi.get(self, "ipv4_subnets")
|
|
96
104
|
|
|
97
|
-
@property
|
|
105
|
+
@_builtins.property
|
|
98
106
|
@pulumi.getter(name="ipv6Subnets")
|
|
99
107
|
def ipv6_subnets(self) -> Sequence['outputs.GetVpcPrivateNetworkIpv6SubnetResult']:
|
|
100
108
|
"""
|
|
@@ -102,54 +110,54 @@ class GetVpcPrivateNetworkResult:
|
|
|
102
110
|
"""
|
|
103
111
|
return pulumi.get(self, "ipv6_subnets")
|
|
104
112
|
|
|
105
|
-
@property
|
|
113
|
+
@_builtins.property
|
|
106
114
|
@pulumi.getter(name="isRegional")
|
|
107
|
-
def is_regional(self) -> bool:
|
|
115
|
+
def is_regional(self) -> _builtins.bool:
|
|
108
116
|
return pulumi.get(self, "is_regional")
|
|
109
117
|
|
|
110
|
-
@property
|
|
118
|
+
@_builtins.property
|
|
111
119
|
@pulumi.getter
|
|
112
|
-
def name(self) -> Optional[str]:
|
|
120
|
+
def name(self) -> Optional[_builtins.str]:
|
|
113
121
|
return pulumi.get(self, "name")
|
|
114
122
|
|
|
115
|
-
@property
|
|
123
|
+
@_builtins.property
|
|
116
124
|
@pulumi.getter(name="organizationId")
|
|
117
|
-
def organization_id(self) -> str:
|
|
125
|
+
def organization_id(self) -> _builtins.str:
|
|
118
126
|
return pulumi.get(self, "organization_id")
|
|
119
127
|
|
|
120
|
-
@property
|
|
128
|
+
@_builtins.property
|
|
121
129
|
@pulumi.getter(name="privateNetworkId")
|
|
122
|
-
def private_network_id(self) -> Optional[str]:
|
|
130
|
+
def private_network_id(self) -> Optional[_builtins.str]:
|
|
123
131
|
return pulumi.get(self, "private_network_id")
|
|
124
132
|
|
|
125
|
-
@property
|
|
133
|
+
@_builtins.property
|
|
126
134
|
@pulumi.getter(name="projectId")
|
|
127
|
-
def project_id(self) -> Optional[str]:
|
|
135
|
+
def project_id(self) -> Optional[_builtins.str]:
|
|
128
136
|
return pulumi.get(self, "project_id")
|
|
129
137
|
|
|
130
|
-
@property
|
|
138
|
+
@_builtins.property
|
|
131
139
|
@pulumi.getter
|
|
132
|
-
def region(self) -> Optional[str]:
|
|
140
|
+
def region(self) -> Optional[_builtins.str]:
|
|
133
141
|
return pulumi.get(self, "region")
|
|
134
142
|
|
|
135
|
-
@property
|
|
143
|
+
@_builtins.property
|
|
136
144
|
@pulumi.getter
|
|
137
|
-
def tags(self) -> Sequence[str]:
|
|
145
|
+
def tags(self) -> Sequence[_builtins.str]:
|
|
138
146
|
return pulumi.get(self, "tags")
|
|
139
147
|
|
|
140
|
-
@property
|
|
148
|
+
@_builtins.property
|
|
141
149
|
@pulumi.getter(name="updatedAt")
|
|
142
|
-
def updated_at(self) -> str:
|
|
150
|
+
def updated_at(self) -> _builtins.str:
|
|
143
151
|
return pulumi.get(self, "updated_at")
|
|
144
152
|
|
|
145
|
-
@property
|
|
153
|
+
@_builtins.property
|
|
146
154
|
@pulumi.getter(name="vpcId")
|
|
147
|
-
def vpc_id(self) -> Optional[str]:
|
|
155
|
+
def vpc_id(self) -> Optional[_builtins.str]:
|
|
148
156
|
return pulumi.get(self, "vpc_id")
|
|
149
157
|
|
|
150
|
-
@property
|
|
158
|
+
@_builtins.property
|
|
151
159
|
@pulumi.getter
|
|
152
|
-
def zone(self) -> str:
|
|
160
|
+
def zone(self) -> _builtins.str:
|
|
153
161
|
return pulumi.get(self, "zone")
|
|
154
162
|
|
|
155
163
|
|
|
@@ -160,6 +168,7 @@ class AwaitableGetVpcPrivateNetworkResult(GetVpcPrivateNetworkResult):
|
|
|
160
168
|
yield self
|
|
161
169
|
return GetVpcPrivateNetworkResult(
|
|
162
170
|
created_at=self.created_at,
|
|
171
|
+
enable_default_route_propagation=self.enable_default_route_propagation,
|
|
163
172
|
id=self.id,
|
|
164
173
|
ipv4_subnets=self.ipv4_subnets,
|
|
165
174
|
ipv6_subnets=self.ipv6_subnets,
|
|
@@ -175,11 +184,11 @@ class AwaitableGetVpcPrivateNetworkResult(GetVpcPrivateNetworkResult):
|
|
|
175
184
|
zone=self.zone)
|
|
176
185
|
|
|
177
186
|
|
|
178
|
-
def get_vpc_private_network(name: Optional[str] = None,
|
|
179
|
-
private_network_id: Optional[str] = None,
|
|
180
|
-
project_id: Optional[str] = None,
|
|
181
|
-
region: Optional[str] = None,
|
|
182
|
-
vpc_id: Optional[str] = None,
|
|
187
|
+
def get_vpc_private_network(name: Optional[_builtins.str] = None,
|
|
188
|
+
private_network_id: Optional[_builtins.str] = None,
|
|
189
|
+
project_id: Optional[_builtins.str] = None,
|
|
190
|
+
region: Optional[_builtins.str] = None,
|
|
191
|
+
vpc_id: Optional[_builtins.str] = None,
|
|
183
192
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcPrivateNetworkResult:
|
|
184
193
|
"""
|
|
185
194
|
Gets information about a Private Network.
|
|
@@ -200,10 +209,10 @@ def get_vpc_private_network(name: Optional[str] = None,
|
|
|
200
209
|
```
|
|
201
210
|
|
|
202
211
|
|
|
203
|
-
:param str name: Name of the Private Network. Cannot be used with `private_network_id`.
|
|
204
|
-
:param str private_network_id: ID of the Private Network. Cannot be used with `name` or `vpc_id`.
|
|
205
|
-
:param str project_id: The ID of the Project the Private Network is associated with.
|
|
206
|
-
:param str vpc_id: ID of the VPC the Private Network is in. Cannot be used with `private_network_id`.
|
|
212
|
+
:param _builtins.str name: Name of the Private Network. Cannot be used with `private_network_id`.
|
|
213
|
+
:param _builtins.str private_network_id: ID of the Private Network. Cannot be used with `name` or `vpc_id`.
|
|
214
|
+
:param _builtins.str project_id: The ID of the Project the Private Network is associated with.
|
|
215
|
+
:param _builtins.str vpc_id: ID of the VPC the Private Network is in. Cannot be used with `private_network_id`.
|
|
207
216
|
"""
|
|
208
217
|
pulumi.log.warn("""get_vpc_private_network is deprecated: scaleway.index/getvpcprivatenetwork.getVpcPrivateNetwork has been deprecated in favor of scaleway.network/getprivatenetwork.getPrivateNetwork""")
|
|
209
218
|
__args__ = dict()
|
|
@@ -217,6 +226,7 @@ def get_vpc_private_network(name: Optional[str] = None,
|
|
|
217
226
|
|
|
218
227
|
return AwaitableGetVpcPrivateNetworkResult(
|
|
219
228
|
created_at=pulumi.get(__ret__, 'created_at'),
|
|
229
|
+
enable_default_route_propagation=pulumi.get(__ret__, 'enable_default_route_propagation'),
|
|
220
230
|
id=pulumi.get(__ret__, 'id'),
|
|
221
231
|
ipv4_subnets=pulumi.get(__ret__, 'ipv4_subnets'),
|
|
222
232
|
ipv6_subnets=pulumi.get(__ret__, 'ipv6_subnets'),
|
|
@@ -230,11 +240,11 @@ def get_vpc_private_network(name: Optional[str] = None,
|
|
|
230
240
|
updated_at=pulumi.get(__ret__, 'updated_at'),
|
|
231
241
|
vpc_id=pulumi.get(__ret__, 'vpc_id'),
|
|
232
242
|
zone=pulumi.get(__ret__, 'zone'))
|
|
233
|
-
def get_vpc_private_network_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
234
|
-
private_network_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
235
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
236
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
237
|
-
vpc_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
243
|
+
def get_vpc_private_network_output(name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
244
|
+
private_network_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
245
|
+
project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
246
|
+
region: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
247
|
+
vpc_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
238
248
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcPrivateNetworkResult]:
|
|
239
249
|
"""
|
|
240
250
|
Gets information about a Private Network.
|
|
@@ -255,10 +265,10 @@ def get_vpc_private_network_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
|
255
265
|
```
|
|
256
266
|
|
|
257
267
|
|
|
258
|
-
:param str name: Name of the Private Network. Cannot be used with `private_network_id`.
|
|
259
|
-
:param str private_network_id: ID of the Private Network. Cannot be used with `name` or `vpc_id`.
|
|
260
|
-
:param str project_id: The ID of the Project the Private Network is associated with.
|
|
261
|
-
:param str vpc_id: ID of the VPC the Private Network is in. Cannot be used with `private_network_id`.
|
|
268
|
+
:param _builtins.str name: Name of the Private Network. Cannot be used with `private_network_id`.
|
|
269
|
+
:param _builtins.str private_network_id: ID of the Private Network. Cannot be used with `name` or `vpc_id`.
|
|
270
|
+
:param _builtins.str project_id: The ID of the Project the Private Network is associated with.
|
|
271
|
+
:param _builtins.str vpc_id: ID of the VPC the Private Network is in. Cannot be used with `private_network_id`.
|
|
262
272
|
"""
|
|
263
273
|
pulumi.log.warn("""get_vpc_private_network is deprecated: scaleway.index/getvpcprivatenetwork.getVpcPrivateNetwork has been deprecated in favor of scaleway.network/getprivatenetwork.getPrivateNetwork""")
|
|
264
274
|
__args__ = dict()
|
|
@@ -271,6 +281,7 @@ def get_vpc_private_network_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
|
271
281
|
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getVpcPrivateNetwork:getVpcPrivateNetwork', __args__, opts=opts, typ=GetVpcPrivateNetworkResult)
|
|
272
282
|
return __ret__.apply(lambda __response__: GetVpcPrivateNetworkResult(
|
|
273
283
|
created_at=pulumi.get(__response__, 'created_at'),
|
|
284
|
+
enable_default_route_propagation=pulumi.get(__response__, 'enable_default_route_propagation'),
|
|
274
285
|
id=pulumi.get(__response__, 'id'),
|
|
275
286
|
ipv4_subnets=pulumi.get(__response__, 'ipv4_subnets'),
|
|
276
287
|
ipv6_subnets=pulumi.get(__response__, 'ipv6_subnets'),
|
|
@@ -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
|
|
@@ -90,107 +90,107 @@ class GetVpcPublicGatewayResult:
|
|
|
90
90
|
raise TypeError("Expected argument 'zone' to be a str")
|
|
91
91
|
pulumi.set(__self__, "zone", zone)
|
|
92
92
|
|
|
93
|
-
@property
|
|
93
|
+
@_builtins.property
|
|
94
94
|
@pulumi.getter(name="allowedIpRanges")
|
|
95
|
-
def allowed_ip_ranges(self) -> Sequence[str]:
|
|
95
|
+
def allowed_ip_ranges(self) -> Sequence[_builtins.str]:
|
|
96
96
|
return pulumi.get(self, "allowed_ip_ranges")
|
|
97
97
|
|
|
98
|
-
@property
|
|
98
|
+
@_builtins.property
|
|
99
99
|
@pulumi.getter
|
|
100
|
-
def bandwidth(self) -> int:
|
|
100
|
+
def bandwidth(self) -> _builtins.int:
|
|
101
101
|
return pulumi.get(self, "bandwidth")
|
|
102
102
|
|
|
103
|
-
@property
|
|
103
|
+
@_builtins.property
|
|
104
104
|
@pulumi.getter(name="bastionEnabled")
|
|
105
|
-
def bastion_enabled(self) -> bool:
|
|
105
|
+
def bastion_enabled(self) -> _builtins.bool:
|
|
106
106
|
return pulumi.get(self, "bastion_enabled")
|
|
107
107
|
|
|
108
|
-
@property
|
|
108
|
+
@_builtins.property
|
|
109
109
|
@pulumi.getter(name="bastionPort")
|
|
110
|
-
def bastion_port(self) -> int:
|
|
110
|
+
def bastion_port(self) -> _builtins.int:
|
|
111
111
|
return pulumi.get(self, "bastion_port")
|
|
112
112
|
|
|
113
|
-
@property
|
|
113
|
+
@_builtins.property
|
|
114
114
|
@pulumi.getter(name="createdAt")
|
|
115
|
-
def created_at(self) -> str:
|
|
115
|
+
def created_at(self) -> _builtins.str:
|
|
116
116
|
return pulumi.get(self, "created_at")
|
|
117
117
|
|
|
118
|
-
@property
|
|
118
|
+
@_builtins.property
|
|
119
119
|
@pulumi.getter(name="enableSmtp")
|
|
120
|
-
def enable_smtp(self) -> bool:
|
|
120
|
+
def enable_smtp(self) -> _builtins.bool:
|
|
121
121
|
return pulumi.get(self, "enable_smtp")
|
|
122
122
|
|
|
123
|
-
@property
|
|
123
|
+
@_builtins.property
|
|
124
124
|
@pulumi.getter
|
|
125
|
-
def id(self) -> str:
|
|
125
|
+
def id(self) -> _builtins.str:
|
|
126
126
|
"""
|
|
127
127
|
The provider-assigned unique ID for this managed resource.
|
|
128
128
|
"""
|
|
129
129
|
return pulumi.get(self, "id")
|
|
130
130
|
|
|
131
|
-
@property
|
|
131
|
+
@_builtins.property
|
|
132
132
|
@pulumi.getter(name="ipId")
|
|
133
|
-
def ip_id(self) -> str:
|
|
133
|
+
def ip_id(self) -> _builtins.str:
|
|
134
134
|
return pulumi.get(self, "ip_id")
|
|
135
135
|
|
|
136
|
-
@property
|
|
136
|
+
@_builtins.property
|
|
137
137
|
@pulumi.getter(name="moveToIpam")
|
|
138
|
-
def move_to_ipam(self) -> bool:
|
|
138
|
+
def move_to_ipam(self) -> _builtins.bool:
|
|
139
139
|
return pulumi.get(self, "move_to_ipam")
|
|
140
140
|
|
|
141
|
-
@property
|
|
141
|
+
@_builtins.property
|
|
142
142
|
@pulumi.getter
|
|
143
|
-
def name(self) -> Optional[str]:
|
|
143
|
+
def name(self) -> Optional[_builtins.str]:
|
|
144
144
|
return pulumi.get(self, "name")
|
|
145
145
|
|
|
146
|
-
@property
|
|
146
|
+
@_builtins.property
|
|
147
147
|
@pulumi.getter(name="organizationId")
|
|
148
|
-
def organization_id(self) -> str:
|
|
148
|
+
def organization_id(self) -> _builtins.str:
|
|
149
149
|
return pulumi.get(self, "organization_id")
|
|
150
150
|
|
|
151
|
-
@property
|
|
151
|
+
@_builtins.property
|
|
152
152
|
@pulumi.getter(name="projectId")
|
|
153
|
-
def project_id(self) -> Optional[str]:
|
|
153
|
+
def project_id(self) -> Optional[_builtins.str]:
|
|
154
154
|
return pulumi.get(self, "project_id")
|
|
155
155
|
|
|
156
|
-
@property
|
|
156
|
+
@_builtins.property
|
|
157
157
|
@pulumi.getter(name="publicGatewayId")
|
|
158
|
-
def public_gateway_id(self) -> Optional[str]:
|
|
158
|
+
def public_gateway_id(self) -> Optional[_builtins.str]:
|
|
159
159
|
return pulumi.get(self, "public_gateway_id")
|
|
160
160
|
|
|
161
|
-
@property
|
|
161
|
+
@_builtins.property
|
|
162
162
|
@pulumi.getter(name="refreshSshKeys")
|
|
163
|
-
def refresh_ssh_keys(self) -> str:
|
|
163
|
+
def refresh_ssh_keys(self) -> _builtins.str:
|
|
164
164
|
return pulumi.get(self, "refresh_ssh_keys")
|
|
165
165
|
|
|
166
|
-
@property
|
|
166
|
+
@_builtins.property
|
|
167
167
|
@pulumi.getter
|
|
168
|
-
def status(self) -> str:
|
|
168
|
+
def status(self) -> _builtins.str:
|
|
169
169
|
return pulumi.get(self, "status")
|
|
170
170
|
|
|
171
|
-
@property
|
|
171
|
+
@_builtins.property
|
|
172
172
|
@pulumi.getter
|
|
173
|
-
def tags(self) -> Sequence[str]:
|
|
173
|
+
def tags(self) -> Sequence[_builtins.str]:
|
|
174
174
|
return pulumi.get(self, "tags")
|
|
175
175
|
|
|
176
|
-
@property
|
|
176
|
+
@_builtins.property
|
|
177
177
|
@pulumi.getter
|
|
178
|
-
def type(self) -> str:
|
|
178
|
+
def type(self) -> _builtins.str:
|
|
179
179
|
return pulumi.get(self, "type")
|
|
180
180
|
|
|
181
|
-
@property
|
|
181
|
+
@_builtins.property
|
|
182
182
|
@pulumi.getter(name="updatedAt")
|
|
183
|
-
def updated_at(self) -> str:
|
|
183
|
+
def updated_at(self) -> _builtins.str:
|
|
184
184
|
return pulumi.get(self, "updated_at")
|
|
185
185
|
|
|
186
|
-
@property
|
|
186
|
+
@_builtins.property
|
|
187
187
|
@pulumi.getter(name="upstreamDnsServers")
|
|
188
|
-
def upstream_dns_servers(self) -> Sequence[str]:
|
|
188
|
+
def upstream_dns_servers(self) -> Sequence[_builtins.str]:
|
|
189
189
|
return pulumi.get(self, "upstream_dns_servers")
|
|
190
190
|
|
|
191
|
-
@property
|
|
191
|
+
@_builtins.property
|
|
192
192
|
@pulumi.getter
|
|
193
|
-
def zone(self) -> Optional[str]:
|
|
193
|
+
def zone(self) -> Optional[_builtins.str]:
|
|
194
194
|
return pulumi.get(self, "zone")
|
|
195
195
|
|
|
196
196
|
|
|
@@ -222,10 +222,10 @@ class AwaitableGetVpcPublicGatewayResult(GetVpcPublicGatewayResult):
|
|
|
222
222
|
zone=self.zone)
|
|
223
223
|
|
|
224
224
|
|
|
225
|
-
def get_vpc_public_gateway(name: Optional[str] = None,
|
|
226
|
-
project_id: Optional[str] = None,
|
|
227
|
-
public_gateway_id: Optional[str] = None,
|
|
228
|
-
zone: Optional[str] = None,
|
|
225
|
+
def get_vpc_public_gateway(name: Optional[_builtins.str] = None,
|
|
226
|
+
project_id: Optional[_builtins.str] = None,
|
|
227
|
+
public_gateway_id: Optional[_builtins.str] = None,
|
|
228
|
+
zone: Optional[_builtins.str] = None,
|
|
229
229
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcPublicGatewayResult:
|
|
230
230
|
"""
|
|
231
231
|
Gets information about a Public Gateway.
|
|
@@ -247,9 +247,9 @@ def get_vpc_public_gateway(name: Optional[str] = None,
|
|
|
247
247
|
```
|
|
248
248
|
|
|
249
249
|
|
|
250
|
-
:param str name: Exact name of the Public Gateway.
|
|
251
|
-
:param str project_id: The ID of the Project the Public Gateway is associated with.
|
|
252
|
-
:param str zone: `zone`) The Public Gateway's zone.
|
|
250
|
+
:param _builtins.str name: Exact name of the Public Gateway.
|
|
251
|
+
:param _builtins.str project_id: The ID of the Project the Public Gateway is associated with.
|
|
252
|
+
:param _builtins.str zone: `zone`) The Public Gateway's zone.
|
|
253
253
|
"""
|
|
254
254
|
pulumi.log.warn("""get_vpc_public_gateway is deprecated: scaleway.index/getvpcpublicgateway.getVpcPublicGateway has been deprecated in favor of scaleway.network/getpublicgateway.getPublicGateway""")
|
|
255
255
|
__args__ = dict()
|
|
@@ -281,10 +281,10 @@ def get_vpc_public_gateway(name: Optional[str] = None,
|
|
|
281
281
|
updated_at=pulumi.get(__ret__, 'updated_at'),
|
|
282
282
|
upstream_dns_servers=pulumi.get(__ret__, 'upstream_dns_servers'),
|
|
283
283
|
zone=pulumi.get(__ret__, 'zone'))
|
|
284
|
-
def get_vpc_public_gateway_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
285
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
286
|
-
public_gateway_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
287
|
-
zone: Optional[pulumi.Input[Optional[str]]] = None,
|
|
284
|
+
def get_vpc_public_gateway_output(name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
285
|
+
project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
286
|
+
public_gateway_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
287
|
+
zone: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
288
288
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcPublicGatewayResult]:
|
|
289
289
|
"""
|
|
290
290
|
Gets information about a Public Gateway.
|
|
@@ -306,9 +306,9 @@ def get_vpc_public_gateway_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
|
306
306
|
```
|
|
307
307
|
|
|
308
308
|
|
|
309
|
-
:param str name: Exact name of the Public Gateway.
|
|
310
|
-
:param str project_id: The ID of the Project the Public Gateway is associated with.
|
|
311
|
-
:param str zone: `zone`) The Public Gateway's zone.
|
|
309
|
+
:param _builtins.str name: Exact name of the Public Gateway.
|
|
310
|
+
:param _builtins.str project_id: The ID of the Project the Public Gateway is associated with.
|
|
311
|
+
:param _builtins.str zone: `zone`) The Public Gateway's zone.
|
|
312
312
|
"""
|
|
313
313
|
pulumi.log.warn("""get_vpc_public_gateway is deprecated: scaleway.index/getvpcpublicgateway.getVpcPublicGateway has been deprecated in favor of scaleway.network/getpublicgateway.getPublicGateway""")
|
|
314
314
|
__args__ = dict()
|