pulumiverse-scaleway 1.16.0a1730114875__py3-none-any.whl → 1.16.0a1730122985__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/_inputs.py +2119 -50
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account_project.py +5 -0
- pulumiverse_scaleway/account_ssh_key.py +5 -0
- pulumiverse_scaleway/apple_silicon_server.py +5 -0
- pulumiverse_scaleway/baremetal_server.py +5 -0
- pulumiverse_scaleway/block_snapshot.py +5 -0
- pulumiverse_scaleway/block_volume.py +5 -0
- pulumiverse_scaleway/cockpit.py +5 -0
- pulumiverse_scaleway/cockpit_alert_manager.py +5 -0
- pulumiverse_scaleway/cockpit_grafana_user.py +5 -0
- pulumiverse_scaleway/cockpit_source.py +5 -0
- pulumiverse_scaleway/cockpit_token.py +5 -0
- pulumiverse_scaleway/config/__init__.pyi +5 -0
- pulumiverse_scaleway/config/vars.py +5 -0
- pulumiverse_scaleway/container.py +5 -0
- pulumiverse_scaleway/container_cron.py +5 -0
- pulumiverse_scaleway/container_domain.py +5 -0
- pulumiverse_scaleway/container_namespace.py +5 -0
- pulumiverse_scaleway/container_token.py +5 -0
- pulumiverse_scaleway/container_trigger.py +5 -0
- pulumiverse_scaleway/database.py +5 -0
- pulumiverse_scaleway/database_acl.py +5 -0
- pulumiverse_scaleway/database_backup.py +5 -0
- pulumiverse_scaleway/database_instance.py +56 -2
- pulumiverse_scaleway/database_privilege.py +5 -0
- pulumiverse_scaleway/database_read_replica.py +5 -0
- pulumiverse_scaleway/database_user.py +5 -0
- pulumiverse_scaleway/documentdb_database.py +5 -0
- pulumiverse_scaleway/documentdb_instance.py +5 -0
- pulumiverse_scaleway/documentdb_private_network_endpoint.py +5 -0
- pulumiverse_scaleway/documentdb_privilege.py +5 -0
- pulumiverse_scaleway/documentdb_read_replica.py +5 -0
- pulumiverse_scaleway/documentdb_user.py +5 -0
- pulumiverse_scaleway/domain_record.py +5 -0
- pulumiverse_scaleway/domain_zone.py +5 -0
- pulumiverse_scaleway/flexible_ip.py +5 -0
- pulumiverse_scaleway/flexible_ip_mac_address.py +5 -0
- pulumiverse_scaleway/function.py +5 -0
- pulumiverse_scaleway/function_cron.py +5 -0
- pulumiverse_scaleway/function_domain.py +5 -0
- pulumiverse_scaleway/function_namespace.py +5 -0
- pulumiverse_scaleway/function_token.py +5 -0
- pulumiverse_scaleway/function_trigger.py +5 -0
- pulumiverse_scaleway/get_account_project.py +19 -4
- pulumiverse_scaleway/get_account_ssh_key.py +22 -4
- pulumiverse_scaleway/get_availability_zones.py +13 -4
- pulumiverse_scaleway/get_baremetal_offer.py +26 -4
- pulumiverse_scaleway/get_baremetal_option.py +17 -4
- pulumiverse_scaleway/get_baremetal_os.py +18 -4
- pulumiverse_scaleway/get_baremetal_server.py +40 -4
- pulumiverse_scaleway/get_billing_consumptions.py +15 -4
- pulumiverse_scaleway/get_billing_invoices.py +18 -4
- pulumiverse_scaleway/get_block_snapshot.py +21 -4
- pulumiverse_scaleway/get_block_volume.py +22 -4
- pulumiverse_scaleway/get_cockpit.py +15 -4
- pulumiverse_scaleway/get_cockpit_plan.py +12 -4
- pulumiverse_scaleway/get_config.py +20 -4
- pulumiverse_scaleway/get_container.py +41 -4
- pulumiverse_scaleway/get_container_namespace.py +25 -4
- pulumiverse_scaleway/get_database.py +19 -4
- pulumiverse_scaleway/get_database_acl.py +15 -4
- pulumiverse_scaleway/get_database_backup.py +26 -4
- pulumiverse_scaleway/get_database_instance.py +52 -5
- pulumiverse_scaleway/get_database_privilege.py +19 -4
- pulumiverse_scaleway/get_documentdb_database.py +20 -4
- pulumiverse_scaleway/get_documentdb_instance.py +27 -4
- pulumiverse_scaleway/get_documentdb_load_balancer_endpoint.py +22 -4
- pulumiverse_scaleway/get_domain_record.py +31 -4
- pulumiverse_scaleway/get_domain_zone.py +21 -4
- pulumiverse_scaleway/get_flexible_ip.py +26 -4
- pulumiverse_scaleway/get_flexible_ips.py +20 -4
- pulumiverse_scaleway/get_function.py +38 -4
- pulumiverse_scaleway/get_function_namespace.py +24 -4
- pulumiverse_scaleway/get_iam_api_key.py +21 -4
- pulumiverse_scaleway/get_iam_application.py +21 -4
- pulumiverse_scaleway/get_iam_group.py +23 -4
- pulumiverse_scaleway/get_iam_ssh_key.py +22 -4
- pulumiverse_scaleway/get_iam_user.py +16 -4
- pulumiverse_scaleway/get_instance_image.py +31 -4
- pulumiverse_scaleway/get_instance_ip.py +21 -4
- pulumiverse_scaleway/get_instance_placement_group.py +23 -4
- pulumiverse_scaleway/get_instance_private_nic.py +22 -4
- pulumiverse_scaleway/get_instance_security_group.py +28 -4
- pulumiverse_scaleway/get_instance_server.py +45 -4
- pulumiverse_scaleway/get_instance_servers.py +20 -4
- pulumiverse_scaleway/get_instance_snapshot.py +25 -4
- pulumiverse_scaleway/get_instance_volume.py +24 -4
- pulumiverse_scaleway/get_iot_device.py +28 -4
- pulumiverse_scaleway/get_iot_hub.py +34 -4
- pulumiverse_scaleway/get_ipam_ip.py +33 -4
- pulumiverse_scaleway/get_ipam_ips.py +30 -4
- pulumiverse_scaleway/get_k8s_version.py +17 -4
- pulumiverse_scaleway/get_kubernetes_cluster.py +38 -4
- pulumiverse_scaleway/get_kubernetes_node_pool.py +41 -4
- pulumiverse_scaleway/get_lb_acls.py +20 -4
- pulumiverse_scaleway/get_lb_backend.py +44 -4
- pulumiverse_scaleway/get_lb_backends.py +20 -4
- pulumiverse_scaleway/get_lb_frontend.py +24 -4
- pulumiverse_scaleway/get_lb_frontends.py +20 -4
- pulumiverse_scaleway/get_lb_ips.py +22 -4
- pulumiverse_scaleway/get_lb_route.py +18 -4
- pulumiverse_scaleway/get_lb_routes.py +18 -4
- pulumiverse_scaleway/get_lbs.py +20 -4
- pulumiverse_scaleway/get_loadbalancer.py +33 -4
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -4
- pulumiverse_scaleway/get_loadbalancer_ip.py +23 -4
- pulumiverse_scaleway/get_marketplace_image.py +16 -4
- pulumiverse_scaleway/get_mnq_sqs.py +15 -4
- pulumiverse_scaleway/get_object_bucket.py +25 -4
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -4
- pulumiverse_scaleway/get_redis_cluster.py +32 -4
- pulumiverse_scaleway/get_registry_image.py +26 -4
- pulumiverse_scaleway/get_registry_namespace.py +22 -4
- pulumiverse_scaleway/get_secret.py +28 -4
- pulumiverse_scaleway/get_secret_version.py +25 -4
- pulumiverse_scaleway/get_tem_domain.py +38 -4
- pulumiverse_scaleway/get_vpc.py +26 -4
- pulumiverse_scaleway/get_vpc_gateway_network.py +29 -4
- pulumiverse_scaleway/get_vpc_private_network.py +28 -4
- pulumiverse_scaleway/get_vpc_public_gateway.py +30 -4
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +30 -4
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +25 -4
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +20 -4
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +22 -4
- pulumiverse_scaleway/get_vpc_routes.py +25 -4
- pulumiverse_scaleway/get_vpcs.py +20 -4
- pulumiverse_scaleway/get_web_host_offer.py +19 -4
- pulumiverse_scaleway/get_webhosting.py +33 -4
- pulumiverse_scaleway/iam_api_key.py +31 -0
- pulumiverse_scaleway/iam_application.py +5 -0
- pulumiverse_scaleway/iam_group.py +5 -0
- pulumiverse_scaleway/iam_group_membership.py +5 -0
- pulumiverse_scaleway/iam_policy.py +5 -0
- pulumiverse_scaleway/iam_ssh_key.py +5 -0
- pulumiverse_scaleway/iam_user.py +5 -0
- pulumiverse_scaleway/instance_image.py +5 -0
- pulumiverse_scaleway/instance_ip.py +5 -0
- pulumiverse_scaleway/instance_ip_reverse_dns.py +5 -0
- pulumiverse_scaleway/instance_placement_group.py +5 -0
- pulumiverse_scaleway/instance_private_nic.py +5 -0
- pulumiverse_scaleway/instance_security_group.py +5 -0
- pulumiverse_scaleway/instance_security_group_rules.py +5 -0
- pulumiverse_scaleway/instance_server.py +5 -0
- pulumiverse_scaleway/instance_snapshot.py +5 -0
- pulumiverse_scaleway/instance_user_data.py +5 -0
- pulumiverse_scaleway/instance_volume.py +5 -0
- pulumiverse_scaleway/iot_device.py +5 -0
- pulumiverse_scaleway/iot_hub.py +5 -0
- pulumiverse_scaleway/iot_network.py +5 -0
- pulumiverse_scaleway/iot_route.py +5 -0
- pulumiverse_scaleway/ipam_ip.py +5 -0
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +5 -0
- pulumiverse_scaleway/job_definition.py +5 -0
- pulumiverse_scaleway/kubernetes_cluster.py +5 -0
- pulumiverse_scaleway/kubernetes_node_pool.py +5 -0
- pulumiverse_scaleway/loadbalancer.py +5 -0
- pulumiverse_scaleway/loadbalancer_acl.py +5 -0
- pulumiverse_scaleway/loadbalancer_backend.py +5 -0
- pulumiverse_scaleway/loadbalancer_certificate.py +5 -0
- pulumiverse_scaleway/loadbalancer_frontend.py +5 -0
- pulumiverse_scaleway/loadbalancer_ip.py +5 -0
- pulumiverse_scaleway/loadbalancer_route.py +5 -0
- pulumiverse_scaleway/mnq_nats_account.py +5 -0
- pulumiverse_scaleway/mnq_nats_credentials.py +5 -0
- pulumiverse_scaleway/mnq_sns.py +5 -0
- pulumiverse_scaleway/mnq_sns_credentials.py +5 -0
- pulumiverse_scaleway/mnq_sns_topic.py +5 -0
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +5 -0
- pulumiverse_scaleway/mnq_sqs.py +5 -0
- pulumiverse_scaleway/mnq_sqs_credentials.py +5 -0
- pulumiverse_scaleway/mnq_sqs_queue.py +5 -0
- pulumiverse_scaleway/object_bucket.py +5 -0
- pulumiverse_scaleway/object_bucket_acl.py +5 -0
- pulumiverse_scaleway/object_bucket_lock_configuration.py +5 -0
- pulumiverse_scaleway/object_bucket_policy.py +5 -0
- pulumiverse_scaleway/object_bucket_website_configuration.py +5 -0
- pulumiverse_scaleway/object_item.py +5 -0
- pulumiverse_scaleway/outputs.py +5 -0
- pulumiverse_scaleway/provider.py +5 -0
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/redis_cluster.py +5 -0
- pulumiverse_scaleway/registry_namespace.py +5 -0
- pulumiverse_scaleway/sdb_database.py +5 -0
- pulumiverse_scaleway/secret.py +5 -0
- pulumiverse_scaleway/secret_version.py +5 -0
- pulumiverse_scaleway/tem_domain.py +5 -0
- pulumiverse_scaleway/tem_domain_validation.py +5 -0
- pulumiverse_scaleway/vpc.py +5 -0
- pulumiverse_scaleway/vpc_gateway_network.py +5 -0
- pulumiverse_scaleway/vpc_private_network.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_ip.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +5 -0
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +5 -0
- pulumiverse_scaleway/webhosting.py +5 -0
- {pulumiverse_scaleway-1.16.0a1730114875.dist-info → pulumiverse_scaleway-1.16.0a1730122985.dist-info}/METADATA +2 -1
- pulumiverse_scaleway-1.16.0a1730122985.dist-info/RECORD +205 -0
- pulumiverse_scaleway-1.16.0a1730114875.dist-info/RECORD +0 -205
- {pulumiverse_scaleway-1.16.0a1730114875.dist-info → pulumiverse_scaleway-1.16.0a1730122985.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.16.0a1730114875.dist-info → pulumiverse_scaleway-1.16.0a1730122985.dist-info}/top_level.txt +0 -0
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -200,9 +205,6 @@ def get_documentdb_instance(instance_id: Optional[str] = None,
|
|
|
200
205
|
user_name=pulumi.get(__ret__, 'user_name'),
|
|
201
206
|
volume_size_in_gb=pulumi.get(__ret__, 'volume_size_in_gb'),
|
|
202
207
|
volume_type=pulumi.get(__ret__, 'volume_type'))
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
@_utilities.lift_output_func(get_documentdb_instance)
|
|
206
208
|
def get_documentdb_instance_output(instance_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
207
209
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
208
210
|
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -219,4 +221,25 @@ def get_documentdb_instance_output(instance_id: Optional[pulumi.Input[Optional[s
|
|
|
219
221
|
:param str project_id: The ID of the project the DocumentDB instance is associated with.
|
|
220
222
|
:param str region: `region`) The region in which the DocumentDB instance exists.
|
|
221
223
|
"""
|
|
222
|
-
|
|
224
|
+
__args__ = dict()
|
|
225
|
+
__args__['instanceId'] = instance_id
|
|
226
|
+
__args__['name'] = name
|
|
227
|
+
__args__['projectId'] = project_id
|
|
228
|
+
__args__['region'] = region
|
|
229
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
230
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getDocumentdbInstance:getDocumentdbInstance', __args__, opts=opts, typ=GetDocumentdbInstanceResult)
|
|
231
|
+
return __ret__.apply(lambda __response__: GetDocumentdbInstanceResult(
|
|
232
|
+
engine=pulumi.get(__response__, 'engine'),
|
|
233
|
+
id=pulumi.get(__response__, 'id'),
|
|
234
|
+
instance_id=pulumi.get(__response__, 'instance_id'),
|
|
235
|
+
is_ha_cluster=pulumi.get(__response__, 'is_ha_cluster'),
|
|
236
|
+
name=pulumi.get(__response__, 'name'),
|
|
237
|
+
node_type=pulumi.get(__response__, 'node_type'),
|
|
238
|
+
password=pulumi.get(__response__, 'password'),
|
|
239
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
240
|
+
region=pulumi.get(__response__, 'region'),
|
|
241
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
242
|
+
telemetry_enabled=pulumi.get(__response__, 'telemetry_enabled'),
|
|
243
|
+
user_name=pulumi.get(__response__, 'user_name'),
|
|
244
|
+
volume_size_in_gb=pulumi.get(__response__, 'volume_size_in_gb'),
|
|
245
|
+
volume_type=pulumi.get(__response__, 'volume_type')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -160,9 +165,6 @@ def get_documentdb_load_balancer_endpoint(instance_id: Optional[str] = None,
|
|
|
160
165
|
port=pulumi.get(__ret__, 'port'),
|
|
161
166
|
project_id=pulumi.get(__ret__, 'project_id'),
|
|
162
167
|
region=pulumi.get(__ret__, 'region'))
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
@_utilities.lift_output_func(get_documentdb_load_balancer_endpoint)
|
|
166
168
|
def get_documentdb_load_balancer_endpoint_output(instance_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
167
169
|
instance_name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
168
170
|
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -177,4 +179,20 @@ def get_documentdb_load_balancer_endpoint_output(instance_id: Optional[pulumi.In
|
|
|
177
179
|
:param str project_id: The ID of the project the DocumentDB endpoint is associated with.
|
|
178
180
|
:param str region: `region`) The region in which the DocumentDB endpoint exists.
|
|
179
181
|
"""
|
|
180
|
-
|
|
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')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
|
|
@@ -263,9 +268,6 @@ def get_domain_record(data: Optional[str] = None,
|
|
|
263
268
|
type=pulumi.get(__ret__, 'type'),
|
|
264
269
|
views=pulumi.get(__ret__, 'views'),
|
|
265
270
|
weighteds=pulumi.get(__ret__, 'weighteds'))
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
@_utilities.lift_output_func(get_domain_record)
|
|
269
271
|
def get_domain_record_output(data: Optional[pulumi.Input[Optional[str]]] = None,
|
|
270
272
|
dns_zone: Optional[pulumi.Input[Optional[str]]] = None,
|
|
271
273
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -304,4 +306,29 @@ def get_domain_record_output(data: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
304
306
|
:param str type: The type of the record (`A`, `AAAA`, `MX`, `CNAME`, `DNAME`, `ALIAS`, `NS`, `PTR`, `SRV`, `TXT`, `TLSA`, or `CAA`).
|
|
305
307
|
Cannot be used with `record_id`.
|
|
306
308
|
"""
|
|
307
|
-
|
|
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')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -181,9 +186,6 @@ def get_domain_zone(domain: Optional[str] = None,
|
|
|
181
186
|
status=pulumi.get(__ret__, 'status'),
|
|
182
187
|
subdomain=pulumi.get(__ret__, 'subdomain'),
|
|
183
188
|
updated_at=pulumi.get(__ret__, 'updated_at'))
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
@_utilities.lift_output_func(get_domain_zone)
|
|
187
189
|
def get_domain_zone_output(domain: Optional[pulumi.Input[Optional[str]]] = None,
|
|
188
190
|
subdomain: Optional[pulumi.Input[Optional[str]]] = None,
|
|
189
191
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDomainZoneResult]:
|
|
@@ -205,4 +207,19 @@ def get_domain_zone_output(domain: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
205
207
|
:param str domain: The domain where the DNS zone will be created.
|
|
206
208
|
:param str subdomain: The subdomain(zone name) to create in the domain.
|
|
207
209
|
"""
|
|
208
|
-
|
|
210
|
+
__args__ = dict()
|
|
211
|
+
__args__['domain'] = domain
|
|
212
|
+
__args__['subdomain'] = subdomain
|
|
213
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
214
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getDomainZone:getDomainZone', __args__, opts=opts, typ=GetDomainZoneResult)
|
|
215
|
+
return __ret__.apply(lambda __response__: GetDomainZoneResult(
|
|
216
|
+
domain=pulumi.get(__response__, 'domain'),
|
|
217
|
+
id=pulumi.get(__response__, 'id'),
|
|
218
|
+
message=pulumi.get(__response__, 'message'),
|
|
219
|
+
ns=pulumi.get(__response__, 'ns'),
|
|
220
|
+
ns_defaults=pulumi.get(__response__, 'ns_defaults'),
|
|
221
|
+
ns_masters=pulumi.get(__response__, 'ns_masters'),
|
|
222
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
223
|
+
status=pulumi.get(__response__, 'status'),
|
|
224
|
+
subdomain=pulumi.get(__response__, 'subdomain'),
|
|
225
|
+
updated_at=pulumi.get(__response__, 'updated_at')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -207,9 +212,6 @@ def get_flexible_ip(flexible_ip_id: Optional[str] = None,
|
|
|
207
212
|
tags=pulumi.get(__ret__, 'tags'),
|
|
208
213
|
updated_at=pulumi.get(__ret__, 'updated_at'),
|
|
209
214
|
zone=pulumi.get(__ret__, 'zone'))
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
@_utilities.lift_output_func(get_flexible_ip)
|
|
213
215
|
def get_flexible_ip_output(flexible_ip_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
214
216
|
ip_address: Optional[pulumi.Input[Optional[str]]] = None,
|
|
215
217
|
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -222,4 +224,24 @@ def get_flexible_ip_output(flexible_ip_id: Optional[pulumi.Input[Optional[str]]]
|
|
|
222
224
|
Only one of `ip_address` and `ip_id` should be specified.
|
|
223
225
|
:param str project_id: (Defaults to provider `project_id`) The ID of the project the IP is in.
|
|
224
226
|
"""
|
|
225
|
-
|
|
227
|
+
__args__ = dict()
|
|
228
|
+
__args__['flexibleIpId'] = flexible_ip_id
|
|
229
|
+
__args__['ipAddress'] = ip_address
|
|
230
|
+
__args__['projectId'] = project_id
|
|
231
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
232
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getFlexibleIp:getFlexibleIp', __args__, opts=opts, typ=GetFlexibleIpResult)
|
|
233
|
+
return __ret__.apply(lambda __response__: GetFlexibleIpResult(
|
|
234
|
+
created_at=pulumi.get(__response__, 'created_at'),
|
|
235
|
+
description=pulumi.get(__response__, 'description'),
|
|
236
|
+
flexible_ip_id=pulumi.get(__response__, 'flexible_ip_id'),
|
|
237
|
+
id=pulumi.get(__response__, 'id'),
|
|
238
|
+
ip_address=pulumi.get(__response__, 'ip_address'),
|
|
239
|
+
is_ipv6=pulumi.get(__response__, 'is_ipv6'),
|
|
240
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
241
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
242
|
+
reverse=pulumi.get(__response__, 'reverse'),
|
|
243
|
+
server_id=pulumi.get(__response__, 'server_id'),
|
|
244
|
+
status=pulumi.get(__response__, 'status'),
|
|
245
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
246
|
+
updated_at=pulumi.get(__response__, 'updated_at'),
|
|
247
|
+
zone=pulumi.get(__response__, 'zone')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
|
|
@@ -174,9 +179,6 @@ def get_flexible_ips(project_id: Optional[str] = None,
|
|
|
174
179
|
server_ids=pulumi.get(__ret__, 'server_ids'),
|
|
175
180
|
tags=pulumi.get(__ret__, 'tags'),
|
|
176
181
|
zone=pulumi.get(__ret__, 'zone'))
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
@_utilities.lift_output_func(get_flexible_ips)
|
|
180
182
|
def get_flexible_ips_output(project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
181
183
|
server_ids: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
|
182
184
|
tags: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
|
@@ -221,4 +223,18 @@ def get_flexible_ips_output(project_id: Optional[pulumi.Input[Optional[str]]] =
|
|
|
221
223
|
:param Sequence[str] tags: List of tags used as filter. IPs with these exact tags are listed.
|
|
222
224
|
:param str zone: `zone`) The zone in which IPs exist.
|
|
223
225
|
"""
|
|
224
|
-
|
|
226
|
+
__args__ = dict()
|
|
227
|
+
__args__['projectId'] = project_id
|
|
228
|
+
__args__['serverIds'] = server_ids
|
|
229
|
+
__args__['tags'] = tags
|
|
230
|
+
__args__['zone'] = zone
|
|
231
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
232
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getFlexibleIps:getFlexibleIps', __args__, opts=opts, typ=GetFlexibleIpsResult)
|
|
233
|
+
return __ret__.apply(lambda __response__: GetFlexibleIpsResult(
|
|
234
|
+
id=pulumi.get(__response__, 'id'),
|
|
235
|
+
ips=pulumi.get(__response__, 'ips'),
|
|
236
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
237
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
238
|
+
server_ids=pulumi.get(__response__, 'server_ids'),
|
|
239
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
240
|
+
zone=pulumi.get(__response__, 'zone')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -301,9 +306,6 @@ def get_function(function_id: Optional[str] = None,
|
|
|
301
306
|
timeout=pulumi.get(__ret__, 'timeout'),
|
|
302
307
|
zip_file=pulumi.get(__ret__, 'zip_file'),
|
|
303
308
|
zip_hash=pulumi.get(__ret__, 'zip_hash'))
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
@_utilities.lift_output_func(get_function)
|
|
307
309
|
def get_function_output(function_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
308
310
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
309
311
|
namespace_id: Optional[pulumi.Input[str]] = None,
|
|
@@ -320,4 +322,36 @@ def get_function_output(function_id: Optional[pulumi.Input[Optional[str]]] = Non
|
|
|
320
322
|
:param str project_id: The ID of the project the function is associated with.
|
|
321
323
|
:param str region: `region`) The region in which the function exists.
|
|
322
324
|
"""
|
|
323
|
-
|
|
325
|
+
__args__ = dict()
|
|
326
|
+
__args__['functionId'] = function_id
|
|
327
|
+
__args__['name'] = name
|
|
328
|
+
__args__['namespaceId'] = namespace_id
|
|
329
|
+
__args__['projectId'] = project_id
|
|
330
|
+
__args__['region'] = region
|
|
331
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
332
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getFunction:getFunction', __args__, opts=opts, typ=GetFunctionResult)
|
|
333
|
+
return __ret__.apply(lambda __response__: GetFunctionResult(
|
|
334
|
+
cpu_limit=pulumi.get(__response__, 'cpu_limit'),
|
|
335
|
+
deploy=pulumi.get(__response__, 'deploy'),
|
|
336
|
+
description=pulumi.get(__response__, 'description'),
|
|
337
|
+
domain_name=pulumi.get(__response__, 'domain_name'),
|
|
338
|
+
environment_variables=pulumi.get(__response__, 'environment_variables'),
|
|
339
|
+
function_id=pulumi.get(__response__, 'function_id'),
|
|
340
|
+
handler=pulumi.get(__response__, 'handler'),
|
|
341
|
+
http_option=pulumi.get(__response__, 'http_option'),
|
|
342
|
+
id=pulumi.get(__response__, 'id'),
|
|
343
|
+
max_scale=pulumi.get(__response__, 'max_scale'),
|
|
344
|
+
memory_limit=pulumi.get(__response__, 'memory_limit'),
|
|
345
|
+
min_scale=pulumi.get(__response__, 'min_scale'),
|
|
346
|
+
name=pulumi.get(__response__, 'name'),
|
|
347
|
+
namespace_id=pulumi.get(__response__, 'namespace_id'),
|
|
348
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
349
|
+
privacy=pulumi.get(__response__, 'privacy'),
|
|
350
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
351
|
+
region=pulumi.get(__response__, 'region'),
|
|
352
|
+
runtime=pulumi.get(__response__, 'runtime'),
|
|
353
|
+
sandbox=pulumi.get(__response__, 'sandbox'),
|
|
354
|
+
secret_environment_variables=pulumi.get(__response__, 'secret_environment_variables'),
|
|
355
|
+
timeout=pulumi.get(__response__, 'timeout'),
|
|
356
|
+
zip_file=pulumi.get(__response__, 'zip_file'),
|
|
357
|
+
zip_hash=pulumi.get(__response__, 'zip_hash')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -185,9 +190,6 @@ def get_function_namespace(name: Optional[str] = None,
|
|
|
185
190
|
registry_endpoint=pulumi.get(__ret__, 'registry_endpoint'),
|
|
186
191
|
registry_namespace_id=pulumi.get(__ret__, 'registry_namespace_id'),
|
|
187
192
|
secret_environment_variables=pulumi.get(__ret__, 'secret_environment_variables'))
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
@_utilities.lift_output_func(get_function_namespace)
|
|
191
193
|
def get_function_namespace_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
192
194
|
namespace_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
193
195
|
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -204,4 +206,22 @@ def get_function_namespace_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
|
204
206
|
:param str project_id: `project_id`) The ID of the project the namespace is associated with.
|
|
205
207
|
:param str region: `region`) The region in which the namespace exists.
|
|
206
208
|
"""
|
|
207
|
-
|
|
209
|
+
__args__ = dict()
|
|
210
|
+
__args__['name'] = name
|
|
211
|
+
__args__['namespaceId'] = namespace_id
|
|
212
|
+
__args__['projectId'] = project_id
|
|
213
|
+
__args__['region'] = region
|
|
214
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
215
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getFunctionNamespace:getFunctionNamespace', __args__, opts=opts, typ=GetFunctionNamespaceResult)
|
|
216
|
+
return __ret__.apply(lambda __response__: GetFunctionNamespaceResult(
|
|
217
|
+
description=pulumi.get(__response__, 'description'),
|
|
218
|
+
environment_variables=pulumi.get(__response__, 'environment_variables'),
|
|
219
|
+
id=pulumi.get(__response__, 'id'),
|
|
220
|
+
name=pulumi.get(__response__, 'name'),
|
|
221
|
+
namespace_id=pulumi.get(__response__, 'namespace_id'),
|
|
222
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
223
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
224
|
+
region=pulumi.get(__response__, 'region'),
|
|
225
|
+
registry_endpoint=pulumi.get(__response__, 'registry_endpoint'),
|
|
226
|
+
registry_namespace_id=pulumi.get(__response__, 'registry_namespace_id'),
|
|
227
|
+
secret_environment_variables=pulumi.get(__response__, 'secret_environment_variables')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -169,9 +174,6 @@ def get_iam_api_key(access_key: Optional[str] = None,
|
|
|
169
174
|
id=pulumi.get(__ret__, 'id'),
|
|
170
175
|
updated_at=pulumi.get(__ret__, 'updated_at'),
|
|
171
176
|
user_id=pulumi.get(__ret__, 'user_id'))
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
@_utilities.lift_output_func(get_iam_api_key)
|
|
175
177
|
def get_iam_api_key_output(access_key: Optional[pulumi.Input[str]] = None,
|
|
176
178
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetIamApiKeyResult]:
|
|
177
179
|
"""
|
|
@@ -190,4 +192,19 @@ def get_iam_api_key_output(access_key: Optional[pulumi.Input[str]] = None,
|
|
|
190
192
|
|
|
191
193
|
:param str access_key: The access key of the IAM API key which is also the ID of the API key.
|
|
192
194
|
"""
|
|
193
|
-
|
|
195
|
+
__args__ = dict()
|
|
196
|
+
__args__['accessKey'] = access_key
|
|
197
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
198
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getIamApiKey:getIamApiKey', __args__, opts=opts, typ=GetIamApiKeyResult)
|
|
199
|
+
return __ret__.apply(lambda __response__: GetIamApiKeyResult(
|
|
200
|
+
access_key=pulumi.get(__response__, 'access_key'),
|
|
201
|
+
application_id=pulumi.get(__response__, 'application_id'),
|
|
202
|
+
created_at=pulumi.get(__response__, 'created_at'),
|
|
203
|
+
creation_ip=pulumi.get(__response__, 'creation_ip'),
|
|
204
|
+
default_project_id=pulumi.get(__response__, 'default_project_id'),
|
|
205
|
+
description=pulumi.get(__response__, 'description'),
|
|
206
|
+
editable=pulumi.get(__response__, 'editable'),
|
|
207
|
+
expires_at=pulumi.get(__response__, 'expires_at'),
|
|
208
|
+
id=pulumi.get(__response__, 'id'),
|
|
209
|
+
updated_at=pulumi.get(__response__, 'updated_at'),
|
|
210
|
+
user_id=pulumi.get(__response__, 'user_id')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -160,9 +165,6 @@ def get_iam_application(application_id: Optional[str] = None,
|
|
|
160
165
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
161
166
|
tags=pulumi.get(__ret__, 'tags'),
|
|
162
167
|
updated_at=pulumi.get(__ret__, 'updated_at'))
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
@_utilities.lift_output_func(get_iam_application)
|
|
166
168
|
def get_iam_application_output(application_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
167
169
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
168
170
|
organization_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -190,4 +192,19 @@ def get_iam_application_output(application_id: Optional[pulumi.Input[Optional[st
|
|
|
190
192
|
:param str organization_id: `organization_id`) The ID of the
|
|
191
193
|
Organization the application is associated with.
|
|
192
194
|
"""
|
|
193
|
-
|
|
195
|
+
__args__ = dict()
|
|
196
|
+
__args__['applicationId'] = application_id
|
|
197
|
+
__args__['name'] = name
|
|
198
|
+
__args__['organizationId'] = organization_id
|
|
199
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
200
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getIamApplication:getIamApplication', __args__, opts=opts, typ=GetIamApplicationResult)
|
|
201
|
+
return __ret__.apply(lambda __response__: GetIamApplicationResult(
|
|
202
|
+
application_id=pulumi.get(__response__, 'application_id'),
|
|
203
|
+
created_at=pulumi.get(__response__, 'created_at'),
|
|
204
|
+
description=pulumi.get(__response__, 'description'),
|
|
205
|
+
editable=pulumi.get(__response__, 'editable'),
|
|
206
|
+
id=pulumi.get(__response__, 'id'),
|
|
207
|
+
name=pulumi.get(__response__, 'name'),
|
|
208
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
209
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
210
|
+
updated_at=pulumi.get(__response__, 'updated_at')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -182,9 +187,6 @@ def get_iam_group(group_id: Optional[str] = None,
|
|
|
182
187
|
tags=pulumi.get(__ret__, 'tags'),
|
|
183
188
|
updated_at=pulumi.get(__ret__, 'updated_at'),
|
|
184
189
|
user_ids=pulumi.get(__ret__, 'user_ids'))
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
@_utilities.lift_output_func(get_iam_group)
|
|
188
190
|
def get_iam_group_output(group_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
189
191
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
190
192
|
organization_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -214,4 +216,21 @@ def get_iam_group_output(group_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
214
216
|
:param str organization_id: `organization_id`) The ID of the
|
|
215
217
|
organization the group is associated with.
|
|
216
218
|
"""
|
|
217
|
-
|
|
219
|
+
__args__ = dict()
|
|
220
|
+
__args__['groupId'] = group_id
|
|
221
|
+
__args__['name'] = name
|
|
222
|
+
__args__['organizationId'] = organization_id
|
|
223
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
224
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getIamGroup:getIamGroup', __args__, opts=opts, typ=GetIamGroupResult)
|
|
225
|
+
return __ret__.apply(lambda __response__: GetIamGroupResult(
|
|
226
|
+
application_ids=pulumi.get(__response__, 'application_ids'),
|
|
227
|
+
created_at=pulumi.get(__response__, 'created_at'),
|
|
228
|
+
description=pulumi.get(__response__, 'description'),
|
|
229
|
+
external_membership=pulumi.get(__response__, 'external_membership'),
|
|
230
|
+
group_id=pulumi.get(__response__, 'group_id'),
|
|
231
|
+
id=pulumi.get(__response__, 'id'),
|
|
232
|
+
name=pulumi.get(__response__, 'name'),
|
|
233
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
234
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
235
|
+
updated_at=pulumi.get(__response__, 'updated_at'),
|
|
236
|
+
user_ids=pulumi.get(__response__, 'user_ids')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -173,9 +178,6 @@ def get_iam_ssh_key(name: Optional[str] = None,
|
|
|
173
178
|
public_key=pulumi.get(__ret__, 'public_key'),
|
|
174
179
|
ssh_key_id=pulumi.get(__ret__, 'ssh_key_id'),
|
|
175
180
|
updated_at=pulumi.get(__ret__, 'updated_at'))
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
@_utilities.lift_output_func(get_iam_ssh_key)
|
|
179
181
|
def get_iam_ssh_key_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
180
182
|
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
181
183
|
ssh_key_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -191,4 +193,20 @@ def get_iam_ssh_key_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
191
193
|
|
|
192
194
|
> **Note** You must specify at least one: `name` and/or `ssh_key_id`.
|
|
193
195
|
"""
|
|
194
|
-
|
|
196
|
+
__args__ = dict()
|
|
197
|
+
__args__['name'] = name
|
|
198
|
+
__args__['projectId'] = project_id
|
|
199
|
+
__args__['sshKeyId'] = ssh_key_id
|
|
200
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
201
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getIamSshKey:getIamSshKey', __args__, opts=opts, typ=GetIamSshKeyResult)
|
|
202
|
+
return __ret__.apply(lambda __response__: GetIamSshKeyResult(
|
|
203
|
+
created_at=pulumi.get(__response__, 'created_at'),
|
|
204
|
+
disabled=pulumi.get(__response__, 'disabled'),
|
|
205
|
+
fingerprint=pulumi.get(__response__, 'fingerprint'),
|
|
206
|
+
id=pulumi.get(__response__, 'id'),
|
|
207
|
+
name=pulumi.get(__response__, 'name'),
|
|
208
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
209
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
210
|
+
public_key=pulumi.get(__response__, 'public_key'),
|
|
211
|
+
ssh_key_id=pulumi.get(__response__, 'ssh_key_id'),
|
|
212
|
+
updated_at=pulumi.get(__response__, 'updated_at')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -111,9 +116,6 @@ def get_iam_user(email: Optional[str] = None,
|
|
|
111
116
|
id=pulumi.get(__ret__, 'id'),
|
|
112
117
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
113
118
|
user_id=pulumi.get(__ret__, 'user_id'))
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
@_utilities.lift_output_func(get_iam_user)
|
|
117
119
|
def get_iam_user_output(email: Optional[pulumi.Input[Optional[str]]] = None,
|
|
118
120
|
organization_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
119
121
|
user_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
@@ -142,4 +144,14 @@ def get_iam_user_output(email: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
142
144
|
|
|
143
145
|
> **Note** You must specify at least one: `name` and/or `user_id`.
|
|
144
146
|
"""
|
|
145
|
-
|
|
147
|
+
__args__ = dict()
|
|
148
|
+
__args__['email'] = email
|
|
149
|
+
__args__['organizationId'] = organization_id
|
|
150
|
+
__args__['userId'] = user_id
|
|
151
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
152
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getIamUser:getIamUser', __args__, opts=opts, typ=GetIamUserResult)
|
|
153
|
+
return __ret__.apply(lambda __response__: GetIamUserResult(
|
|
154
|
+
email=pulumi.get(__response__, 'email'),
|
|
155
|
+
id=pulumi.get(__response__, 'id'),
|
|
156
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
157
|
+
user_id=pulumi.get(__response__, 'user_id')))
|