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,199 @@
|
|
|
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
|
+
'GetRegistryNamespaceResult',
|
|
19
|
+
'AwaitableGetRegistryNamespaceResult',
|
|
20
|
+
'get_registry_namespace',
|
|
21
|
+
'get_registry_namespace_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetRegistryNamespaceResult:
|
|
26
|
+
"""
|
|
27
|
+
A collection of values returned by getRegistryNamespace.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, description=None, endpoint=None, id=None, is_public=None, name=None, namespace_id=None, organization_id=None, project_id=None, region=None):
|
|
30
|
+
if description and not isinstance(description, str):
|
|
31
|
+
raise TypeError("Expected argument 'description' to be a str")
|
|
32
|
+
pulumi.set(__self__, "description", description)
|
|
33
|
+
if endpoint and not isinstance(endpoint, str):
|
|
34
|
+
raise TypeError("Expected argument 'endpoint' to be a str")
|
|
35
|
+
pulumi.set(__self__, "endpoint", endpoint)
|
|
36
|
+
if id and not isinstance(id, str):
|
|
37
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "id", id)
|
|
39
|
+
if is_public and not isinstance(is_public, bool):
|
|
40
|
+
raise TypeError("Expected argument 'is_public' to be a bool")
|
|
41
|
+
pulumi.set(__self__, "is_public", is_public)
|
|
42
|
+
if name and not isinstance(name, str):
|
|
43
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
44
|
+
pulumi.set(__self__, "name", name)
|
|
45
|
+
if namespace_id and not isinstance(namespace_id, str):
|
|
46
|
+
raise TypeError("Expected argument 'namespace_id' to be a str")
|
|
47
|
+
pulumi.set(__self__, "namespace_id", namespace_id)
|
|
48
|
+
if organization_id and not isinstance(organization_id, str):
|
|
49
|
+
raise TypeError("Expected argument 'organization_id' to be a str")
|
|
50
|
+
pulumi.set(__self__, "organization_id", organization_id)
|
|
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 description(self) -> str:
|
|
61
|
+
return pulumi.get(self, "description")
|
|
62
|
+
|
|
63
|
+
@property
|
|
64
|
+
@pulumi.getter
|
|
65
|
+
def endpoint(self) -> str:
|
|
66
|
+
"""
|
|
67
|
+
The endpoint of the Registry Namespace.
|
|
68
|
+
"""
|
|
69
|
+
return pulumi.get(self, "endpoint")
|
|
70
|
+
|
|
71
|
+
@property
|
|
72
|
+
@pulumi.getter
|
|
73
|
+
def id(self) -> str:
|
|
74
|
+
"""
|
|
75
|
+
The provider-assigned unique ID for this managed resource.
|
|
76
|
+
"""
|
|
77
|
+
return pulumi.get(self, "id")
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
@pulumi.getter(name="isPublic")
|
|
81
|
+
def is_public(self) -> bool:
|
|
82
|
+
"""
|
|
83
|
+
The Namespace Privacy Policy: whether or not the images are public.
|
|
84
|
+
"""
|
|
85
|
+
return pulumi.get(self, "is_public")
|
|
86
|
+
|
|
87
|
+
@property
|
|
88
|
+
@pulumi.getter
|
|
89
|
+
def name(self) -> Optional[str]:
|
|
90
|
+
return pulumi.get(self, "name")
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
@pulumi.getter(name="namespaceId")
|
|
94
|
+
def namespace_id(self) -> Optional[str]:
|
|
95
|
+
return pulumi.get(self, "namespace_id")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter(name="organizationId")
|
|
99
|
+
def organization_id(self) -> str:
|
|
100
|
+
"""
|
|
101
|
+
The organization ID the namespace is associated with.
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "organization_id")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter(name="projectId")
|
|
107
|
+
def project_id(self) -> Optional[str]:
|
|
108
|
+
return pulumi.get(self, "project_id")
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter
|
|
112
|
+
def region(self) -> Optional[str]:
|
|
113
|
+
return pulumi.get(self, "region")
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
class AwaitableGetRegistryNamespaceResult(GetRegistryNamespaceResult):
|
|
117
|
+
# pylint: disable=using-constant-test
|
|
118
|
+
def __await__(self):
|
|
119
|
+
if False:
|
|
120
|
+
yield self
|
|
121
|
+
return GetRegistryNamespaceResult(
|
|
122
|
+
description=self.description,
|
|
123
|
+
endpoint=self.endpoint,
|
|
124
|
+
id=self.id,
|
|
125
|
+
is_public=self.is_public,
|
|
126
|
+
name=self.name,
|
|
127
|
+
namespace_id=self.namespace_id,
|
|
128
|
+
organization_id=self.organization_id,
|
|
129
|
+
project_id=self.project_id,
|
|
130
|
+
region=self.region)
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
def get_registry_namespace(name: Optional[str] = None,
|
|
134
|
+
namespace_id: Optional[str] = None,
|
|
135
|
+
project_id: Optional[str] = None,
|
|
136
|
+
region: Optional[str] = None,
|
|
137
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegistryNamespaceResult:
|
|
138
|
+
"""
|
|
139
|
+
Gets information about a registry namespace.
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
:param str name: The namespace name.
|
|
143
|
+
:param str namespace_id: The namespace id.
|
|
144
|
+
|
|
145
|
+
> **Note** You must specify at least one: `name` and/or `image_id`.
|
|
146
|
+
:param str project_id: `project_id`) The ID of the project the namespace is associated with.
|
|
147
|
+
:param str region: `region`) The region in which the namespace exists.
|
|
148
|
+
"""
|
|
149
|
+
__args__ = dict()
|
|
150
|
+
__args__['name'] = name
|
|
151
|
+
__args__['namespaceId'] = namespace_id
|
|
152
|
+
__args__['projectId'] = project_id
|
|
153
|
+
__args__['region'] = region
|
|
154
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
155
|
+
__ret__ = pulumi.runtime.invoke('scaleway:index/getRegistryNamespace:getRegistryNamespace', __args__, opts=opts, typ=GetRegistryNamespaceResult).value
|
|
156
|
+
|
|
157
|
+
return AwaitableGetRegistryNamespaceResult(
|
|
158
|
+
description=pulumi.get(__ret__, 'description'),
|
|
159
|
+
endpoint=pulumi.get(__ret__, 'endpoint'),
|
|
160
|
+
id=pulumi.get(__ret__, 'id'),
|
|
161
|
+
is_public=pulumi.get(__ret__, 'is_public'),
|
|
162
|
+
name=pulumi.get(__ret__, 'name'),
|
|
163
|
+
namespace_id=pulumi.get(__ret__, 'namespace_id'),
|
|
164
|
+
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
165
|
+
project_id=pulumi.get(__ret__, 'project_id'),
|
|
166
|
+
region=pulumi.get(__ret__, 'region'))
|
|
167
|
+
def get_registry_namespace_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
168
|
+
namespace_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
169
|
+
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
170
|
+
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
171
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetRegistryNamespaceResult]:
|
|
172
|
+
"""
|
|
173
|
+
Gets information about a registry namespace.
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
:param str name: The namespace name.
|
|
177
|
+
:param str namespace_id: The namespace id.
|
|
178
|
+
|
|
179
|
+
> **Note** You must specify at least one: `name` and/or `image_id`.
|
|
180
|
+
:param str project_id: `project_id`) The ID of the project the namespace is associated with.
|
|
181
|
+
:param str region: `region`) The region in which the namespace exists.
|
|
182
|
+
"""
|
|
183
|
+
__args__ = dict()
|
|
184
|
+
__args__['name'] = name
|
|
185
|
+
__args__['namespaceId'] = namespace_id
|
|
186
|
+
__args__['projectId'] = project_id
|
|
187
|
+
__args__['region'] = region
|
|
188
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
189
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getRegistryNamespace:getRegistryNamespace', __args__, opts=opts, typ=GetRegistryNamespaceResult)
|
|
190
|
+
return __ret__.apply(lambda __response__: GetRegistryNamespaceResult(
|
|
191
|
+
description=pulumi.get(__response__, 'description'),
|
|
192
|
+
endpoint=pulumi.get(__response__, 'endpoint'),
|
|
193
|
+
id=pulumi.get(__response__, 'id'),
|
|
194
|
+
is_public=pulumi.get(__response__, 'is_public'),
|
|
195
|
+
name=pulumi.get(__response__, 'name'),
|
|
196
|
+
namespace_id=pulumi.get(__response__, 'namespace_id'),
|
|
197
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
198
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
199
|
+
region=pulumi.get(__response__, 'region')))
|
|
@@ -0,0 +1,290 @@
|
|
|
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
|
+
'GetSecretResult',
|
|
19
|
+
'AwaitableGetSecretResult',
|
|
20
|
+
'get_secret',
|
|
21
|
+
'get_secret_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetSecretResult:
|
|
26
|
+
"""
|
|
27
|
+
A collection of values returned by getSecret.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, created_at=None, description=None, id=None, name=None, organization_id=None, path=None, project_id=None, region=None, secret_id=None, status=None, tags=None, updated_at=None, version_count=None):
|
|
30
|
+
if created_at and not isinstance(created_at, str):
|
|
31
|
+
raise TypeError("Expected argument 'created_at' to be a str")
|
|
32
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
33
|
+
if description and not isinstance(description, str):
|
|
34
|
+
raise TypeError("Expected argument 'description' to be a str")
|
|
35
|
+
pulumi.set(__self__, "description", description)
|
|
36
|
+
if id and not isinstance(id, str):
|
|
37
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "id", id)
|
|
39
|
+
if name and not isinstance(name, str):
|
|
40
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
41
|
+
pulumi.set(__self__, "name", name)
|
|
42
|
+
if organization_id and not isinstance(organization_id, str):
|
|
43
|
+
raise TypeError("Expected argument 'organization_id' to be a str")
|
|
44
|
+
pulumi.set(__self__, "organization_id", organization_id)
|
|
45
|
+
if path and not isinstance(path, str):
|
|
46
|
+
raise TypeError("Expected argument 'path' to be a str")
|
|
47
|
+
pulumi.set(__self__, "path", path)
|
|
48
|
+
if project_id and not isinstance(project_id, str):
|
|
49
|
+
raise TypeError("Expected argument 'project_id' to be a str")
|
|
50
|
+
pulumi.set(__self__, "project_id", project_id)
|
|
51
|
+
if region and not isinstance(region, str):
|
|
52
|
+
raise TypeError("Expected argument 'region' to be a str")
|
|
53
|
+
pulumi.set(__self__, "region", region)
|
|
54
|
+
if secret_id and not isinstance(secret_id, str):
|
|
55
|
+
raise TypeError("Expected argument 'secret_id' to be a str")
|
|
56
|
+
pulumi.set(__self__, "secret_id", secret_id)
|
|
57
|
+
if status and not isinstance(status, str):
|
|
58
|
+
raise TypeError("Expected argument 'status' to be a str")
|
|
59
|
+
pulumi.set(__self__, "status", status)
|
|
60
|
+
if tags and not isinstance(tags, list):
|
|
61
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
|
62
|
+
pulumi.set(__self__, "tags", tags)
|
|
63
|
+
if updated_at and not isinstance(updated_at, str):
|
|
64
|
+
raise TypeError("Expected argument 'updated_at' to be a str")
|
|
65
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
|
66
|
+
if version_count and not isinstance(version_count, int):
|
|
67
|
+
raise TypeError("Expected argument 'version_count' to be a int")
|
|
68
|
+
pulumi.set(__self__, "version_count", version_count)
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter(name="createdAt")
|
|
72
|
+
def created_at(self) -> str:
|
|
73
|
+
return pulumi.get(self, "created_at")
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter
|
|
77
|
+
def description(self) -> str:
|
|
78
|
+
return pulumi.get(self, "description")
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
@pulumi.getter
|
|
82
|
+
def id(self) -> str:
|
|
83
|
+
"""
|
|
84
|
+
The provider-assigned unique ID for this managed resource.
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "id")
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter
|
|
90
|
+
def name(self) -> Optional[str]:
|
|
91
|
+
return pulumi.get(self, "name")
|
|
92
|
+
|
|
93
|
+
@property
|
|
94
|
+
@pulumi.getter(name="organizationId")
|
|
95
|
+
def organization_id(self) -> str:
|
|
96
|
+
return pulumi.get(self, "organization_id")
|
|
97
|
+
|
|
98
|
+
@property
|
|
99
|
+
@pulumi.getter
|
|
100
|
+
def path(self) -> Optional[str]:
|
|
101
|
+
return pulumi.get(self, "path")
|
|
102
|
+
|
|
103
|
+
@property
|
|
104
|
+
@pulumi.getter(name="projectId")
|
|
105
|
+
def project_id(self) -> Optional[str]:
|
|
106
|
+
return pulumi.get(self, "project_id")
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
@pulumi.getter
|
|
110
|
+
def region(self) -> Optional[str]:
|
|
111
|
+
return pulumi.get(self, "region")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="secretId")
|
|
115
|
+
def secret_id(self) -> Optional[str]:
|
|
116
|
+
return pulumi.get(self, "secret_id")
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
@pulumi.getter
|
|
120
|
+
def status(self) -> str:
|
|
121
|
+
return pulumi.get(self, "status")
|
|
122
|
+
|
|
123
|
+
@property
|
|
124
|
+
@pulumi.getter
|
|
125
|
+
def tags(self) -> Sequence[str]:
|
|
126
|
+
return pulumi.get(self, "tags")
|
|
127
|
+
|
|
128
|
+
@property
|
|
129
|
+
@pulumi.getter(name="updatedAt")
|
|
130
|
+
def updated_at(self) -> str:
|
|
131
|
+
return pulumi.get(self, "updated_at")
|
|
132
|
+
|
|
133
|
+
@property
|
|
134
|
+
@pulumi.getter(name="versionCount")
|
|
135
|
+
def version_count(self) -> int:
|
|
136
|
+
return pulumi.get(self, "version_count")
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
class AwaitableGetSecretResult(GetSecretResult):
|
|
140
|
+
# pylint: disable=using-constant-test
|
|
141
|
+
def __await__(self):
|
|
142
|
+
if False:
|
|
143
|
+
yield self
|
|
144
|
+
return GetSecretResult(
|
|
145
|
+
created_at=self.created_at,
|
|
146
|
+
description=self.description,
|
|
147
|
+
id=self.id,
|
|
148
|
+
name=self.name,
|
|
149
|
+
organization_id=self.organization_id,
|
|
150
|
+
path=self.path,
|
|
151
|
+
project_id=self.project_id,
|
|
152
|
+
region=self.region,
|
|
153
|
+
secret_id=self.secret_id,
|
|
154
|
+
status=self.status,
|
|
155
|
+
tags=self.tags,
|
|
156
|
+
updated_at=self.updated_at,
|
|
157
|
+
version_count=self.version_count)
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
def get_secret(name: Optional[str] = None,
|
|
161
|
+
organization_id: Optional[str] = None,
|
|
162
|
+
path: Optional[str] = None,
|
|
163
|
+
project_id: Optional[str] = None,
|
|
164
|
+
region: Optional[str] = None,
|
|
165
|
+
secret_id: Optional[str] = None,
|
|
166
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecretResult:
|
|
167
|
+
"""
|
|
168
|
+
Gets information about Scaleway Secrets.
|
|
169
|
+
For more information, see [the documentation](https://developers.scaleway.com/en/products/secret_manager/api/v1alpha1/).
|
|
170
|
+
|
|
171
|
+
## Examples
|
|
172
|
+
|
|
173
|
+
### Basic
|
|
174
|
+
|
|
175
|
+
```python
|
|
176
|
+
import pulumi
|
|
177
|
+
import pulumi_scaleway as scaleway
|
|
178
|
+
import pulumiverse_scaleway as scaleway
|
|
179
|
+
|
|
180
|
+
main = scaleway.Secret("main",
|
|
181
|
+
name="foo",
|
|
182
|
+
description="barr")
|
|
183
|
+
# Get info by secret ID
|
|
184
|
+
my_secret = scaleway.get_secret(secret_id="11111111-1111-1111-1111-111111111111")
|
|
185
|
+
# Get info by secret Name
|
|
186
|
+
by_name = scaleway.get_secret(name="your_secret_name")
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
:param str name: The secret name.
|
|
191
|
+
Only one of `name` and `secret_id` should be specified.
|
|
192
|
+
:param str organization_id: The organization ID the Project is associated with.
|
|
193
|
+
If no default organization_id is set, one must be set explicitly in this datasource
|
|
194
|
+
:param str path: The secret path.
|
|
195
|
+
Conflicts with `secret_id`.
|
|
196
|
+
:param str project_id: `project_id`) The ID of the
|
|
197
|
+
project the secret is associated with.
|
|
198
|
+
:param str region: `region`) The region in which the secret exists.
|
|
199
|
+
:param str secret_id: The secret id.
|
|
200
|
+
Only one of `name` and `secret_id` should be specified.
|
|
201
|
+
"""
|
|
202
|
+
__args__ = dict()
|
|
203
|
+
__args__['name'] = name
|
|
204
|
+
__args__['organizationId'] = organization_id
|
|
205
|
+
__args__['path'] = path
|
|
206
|
+
__args__['projectId'] = project_id
|
|
207
|
+
__args__['region'] = region
|
|
208
|
+
__args__['secretId'] = secret_id
|
|
209
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
210
|
+
__ret__ = pulumi.runtime.invoke('scaleway:index/getSecret:getSecret', __args__, opts=opts, typ=GetSecretResult).value
|
|
211
|
+
|
|
212
|
+
return AwaitableGetSecretResult(
|
|
213
|
+
created_at=pulumi.get(__ret__, 'created_at'),
|
|
214
|
+
description=pulumi.get(__ret__, 'description'),
|
|
215
|
+
id=pulumi.get(__ret__, 'id'),
|
|
216
|
+
name=pulumi.get(__ret__, 'name'),
|
|
217
|
+
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
218
|
+
path=pulumi.get(__ret__, 'path'),
|
|
219
|
+
project_id=pulumi.get(__ret__, 'project_id'),
|
|
220
|
+
region=pulumi.get(__ret__, 'region'),
|
|
221
|
+
secret_id=pulumi.get(__ret__, 'secret_id'),
|
|
222
|
+
status=pulumi.get(__ret__, 'status'),
|
|
223
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
224
|
+
updated_at=pulumi.get(__ret__, 'updated_at'),
|
|
225
|
+
version_count=pulumi.get(__ret__, 'version_count'))
|
|
226
|
+
def get_secret_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
227
|
+
organization_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
228
|
+
path: Optional[pulumi.Input[Optional[str]]] = None,
|
|
229
|
+
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
230
|
+
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
231
|
+
secret_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
232
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSecretResult]:
|
|
233
|
+
"""
|
|
234
|
+
Gets information about Scaleway Secrets.
|
|
235
|
+
For more information, see [the documentation](https://developers.scaleway.com/en/products/secret_manager/api/v1alpha1/).
|
|
236
|
+
|
|
237
|
+
## Examples
|
|
238
|
+
|
|
239
|
+
### Basic
|
|
240
|
+
|
|
241
|
+
```python
|
|
242
|
+
import pulumi
|
|
243
|
+
import pulumi_scaleway as scaleway
|
|
244
|
+
import pulumiverse_scaleway as scaleway
|
|
245
|
+
|
|
246
|
+
main = scaleway.Secret("main",
|
|
247
|
+
name="foo",
|
|
248
|
+
description="barr")
|
|
249
|
+
# Get info by secret ID
|
|
250
|
+
my_secret = scaleway.get_secret(secret_id="11111111-1111-1111-1111-111111111111")
|
|
251
|
+
# Get info by secret Name
|
|
252
|
+
by_name = scaleway.get_secret(name="your_secret_name")
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
:param str name: The secret name.
|
|
257
|
+
Only one of `name` and `secret_id` should be specified.
|
|
258
|
+
:param str organization_id: The organization ID the Project is associated with.
|
|
259
|
+
If no default organization_id is set, one must be set explicitly in this datasource
|
|
260
|
+
:param str path: The secret path.
|
|
261
|
+
Conflicts with `secret_id`.
|
|
262
|
+
:param str project_id: `project_id`) The ID of the
|
|
263
|
+
project the secret is associated with.
|
|
264
|
+
:param str region: `region`) The region in which the secret exists.
|
|
265
|
+
:param str secret_id: The secret id.
|
|
266
|
+
Only one of `name` and `secret_id` should be specified.
|
|
267
|
+
"""
|
|
268
|
+
__args__ = dict()
|
|
269
|
+
__args__['name'] = name
|
|
270
|
+
__args__['organizationId'] = organization_id
|
|
271
|
+
__args__['path'] = path
|
|
272
|
+
__args__['projectId'] = project_id
|
|
273
|
+
__args__['region'] = region
|
|
274
|
+
__args__['secretId'] = secret_id
|
|
275
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
276
|
+
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getSecret:getSecret', __args__, opts=opts, typ=GetSecretResult)
|
|
277
|
+
return __ret__.apply(lambda __response__: GetSecretResult(
|
|
278
|
+
created_at=pulumi.get(__response__, 'created_at'),
|
|
279
|
+
description=pulumi.get(__response__, 'description'),
|
|
280
|
+
id=pulumi.get(__response__, 'id'),
|
|
281
|
+
name=pulumi.get(__response__, 'name'),
|
|
282
|
+
organization_id=pulumi.get(__response__, 'organization_id'),
|
|
283
|
+
path=pulumi.get(__response__, 'path'),
|
|
284
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
|
285
|
+
region=pulumi.get(__response__, 'region'),
|
|
286
|
+
secret_id=pulumi.get(__response__, 'secret_id'),
|
|
287
|
+
status=pulumi.get(__response__, 'status'),
|
|
288
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
289
|
+
updated_at=pulumi.get(__response__, 'updated_at'),
|
|
290
|
+
version_count=pulumi.get(__response__, 'version_count')))
|