pulumiverse-scaleway 1.20.0a1730699372__py3-none-any.whl → 1.20.0a1730719023__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 +28 -0
- pulumiverse_scaleway/_inputs.py +335 -0
- pulumiverse_scaleway/baremetal_server.py +94 -12
- pulumiverse_scaleway/get_mongo_db_instance.py +324 -0
- pulumiverse_scaleway/inference_deployment.py +822 -0
- pulumiverse_scaleway/instance_server.py +21 -7
- pulumiverse_scaleway/iot_network.py +47 -0
- pulumiverse_scaleway/iot_route.py +2 -2
- pulumiverse_scaleway/ipam_ip.py +91 -0
- pulumiverse_scaleway/mongo_db_instance.py +907 -0
- pulumiverse_scaleway/mongo_db_snapshot.py +521 -0
- pulumiverse_scaleway/object_bucket.py +9 -9
- pulumiverse_scaleway/outputs.py +325 -4
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- {pulumiverse_scaleway-1.20.0a1730699372.dist-info → pulumiverse_scaleway-1.20.0a1730719023.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.20.0a1730699372.dist-info → pulumiverse_scaleway-1.20.0a1730719023.dist-info}/RECORD +18 -14
- {pulumiverse_scaleway-1.20.0a1730699372.dist-info → pulumiverse_scaleway-1.20.0a1730719023.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.20.0a1730699372.dist-info → pulumiverse_scaleway-1.20.0a1730719023.dist-info}/top_level.txt +0 -0
pulumiverse_scaleway/outputs.py
CHANGED
|
@@ -42,6 +42,8 @@ __all__ = [
|
|
|
42
42
|
'FunctionTriggerNats',
|
|
43
43
|
'FunctionTriggerSqs',
|
|
44
44
|
'IamPolicyRule',
|
|
45
|
+
'InferenceDeploymentPrivateEndpoint',
|
|
46
|
+
'InferenceDeploymentPublicEndpoint',
|
|
45
47
|
'InstanceImageAdditionalVolume',
|
|
46
48
|
'InstanceSecurityGroupInboundRule',
|
|
47
49
|
'InstanceSecurityGroupOutboundRule',
|
|
@@ -58,6 +60,7 @@ __all__ = [
|
|
|
58
60
|
'IotRouteDatabase',
|
|
59
61
|
'IotRouteRest',
|
|
60
62
|
'IotRouteS3',
|
|
63
|
+
'IpamIpCustomResource',
|
|
61
64
|
'IpamIpResource',
|
|
62
65
|
'IpamIpReverse',
|
|
63
66
|
'IpamIpSource',
|
|
@@ -83,6 +86,7 @@ __all__ = [
|
|
|
83
86
|
'LoadbalancerPrivateNetwork',
|
|
84
87
|
'MnqSnsCredentialsPermissions',
|
|
85
88
|
'MnqSqsCredentialsPermissions',
|
|
89
|
+
'MongoDbInstancePublicNetwork',
|
|
86
90
|
'ObjectBucketAclAccessControlPolicy',
|
|
87
91
|
'ObjectBucketAclAccessControlPolicyGrant',
|
|
88
92
|
'ObjectBucketAclAccessControlPolicyGrantGrantee',
|
|
@@ -174,6 +178,7 @@ __all__ = [
|
|
|
174
178
|
'GetLoadbalancerCertificateCustomCertificateResult',
|
|
175
179
|
'GetLoadbalancerCertificateLetsencryptResult',
|
|
176
180
|
'GetLoadbalancerPrivateNetworkResult',
|
|
181
|
+
'GetMongoDbInstancePublicNetworkResult',
|
|
177
182
|
'GetObjectBucketCorsRuleResult',
|
|
178
183
|
'GetObjectBucketLifecycleRuleResult',
|
|
179
184
|
'GetObjectBucketLifecycleRuleExpirationResult',
|
|
@@ -425,6 +430,8 @@ class BaremetalServerPrivateNetwork(dict):
|
|
|
425
430
|
suggest = None
|
|
426
431
|
if key == "createdAt":
|
|
427
432
|
suggest = "created_at"
|
|
433
|
+
elif key == "ipamIpIds":
|
|
434
|
+
suggest = "ipam_ip_ids"
|
|
428
435
|
elif key == "updatedAt":
|
|
429
436
|
suggest = "updated_at"
|
|
430
437
|
|
|
@@ -442,12 +449,14 @@ class BaremetalServerPrivateNetwork(dict):
|
|
|
442
449
|
def __init__(__self__, *,
|
|
443
450
|
id: str,
|
|
444
451
|
created_at: Optional[str] = None,
|
|
452
|
+
ipam_ip_ids: Optional[Sequence[str]] = None,
|
|
445
453
|
status: Optional[str] = None,
|
|
446
454
|
updated_at: Optional[str] = None,
|
|
447
455
|
vlan: Optional[int] = None):
|
|
448
456
|
"""
|
|
449
457
|
:param str id: The id of the private network to attach.
|
|
450
458
|
:param str created_at: The date and time of the creation of the private network.
|
|
459
|
+
:param Sequence[str] ipam_ip_ids: List of IPAM IP IDs to assign to the server in the requested private network.
|
|
451
460
|
:param str status: The private network status.
|
|
452
461
|
:param str updated_at: The date and time of the last update of the private network.
|
|
453
462
|
:param int vlan: The VLAN ID associated to the private network.
|
|
@@ -455,6 +464,8 @@ class BaremetalServerPrivateNetwork(dict):
|
|
|
455
464
|
pulumi.set(__self__, "id", id)
|
|
456
465
|
if created_at is not None:
|
|
457
466
|
pulumi.set(__self__, "created_at", created_at)
|
|
467
|
+
if ipam_ip_ids is not None:
|
|
468
|
+
pulumi.set(__self__, "ipam_ip_ids", ipam_ip_ids)
|
|
458
469
|
if status is not None:
|
|
459
470
|
pulumi.set(__self__, "status", status)
|
|
460
471
|
if updated_at is not None:
|
|
@@ -478,6 +489,14 @@ class BaremetalServerPrivateNetwork(dict):
|
|
|
478
489
|
"""
|
|
479
490
|
return pulumi.get(self, "created_at")
|
|
480
491
|
|
|
492
|
+
@property
|
|
493
|
+
@pulumi.getter(name="ipamIpIds")
|
|
494
|
+
def ipam_ip_ids(self) -> Optional[Sequence[str]]:
|
|
495
|
+
"""
|
|
496
|
+
List of IPAM IP IDs to assign to the server in the requested private network.
|
|
497
|
+
"""
|
|
498
|
+
return pulumi.get(self, "ipam_ip_ids")
|
|
499
|
+
|
|
481
500
|
@property
|
|
482
501
|
@pulumi.getter
|
|
483
502
|
def status(self) -> Optional[str]:
|
|
@@ -1966,6 +1985,154 @@ class IamPolicyRule(dict):
|
|
|
1966
1985
|
return pulumi.get(self, "project_ids")
|
|
1967
1986
|
|
|
1968
1987
|
|
|
1988
|
+
@pulumi.output_type
|
|
1989
|
+
class InferenceDeploymentPrivateEndpoint(dict):
|
|
1990
|
+
@staticmethod
|
|
1991
|
+
def __key_warning(key: str):
|
|
1992
|
+
suggest = None
|
|
1993
|
+
if key == "disableAuth":
|
|
1994
|
+
suggest = "disable_auth"
|
|
1995
|
+
elif key == "privateNetworkId":
|
|
1996
|
+
suggest = "private_network_id"
|
|
1997
|
+
|
|
1998
|
+
if suggest:
|
|
1999
|
+
pulumi.log.warn(f"Key '{key}' not found in InferenceDeploymentPrivateEndpoint. Access the value via the '{suggest}' property getter instead.")
|
|
2000
|
+
|
|
2001
|
+
def __getitem__(self, key: str) -> Any:
|
|
2002
|
+
InferenceDeploymentPrivateEndpoint.__key_warning(key)
|
|
2003
|
+
return super().__getitem__(key)
|
|
2004
|
+
|
|
2005
|
+
def get(self, key: str, default = None) -> Any:
|
|
2006
|
+
InferenceDeploymentPrivateEndpoint.__key_warning(key)
|
|
2007
|
+
return super().get(key, default)
|
|
2008
|
+
|
|
2009
|
+
def __init__(__self__, *,
|
|
2010
|
+
disable_auth: Optional[bool] = None,
|
|
2011
|
+
id: Optional[str] = None,
|
|
2012
|
+
private_network_id: Optional[str] = None,
|
|
2013
|
+
url: Optional[str] = None):
|
|
2014
|
+
"""
|
|
2015
|
+
:param bool disable_auth: Disable the authentication on the endpoint.
|
|
2016
|
+
:param str id: (Optional) The id of the public endpoint.
|
|
2017
|
+
:param str private_network_id: The ID of the private network to use.
|
|
2018
|
+
:param str url: (Optional) The URL of the endpoint.
|
|
2019
|
+
"""
|
|
2020
|
+
if disable_auth is not None:
|
|
2021
|
+
pulumi.set(__self__, "disable_auth", disable_auth)
|
|
2022
|
+
if id is not None:
|
|
2023
|
+
pulumi.set(__self__, "id", id)
|
|
2024
|
+
if private_network_id is not None:
|
|
2025
|
+
pulumi.set(__self__, "private_network_id", private_network_id)
|
|
2026
|
+
if url is not None:
|
|
2027
|
+
pulumi.set(__self__, "url", url)
|
|
2028
|
+
|
|
2029
|
+
@property
|
|
2030
|
+
@pulumi.getter(name="disableAuth")
|
|
2031
|
+
def disable_auth(self) -> Optional[bool]:
|
|
2032
|
+
"""
|
|
2033
|
+
Disable the authentication on the endpoint.
|
|
2034
|
+
"""
|
|
2035
|
+
return pulumi.get(self, "disable_auth")
|
|
2036
|
+
|
|
2037
|
+
@property
|
|
2038
|
+
@pulumi.getter
|
|
2039
|
+
def id(self) -> Optional[str]:
|
|
2040
|
+
"""
|
|
2041
|
+
(Optional) The id of the public endpoint.
|
|
2042
|
+
"""
|
|
2043
|
+
return pulumi.get(self, "id")
|
|
2044
|
+
|
|
2045
|
+
@property
|
|
2046
|
+
@pulumi.getter(name="privateNetworkId")
|
|
2047
|
+
def private_network_id(self) -> Optional[str]:
|
|
2048
|
+
"""
|
|
2049
|
+
The ID of the private network to use.
|
|
2050
|
+
"""
|
|
2051
|
+
return pulumi.get(self, "private_network_id")
|
|
2052
|
+
|
|
2053
|
+
@property
|
|
2054
|
+
@pulumi.getter
|
|
2055
|
+
def url(self) -> Optional[str]:
|
|
2056
|
+
"""
|
|
2057
|
+
(Optional) The URL of the endpoint.
|
|
2058
|
+
"""
|
|
2059
|
+
return pulumi.get(self, "url")
|
|
2060
|
+
|
|
2061
|
+
|
|
2062
|
+
@pulumi.output_type
|
|
2063
|
+
class InferenceDeploymentPublicEndpoint(dict):
|
|
2064
|
+
@staticmethod
|
|
2065
|
+
def __key_warning(key: str):
|
|
2066
|
+
suggest = None
|
|
2067
|
+
if key == "disableAuth":
|
|
2068
|
+
suggest = "disable_auth"
|
|
2069
|
+
elif key == "isEnabled":
|
|
2070
|
+
suggest = "is_enabled"
|
|
2071
|
+
|
|
2072
|
+
if suggest:
|
|
2073
|
+
pulumi.log.warn(f"Key '{key}' not found in InferenceDeploymentPublicEndpoint. Access the value via the '{suggest}' property getter instead.")
|
|
2074
|
+
|
|
2075
|
+
def __getitem__(self, key: str) -> Any:
|
|
2076
|
+
InferenceDeploymentPublicEndpoint.__key_warning(key)
|
|
2077
|
+
return super().__getitem__(key)
|
|
2078
|
+
|
|
2079
|
+
def get(self, key: str, default = None) -> Any:
|
|
2080
|
+
InferenceDeploymentPublicEndpoint.__key_warning(key)
|
|
2081
|
+
return super().get(key, default)
|
|
2082
|
+
|
|
2083
|
+
def __init__(__self__, *,
|
|
2084
|
+
disable_auth: Optional[bool] = None,
|
|
2085
|
+
id: Optional[str] = None,
|
|
2086
|
+
is_enabled: Optional[bool] = None,
|
|
2087
|
+
url: Optional[str] = None):
|
|
2088
|
+
"""
|
|
2089
|
+
:param bool disable_auth: Disable the authentication on the endpoint.
|
|
2090
|
+
:param str id: (Optional) The id of the public endpoint.
|
|
2091
|
+
:param bool is_enabled: Enable or disable public endpoint.
|
|
2092
|
+
:param str url: (Optional) The URL of the endpoint.
|
|
2093
|
+
"""
|
|
2094
|
+
if disable_auth is not None:
|
|
2095
|
+
pulumi.set(__self__, "disable_auth", disable_auth)
|
|
2096
|
+
if id is not None:
|
|
2097
|
+
pulumi.set(__self__, "id", id)
|
|
2098
|
+
if is_enabled is not None:
|
|
2099
|
+
pulumi.set(__self__, "is_enabled", is_enabled)
|
|
2100
|
+
if url is not None:
|
|
2101
|
+
pulumi.set(__self__, "url", url)
|
|
2102
|
+
|
|
2103
|
+
@property
|
|
2104
|
+
@pulumi.getter(name="disableAuth")
|
|
2105
|
+
def disable_auth(self) -> Optional[bool]:
|
|
2106
|
+
"""
|
|
2107
|
+
Disable the authentication on the endpoint.
|
|
2108
|
+
"""
|
|
2109
|
+
return pulumi.get(self, "disable_auth")
|
|
2110
|
+
|
|
2111
|
+
@property
|
|
2112
|
+
@pulumi.getter
|
|
2113
|
+
def id(self) -> Optional[str]:
|
|
2114
|
+
"""
|
|
2115
|
+
(Optional) The id of the public endpoint.
|
|
2116
|
+
"""
|
|
2117
|
+
return pulumi.get(self, "id")
|
|
2118
|
+
|
|
2119
|
+
@property
|
|
2120
|
+
@pulumi.getter(name="isEnabled")
|
|
2121
|
+
def is_enabled(self) -> Optional[bool]:
|
|
2122
|
+
"""
|
|
2123
|
+
Enable or disable public endpoint.
|
|
2124
|
+
"""
|
|
2125
|
+
return pulumi.get(self, "is_enabled")
|
|
2126
|
+
|
|
2127
|
+
@property
|
|
2128
|
+
@pulumi.getter
|
|
2129
|
+
def url(self) -> Optional[str]:
|
|
2130
|
+
"""
|
|
2131
|
+
(Optional) The URL of the endpoint.
|
|
2132
|
+
"""
|
|
2133
|
+
return pulumi.get(self, "url")
|
|
2134
|
+
|
|
2135
|
+
|
|
1969
2136
|
@pulumi.output_type
|
|
1970
2137
|
class InstanceImageAdditionalVolume(dict):
|
|
1971
2138
|
@staticmethod
|
|
@@ -3139,6 +3306,53 @@ class IotRouteS3(dict):
|
|
|
3139
3306
|
return pulumi.get(self, "object_prefix")
|
|
3140
3307
|
|
|
3141
3308
|
|
|
3309
|
+
@pulumi.output_type
|
|
3310
|
+
class IpamIpCustomResource(dict):
|
|
3311
|
+
@staticmethod
|
|
3312
|
+
def __key_warning(key: str):
|
|
3313
|
+
suggest = None
|
|
3314
|
+
if key == "macAddress":
|
|
3315
|
+
suggest = "mac_address"
|
|
3316
|
+
|
|
3317
|
+
if suggest:
|
|
3318
|
+
pulumi.log.warn(f"Key '{key}' not found in IpamIpCustomResource. Access the value via the '{suggest}' property getter instead.")
|
|
3319
|
+
|
|
3320
|
+
def __getitem__(self, key: str) -> Any:
|
|
3321
|
+
IpamIpCustomResource.__key_warning(key)
|
|
3322
|
+
return super().__getitem__(key)
|
|
3323
|
+
|
|
3324
|
+
def get(self, key: str, default = None) -> Any:
|
|
3325
|
+
IpamIpCustomResource.__key_warning(key)
|
|
3326
|
+
return super().get(key, default)
|
|
3327
|
+
|
|
3328
|
+
def __init__(__self__, *,
|
|
3329
|
+
mac_address: str,
|
|
3330
|
+
name: Optional[str] = None):
|
|
3331
|
+
"""
|
|
3332
|
+
:param str mac_address: The MAC address of the resource the IP is attached to.
|
|
3333
|
+
:param str name: The name of the resource the IP is attached to.
|
|
3334
|
+
"""
|
|
3335
|
+
pulumi.set(__self__, "mac_address", mac_address)
|
|
3336
|
+
if name is not None:
|
|
3337
|
+
pulumi.set(__self__, "name", name)
|
|
3338
|
+
|
|
3339
|
+
@property
|
|
3340
|
+
@pulumi.getter(name="macAddress")
|
|
3341
|
+
def mac_address(self) -> str:
|
|
3342
|
+
"""
|
|
3343
|
+
The MAC address of the resource the IP is attached to.
|
|
3344
|
+
"""
|
|
3345
|
+
return pulumi.get(self, "mac_address")
|
|
3346
|
+
|
|
3347
|
+
@property
|
|
3348
|
+
@pulumi.getter
|
|
3349
|
+
def name(self) -> Optional[str]:
|
|
3350
|
+
"""
|
|
3351
|
+
The name of the resource the IP is attached to.
|
|
3352
|
+
"""
|
|
3353
|
+
return pulumi.get(self, "name")
|
|
3354
|
+
|
|
3355
|
+
|
|
3142
3356
|
@pulumi.output_type
|
|
3143
3357
|
class IpamIpResource(dict):
|
|
3144
3358
|
@staticmethod
|
|
@@ -4781,6 +4995,66 @@ class MnqSqsCredentialsPermissions(dict):
|
|
|
4781
4995
|
return pulumi.get(self, "can_receive")
|
|
4782
4996
|
|
|
4783
4997
|
|
|
4998
|
+
@pulumi.output_type
|
|
4999
|
+
class MongoDbInstancePublicNetwork(dict):
|
|
5000
|
+
@staticmethod
|
|
5001
|
+
def __key_warning(key: str):
|
|
5002
|
+
suggest = None
|
|
5003
|
+
if key == "dnsRecord":
|
|
5004
|
+
suggest = "dns_record"
|
|
5005
|
+
|
|
5006
|
+
if suggest:
|
|
5007
|
+
pulumi.log.warn(f"Key '{key}' not found in MongoDbInstancePublicNetwork. Access the value via the '{suggest}' property getter instead.")
|
|
5008
|
+
|
|
5009
|
+
def __getitem__(self, key: str) -> Any:
|
|
5010
|
+
MongoDbInstancePublicNetwork.__key_warning(key)
|
|
5011
|
+
return super().__getitem__(key)
|
|
5012
|
+
|
|
5013
|
+
def get(self, key: str, default = None) -> Any:
|
|
5014
|
+
MongoDbInstancePublicNetwork.__key_warning(key)
|
|
5015
|
+
return super().get(key, default)
|
|
5016
|
+
|
|
5017
|
+
def __init__(__self__, *,
|
|
5018
|
+
dns_record: Optional[str] = None,
|
|
5019
|
+
id: Optional[str] = None,
|
|
5020
|
+
port: Optional[int] = None):
|
|
5021
|
+
"""
|
|
5022
|
+
:param str dns_record: The DNS record of your endpoint
|
|
5023
|
+
:param str id: The ID of the MongoDB® instance.
|
|
5024
|
+
:param int port: TCP port of the endpoint
|
|
5025
|
+
"""
|
|
5026
|
+
if dns_record is not None:
|
|
5027
|
+
pulumi.set(__self__, "dns_record", dns_record)
|
|
5028
|
+
if id is not None:
|
|
5029
|
+
pulumi.set(__self__, "id", id)
|
|
5030
|
+
if port is not None:
|
|
5031
|
+
pulumi.set(__self__, "port", port)
|
|
5032
|
+
|
|
5033
|
+
@property
|
|
5034
|
+
@pulumi.getter(name="dnsRecord")
|
|
5035
|
+
def dns_record(self) -> Optional[str]:
|
|
5036
|
+
"""
|
|
5037
|
+
The DNS record of your endpoint
|
|
5038
|
+
"""
|
|
5039
|
+
return pulumi.get(self, "dns_record")
|
|
5040
|
+
|
|
5041
|
+
@property
|
|
5042
|
+
@pulumi.getter
|
|
5043
|
+
def id(self) -> Optional[str]:
|
|
5044
|
+
"""
|
|
5045
|
+
The ID of the MongoDB® instance.
|
|
5046
|
+
"""
|
|
5047
|
+
return pulumi.get(self, "id")
|
|
5048
|
+
|
|
5049
|
+
@property
|
|
5050
|
+
@pulumi.getter
|
|
5051
|
+
def port(self) -> Optional[int]:
|
|
5052
|
+
"""
|
|
5053
|
+
TCP port of the endpoint
|
|
5054
|
+
"""
|
|
5055
|
+
return pulumi.get(self, "port")
|
|
5056
|
+
|
|
5057
|
+
|
|
4784
5058
|
@pulumi.output_type
|
|
4785
5059
|
class ObjectBucketAclAccessControlPolicy(dict):
|
|
4786
5060
|
def __init__(__self__, *,
|
|
@@ -6374,18 +6648,21 @@ class GetBaremetalServerPrivateNetworkResult(dict):
|
|
|
6374
6648
|
def __init__(__self__, *,
|
|
6375
6649
|
created_at: str,
|
|
6376
6650
|
id: str,
|
|
6651
|
+
ipam_ip_ids: Sequence[str],
|
|
6377
6652
|
status: str,
|
|
6378
6653
|
updated_at: str,
|
|
6379
6654
|
vlan: int):
|
|
6380
6655
|
"""
|
|
6381
6656
|
:param str created_at: The date and time of the creation of the private network
|
|
6382
6657
|
:param str id: The ID of the server.
|
|
6658
|
+
:param Sequence[str] ipam_ip_ids: List of IPAM IP IDs to attach to the server
|
|
6383
6659
|
:param str status: The private network status
|
|
6384
6660
|
:param str updated_at: The date and time of the last update of the private network
|
|
6385
6661
|
:param int vlan: The VLAN ID associated to the private network
|
|
6386
6662
|
"""
|
|
6387
6663
|
pulumi.set(__self__, "created_at", created_at)
|
|
6388
6664
|
pulumi.set(__self__, "id", id)
|
|
6665
|
+
pulumi.set(__self__, "ipam_ip_ids", ipam_ip_ids)
|
|
6389
6666
|
pulumi.set(__self__, "status", status)
|
|
6390
6667
|
pulumi.set(__self__, "updated_at", updated_at)
|
|
6391
6668
|
pulumi.set(__self__, "vlan", vlan)
|
|
@@ -6406,6 +6683,14 @@ class GetBaremetalServerPrivateNetworkResult(dict):
|
|
|
6406
6683
|
"""
|
|
6407
6684
|
return pulumi.get(self, "id")
|
|
6408
6685
|
|
|
6686
|
+
@property
|
|
6687
|
+
@pulumi.getter(name="ipamIpIds")
|
|
6688
|
+
def ipam_ip_ids(self) -> Sequence[str]:
|
|
6689
|
+
"""
|
|
6690
|
+
List of IPAM IP IDs to attach to the server
|
|
6691
|
+
"""
|
|
6692
|
+
return pulumi.get(self, "ipam_ip_ids")
|
|
6693
|
+
|
|
6409
6694
|
@property
|
|
6410
6695
|
@pulumi.getter
|
|
6411
6696
|
def status(self) -> str:
|
|
@@ -7809,7 +8094,6 @@ class GetInstanceServersServerResult(dict):
|
|
|
7809
8094
|
zone: str):
|
|
7810
8095
|
"""
|
|
7811
8096
|
:param str boot_type: The boot Type of the server. Possible values are: `local`, `bootscript` or `rescue`.
|
|
7812
|
-
:param str bootscript_id: The ID of the bootscript.
|
|
7813
8097
|
:param bool enable_dynamic_ip: If true a dynamic IP will be attached to the server.
|
|
7814
8098
|
:param bool enable_ipv6: Determines if IPv6 is enabled for the server.
|
|
7815
8099
|
:param str id: The ID of the IP
|
|
@@ -7867,9 +8151,6 @@ class GetInstanceServersServerResult(dict):
|
|
|
7867
8151
|
@pulumi.getter(name="bootscriptId")
|
|
7868
8152
|
@_utilities.deprecated("""bootscript are not supported""")
|
|
7869
8153
|
def bootscript_id(self) -> str:
|
|
7870
|
-
"""
|
|
7871
|
-
The ID of the bootscript.
|
|
7872
|
-
"""
|
|
7873
8154
|
return pulumi.get(self, "bootscript_id")
|
|
7874
8155
|
|
|
7875
8156
|
@property
|
|
@@ -10479,6 +10760,46 @@ class GetLoadbalancerPrivateNetworkResult(dict):
|
|
|
10479
10760
|
return pulumi.get(self, "zone")
|
|
10480
10761
|
|
|
10481
10762
|
|
|
10763
|
+
@pulumi.output_type
|
|
10764
|
+
class GetMongoDbInstancePublicNetworkResult(dict):
|
|
10765
|
+
def __init__(__self__, *,
|
|
10766
|
+
dns_record: str,
|
|
10767
|
+
id: str,
|
|
10768
|
+
port: int):
|
|
10769
|
+
"""
|
|
10770
|
+
:param str dns_record: The DNS record of your endpoint
|
|
10771
|
+
:param str id: The ID of the MongoDB® Instance.
|
|
10772
|
+
:param int port: TCP port of the endpoint
|
|
10773
|
+
"""
|
|
10774
|
+
pulumi.set(__self__, "dns_record", dns_record)
|
|
10775
|
+
pulumi.set(__self__, "id", id)
|
|
10776
|
+
pulumi.set(__self__, "port", port)
|
|
10777
|
+
|
|
10778
|
+
@property
|
|
10779
|
+
@pulumi.getter(name="dnsRecord")
|
|
10780
|
+
def dns_record(self) -> str:
|
|
10781
|
+
"""
|
|
10782
|
+
The DNS record of your endpoint
|
|
10783
|
+
"""
|
|
10784
|
+
return pulumi.get(self, "dns_record")
|
|
10785
|
+
|
|
10786
|
+
@property
|
|
10787
|
+
@pulumi.getter
|
|
10788
|
+
def id(self) -> str:
|
|
10789
|
+
"""
|
|
10790
|
+
The ID of the MongoDB® Instance.
|
|
10791
|
+
"""
|
|
10792
|
+
return pulumi.get(self, "id")
|
|
10793
|
+
|
|
10794
|
+
@property
|
|
10795
|
+
@pulumi.getter
|
|
10796
|
+
def port(self) -> int:
|
|
10797
|
+
"""
|
|
10798
|
+
TCP port of the endpoint
|
|
10799
|
+
"""
|
|
10800
|
+
return pulumi.get(self, "port")
|
|
10801
|
+
|
|
10802
|
+
|
|
10482
10803
|
@pulumi.output_type
|
|
10483
10804
|
class GetObjectBucketCorsRuleResult(dict):
|
|
10484
10805
|
def __init__(__self__, *,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
pulumiverse_scaleway/__init__.py,sha256=
|
|
2
|
-
pulumiverse_scaleway/_inputs.py,sha256=
|
|
1
|
+
pulumiverse_scaleway/__init__.py,sha256=YyPQMbZZWKrTHnWGPxMndrmbHwB3MMioi7xhcHCgLU0,26206
|
|
2
|
+
pulumiverse_scaleway/_inputs.py,sha256=1otN24CIcSs7_wFf-jzc0W8iVsIxz1h6Y4qWg6P6EMQ,327002
|
|
3
3
|
pulumiverse_scaleway/_utilities.py,sha256=6DPa1R8ih1x1D-UsJffEAW__gR8apXT9AVlozHhV3dE,10537
|
|
4
4
|
pulumiverse_scaleway/account_project.py,sha256=E4YNmkyc0wQJ8aE3Bdixjwrj054JSc8vkFbzLzRyqk8,12589
|
|
5
5
|
pulumiverse_scaleway/account_ssh_key.py,sha256=ZI_cW_eM6piT0UJTd2P5fASzRnk-zkJyPRO0WWIDFTw,17481
|
|
6
6
|
pulumiverse_scaleway/apple_silicon_server.py,sha256=OW15z0afAMHjedlJZZAuSwyMX3lyFExF9esJRHza0V0,21346
|
|
7
|
-
pulumiverse_scaleway/baremetal_server.py,sha256=
|
|
7
|
+
pulumiverse_scaleway/baremetal_server.py,sha256=AhXnJDzxdT8C3sad_Qs79BSlyGv4ZotZRCFv7IT0WKY,65181
|
|
8
8
|
pulumiverse_scaleway/block_snapshot.py,sha256=5KRJjvwp7Kzu7wesw51W-UE6_9ls2X30Q1ZnaMJiXzU,15961
|
|
9
9
|
pulumiverse_scaleway/block_volume.py,sha256=gSD2_4QYRTfeH_hyyxSwEcZIfp1LsL7EeEl24FlGR4w,21752
|
|
10
10
|
pulumiverse_scaleway/cockpit.py,sha256=LwKTPo1OEp94imrlVtVlInWjmUsQJvLbMwSM5v_UumY,13295
|
|
@@ -98,6 +98,7 @@ pulumiverse_scaleway/get_loadbalancer_ip.py,sha256=jrEGl-fDa08aRlNh8t1EgWr-TuXy0
|
|
|
98
98
|
pulumiverse_scaleway/get_marketplace_image.py,sha256=5WWQHKsgrfy_fYtpMY5D8L7GxtrJM-PvRjFh8baCxrs,5780
|
|
99
99
|
pulumiverse_scaleway/get_mnq_sns.py,sha256=dIZ27qfbABpoewlpLgYq0VAPRTiVe0Vrgma7Do_ilG0,5024
|
|
100
100
|
pulumiverse_scaleway/get_mnq_sqs.py,sha256=01gry1BX4cK76ffjHS4EYRvEoKrM1VdAMKe8nt_eeV0,5024
|
|
101
|
+
pulumiverse_scaleway/get_mongo_db_instance.py,sha256=NkYF3FFq6XU0AtOJbM1XiGhaGEYFEBfqfXi0Nvk8Rs8,13520
|
|
101
102
|
pulumiverse_scaleway/get_object_bucket.py,sha256=qy4xH4S4V4G85UqU_XSH5JzFcc2QOFpJpKr4vw97bZw,11206
|
|
102
103
|
pulumiverse_scaleway/get_object_bucket_policy.py,sha256=uZn6WNmFr0_AgdYkllLN7CK3wfKlCWA4ORLw7D1hN6M,6293
|
|
103
104
|
pulumiverse_scaleway/get_redis_cluster.py,sha256=ge4tA0FHHoqdgCFmSnz7KKFhrDYxkZAf-EGfM6ovw6s,13997
|
|
@@ -126,6 +127,7 @@ pulumiverse_scaleway/iam_group_membership.py,sha256=ObP9GZEVxoCO6tXaHUMxwzITWgnJ
|
|
|
126
127
|
pulumiverse_scaleway/iam_policy.py,sha256=rEHyZ_T-a19DgqlKfFkP7aura9Bgj0Y9_0pZWlfS9VI,31080
|
|
127
128
|
pulumiverse_scaleway/iam_ssh_key.py,sha256=itgODOljktwCKlNn-4x9zLdscE07s4y5j2GDtmf1kEM,16812
|
|
128
129
|
pulumiverse_scaleway/iam_user.py,sha256=2gzp9mahQwQhDpxkldLTzZ1mv2kHcS0jubYLkwfYMPQ,18166
|
|
130
|
+
pulumiverse_scaleway/inference_deployment.py,sha256=l2njUeyGX5HRSkUR3phcT8YH-TDMuadSOSwntetvxPw,35071
|
|
129
131
|
pulumiverse_scaleway/instance_image.py,sha256=8zfZncK-CnglWjeOow3omD08hH8tylOmLWpiFtZ4LGs,31133
|
|
130
132
|
pulumiverse_scaleway/instance_ip.py,sha256=BWfgB3eu817qYvHl-KiyZobtLrAy6Aw4IGq1XNxw2sY,19084
|
|
131
133
|
pulumiverse_scaleway/instance_ip_reverse_dns.py,sha256=YcJVXZJZNTreei2oBoQQQqXGOo1KCMe35hAfpPMMU_k,10938
|
|
@@ -133,15 +135,15 @@ pulumiverse_scaleway/instance_placement_group.py,sha256=MFMit29D_GR3CR1WDXDFbZRT
|
|
|
133
135
|
pulumiverse_scaleway/instance_private_nic.py,sha256=sfgvywxZqS_NraKPmmYWKXc-Tm33nqmMOBa25mnE5wE,22228
|
|
134
136
|
pulumiverse_scaleway/instance_security_group.py,sha256=ZAGUmOZ_TfoIqyNLM79XwwRWIN_8M7TY1spDOsrnJoI,36463
|
|
135
137
|
pulumiverse_scaleway/instance_security_group_rules.py,sha256=fTtpJb-1C-3v8KuifuAI-kO2A07X4-1uCnSgHyvmy3U,20598
|
|
136
|
-
pulumiverse_scaleway/instance_server.py,sha256=
|
|
138
|
+
pulumiverse_scaleway/instance_server.py,sha256=S2nF-RsKVVJjdlzFNpJhMttYJn74bUwwQagajl-f_Lg,99703
|
|
137
139
|
pulumiverse_scaleway/instance_snapshot.py,sha256=7Xmwb37dJ9SfQC10iM3C4CeNFuyYekbTZG0-r_u_2rI,26212
|
|
138
140
|
pulumiverse_scaleway/instance_user_data.py,sha256=kodKcDiIYlUI-Ihqfpekbej534OW0ml149zK79jFMDk,16897
|
|
139
141
|
pulumiverse_scaleway/instance_volume.py,sha256=u8efM0Gj4MBJwvOyjexN2tEaj_bh9kN3D8e3-fR35yM,22511
|
|
140
142
|
pulumiverse_scaleway/iot_device.py,sha256=paiXf_py1yeuhjCjqTK1WOjpus7RjREYhM0BbrRZdGg,31891
|
|
141
143
|
pulumiverse_scaleway/iot_hub.py,sha256=Ubso4ND9VrLa2doQckEfMO1XOxqJJv9-SBustrw1ecM,36822
|
|
142
|
-
pulumiverse_scaleway/iot_network.py,sha256=
|
|
143
|
-
pulumiverse_scaleway/iot_route.py,sha256=
|
|
144
|
-
pulumiverse_scaleway/ipam_ip.py,sha256=
|
|
144
|
+
pulumiverse_scaleway/iot_network.py,sha256=IhFaw9irxSsidTvHbsK-oZ696vuOvZEdQmCw9h3dIYc,17808
|
|
145
|
+
pulumiverse_scaleway/iot_route.py,sha256=XqLMba2vU9-6D6z0fELcgPm1LipNgYdpWDjb0z7vGHk,27778
|
|
146
|
+
pulumiverse_scaleway/ipam_ip.py,sha256=feGE8HiTOgm2q9voj2NUTkXItyGeUf8NaWnori69Dzg,29318
|
|
145
147
|
pulumiverse_scaleway/ipam_ip_reverse_dns.py,sha256=U6ZxlI8EPSOD_N59L5uJ65BpevZQdBxtdb4CKjDTfJQ,11887
|
|
146
148
|
pulumiverse_scaleway/job_definition.py,sha256=Y5NAIAXSYnVHdRswbpiN2qsyfUfuVscT-XMrGEc7NQk,27335
|
|
147
149
|
pulumiverse_scaleway/kubernetes_cluster.py,sha256=jIURny5R7ewsUxsrFASJGdUDQObhwnuRBrEK40OvZpU,72226
|
|
@@ -162,15 +164,17 @@ pulumiverse_scaleway/mnq_sns_topic_subscription.py,sha256=BDHstzFkczEpiFROiilQkb
|
|
|
162
164
|
pulumiverse_scaleway/mnq_sqs.py,sha256=RmNprWJUlnAaq2KvT5PK6YfLDrTGqiFVO0IAAGLsEAI,10730
|
|
163
165
|
pulumiverse_scaleway/mnq_sqs_credentials.py,sha256=wz2vB6M_AbXAu7hGNyO_fJ7jrr0sDhDbDv8O4F8Wu6E,16546
|
|
164
166
|
pulumiverse_scaleway/mnq_sqs_queue.py,sha256=elsYeDj0oVvUZoG0XJRX36I0gIUT_PWijbcEdcv4jgs,37517
|
|
165
|
-
pulumiverse_scaleway/
|
|
167
|
+
pulumiverse_scaleway/mongo_db_instance.py,sha256=GdglwSVcLrM1SyrcF-yyhtW10J0BCfY77h-HC2_uxg0,36263
|
|
168
|
+
pulumiverse_scaleway/mongo_db_snapshot.py,sha256=YpffpGUedaN_5ZLLDV2iWir-q8mENXwcHX0BUQrMjdk,20821
|
|
169
|
+
pulumiverse_scaleway/object_bucket.py,sha256=-tPK6G7XkUuc17f_BNgx0bUDBgFImRilUnKva5raXOs,40466
|
|
166
170
|
pulumiverse_scaleway/object_bucket_acl.py,sha256=klwRuuR2zaiPT6H9VFE3l5jqQmsPIZ-UHbmu89oXFBE,26334
|
|
167
171
|
pulumiverse_scaleway/object_bucket_lock_configuration.py,sha256=dGlZSNqhU9ZVAov7hnc5Esg4n2dtUm-9GlK7VdO-qmk,16287
|
|
168
172
|
pulumiverse_scaleway/object_bucket_policy.py,sha256=GxGiWrEevynIea2zuGVLm9KTPdIN3LYy4KaoEN0CuMg,25181
|
|
169
173
|
pulumiverse_scaleway/object_bucket_website_configuration.py,sha256=WU1OVhYpVZz9UYhbCH-Hv8_odRTBkb5OoGoVkoTUccc,23900
|
|
170
174
|
pulumiverse_scaleway/object_item.py,sha256=bGt9KrQkEYrvZqhfl_8OdPUElGFQ9cu5SKqIOrXvdmQ,31011
|
|
171
|
-
pulumiverse_scaleway/outputs.py,sha256=
|
|
175
|
+
pulumiverse_scaleway/outputs.py,sha256=HUNEH4pVtGqdrqAOZ9pdRz-kR99LRQL7K827wDHddsQ,411381
|
|
172
176
|
pulumiverse_scaleway/provider.py,sha256=peWeLAx4wsEDPL35OtX2F5JKvy1SDcIAjyNwBA-VLW0,12821
|
|
173
|
-
pulumiverse_scaleway/pulumi-plugin.json,sha256=
|
|
177
|
+
pulumiverse_scaleway/pulumi-plugin.json,sha256=7J2ocfo_GdNoyp2fT_5iyWXab9eOii4H2eZAvILmuMM,136
|
|
174
178
|
pulumiverse_scaleway/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
179
|
pulumiverse_scaleway/redis_cluster.py,sha256=g30_Gfl9YKsRegXj0BE4K6SWfhhweWOcTqoweAaoC5k,53091
|
|
176
180
|
pulumiverse_scaleway/registry_namespace.py,sha256=d_zZrGqutVEIdjORSO0WzrBI0Jlwy5H4hNxyX-eHRCQ,17828
|
|
@@ -194,7 +198,7 @@ pulumiverse_scaleway/webhosting.py,sha256=ITSACl6FDSRz0_YPJhtiEVfnKiWeIRGGvgfsuw
|
|
|
194
198
|
pulumiverse_scaleway/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
195
199
|
pulumiverse_scaleway/config/__init__.pyi,sha256=BHsZ5qXz88BMFi_l7oW5X1wTGLrA-F2BGKK1orsUZCM,1036
|
|
196
200
|
pulumiverse_scaleway/config/vars.py,sha256=kOAHH8xWWS2SXrnyuSDW0mJbWUok5L_42GjO_lmbqXo,2129
|
|
197
|
-
pulumiverse_scaleway-1.20.
|
|
198
|
-
pulumiverse_scaleway-1.20.
|
|
199
|
-
pulumiverse_scaleway-1.20.
|
|
200
|
-
pulumiverse_scaleway-1.20.
|
|
201
|
+
pulumiverse_scaleway-1.20.0a1730719023.dist-info/METADATA,sha256=U1LIVPgcsxjXgzCEvR6eu50K1-i70Z4efbScsM_PoLY,1644
|
|
202
|
+
pulumiverse_scaleway-1.20.0a1730719023.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
203
|
+
pulumiverse_scaleway-1.20.0a1730719023.dist-info/top_level.txt,sha256=nZh5pqyc9FpoAll32zwyBXyAUg_m-XQXqk_YOJ5Ih2g,21
|
|
204
|
+
pulumiverse_scaleway-1.20.0a1730719023.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|