pulumiverse-scaleway 1.16.0__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.
Potentially problematic release.
This version of pulumiverse-scaleway might be problematic. Click here for more details.
- pulumiverse_scaleway/__init__.py +1073 -0
- pulumiverse_scaleway/_inputs.py +8665 -0
- pulumiverse_scaleway/_utilities.py +327 -0
- pulumiverse_scaleway/account_project.py +316 -0
- pulumiverse_scaleway/account_ssh_key.py +450 -0
- pulumiverse_scaleway/apple_silicon_server.py +564 -0
- pulumiverse_scaleway/baremetal_server.py +1390 -0
- pulumiverse_scaleway/block_snapshot.py +391 -0
- pulumiverse_scaleway/block_volume.py +521 -0
- pulumiverse_scaleway/cockpit.py +299 -0
- pulumiverse_scaleway/cockpit_alert_manager.py +345 -0
- pulumiverse_scaleway/cockpit_grafana_user.py +326 -0
- pulumiverse_scaleway/cockpit_source.py +481 -0
- pulumiverse_scaleway/cockpit_token.py +461 -0
- pulumiverse_scaleway/config/__init__.py +8 -0
- pulumiverse_scaleway/config/__init__.pyi +56 -0
- pulumiverse_scaleway/config/vars.py +78 -0
- pulumiverse_scaleway/container.py +1387 -0
- pulumiverse_scaleway/container_cron.py +493 -0
- pulumiverse_scaleway/container_domain.py +400 -0
- pulumiverse_scaleway/container_namespace.py +589 -0
- pulumiverse_scaleway/container_token.py +454 -0
- pulumiverse_scaleway/container_trigger.py +478 -0
- pulumiverse_scaleway/database.py +407 -0
- pulumiverse_scaleway/database_acl.py +332 -0
- pulumiverse_scaleway/database_backup.py +574 -0
- pulumiverse_scaleway/database_instance.py +1636 -0
- pulumiverse_scaleway/database_privilege.py +422 -0
- pulumiverse_scaleway/database_read_replica.py +528 -0
- pulumiverse_scaleway/database_user.py +446 -0
- pulumiverse_scaleway/documentdb_database.py +450 -0
- pulumiverse_scaleway/documentdb_instance.py +812 -0
- pulumiverse_scaleway/documentdb_private_network_endpoint.py +352 -0
- pulumiverse_scaleway/documentdb_privilege.py +402 -0
- pulumiverse_scaleway/documentdb_read_replica.py +405 -0
- pulumiverse_scaleway/documentdb_user.py +442 -0
- pulumiverse_scaleway/domain_record.py +1074 -0
- pulumiverse_scaleway/domain_zone.py +458 -0
- pulumiverse_scaleway/flexible_ip.py +702 -0
- pulumiverse_scaleway/flexible_ip_mac_address.py +510 -0
- pulumiverse_scaleway/function.py +1145 -0
- pulumiverse_scaleway/function_cron.py +480 -0
- pulumiverse_scaleway/function_domain.py +361 -0
- pulumiverse_scaleway/function_namespace.py +533 -0
- pulumiverse_scaleway/function_token.py +462 -0
- pulumiverse_scaleway/function_trigger.py +478 -0
- pulumiverse_scaleway/get_account_project.py +164 -0
- pulumiverse_scaleway/get_account_ssh_key.py +201 -0
- pulumiverse_scaleway/get_availability_zones.py +131 -0
- pulumiverse_scaleway/get_baremetal_offer.py +245 -0
- pulumiverse_scaleway/get_baremetal_option.py +168 -0
- pulumiverse_scaleway/get_baremetal_os.py +174 -0
- pulumiverse_scaleway/get_baremetal_server.py +411 -0
- pulumiverse_scaleway/get_billing_consumptions.py +134 -0
- pulumiverse_scaleway/get_billing_invoices.py +154 -0
- pulumiverse_scaleway/get_block_snapshot.py +170 -0
- pulumiverse_scaleway/get_block_volume.py +186 -0
- pulumiverse_scaleway/get_cockpit.py +179 -0
- pulumiverse_scaleway/get_cockpit_plan.py +113 -0
- pulumiverse_scaleway/get_config.py +180 -0
- pulumiverse_scaleway/get_container.py +502 -0
- pulumiverse_scaleway/get_container_namespace.py +262 -0
- pulumiverse_scaleway/get_database.py +187 -0
- pulumiverse_scaleway/get_database_acl.py +143 -0
- pulumiverse_scaleway/get_database_backup.py +253 -0
- pulumiverse_scaleway/get_database_instance.py +404 -0
- pulumiverse_scaleway/get_database_privilege.py +181 -0
- pulumiverse_scaleway/get_documentdb_database.py +198 -0
- pulumiverse_scaleway/get_documentdb_instance.py +245 -0
- pulumiverse_scaleway/get_documentdb_load_balancer_endpoint.py +198 -0
- pulumiverse_scaleway/get_domain_record.py +334 -0
- pulumiverse_scaleway/get_domain_zone.py +225 -0
- pulumiverse_scaleway/get_flexible_ip.py +247 -0
- pulumiverse_scaleway/get_flexible_ips.py +240 -0
- pulumiverse_scaleway/get_function.py +357 -0
- pulumiverse_scaleway/get_function_namespace.py +227 -0
- pulumiverse_scaleway/get_iam_api_key.py +210 -0
- pulumiverse_scaleway/get_iam_application.py +210 -0
- pulumiverse_scaleway/get_iam_group.py +236 -0
- pulumiverse_scaleway/get_iam_ssh_key.py +212 -0
- pulumiverse_scaleway/get_iam_user.py +157 -0
- pulumiverse_scaleway/get_instance_image.py +305 -0
- pulumiverse_scaleway/get_instance_ip.py +204 -0
- pulumiverse_scaleway/get_instance_placement_group.py +212 -0
- pulumiverse_scaleway/get_instance_private_nic.py +215 -0
- pulumiverse_scaleway/get_instance_security_group.py +268 -0
- pulumiverse_scaleway/get_instance_server.py +502 -0
- pulumiverse_scaleway/get_instance_servers.py +187 -0
- pulumiverse_scaleway/get_instance_snapshot.py +248 -0
- pulumiverse_scaleway/get_instance_volume.py +215 -0
- pulumiverse_scaleway/get_iot_device.py +257 -0
- pulumiverse_scaleway/get_iot_hub.py +322 -0
- pulumiverse_scaleway/get_ipam_ip.py +419 -0
- pulumiverse_scaleway/get_ipam_ips.py +358 -0
- pulumiverse_scaleway/get_k8s_version.py +196 -0
- pulumiverse_scaleway/get_kubernetes_cluster.py +417 -0
- pulumiverse_scaleway/get_kubernetes_node_pool.py +436 -0
- pulumiverse_scaleway/get_lb_acls.py +198 -0
- pulumiverse_scaleway/get_lb_backend.py +486 -0
- pulumiverse_scaleway/get_lb_backends.py +196 -0
- pulumiverse_scaleway/get_lb_frontend.py +274 -0
- pulumiverse_scaleway/get_lb_frontends.py +196 -0
- pulumiverse_scaleway/get_lb_ips.py +198 -0
- pulumiverse_scaleway/get_lb_route.py +217 -0
- pulumiverse_scaleway/get_lb_routes.py +179 -0
- pulumiverse_scaleway/get_lbs.py +187 -0
- pulumiverse_scaleway/get_loadbalancer.py +339 -0
- pulumiverse_scaleway/get_loadbalancer_certificate.py +230 -0
- pulumiverse_scaleway/get_loadbalancer_ip.py +222 -0
- pulumiverse_scaleway/get_marketplace_image.py +147 -0
- pulumiverse_scaleway/get_mnq_sqs.py +150 -0
- pulumiverse_scaleway/get_object_bucket.py +278 -0
- pulumiverse_scaleway/get_object_bucket_policy.py +157 -0
- pulumiverse_scaleway/get_redis_cluster.py +347 -0
- pulumiverse_scaleway/get_registry_image.py +239 -0
- pulumiverse_scaleway/get_registry_namespace.py +199 -0
- pulumiverse_scaleway/get_secret.py +290 -0
- pulumiverse_scaleway/get_secret_version.py +303 -0
- pulumiverse_scaleway/get_tem_domain.py +367 -0
- pulumiverse_scaleway/get_vpc.py +246 -0
- pulumiverse_scaleway/get_vpc_gateway_network.py +287 -0
- pulumiverse_scaleway/get_vpc_private_network.py +282 -0
- pulumiverse_scaleway/get_vpc_public_gateway.py +304 -0
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +305 -0
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +382 -0
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +199 -0
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +313 -0
- pulumiverse_scaleway/get_vpc_routes.py +208 -0
- pulumiverse_scaleway/get_vpcs.py +174 -0
- pulumiverse_scaleway/get_web_host_offer.py +192 -0
- pulumiverse_scaleway/get_webhosting.py +332 -0
- pulumiverse_scaleway/iam_api_key.py +620 -0
- pulumiverse_scaleway/iam_application.py +417 -0
- pulumiverse_scaleway/iam_group.py +566 -0
- pulumiverse_scaleway/iam_group_membership.py +323 -0
- pulumiverse_scaleway/iam_policy.py +727 -0
- pulumiverse_scaleway/iam_ssh_key.py +455 -0
- pulumiverse_scaleway/iam_user.py +466 -0
- pulumiverse_scaleway/instance_image.py +750 -0
- pulumiverse_scaleway/instance_ip.py +483 -0
- pulumiverse_scaleway/instance_ip_reverse_dns.py +308 -0
- pulumiverse_scaleway/instance_placement_group.py +479 -0
- pulumiverse_scaleway/instance_private_nic.py +454 -0
- pulumiverse_scaleway/instance_security_group.py +720 -0
- pulumiverse_scaleway/instance_security_group_rules.py +439 -0
- pulumiverse_scaleway/instance_server.py +1907 -0
- pulumiverse_scaleway/instance_snapshot.py +669 -0
- pulumiverse_scaleway/instance_user_data.py +435 -0
- pulumiverse_scaleway/instance_volume.py +535 -0
- pulumiverse_scaleway/iot_device.py +750 -0
- pulumiverse_scaleway/iot_hub.py +896 -0
- pulumiverse_scaleway/iot_network.py +425 -0
- pulumiverse_scaleway/iot_route.py +660 -0
- pulumiverse_scaleway/ipam_ip.py +666 -0
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +318 -0
- pulumiverse_scaleway/job_definition.py +692 -0
- pulumiverse_scaleway/kubernetes_cluster.py +1538 -0
- pulumiverse_scaleway/kubernetes_node_pool.py +1255 -0
- pulumiverse_scaleway/loadbalancer.py +1095 -0
- pulumiverse_scaleway/loadbalancer_acl.py +520 -0
- pulumiverse_scaleway/loadbalancer_backend.py +1588 -0
- pulumiverse_scaleway/loadbalancer_certificate.py +460 -0
- pulumiverse_scaleway/loadbalancer_frontend.py +829 -0
- pulumiverse_scaleway/loadbalancer_ip.py +514 -0
- pulumiverse_scaleway/loadbalancer_route.py +523 -0
- pulumiverse_scaleway/mnq_nats_account.py +334 -0
- pulumiverse_scaleway/mnq_nats_credentials.py +328 -0
- pulumiverse_scaleway/mnq_sns.py +306 -0
- pulumiverse_scaleway/mnq_sns_credentials.py +413 -0
- pulumiverse_scaleway/mnq_sns_topic.py +659 -0
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +699 -0
- pulumiverse_scaleway/mnq_sqs.py +304 -0
- pulumiverse_scaleway/mnq_sqs_credentials.py +413 -0
- pulumiverse_scaleway/mnq_sqs_queue.py +800 -0
- pulumiverse_scaleway/object_bucket.py +888 -0
- pulumiverse_scaleway/object_bucket_acl.py +592 -0
- pulumiverse_scaleway/object_bucket_lock_configuration.py +393 -0
- pulumiverse_scaleway/object_bucket_policy.py +671 -0
- pulumiverse_scaleway/object_bucket_website_configuration.py +532 -0
- pulumiverse_scaleway/object_item.py +711 -0
- pulumiverse_scaleway/outputs.py +11663 -0
- pulumiverse_scaleway/provider.py +327 -0
- pulumiverse_scaleway/pulumi-plugin.json +6 -0
- pulumiverse_scaleway/py.typed +0 -0
- pulumiverse_scaleway/redis_cluster.py +1166 -0
- pulumiverse_scaleway/registry_namespace.py +458 -0
- pulumiverse_scaleway/sdb_database.py +428 -0
- pulumiverse_scaleway/secret.py +560 -0
- pulumiverse_scaleway/secret_version.py +482 -0
- pulumiverse_scaleway/tem_domain.py +950 -0
- pulumiverse_scaleway/tem_domain_validation.py +303 -0
- pulumiverse_scaleway/vpc.py +536 -0
- pulumiverse_scaleway/vpc_gateway_network.py +866 -0
- pulumiverse_scaleway/vpc_private_network.py +734 -0
- pulumiverse_scaleway/vpc_public_gateway.py +789 -0
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +933 -0
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +514 -0
- pulumiverse_scaleway/vpc_public_gateway_ip.py +457 -0
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +306 -0
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +591 -0
- pulumiverse_scaleway/webhosting.py +805 -0
- pulumiverse_scaleway-1.16.0.dist-info/METADATA +69 -0
- pulumiverse_scaleway-1.16.0.dist-info/RECORD +205 -0
- pulumiverse_scaleway-1.16.0.dist-info/WHEEL +5 -0
- pulumiverse_scaleway-1.16.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from . import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetVpcPrivateNetworkResult',
|
|
20
|
+
'AwaitableGetVpcPrivateNetworkResult',
|
|
21
|
+
'get_vpc_private_network',
|
|
22
|
+
'get_vpc_private_network_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetVpcPrivateNetworkResult:
|
|
27
|
+
"""
|
|
28
|
+
A collection of values returned by getVpcPrivateNetwork.
|
|
29
|
+
"""
|
|
30
|
+
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):
|
|
31
|
+
if created_at and not isinstance(created_at, str):
|
|
32
|
+
raise TypeError("Expected argument 'created_at' to be a str")
|
|
33
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
34
|
+
if id and not isinstance(id, str):
|
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "id", id)
|
|
37
|
+
if ipv4_subnets and not isinstance(ipv4_subnets, list):
|
|
38
|
+
raise TypeError("Expected argument 'ipv4_subnets' to be a list")
|
|
39
|
+
pulumi.set(__self__, "ipv4_subnets", ipv4_subnets)
|
|
40
|
+
if ipv6_subnets and not isinstance(ipv6_subnets, list):
|
|
41
|
+
raise TypeError("Expected argument 'ipv6_subnets' to be a list")
|
|
42
|
+
pulumi.set(__self__, "ipv6_subnets", ipv6_subnets)
|
|
43
|
+
if is_regional and not isinstance(is_regional, bool):
|
|
44
|
+
raise TypeError("Expected argument 'is_regional' to be a bool")
|
|
45
|
+
pulumi.set(__self__, "is_regional", is_regional)
|
|
46
|
+
if name and not isinstance(name, str):
|
|
47
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
48
|
+
pulumi.set(__self__, "name", name)
|
|
49
|
+
if organization_id and not isinstance(organization_id, str):
|
|
50
|
+
raise TypeError("Expected argument 'organization_id' to be a str")
|
|
51
|
+
pulumi.set(__self__, "organization_id", organization_id)
|
|
52
|
+
if private_network_id and not isinstance(private_network_id, str):
|
|
53
|
+
raise TypeError("Expected argument 'private_network_id' to be a str")
|
|
54
|
+
pulumi.set(__self__, "private_network_id", private_network_id)
|
|
55
|
+
if project_id and not isinstance(project_id, str):
|
|
56
|
+
raise TypeError("Expected argument 'project_id' to be a str")
|
|
57
|
+
pulumi.set(__self__, "project_id", project_id)
|
|
58
|
+
if region and not isinstance(region, str):
|
|
59
|
+
raise TypeError("Expected argument 'region' to be a str")
|
|
60
|
+
pulumi.set(__self__, "region", region)
|
|
61
|
+
if tags and not isinstance(tags, list):
|
|
62
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
|
63
|
+
pulumi.set(__self__, "tags", tags)
|
|
64
|
+
if updated_at and not isinstance(updated_at, str):
|
|
65
|
+
raise TypeError("Expected argument 'updated_at' to be a str")
|
|
66
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
|
67
|
+
if vpc_id and not isinstance(vpc_id, str):
|
|
68
|
+
raise TypeError("Expected argument 'vpc_id' to be a str")
|
|
69
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
70
|
+
if zone and not isinstance(zone, str):
|
|
71
|
+
raise TypeError("Expected argument 'zone' to be a str")
|
|
72
|
+
pulumi.set(__self__, "zone", zone)
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter(name="createdAt")
|
|
76
|
+
def created_at(self) -> str:
|
|
77
|
+
return pulumi.get(self, "created_at")
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
@pulumi.getter
|
|
81
|
+
def id(self) -> str:
|
|
82
|
+
"""
|
|
83
|
+
The provider-assigned unique ID for this managed resource.
|
|
84
|
+
"""
|
|
85
|
+
return pulumi.get(self, "id")
|
|
86
|
+
|
|
87
|
+
@property
|
|
88
|
+
@pulumi.getter(name="ipv4Subnets")
|
|
89
|
+
def ipv4_subnets(self) -> Sequence['outputs.GetVpcPrivateNetworkIpv4SubnetResult']:
|
|
90
|
+
"""
|
|
91
|
+
The IPv4 subnet associated with the Private Network.
|
|
92
|
+
"""
|
|
93
|
+
return pulumi.get(self, "ipv4_subnets")
|
|
94
|
+
|
|
95
|
+
@property
|
|
96
|
+
@pulumi.getter(name="ipv6Subnets")
|
|
97
|
+
def ipv6_subnets(self) -> Sequence['outputs.GetVpcPrivateNetworkIpv6SubnetResult']:
|
|
98
|
+
"""
|
|
99
|
+
The IPv6 subnets associated with the Private Network.
|
|
100
|
+
"""
|
|
101
|
+
return pulumi.get(self, "ipv6_subnets")
|
|
102
|
+
|
|
103
|
+
@property
|
|
104
|
+
@pulumi.getter(name="isRegional")
|
|
105
|
+
def is_regional(self) -> bool:
|
|
106
|
+
return pulumi.get(self, "is_regional")
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
@pulumi.getter
|
|
110
|
+
def name(self) -> Optional[str]:
|
|
111
|
+
return pulumi.get(self, "name")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="organizationId")
|
|
115
|
+
def organization_id(self) -> str:
|
|
116
|
+
return pulumi.get(self, "organization_id")
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
@pulumi.getter(name="privateNetworkId")
|
|
120
|
+
def private_network_id(self) -> Optional[str]:
|
|
121
|
+
return pulumi.get(self, "private_network_id")
|
|
122
|
+
|
|
123
|
+
@property
|
|
124
|
+
@pulumi.getter(name="projectId")
|
|
125
|
+
def project_id(self) -> Optional[str]:
|
|
126
|
+
return pulumi.get(self, "project_id")
|
|
127
|
+
|
|
128
|
+
@property
|
|
129
|
+
@pulumi.getter
|
|
130
|
+
def region(self) -> Optional[str]:
|
|
131
|
+
return pulumi.get(self, "region")
|
|
132
|
+
|
|
133
|
+
@property
|
|
134
|
+
@pulumi.getter
|
|
135
|
+
def tags(self) -> Sequence[str]:
|
|
136
|
+
return pulumi.get(self, "tags")
|
|
137
|
+
|
|
138
|
+
@property
|
|
139
|
+
@pulumi.getter(name="updatedAt")
|
|
140
|
+
def updated_at(self) -> str:
|
|
141
|
+
return pulumi.get(self, "updated_at")
|
|
142
|
+
|
|
143
|
+
@property
|
|
144
|
+
@pulumi.getter(name="vpcId")
|
|
145
|
+
def vpc_id(self) -> Optional[str]:
|
|
146
|
+
return pulumi.get(self, "vpc_id")
|
|
147
|
+
|
|
148
|
+
@property
|
|
149
|
+
@pulumi.getter
|
|
150
|
+
def zone(self) -> str:
|
|
151
|
+
return pulumi.get(self, "zone")
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
class AwaitableGetVpcPrivateNetworkResult(GetVpcPrivateNetworkResult):
|
|
155
|
+
# pylint: disable=using-constant-test
|
|
156
|
+
def __await__(self):
|
|
157
|
+
if False:
|
|
158
|
+
yield self
|
|
159
|
+
return GetVpcPrivateNetworkResult(
|
|
160
|
+
created_at=self.created_at,
|
|
161
|
+
id=self.id,
|
|
162
|
+
ipv4_subnets=self.ipv4_subnets,
|
|
163
|
+
ipv6_subnets=self.ipv6_subnets,
|
|
164
|
+
is_regional=self.is_regional,
|
|
165
|
+
name=self.name,
|
|
166
|
+
organization_id=self.organization_id,
|
|
167
|
+
private_network_id=self.private_network_id,
|
|
168
|
+
project_id=self.project_id,
|
|
169
|
+
region=self.region,
|
|
170
|
+
tags=self.tags,
|
|
171
|
+
updated_at=self.updated_at,
|
|
172
|
+
vpc_id=self.vpc_id,
|
|
173
|
+
zone=self.zone)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
def get_vpc_private_network(name: Optional[str] = None,
|
|
177
|
+
private_network_id: Optional[str] = None,
|
|
178
|
+
project_id: Optional[str] = None,
|
|
179
|
+
region: Optional[str] = None,
|
|
180
|
+
vpc_id: Optional[str] = None,
|
|
181
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcPrivateNetworkResult:
|
|
182
|
+
"""
|
|
183
|
+
Gets information about a Private Network.
|
|
184
|
+
|
|
185
|
+
## Example Usage
|
|
186
|
+
|
|
187
|
+
```python
|
|
188
|
+
import pulumi
|
|
189
|
+
import pulumi_scaleway as scaleway
|
|
190
|
+
|
|
191
|
+
# Get info by name
|
|
192
|
+
my_name = scaleway.get_vpc_private_network(name="foobar")
|
|
193
|
+
# Get info by name and VPC ID
|
|
194
|
+
my_name_and_vpc_id = scaleway.get_vpc_private_network(name="foobar",
|
|
195
|
+
vpc_id="11111111-1111-1111-1111-111111111111")
|
|
196
|
+
# Get info by IP ID
|
|
197
|
+
my_id = scaleway.get_vpc_private_network(private_network_id="11111111-1111-1111-1111-111111111111")
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
:param str name: Name of the Private Network. Cannot be used with `private_network_id`.
|
|
202
|
+
:param str private_network_id: ID of the Private Network. Cannot be used with `name` or `vpc_id`.
|
|
203
|
+
:param str project_id: The ID of the Project the Private Network is associated with.
|
|
204
|
+
:param str vpc_id: ID of the VPC the Private Network is in. Cannot be used with `private_network_id`.
|
|
205
|
+
"""
|
|
206
|
+
__args__ = dict()
|
|
207
|
+
__args__['name'] = name
|
|
208
|
+
__args__['privateNetworkId'] = private_network_id
|
|
209
|
+
__args__['projectId'] = project_id
|
|
210
|
+
__args__['region'] = region
|
|
211
|
+
__args__['vpcId'] = vpc_id
|
|
212
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
213
|
+
__ret__ = pulumi.runtime.invoke('scaleway:index/getVpcPrivateNetwork:getVpcPrivateNetwork', __args__, opts=opts, typ=GetVpcPrivateNetworkResult).value
|
|
214
|
+
|
|
215
|
+
return AwaitableGetVpcPrivateNetworkResult(
|
|
216
|
+
created_at=pulumi.get(__ret__, 'created_at'),
|
|
217
|
+
id=pulumi.get(__ret__, 'id'),
|
|
218
|
+
ipv4_subnets=pulumi.get(__ret__, 'ipv4_subnets'),
|
|
219
|
+
ipv6_subnets=pulumi.get(__ret__, 'ipv6_subnets'),
|
|
220
|
+
is_regional=pulumi.get(__ret__, 'is_regional'),
|
|
221
|
+
name=pulumi.get(__ret__, 'name'),
|
|
222
|
+
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
223
|
+
private_network_id=pulumi.get(__ret__, 'private_network_id'),
|
|
224
|
+
project_id=pulumi.get(__ret__, 'project_id'),
|
|
225
|
+
region=pulumi.get(__ret__, 'region'),
|
|
226
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
227
|
+
updated_at=pulumi.get(__ret__, 'updated_at'),
|
|
228
|
+
vpc_id=pulumi.get(__ret__, 'vpc_id'),
|
|
229
|
+
zone=pulumi.get(__ret__, 'zone'))
|
|
230
|
+
def get_vpc_private_network_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
231
|
+
private_network_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
232
|
+
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
233
|
+
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
234
|
+
vpc_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
235
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetVpcPrivateNetworkResult]:
|
|
236
|
+
"""
|
|
237
|
+
Gets information about a Private Network.
|
|
238
|
+
|
|
239
|
+
## Example Usage
|
|
240
|
+
|
|
241
|
+
```python
|
|
242
|
+
import pulumi
|
|
243
|
+
import pulumi_scaleway as scaleway
|
|
244
|
+
|
|
245
|
+
# Get info by name
|
|
246
|
+
my_name = scaleway.get_vpc_private_network(name="foobar")
|
|
247
|
+
# Get info by name and VPC ID
|
|
248
|
+
my_name_and_vpc_id = scaleway.get_vpc_private_network(name="foobar",
|
|
249
|
+
vpc_id="11111111-1111-1111-1111-111111111111")
|
|
250
|
+
# Get info by IP ID
|
|
251
|
+
my_id = scaleway.get_vpc_private_network(private_network_id="11111111-1111-1111-1111-111111111111")
|
|
252
|
+
```
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
:param str name: Name of the Private Network. Cannot be used with `private_network_id`.
|
|
256
|
+
:param str private_network_id: ID of the Private Network. Cannot be used with `name` or `vpc_id`.
|
|
257
|
+
:param str project_id: The ID of the Project the Private Network is associated with.
|
|
258
|
+
:param str vpc_id: ID of the VPC the Private Network is in. Cannot be used with `private_network_id`.
|
|
259
|
+
"""
|
|
260
|
+
__args__ = dict()
|
|
261
|
+
__args__['name'] = name
|
|
262
|
+
__args__['privateNetworkId'] = private_network_id
|
|
263
|
+
__args__['projectId'] = project_id
|
|
264
|
+
__args__['region'] = region
|
|
265
|
+
__args__['vpcId'] = vpc_id
|
|
266
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
267
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getVpcPrivateNetwork:getVpcPrivateNetwork', __args__, opts=opts, typ=GetVpcPrivateNetworkResult)
|
|
268
|
+
return __ret__.apply(lambda __response__: GetVpcPrivateNetworkResult(
|
|
269
|
+
created_at=pulumi.get(__response__, 'created_at'),
|
|
270
|
+
id=pulumi.get(__response__, 'id'),
|
|
271
|
+
ipv4_subnets=pulumi.get(__response__, 'ipv4_subnets'),
|
|
272
|
+
ipv6_subnets=pulumi.get(__response__, 'ipv6_subnets'),
|
|
273
|
+
is_regional=pulumi.get(__response__, 'is_regional'),
|
|
274
|
+
name=pulumi.get(__response__, 'name'),
|
|
275
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
276
|
+
private_network_id=pulumi.get(__response__, 'private_network_id'),
|
|
277
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
278
|
+
region=pulumi.get(__response__, 'region'),
|
|
279
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
280
|
+
updated_at=pulumi.get(__response__, 'updated_at'),
|
|
281
|
+
vpc_id=pulumi.get(__response__, 'vpc_id'),
|
|
282
|
+
zone=pulumi.get(__response__, 'zone')))
|
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from . import _utilities
|
|
16
|
+
|
|
17
|
+
__all__ = [
|
|
18
|
+
'GetVpcPublicGatewayResult',
|
|
19
|
+
'AwaitableGetVpcPublicGatewayResult',
|
|
20
|
+
'get_vpc_public_gateway',
|
|
21
|
+
'get_vpc_public_gateway_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetVpcPublicGatewayResult:
|
|
26
|
+
"""
|
|
27
|
+
A collection of values returned by getVpcPublicGateway.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, bastion_enabled=None, bastion_port=None, created_at=None, enable_smtp=None, id=None, ip_id=None, name=None, organization_id=None, project_id=None, public_gateway_id=None, refresh_ssh_keys=None, status=None, tags=None, type=None, updated_at=None, upstream_dns_servers=None, zone=None):
|
|
30
|
+
if bastion_enabled and not isinstance(bastion_enabled, bool):
|
|
31
|
+
raise TypeError("Expected argument 'bastion_enabled' to be a bool")
|
|
32
|
+
pulumi.set(__self__, "bastion_enabled", bastion_enabled)
|
|
33
|
+
if bastion_port and not isinstance(bastion_port, int):
|
|
34
|
+
raise TypeError("Expected argument 'bastion_port' to be a int")
|
|
35
|
+
pulumi.set(__self__, "bastion_port", bastion_port)
|
|
36
|
+
if created_at and not isinstance(created_at, str):
|
|
37
|
+
raise TypeError("Expected argument 'created_at' to be a str")
|
|
38
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
39
|
+
if enable_smtp and not isinstance(enable_smtp, bool):
|
|
40
|
+
raise TypeError("Expected argument 'enable_smtp' to be a bool")
|
|
41
|
+
pulumi.set(__self__, "enable_smtp", enable_smtp)
|
|
42
|
+
if id and not isinstance(id, str):
|
|
43
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
44
|
+
pulumi.set(__self__, "id", id)
|
|
45
|
+
if ip_id and not isinstance(ip_id, str):
|
|
46
|
+
raise TypeError("Expected argument 'ip_id' to be a str")
|
|
47
|
+
pulumi.set(__self__, "ip_id", ip_id)
|
|
48
|
+
if name and not isinstance(name, str):
|
|
49
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
50
|
+
pulumi.set(__self__, "name", name)
|
|
51
|
+
if organization_id and not isinstance(organization_id, str):
|
|
52
|
+
raise TypeError("Expected argument 'organization_id' to be a str")
|
|
53
|
+
pulumi.set(__self__, "organization_id", organization_id)
|
|
54
|
+
if project_id and not isinstance(project_id, str):
|
|
55
|
+
raise TypeError("Expected argument 'project_id' to be a str")
|
|
56
|
+
pulumi.set(__self__, "project_id", project_id)
|
|
57
|
+
if public_gateway_id and not isinstance(public_gateway_id, str):
|
|
58
|
+
raise TypeError("Expected argument 'public_gateway_id' to be a str")
|
|
59
|
+
pulumi.set(__self__, "public_gateway_id", public_gateway_id)
|
|
60
|
+
if refresh_ssh_keys and not isinstance(refresh_ssh_keys, str):
|
|
61
|
+
raise TypeError("Expected argument 'refresh_ssh_keys' to be a str")
|
|
62
|
+
pulumi.set(__self__, "refresh_ssh_keys", refresh_ssh_keys)
|
|
63
|
+
if status and not isinstance(status, str):
|
|
64
|
+
raise TypeError("Expected argument 'status' to be a str")
|
|
65
|
+
pulumi.set(__self__, "status", status)
|
|
66
|
+
if tags and not isinstance(tags, list):
|
|
67
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
|
68
|
+
pulumi.set(__self__, "tags", tags)
|
|
69
|
+
if type and not isinstance(type, str):
|
|
70
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
71
|
+
pulumi.set(__self__, "type", type)
|
|
72
|
+
if updated_at and not isinstance(updated_at, str):
|
|
73
|
+
raise TypeError("Expected argument 'updated_at' to be a str")
|
|
74
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
|
75
|
+
if upstream_dns_servers and not isinstance(upstream_dns_servers, list):
|
|
76
|
+
raise TypeError("Expected argument 'upstream_dns_servers' to be a list")
|
|
77
|
+
pulumi.set(__self__, "upstream_dns_servers", upstream_dns_servers)
|
|
78
|
+
if zone and not isinstance(zone, str):
|
|
79
|
+
raise TypeError("Expected argument 'zone' to be a str")
|
|
80
|
+
pulumi.set(__self__, "zone", zone)
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter(name="bastionEnabled")
|
|
84
|
+
def bastion_enabled(self) -> bool:
|
|
85
|
+
return pulumi.get(self, "bastion_enabled")
|
|
86
|
+
|
|
87
|
+
@property
|
|
88
|
+
@pulumi.getter(name="bastionPort")
|
|
89
|
+
def bastion_port(self) -> int:
|
|
90
|
+
return pulumi.get(self, "bastion_port")
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
@pulumi.getter(name="createdAt")
|
|
94
|
+
def created_at(self) -> str:
|
|
95
|
+
return pulumi.get(self, "created_at")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter(name="enableSmtp")
|
|
99
|
+
def enable_smtp(self) -> bool:
|
|
100
|
+
return pulumi.get(self, "enable_smtp")
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter
|
|
104
|
+
def id(self) -> str:
|
|
105
|
+
"""
|
|
106
|
+
The provider-assigned unique ID for this managed resource.
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "id")
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter(name="ipId")
|
|
112
|
+
def ip_id(self) -> str:
|
|
113
|
+
return pulumi.get(self, "ip_id")
|
|
114
|
+
|
|
115
|
+
@property
|
|
116
|
+
@pulumi.getter
|
|
117
|
+
def name(self) -> Optional[str]:
|
|
118
|
+
return pulumi.get(self, "name")
|
|
119
|
+
|
|
120
|
+
@property
|
|
121
|
+
@pulumi.getter(name="organizationId")
|
|
122
|
+
def organization_id(self) -> str:
|
|
123
|
+
return pulumi.get(self, "organization_id")
|
|
124
|
+
|
|
125
|
+
@property
|
|
126
|
+
@pulumi.getter(name="projectId")
|
|
127
|
+
def project_id(self) -> Optional[str]:
|
|
128
|
+
return pulumi.get(self, "project_id")
|
|
129
|
+
|
|
130
|
+
@property
|
|
131
|
+
@pulumi.getter(name="publicGatewayId")
|
|
132
|
+
def public_gateway_id(self) -> Optional[str]:
|
|
133
|
+
return pulumi.get(self, "public_gateway_id")
|
|
134
|
+
|
|
135
|
+
@property
|
|
136
|
+
@pulumi.getter(name="refreshSshKeys")
|
|
137
|
+
def refresh_ssh_keys(self) -> str:
|
|
138
|
+
return pulumi.get(self, "refresh_ssh_keys")
|
|
139
|
+
|
|
140
|
+
@property
|
|
141
|
+
@pulumi.getter
|
|
142
|
+
def status(self) -> str:
|
|
143
|
+
return pulumi.get(self, "status")
|
|
144
|
+
|
|
145
|
+
@property
|
|
146
|
+
@pulumi.getter
|
|
147
|
+
def tags(self) -> Sequence[str]:
|
|
148
|
+
return pulumi.get(self, "tags")
|
|
149
|
+
|
|
150
|
+
@property
|
|
151
|
+
@pulumi.getter
|
|
152
|
+
def type(self) -> str:
|
|
153
|
+
return pulumi.get(self, "type")
|
|
154
|
+
|
|
155
|
+
@property
|
|
156
|
+
@pulumi.getter(name="updatedAt")
|
|
157
|
+
def updated_at(self) -> str:
|
|
158
|
+
return pulumi.get(self, "updated_at")
|
|
159
|
+
|
|
160
|
+
@property
|
|
161
|
+
@pulumi.getter(name="upstreamDnsServers")
|
|
162
|
+
def upstream_dns_servers(self) -> Sequence[str]:
|
|
163
|
+
return pulumi.get(self, "upstream_dns_servers")
|
|
164
|
+
|
|
165
|
+
@property
|
|
166
|
+
@pulumi.getter
|
|
167
|
+
def zone(self) -> Optional[str]:
|
|
168
|
+
return pulumi.get(self, "zone")
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
class AwaitableGetVpcPublicGatewayResult(GetVpcPublicGatewayResult):
|
|
172
|
+
# pylint: disable=using-constant-test
|
|
173
|
+
def __await__(self):
|
|
174
|
+
if False:
|
|
175
|
+
yield self
|
|
176
|
+
return GetVpcPublicGatewayResult(
|
|
177
|
+
bastion_enabled=self.bastion_enabled,
|
|
178
|
+
bastion_port=self.bastion_port,
|
|
179
|
+
created_at=self.created_at,
|
|
180
|
+
enable_smtp=self.enable_smtp,
|
|
181
|
+
id=self.id,
|
|
182
|
+
ip_id=self.ip_id,
|
|
183
|
+
name=self.name,
|
|
184
|
+
organization_id=self.organization_id,
|
|
185
|
+
project_id=self.project_id,
|
|
186
|
+
public_gateway_id=self.public_gateway_id,
|
|
187
|
+
refresh_ssh_keys=self.refresh_ssh_keys,
|
|
188
|
+
status=self.status,
|
|
189
|
+
tags=self.tags,
|
|
190
|
+
type=self.type,
|
|
191
|
+
updated_at=self.updated_at,
|
|
192
|
+
upstream_dns_servers=self.upstream_dns_servers,
|
|
193
|
+
zone=self.zone)
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
def get_vpc_public_gateway(name: Optional[str] = None,
|
|
197
|
+
project_id: Optional[str] = None,
|
|
198
|
+
public_gateway_id: Optional[str] = None,
|
|
199
|
+
zone: Optional[str] = None,
|
|
200
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcPublicGatewayResult:
|
|
201
|
+
"""
|
|
202
|
+
Gets information about a Public Gateway.
|
|
203
|
+
|
|
204
|
+
## Example Usage
|
|
205
|
+
|
|
206
|
+
```python
|
|
207
|
+
import pulumi
|
|
208
|
+
import pulumi_scaleway as scaleway
|
|
209
|
+
import pulumiverse_scaleway as scaleway
|
|
210
|
+
|
|
211
|
+
main = scaleway.VpcPublicGateway("main",
|
|
212
|
+
name="demo",
|
|
213
|
+
type="VPC-GW-S",
|
|
214
|
+
zone="nl-ams-1")
|
|
215
|
+
pg_test_by_name = scaleway.get_vpc_public_gateway_output(name=main.name,
|
|
216
|
+
zone="nl-ams-1")
|
|
217
|
+
pg_test_by_id = scaleway.get_vpc_public_gateway_output(public_gateway_id=main.id)
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
:param str name: Exact name of the Public Gateway.
|
|
222
|
+
:param str project_id: The ID of the Project the Public Gateway is associated with.
|
|
223
|
+
:param str zone: `zone`) The Public Gateway's zone.
|
|
224
|
+
"""
|
|
225
|
+
__args__ = dict()
|
|
226
|
+
__args__['name'] = name
|
|
227
|
+
__args__['projectId'] = project_id
|
|
228
|
+
__args__['publicGatewayId'] = public_gateway_id
|
|
229
|
+
__args__['zone'] = zone
|
|
230
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
231
|
+
__ret__ = pulumi.runtime.invoke('scaleway:index/getVpcPublicGateway:getVpcPublicGateway', __args__, opts=opts, typ=GetVpcPublicGatewayResult).value
|
|
232
|
+
|
|
233
|
+
return AwaitableGetVpcPublicGatewayResult(
|
|
234
|
+
bastion_enabled=pulumi.get(__ret__, 'bastion_enabled'),
|
|
235
|
+
bastion_port=pulumi.get(__ret__, 'bastion_port'),
|
|
236
|
+
created_at=pulumi.get(__ret__, 'created_at'),
|
|
237
|
+
enable_smtp=pulumi.get(__ret__, 'enable_smtp'),
|
|
238
|
+
id=pulumi.get(__ret__, 'id'),
|
|
239
|
+
ip_id=pulumi.get(__ret__, 'ip_id'),
|
|
240
|
+
name=pulumi.get(__ret__, 'name'),
|
|
241
|
+
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
242
|
+
project_id=pulumi.get(__ret__, 'project_id'),
|
|
243
|
+
public_gateway_id=pulumi.get(__ret__, 'public_gateway_id'),
|
|
244
|
+
refresh_ssh_keys=pulumi.get(__ret__, 'refresh_ssh_keys'),
|
|
245
|
+
status=pulumi.get(__ret__, 'status'),
|
|
246
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
247
|
+
type=pulumi.get(__ret__, 'type'),
|
|
248
|
+
updated_at=pulumi.get(__ret__, 'updated_at'),
|
|
249
|
+
upstream_dns_servers=pulumi.get(__ret__, 'upstream_dns_servers'),
|
|
250
|
+
zone=pulumi.get(__ret__, 'zone'))
|
|
251
|
+
def get_vpc_public_gateway_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
252
|
+
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
253
|
+
public_gateway_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
254
|
+
zone: Optional[pulumi.Input[Optional[str]]] = None,
|
|
255
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetVpcPublicGatewayResult]:
|
|
256
|
+
"""
|
|
257
|
+
Gets information about a Public Gateway.
|
|
258
|
+
|
|
259
|
+
## Example Usage
|
|
260
|
+
|
|
261
|
+
```python
|
|
262
|
+
import pulumi
|
|
263
|
+
import pulumi_scaleway as scaleway
|
|
264
|
+
import pulumiverse_scaleway as scaleway
|
|
265
|
+
|
|
266
|
+
main = scaleway.VpcPublicGateway("main",
|
|
267
|
+
name="demo",
|
|
268
|
+
type="VPC-GW-S",
|
|
269
|
+
zone="nl-ams-1")
|
|
270
|
+
pg_test_by_name = scaleway.get_vpc_public_gateway_output(name=main.name,
|
|
271
|
+
zone="nl-ams-1")
|
|
272
|
+
pg_test_by_id = scaleway.get_vpc_public_gateway_output(public_gateway_id=main.id)
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
:param str name: Exact name of the Public Gateway.
|
|
277
|
+
:param str project_id: The ID of the Project the Public Gateway is associated with.
|
|
278
|
+
:param str zone: `zone`) The Public Gateway's zone.
|
|
279
|
+
"""
|
|
280
|
+
__args__ = dict()
|
|
281
|
+
__args__['name'] = name
|
|
282
|
+
__args__['projectId'] = project_id
|
|
283
|
+
__args__['publicGatewayId'] = public_gateway_id
|
|
284
|
+
__args__['zone'] = zone
|
|
285
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
286
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getVpcPublicGateway:getVpcPublicGateway', __args__, opts=opts, typ=GetVpcPublicGatewayResult)
|
|
287
|
+
return __ret__.apply(lambda __response__: GetVpcPublicGatewayResult(
|
|
288
|
+
bastion_enabled=pulumi.get(__response__, 'bastion_enabled'),
|
|
289
|
+
bastion_port=pulumi.get(__response__, 'bastion_port'),
|
|
290
|
+
created_at=pulumi.get(__response__, 'created_at'),
|
|
291
|
+
enable_smtp=pulumi.get(__response__, 'enable_smtp'),
|
|
292
|
+
id=pulumi.get(__response__, 'id'),
|
|
293
|
+
ip_id=pulumi.get(__response__, 'ip_id'),
|
|
294
|
+
name=pulumi.get(__response__, 'name'),
|
|
295
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
296
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
297
|
+
public_gateway_id=pulumi.get(__response__, 'public_gateway_id'),
|
|
298
|
+
refresh_ssh_keys=pulumi.get(__response__, 'refresh_ssh_keys'),
|
|
299
|
+
status=pulumi.get(__response__, 'status'),
|
|
300
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
301
|
+
type=pulumi.get(__response__, 'type'),
|
|
302
|
+
updated_at=pulumi.get(__response__, 'updated_at'),
|
|
303
|
+
upstream_dns_servers=pulumi.get(__response__, 'upstream_dns_servers'),
|
|
304
|
+
zone=pulumi.get(__response__, 'zone')))
|