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,198 @@
|
|
|
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
|
+
'GetDocumentdbLoadBalancerEndpointResult',
|
|
19
|
+
'AwaitableGetDocumentdbLoadBalancerEndpointResult',
|
|
20
|
+
'get_documentdb_load_balancer_endpoint',
|
|
21
|
+
'get_documentdb_load_balancer_endpoint_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetDocumentdbLoadBalancerEndpointResult:
|
|
26
|
+
"""
|
|
27
|
+
A collection of values returned by getDocumentdbLoadBalancerEndpoint.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, hostname=None, id=None, instance_id=None, instance_name=None, ip=None, name=None, port=None, project_id=None, region=None):
|
|
30
|
+
if hostname and not isinstance(hostname, str):
|
|
31
|
+
raise TypeError("Expected argument 'hostname' to be a str")
|
|
32
|
+
pulumi.set(__self__, "hostname", hostname)
|
|
33
|
+
if id and not isinstance(id, str):
|
|
34
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
35
|
+
pulumi.set(__self__, "id", id)
|
|
36
|
+
if instance_id and not isinstance(instance_id, str):
|
|
37
|
+
raise TypeError("Expected argument 'instance_id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "instance_id", instance_id)
|
|
39
|
+
if instance_name and not isinstance(instance_name, str):
|
|
40
|
+
raise TypeError("Expected argument 'instance_name' to be a str")
|
|
41
|
+
pulumi.set(__self__, "instance_name", instance_name)
|
|
42
|
+
if ip and not isinstance(ip, str):
|
|
43
|
+
raise TypeError("Expected argument 'ip' to be a str")
|
|
44
|
+
pulumi.set(__self__, "ip", ip)
|
|
45
|
+
if name and not isinstance(name, str):
|
|
46
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
47
|
+
pulumi.set(__self__, "name", name)
|
|
48
|
+
if port and not isinstance(port, int):
|
|
49
|
+
raise TypeError("Expected argument 'port' to be a int")
|
|
50
|
+
pulumi.set(__self__, "port", port)
|
|
51
|
+
if project_id and not isinstance(project_id, str):
|
|
52
|
+
raise TypeError("Expected argument 'project_id' to be a str")
|
|
53
|
+
pulumi.set(__self__, "project_id", project_id)
|
|
54
|
+
if region and not isinstance(region, str):
|
|
55
|
+
raise TypeError("Expected argument 'region' to be a str")
|
|
56
|
+
pulumi.set(__self__, "region", region)
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@pulumi.getter
|
|
60
|
+
def hostname(self) -> str:
|
|
61
|
+
"""
|
|
62
|
+
The hostname of your endpoint.
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "hostname")
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@pulumi.getter
|
|
68
|
+
def id(self) -> str:
|
|
69
|
+
"""
|
|
70
|
+
The provider-assigned unique ID for this managed resource.
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "id")
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter(name="instanceId")
|
|
76
|
+
def instance_id(self) -> str:
|
|
77
|
+
return pulumi.get(self, "instance_id")
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
@pulumi.getter(name="instanceName")
|
|
81
|
+
def instance_name(self) -> str:
|
|
82
|
+
return pulumi.get(self, "instance_name")
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
@pulumi.getter
|
|
86
|
+
def ip(self) -> str:
|
|
87
|
+
"""
|
|
88
|
+
The IP of your load balancer service.
|
|
89
|
+
"""
|
|
90
|
+
return pulumi.get(self, "ip")
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
@pulumi.getter
|
|
94
|
+
def name(self) -> str:
|
|
95
|
+
"""
|
|
96
|
+
The name of your load balancer service.
|
|
97
|
+
"""
|
|
98
|
+
return pulumi.get(self, "name")
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
@pulumi.getter
|
|
102
|
+
def port(self) -> int:
|
|
103
|
+
"""
|
|
104
|
+
The port of your load balancer service.
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "port")
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
@pulumi.getter(name="projectId")
|
|
110
|
+
def project_id(self) -> str:
|
|
111
|
+
return pulumi.get(self, "project_id")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter
|
|
115
|
+
def region(self) -> str:
|
|
116
|
+
return pulumi.get(self, "region")
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
class AwaitableGetDocumentdbLoadBalancerEndpointResult(GetDocumentdbLoadBalancerEndpointResult):
|
|
120
|
+
# pylint: disable=using-constant-test
|
|
121
|
+
def __await__(self):
|
|
122
|
+
if False:
|
|
123
|
+
yield self
|
|
124
|
+
return GetDocumentdbLoadBalancerEndpointResult(
|
|
125
|
+
hostname=self.hostname,
|
|
126
|
+
id=self.id,
|
|
127
|
+
instance_id=self.instance_id,
|
|
128
|
+
instance_name=self.instance_name,
|
|
129
|
+
ip=self.ip,
|
|
130
|
+
name=self.name,
|
|
131
|
+
port=self.port,
|
|
132
|
+
project_id=self.project_id,
|
|
133
|
+
region=self.region)
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
def get_documentdb_load_balancer_endpoint(instance_id: Optional[str] = None,
|
|
137
|
+
instance_name: Optional[str] = None,
|
|
138
|
+
project_id: Optional[str] = None,
|
|
139
|
+
region: Optional[str] = None,
|
|
140
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDocumentdbLoadBalancerEndpointResult:
|
|
141
|
+
"""
|
|
142
|
+
Gets information about an DocumentDB load balancer endpoint.
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
:param str instance_id: The DocumentDB Instance on which the endpoint is attached. Only one of `instance_name` and `instance_id` should be specified.
|
|
146
|
+
:param str instance_name: The DocumentDB Instance Name on which the endpoint is attached. Only one of `instance_name` and `instance_id` should be specified.
|
|
147
|
+
:param str project_id: The ID of the project the DocumentDB endpoint is associated with.
|
|
148
|
+
:param str region: `region`) The region in which the DocumentDB endpoint exists.
|
|
149
|
+
"""
|
|
150
|
+
__args__ = dict()
|
|
151
|
+
__args__['instanceId'] = instance_id
|
|
152
|
+
__args__['instanceName'] = instance_name
|
|
153
|
+
__args__['projectId'] = project_id
|
|
154
|
+
__args__['region'] = region
|
|
155
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
156
|
+
__ret__ = pulumi.runtime.invoke('scaleway:index/getDocumentdbLoadBalancerEndpoint:getDocumentdbLoadBalancerEndpoint', __args__, opts=opts, typ=GetDocumentdbLoadBalancerEndpointResult).value
|
|
157
|
+
|
|
158
|
+
return AwaitableGetDocumentdbLoadBalancerEndpointResult(
|
|
159
|
+
hostname=pulumi.get(__ret__, 'hostname'),
|
|
160
|
+
id=pulumi.get(__ret__, 'id'),
|
|
161
|
+
instance_id=pulumi.get(__ret__, 'instance_id'),
|
|
162
|
+
instance_name=pulumi.get(__ret__, 'instance_name'),
|
|
163
|
+
ip=pulumi.get(__ret__, 'ip'),
|
|
164
|
+
name=pulumi.get(__ret__, 'name'),
|
|
165
|
+
port=pulumi.get(__ret__, 'port'),
|
|
166
|
+
project_id=pulumi.get(__ret__, 'project_id'),
|
|
167
|
+
region=pulumi.get(__ret__, 'region'))
|
|
168
|
+
def get_documentdb_load_balancer_endpoint_output(instance_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
169
|
+
instance_name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
170
|
+
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
171
|
+
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
172
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDocumentdbLoadBalancerEndpointResult]:
|
|
173
|
+
"""
|
|
174
|
+
Gets information about an DocumentDB load balancer endpoint.
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
:param str instance_id: The DocumentDB Instance on which the endpoint is attached. Only one of `instance_name` and `instance_id` should be specified.
|
|
178
|
+
:param str instance_name: The DocumentDB Instance Name on which the endpoint is attached. Only one of `instance_name` and `instance_id` should be specified.
|
|
179
|
+
:param str project_id: The ID of the project the DocumentDB endpoint is associated with.
|
|
180
|
+
:param str region: `region`) The region in which the DocumentDB endpoint exists.
|
|
181
|
+
"""
|
|
182
|
+
__args__ = dict()
|
|
183
|
+
__args__['instanceId'] = instance_id
|
|
184
|
+
__args__['instanceName'] = instance_name
|
|
185
|
+
__args__['projectId'] = project_id
|
|
186
|
+
__args__['region'] = region
|
|
187
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
188
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getDocumentdbLoadBalancerEndpoint:getDocumentdbLoadBalancerEndpoint', __args__, opts=opts, typ=GetDocumentdbLoadBalancerEndpointResult)
|
|
189
|
+
return __ret__.apply(lambda __response__: GetDocumentdbLoadBalancerEndpointResult(
|
|
190
|
+
hostname=pulumi.get(__response__, 'hostname'),
|
|
191
|
+
id=pulumi.get(__response__, 'id'),
|
|
192
|
+
instance_id=pulumi.get(__response__, 'instance_id'),
|
|
193
|
+
instance_name=pulumi.get(__response__, 'instance_name'),
|
|
194
|
+
ip=pulumi.get(__response__, 'ip'),
|
|
195
|
+
name=pulumi.get(__response__, 'name'),
|
|
196
|
+
port=pulumi.get(__response__, 'port'),
|
|
197
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
198
|
+
region=pulumi.get(__response__, 'region')))
|
|
@@ -0,0 +1,334 @@
|
|
|
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
|
+
'GetDomainRecordResult',
|
|
20
|
+
'AwaitableGetDomainRecordResult',
|
|
21
|
+
'get_domain_record',
|
|
22
|
+
'get_domain_record_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetDomainRecordResult:
|
|
27
|
+
"""
|
|
28
|
+
A collection of values returned by getDomainRecord.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, data=None, dns_zone=None, fqdn=None, geo_ips=None, http_services=None, id=None, keep_empty_zone=None, name=None, priority=None, project_id=None, record_id=None, root_zone=None, ttl=None, type=None, views=None, weighteds=None):
|
|
31
|
+
if data and not isinstance(data, str):
|
|
32
|
+
raise TypeError("Expected argument 'data' to be a str")
|
|
33
|
+
pulumi.set(__self__, "data", data)
|
|
34
|
+
if dns_zone and not isinstance(dns_zone, str):
|
|
35
|
+
raise TypeError("Expected argument 'dns_zone' to be a str")
|
|
36
|
+
pulumi.set(__self__, "dns_zone", dns_zone)
|
|
37
|
+
if fqdn and not isinstance(fqdn, str):
|
|
38
|
+
raise TypeError("Expected argument 'fqdn' to be a str")
|
|
39
|
+
pulumi.set(__self__, "fqdn", fqdn)
|
|
40
|
+
if geo_ips and not isinstance(geo_ips, list):
|
|
41
|
+
raise TypeError("Expected argument 'geo_ips' to be a list")
|
|
42
|
+
pulumi.set(__self__, "geo_ips", geo_ips)
|
|
43
|
+
if http_services and not isinstance(http_services, list):
|
|
44
|
+
raise TypeError("Expected argument 'http_services' to be a list")
|
|
45
|
+
pulumi.set(__self__, "http_services", http_services)
|
|
46
|
+
if id and not isinstance(id, str):
|
|
47
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
48
|
+
pulumi.set(__self__, "id", id)
|
|
49
|
+
if keep_empty_zone and not isinstance(keep_empty_zone, bool):
|
|
50
|
+
raise TypeError("Expected argument 'keep_empty_zone' to be a bool")
|
|
51
|
+
pulumi.set(__self__, "keep_empty_zone", keep_empty_zone)
|
|
52
|
+
if name and not isinstance(name, str):
|
|
53
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
54
|
+
pulumi.set(__self__, "name", name)
|
|
55
|
+
if priority and not isinstance(priority, int):
|
|
56
|
+
raise TypeError("Expected argument 'priority' to be a int")
|
|
57
|
+
pulumi.set(__self__, "priority", priority)
|
|
58
|
+
if project_id and not isinstance(project_id, str):
|
|
59
|
+
raise TypeError("Expected argument 'project_id' to be a str")
|
|
60
|
+
pulumi.set(__self__, "project_id", project_id)
|
|
61
|
+
if record_id and not isinstance(record_id, str):
|
|
62
|
+
raise TypeError("Expected argument 'record_id' to be a str")
|
|
63
|
+
pulumi.set(__self__, "record_id", record_id)
|
|
64
|
+
if root_zone and not isinstance(root_zone, bool):
|
|
65
|
+
raise TypeError("Expected argument 'root_zone' to be a bool")
|
|
66
|
+
pulumi.set(__self__, "root_zone", root_zone)
|
|
67
|
+
if ttl and not isinstance(ttl, int):
|
|
68
|
+
raise TypeError("Expected argument 'ttl' to be a int")
|
|
69
|
+
pulumi.set(__self__, "ttl", ttl)
|
|
70
|
+
if type and not isinstance(type, str):
|
|
71
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
72
|
+
pulumi.set(__self__, "type", type)
|
|
73
|
+
if views and not isinstance(views, list):
|
|
74
|
+
raise TypeError("Expected argument 'views' to be a list")
|
|
75
|
+
pulumi.set(__self__, "views", views)
|
|
76
|
+
if weighteds and not isinstance(weighteds, list):
|
|
77
|
+
raise TypeError("Expected argument 'weighteds' to be a list")
|
|
78
|
+
pulumi.set(__self__, "weighteds", weighteds)
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
@pulumi.getter
|
|
82
|
+
def data(self) -> Optional[str]:
|
|
83
|
+
return pulumi.get(self, "data")
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter(name="dnsZone")
|
|
87
|
+
def dns_zone(self) -> Optional[str]:
|
|
88
|
+
return pulumi.get(self, "dns_zone")
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
@pulumi.getter
|
|
92
|
+
def fqdn(self) -> str:
|
|
93
|
+
return pulumi.get(self, "fqdn")
|
|
94
|
+
|
|
95
|
+
@property
|
|
96
|
+
@pulumi.getter(name="geoIps")
|
|
97
|
+
def geo_ips(self) -> Sequence['outputs.GetDomainRecordGeoIpResult']:
|
|
98
|
+
"""
|
|
99
|
+
Dynamic record base on user geolocalisation (More information about dynamic records)
|
|
100
|
+
"""
|
|
101
|
+
return pulumi.get(self, "geo_ips")
|
|
102
|
+
|
|
103
|
+
@property
|
|
104
|
+
@pulumi.getter(name="httpServices")
|
|
105
|
+
def http_services(self) -> Sequence['outputs.GetDomainRecordHttpServiceResult']:
|
|
106
|
+
"""
|
|
107
|
+
Dynamic record base on URL resolve (More information about dynamic records)
|
|
108
|
+
"""
|
|
109
|
+
return pulumi.get(self, "http_services")
|
|
110
|
+
|
|
111
|
+
@property
|
|
112
|
+
@pulumi.getter
|
|
113
|
+
def id(self) -> str:
|
|
114
|
+
"""
|
|
115
|
+
The provider-assigned unique ID for this managed resource.
|
|
116
|
+
"""
|
|
117
|
+
return pulumi.get(self, "id")
|
|
118
|
+
|
|
119
|
+
@property
|
|
120
|
+
@pulumi.getter(name="keepEmptyZone")
|
|
121
|
+
def keep_empty_zone(self) -> bool:
|
|
122
|
+
return pulumi.get(self, "keep_empty_zone")
|
|
123
|
+
|
|
124
|
+
@property
|
|
125
|
+
@pulumi.getter
|
|
126
|
+
def name(self) -> Optional[str]:
|
|
127
|
+
return pulumi.get(self, "name")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter
|
|
131
|
+
def priority(self) -> int:
|
|
132
|
+
"""
|
|
133
|
+
The priority of the record (mostly used with an `MX` record)
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "priority")
|
|
136
|
+
|
|
137
|
+
@property
|
|
138
|
+
@pulumi.getter(name="projectId")
|
|
139
|
+
def project_id(self) -> Optional[str]:
|
|
140
|
+
return pulumi.get(self, "project_id")
|
|
141
|
+
|
|
142
|
+
@property
|
|
143
|
+
@pulumi.getter(name="recordId")
|
|
144
|
+
def record_id(self) -> Optional[str]:
|
|
145
|
+
return pulumi.get(self, "record_id")
|
|
146
|
+
|
|
147
|
+
@property
|
|
148
|
+
@pulumi.getter(name="rootZone")
|
|
149
|
+
def root_zone(self) -> bool:
|
|
150
|
+
return pulumi.get(self, "root_zone")
|
|
151
|
+
|
|
152
|
+
@property
|
|
153
|
+
@pulumi.getter
|
|
154
|
+
def ttl(self) -> int:
|
|
155
|
+
"""
|
|
156
|
+
Time To Live of the record in seconds.
|
|
157
|
+
"""
|
|
158
|
+
return pulumi.get(self, "ttl")
|
|
159
|
+
|
|
160
|
+
@property
|
|
161
|
+
@pulumi.getter
|
|
162
|
+
def type(self) -> Optional[str]:
|
|
163
|
+
return pulumi.get(self, "type")
|
|
164
|
+
|
|
165
|
+
@property
|
|
166
|
+
@pulumi.getter
|
|
167
|
+
def views(self) -> Sequence['outputs.GetDomainRecordViewResult']:
|
|
168
|
+
"""
|
|
169
|
+
Dynamic record based on the client’s (resolver) subnet (More information about dynamic records)
|
|
170
|
+
"""
|
|
171
|
+
return pulumi.get(self, "views")
|
|
172
|
+
|
|
173
|
+
@property
|
|
174
|
+
@pulumi.getter
|
|
175
|
+
def weighteds(self) -> Sequence['outputs.GetDomainRecordWeightedResult']:
|
|
176
|
+
"""
|
|
177
|
+
Dynamic record base on IP weights (More information about dynamic records)
|
|
178
|
+
"""
|
|
179
|
+
return pulumi.get(self, "weighteds")
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
class AwaitableGetDomainRecordResult(GetDomainRecordResult):
|
|
183
|
+
# pylint: disable=using-constant-test
|
|
184
|
+
def __await__(self):
|
|
185
|
+
if False:
|
|
186
|
+
yield self
|
|
187
|
+
return GetDomainRecordResult(
|
|
188
|
+
data=self.data,
|
|
189
|
+
dns_zone=self.dns_zone,
|
|
190
|
+
fqdn=self.fqdn,
|
|
191
|
+
geo_ips=self.geo_ips,
|
|
192
|
+
http_services=self.http_services,
|
|
193
|
+
id=self.id,
|
|
194
|
+
keep_empty_zone=self.keep_empty_zone,
|
|
195
|
+
name=self.name,
|
|
196
|
+
priority=self.priority,
|
|
197
|
+
project_id=self.project_id,
|
|
198
|
+
record_id=self.record_id,
|
|
199
|
+
root_zone=self.root_zone,
|
|
200
|
+
ttl=self.ttl,
|
|
201
|
+
type=self.type,
|
|
202
|
+
views=self.views,
|
|
203
|
+
weighteds=self.weighteds)
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
def get_domain_record(data: Optional[str] = None,
|
|
207
|
+
dns_zone: Optional[str] = None,
|
|
208
|
+
name: Optional[str] = None,
|
|
209
|
+
project_id: Optional[str] = None,
|
|
210
|
+
record_id: Optional[str] = None,
|
|
211
|
+
type: Optional[str] = None,
|
|
212
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDomainRecordResult:
|
|
213
|
+
"""
|
|
214
|
+
Gets information about a domain record.
|
|
215
|
+
|
|
216
|
+
## Example Usage
|
|
217
|
+
|
|
218
|
+
```python
|
|
219
|
+
import pulumi
|
|
220
|
+
import pulumi_scaleway as scaleway
|
|
221
|
+
|
|
222
|
+
# Get record by name, type and data
|
|
223
|
+
by_content = scaleway.get_domain_record(dns_zone="domain.tld",
|
|
224
|
+
name="www",
|
|
225
|
+
type="A",
|
|
226
|
+
data="1.2.3.4")
|
|
227
|
+
# Get info by ID
|
|
228
|
+
by_id = scaleway.get_domain_record(dns_zone="domain.tld",
|
|
229
|
+
record_id="11111111-1111-1111-1111-111111111111")
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
:param str data: The content of the record (an IPv4 for an `A`, a string for a `TXT`...).
|
|
234
|
+
Cannot be used with `record_id`.
|
|
235
|
+
:param str dns_zone: The IP address.
|
|
236
|
+
:param str name: The name of the record (can be an empty string for a root record).
|
|
237
|
+
Cannot be used with `record_id`.
|
|
238
|
+
:param str project_id: `project_id`) The ID of the project the domain is associated with.
|
|
239
|
+
:param str record_id: The record ID.
|
|
240
|
+
Cannot be used with `name`, `type` and `data`.
|
|
241
|
+
:param str type: The type of the record (`A`, `AAAA`, `MX`, `CNAME`, `DNAME`, `ALIAS`, `NS`, `PTR`, `SRV`, `TXT`, `TLSA`, or `CAA`).
|
|
242
|
+
Cannot be used with `record_id`.
|
|
243
|
+
"""
|
|
244
|
+
__args__ = dict()
|
|
245
|
+
__args__['data'] = data
|
|
246
|
+
__args__['dnsZone'] = dns_zone
|
|
247
|
+
__args__['name'] = name
|
|
248
|
+
__args__['projectId'] = project_id
|
|
249
|
+
__args__['recordId'] = record_id
|
|
250
|
+
__args__['type'] = type
|
|
251
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
252
|
+
__ret__ = pulumi.runtime.invoke('scaleway:index/getDomainRecord:getDomainRecord', __args__, opts=opts, typ=GetDomainRecordResult).value
|
|
253
|
+
|
|
254
|
+
return AwaitableGetDomainRecordResult(
|
|
255
|
+
data=pulumi.get(__ret__, 'data'),
|
|
256
|
+
dns_zone=pulumi.get(__ret__, 'dns_zone'),
|
|
257
|
+
fqdn=pulumi.get(__ret__, 'fqdn'),
|
|
258
|
+
geo_ips=pulumi.get(__ret__, 'geo_ips'),
|
|
259
|
+
http_services=pulumi.get(__ret__, 'http_services'),
|
|
260
|
+
id=pulumi.get(__ret__, 'id'),
|
|
261
|
+
keep_empty_zone=pulumi.get(__ret__, 'keep_empty_zone'),
|
|
262
|
+
name=pulumi.get(__ret__, 'name'),
|
|
263
|
+
priority=pulumi.get(__ret__, 'priority'),
|
|
264
|
+
project_id=pulumi.get(__ret__, 'project_id'),
|
|
265
|
+
record_id=pulumi.get(__ret__, 'record_id'),
|
|
266
|
+
root_zone=pulumi.get(__ret__, 'root_zone'),
|
|
267
|
+
ttl=pulumi.get(__ret__, 'ttl'),
|
|
268
|
+
type=pulumi.get(__ret__, 'type'),
|
|
269
|
+
views=pulumi.get(__ret__, 'views'),
|
|
270
|
+
weighteds=pulumi.get(__ret__, 'weighteds'))
|
|
271
|
+
def get_domain_record_output(data: Optional[pulumi.Input[Optional[str]]] = None,
|
|
272
|
+
dns_zone: Optional[pulumi.Input[Optional[str]]] = None,
|
|
273
|
+
name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
274
|
+
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
275
|
+
record_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
276
|
+
type: Optional[pulumi.Input[Optional[str]]] = None,
|
|
277
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDomainRecordResult]:
|
|
278
|
+
"""
|
|
279
|
+
Gets information about a domain record.
|
|
280
|
+
|
|
281
|
+
## Example Usage
|
|
282
|
+
|
|
283
|
+
```python
|
|
284
|
+
import pulumi
|
|
285
|
+
import pulumi_scaleway as scaleway
|
|
286
|
+
|
|
287
|
+
# Get record by name, type and data
|
|
288
|
+
by_content = scaleway.get_domain_record(dns_zone="domain.tld",
|
|
289
|
+
name="www",
|
|
290
|
+
type="A",
|
|
291
|
+
data="1.2.3.4")
|
|
292
|
+
# Get info by ID
|
|
293
|
+
by_id = scaleway.get_domain_record(dns_zone="domain.tld",
|
|
294
|
+
record_id="11111111-1111-1111-1111-111111111111")
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
:param str data: The content of the record (an IPv4 for an `A`, a string for a `TXT`...).
|
|
299
|
+
Cannot be used with `record_id`.
|
|
300
|
+
:param str dns_zone: The IP address.
|
|
301
|
+
:param str name: The name of the record (can be an empty string for a root record).
|
|
302
|
+
Cannot be used with `record_id`.
|
|
303
|
+
:param str project_id: `project_id`) The ID of the project the domain is associated with.
|
|
304
|
+
:param str record_id: The record ID.
|
|
305
|
+
Cannot be used with `name`, `type` and `data`.
|
|
306
|
+
:param str type: The type of the record (`A`, `AAAA`, `MX`, `CNAME`, `DNAME`, `ALIAS`, `NS`, `PTR`, `SRV`, `TXT`, `TLSA`, or `CAA`).
|
|
307
|
+
Cannot be used with `record_id`.
|
|
308
|
+
"""
|
|
309
|
+
__args__ = dict()
|
|
310
|
+
__args__['data'] = data
|
|
311
|
+
__args__['dnsZone'] = dns_zone
|
|
312
|
+
__args__['name'] = name
|
|
313
|
+
__args__['projectId'] = project_id
|
|
314
|
+
__args__['recordId'] = record_id
|
|
315
|
+
__args__['type'] = type
|
|
316
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
317
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getDomainRecord:getDomainRecord', __args__, opts=opts, typ=GetDomainRecordResult)
|
|
318
|
+
return __ret__.apply(lambda __response__: GetDomainRecordResult(
|
|
319
|
+
data=pulumi.get(__response__, 'data'),
|
|
320
|
+
dns_zone=pulumi.get(__response__, 'dns_zone'),
|
|
321
|
+
fqdn=pulumi.get(__response__, 'fqdn'),
|
|
322
|
+
geo_ips=pulumi.get(__response__, 'geo_ips'),
|
|
323
|
+
http_services=pulumi.get(__response__, 'http_services'),
|
|
324
|
+
id=pulumi.get(__response__, 'id'),
|
|
325
|
+
keep_empty_zone=pulumi.get(__response__, 'keep_empty_zone'),
|
|
326
|
+
name=pulumi.get(__response__, 'name'),
|
|
327
|
+
priority=pulumi.get(__response__, 'priority'),
|
|
328
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
329
|
+
record_id=pulumi.get(__response__, 'record_id'),
|
|
330
|
+
root_zone=pulumi.get(__response__, 'root_zone'),
|
|
331
|
+
ttl=pulumi.get(__response__, 'ttl'),
|
|
332
|
+
type=pulumi.get(__response__, 'type'),
|
|
333
|
+
views=pulumi.get(__response__, 'views'),
|
|
334
|
+
weighteds=pulumi.get(__response__, 'weighteds')))
|