pulumiverse-scaleway 1.20.0__py3-none-any.whl → 1.20.0a1730625461__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.

@@ -42,8 +42,6 @@ __all__ = [
42
42
  'FunctionTriggerNats',
43
43
  'FunctionTriggerSqs',
44
44
  'IamPolicyRule',
45
- 'InferenceDeploymentPrivateEndpoint',
46
- 'InferenceDeploymentPublicEndpoint',
47
45
  'InstanceImageAdditionalVolume',
48
46
  'InstanceSecurityGroupInboundRule',
49
47
  'InstanceSecurityGroupOutboundRule',
@@ -60,7 +58,6 @@ __all__ = [
60
58
  'IotRouteDatabase',
61
59
  'IotRouteRest',
62
60
  'IotRouteS3',
63
- 'IpamIpCustomResource',
64
61
  'IpamIpResource',
65
62
  'IpamIpReverse',
66
63
  'IpamIpSource',
@@ -86,7 +83,6 @@ __all__ = [
86
83
  'LoadbalancerPrivateNetwork',
87
84
  'MnqSnsCredentialsPermissions',
88
85
  'MnqSqsCredentialsPermissions',
89
- 'MongoDbInstancePublicNetwork',
90
86
  'ObjectBucketAclAccessControlPolicy',
91
87
  'ObjectBucketAclAccessControlPolicyGrant',
92
88
  'ObjectBucketAclAccessControlPolicyGrantGrantee',
@@ -178,7 +174,6 @@ __all__ = [
178
174
  'GetLoadbalancerCertificateCustomCertificateResult',
179
175
  'GetLoadbalancerCertificateLetsencryptResult',
180
176
  'GetLoadbalancerPrivateNetworkResult',
181
- 'GetMongoDbInstancePublicNetworkResult',
182
177
  'GetObjectBucketCorsRuleResult',
183
178
  'GetObjectBucketLifecycleRuleResult',
184
179
  'GetObjectBucketLifecycleRuleExpirationResult',
@@ -430,8 +425,6 @@ class BaremetalServerPrivateNetwork(dict):
430
425
  suggest = None
431
426
  if key == "createdAt":
432
427
  suggest = "created_at"
433
- elif key == "ipamIpIds":
434
- suggest = "ipam_ip_ids"
435
428
  elif key == "updatedAt":
436
429
  suggest = "updated_at"
437
430
 
@@ -449,14 +442,12 @@ class BaremetalServerPrivateNetwork(dict):
449
442
  def __init__(__self__, *,
450
443
  id: str,
451
444
  created_at: Optional[str] = None,
452
- ipam_ip_ids: Optional[Sequence[str]] = None,
453
445
  status: Optional[str] = None,
454
446
  updated_at: Optional[str] = None,
455
447
  vlan: Optional[int] = None):
456
448
  """
457
449
  :param str id: The id of the private network to attach.
458
450
  :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.
460
451
  :param str status: The private network status.
461
452
  :param str updated_at: The date and time of the last update of the private network.
462
453
  :param int vlan: The VLAN ID associated to the private network.
@@ -464,8 +455,6 @@ class BaremetalServerPrivateNetwork(dict):
464
455
  pulumi.set(__self__, "id", id)
465
456
  if created_at is not None:
466
457
  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)
469
458
  if status is not None:
470
459
  pulumi.set(__self__, "status", status)
471
460
  if updated_at is not None:
@@ -489,14 +478,6 @@ class BaremetalServerPrivateNetwork(dict):
489
478
  """
490
479
  return pulumi.get(self, "created_at")
491
480
 
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
-
500
481
  @property
501
482
  @pulumi.getter
502
483
  def status(self) -> Optional[str]:
@@ -1985,154 +1966,6 @@ class IamPolicyRule(dict):
1985
1966
  return pulumi.get(self, "project_ids")
1986
1967
 
1987
1968
 
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
-
2136
1969
  @pulumi.output_type
2137
1970
  class InstanceImageAdditionalVolume(dict):
2138
1971
  @staticmethod
@@ -3306,53 +3139,6 @@ class IotRouteS3(dict):
3306
3139
  return pulumi.get(self, "object_prefix")
3307
3140
 
3308
3141
 
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
-
3356
3142
  @pulumi.output_type
3357
3143
  class IpamIpResource(dict):
3358
3144
  @staticmethod
@@ -4995,66 +4781,6 @@ class MnqSqsCredentialsPermissions(dict):
4995
4781
  return pulumi.get(self, "can_receive")
4996
4782
 
4997
4783
 
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
-
5058
4784
  @pulumi.output_type
5059
4785
  class ObjectBucketAclAccessControlPolicy(dict):
5060
4786
  def __init__(__self__, *,
@@ -6648,21 +6374,18 @@ class GetBaremetalServerPrivateNetworkResult(dict):
6648
6374
  def __init__(__self__, *,
6649
6375
  created_at: str,
6650
6376
  id: str,
6651
- ipam_ip_ids: Sequence[str],
6652
6377
  status: str,
6653
6378
  updated_at: str,
6654
6379
  vlan: int):
6655
6380
  """
6656
6381
  :param str created_at: The date and time of the creation of the private network
6657
6382
  :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
6659
6383
  :param str status: The private network status
6660
6384
  :param str updated_at: The date and time of the last update of the private network
6661
6385
  :param int vlan: The VLAN ID associated to the private network
6662
6386
  """
6663
6387
  pulumi.set(__self__, "created_at", created_at)
6664
6388
  pulumi.set(__self__, "id", id)
6665
- pulumi.set(__self__, "ipam_ip_ids", ipam_ip_ids)
6666
6389
  pulumi.set(__self__, "status", status)
6667
6390
  pulumi.set(__self__, "updated_at", updated_at)
6668
6391
  pulumi.set(__self__, "vlan", vlan)
@@ -6683,14 +6406,6 @@ class GetBaremetalServerPrivateNetworkResult(dict):
6683
6406
  """
6684
6407
  return pulumi.get(self, "id")
6685
6408
 
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
-
6694
6409
  @property
6695
6410
  @pulumi.getter
6696
6411
  def status(self) -> str:
@@ -8094,6 +7809,7 @@ class GetInstanceServersServerResult(dict):
8094
7809
  zone: str):
8095
7810
  """
8096
7811
  :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.
8097
7813
  :param bool enable_dynamic_ip: If true a dynamic IP will be attached to the server.
8098
7814
  :param bool enable_ipv6: Determines if IPv6 is enabled for the server.
8099
7815
  :param str id: The ID of the IP
@@ -8151,6 +7867,9 @@ class GetInstanceServersServerResult(dict):
8151
7867
  @pulumi.getter(name="bootscriptId")
8152
7868
  @_utilities.deprecated("""bootscript are not supported""")
8153
7869
  def bootscript_id(self) -> str:
7870
+ """
7871
+ The ID of the bootscript.
7872
+ """
8154
7873
  return pulumi.get(self, "bootscript_id")
8155
7874
 
8156
7875
  @property
@@ -10760,46 +10479,6 @@ class GetLoadbalancerPrivateNetworkResult(dict):
10760
10479
  return pulumi.get(self, "zone")
10761
10480
 
10762
10481
 
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
-
10803
10482
  @pulumi.output_type
10804
10483
  class GetObjectBucketCorsRuleResult(dict):
10805
10484
  def __init__(__self__, *,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "scaleway",
4
- "version": "1.20.0",
4
+ "version": "1.20.0-alpha.1730625461",
5
5
  "server": "github://api.github.com/pulumiverse"
6
6
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumiverse_scaleway
3
- Version: 1.20.0
3
+ Version: 1.20.0a1730625461
4
4
  Summary: A Pulumi package for creating and managing Scaleway cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.scaleway.com
@@ -1,10 +1,10 @@
1
- pulumiverse_scaleway/__init__.py,sha256=YyPQMbZZWKrTHnWGPxMndrmbHwB3MMioi7xhcHCgLU0,26206
2
- pulumiverse_scaleway/_inputs.py,sha256=1otN24CIcSs7_wFf-jzc0W8iVsIxz1h6Y4qWg6P6EMQ,327002
1
+ pulumiverse_scaleway/__init__.py,sha256=yAcj7PU-8vXOJWbx5BSvYZLJt9D1Al5xoI3iAOHyYt0,25496
2
+ pulumiverse_scaleway/_inputs.py,sha256=CJkBzu8YG49NXAUB_PxUMAF9FEX0C4WgN7up7aaUais,315773
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=AhXnJDzxdT8C3sad_Qs79BSlyGv4ZotZRCFv7IT0WKY,65181
7
+ pulumiverse_scaleway/baremetal_server.py,sha256=R5HhA_Jh0jptoPdvYEP4mn4ugbKSHWzuwFL7-mx2Zx4,62197
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,7 +98,6 @@ 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
102
101
  pulumiverse_scaleway/get_object_bucket.py,sha256=qy4xH4S4V4G85UqU_XSH5JzFcc2QOFpJpKr4vw97bZw,11206
103
102
  pulumiverse_scaleway/get_object_bucket_policy.py,sha256=uZn6WNmFr0_AgdYkllLN7CK3wfKlCWA4ORLw7D1hN6M,6293
104
103
  pulumiverse_scaleway/get_redis_cluster.py,sha256=ge4tA0FHHoqdgCFmSnz7KKFhrDYxkZAf-EGfM6ovw6s,13997
@@ -127,7 +126,6 @@ pulumiverse_scaleway/iam_group_membership.py,sha256=ObP9GZEVxoCO6tXaHUMxwzITWgnJ
127
126
  pulumiverse_scaleway/iam_policy.py,sha256=rEHyZ_T-a19DgqlKfFkP7aura9Bgj0Y9_0pZWlfS9VI,31080
128
127
  pulumiverse_scaleway/iam_ssh_key.py,sha256=itgODOljktwCKlNn-4x9zLdscE07s4y5j2GDtmf1kEM,16812
129
128
  pulumiverse_scaleway/iam_user.py,sha256=2gzp9mahQwQhDpxkldLTzZ1mv2kHcS0jubYLkwfYMPQ,18166
130
- pulumiverse_scaleway/inference_deployment.py,sha256=l2njUeyGX5HRSkUR3phcT8YH-TDMuadSOSwntetvxPw,35071
131
129
  pulumiverse_scaleway/instance_image.py,sha256=8zfZncK-CnglWjeOow3omD08hH8tylOmLWpiFtZ4LGs,31133
132
130
  pulumiverse_scaleway/instance_ip.py,sha256=BWfgB3eu817qYvHl-KiyZobtLrAy6Aw4IGq1XNxw2sY,19084
133
131
  pulumiverse_scaleway/instance_ip_reverse_dns.py,sha256=YcJVXZJZNTreei2oBoQQQqXGOo1KCMe35hAfpPMMU_k,10938
@@ -135,15 +133,15 @@ pulumiverse_scaleway/instance_placement_group.py,sha256=MFMit29D_GR3CR1WDXDFbZRT
135
133
  pulumiverse_scaleway/instance_private_nic.py,sha256=sfgvywxZqS_NraKPmmYWKXc-Tm33nqmMOBa25mnE5wE,22228
136
134
  pulumiverse_scaleway/instance_security_group.py,sha256=ZAGUmOZ_TfoIqyNLM79XwwRWIN_8M7TY1spDOsrnJoI,36463
137
135
  pulumiverse_scaleway/instance_security_group_rules.py,sha256=fTtpJb-1C-3v8KuifuAI-kO2A07X4-1uCnSgHyvmy3U,20598
138
- pulumiverse_scaleway/instance_server.py,sha256=S2nF-RsKVVJjdlzFNpJhMttYJn74bUwwQagajl-f_Lg,99703
136
+ pulumiverse_scaleway/instance_server.py,sha256=SKUWesCuivSzxT2yvkdZbQcorrEHSREp2FsZTWd6idk,98443
139
137
  pulumiverse_scaleway/instance_snapshot.py,sha256=7Xmwb37dJ9SfQC10iM3C4CeNFuyYekbTZG0-r_u_2rI,26212
140
138
  pulumiverse_scaleway/instance_user_data.py,sha256=kodKcDiIYlUI-Ihqfpekbej534OW0ml149zK79jFMDk,16897
141
139
  pulumiverse_scaleway/instance_volume.py,sha256=u8efM0Gj4MBJwvOyjexN2tEaj_bh9kN3D8e3-fR35yM,22511
142
140
  pulumiverse_scaleway/iot_device.py,sha256=paiXf_py1yeuhjCjqTK1WOjpus7RjREYhM0BbrRZdGg,31891
143
141
  pulumiverse_scaleway/iot_hub.py,sha256=Ubso4ND9VrLa2doQckEfMO1XOxqJJv9-SBustrw1ecM,36822
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
142
+ pulumiverse_scaleway/iot_network.py,sha256=zBzIMKA4yP61bbPe16KfzyAILNYsfB1WMMn8EeyDEW0,15810
143
+ pulumiverse_scaleway/iot_route.py,sha256=1zjvEirh46MX7tBUy_d-x6E6sMoaChBPRIHUd64JmVE,27778
144
+ pulumiverse_scaleway/ipam_ip.py,sha256=EsgBmW6IdH-HCDb9GpNzRgZnS-sr6hxkaLUtK4gHf7s,25087
147
145
  pulumiverse_scaleway/ipam_ip_reverse_dns.py,sha256=U6ZxlI8EPSOD_N59L5uJ65BpevZQdBxtdb4CKjDTfJQ,11887
148
146
  pulumiverse_scaleway/job_definition.py,sha256=Y5NAIAXSYnVHdRswbpiN2qsyfUfuVscT-XMrGEc7NQk,27335
149
147
  pulumiverse_scaleway/kubernetes_cluster.py,sha256=jIURny5R7ewsUxsrFASJGdUDQObhwnuRBrEK40OvZpU,72226
@@ -164,17 +162,15 @@ pulumiverse_scaleway/mnq_sns_topic_subscription.py,sha256=BDHstzFkczEpiFROiilQkb
164
162
  pulumiverse_scaleway/mnq_sqs.py,sha256=RmNprWJUlnAaq2KvT5PK6YfLDrTGqiFVO0IAAGLsEAI,10730
165
163
  pulumiverse_scaleway/mnq_sqs_credentials.py,sha256=wz2vB6M_AbXAu7hGNyO_fJ7jrr0sDhDbDv8O4F8Wu6E,16546
166
164
  pulumiverse_scaleway/mnq_sqs_queue.py,sha256=elsYeDj0oVvUZoG0XJRX36I0gIUT_PWijbcEdcv4jgs,37517
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
165
+ pulumiverse_scaleway/object_bucket.py,sha256=eLoBEeULIMPW4fyL7wCd7GoUdOHsV4FG5KF92nHNkIA,40111
170
166
  pulumiverse_scaleway/object_bucket_acl.py,sha256=klwRuuR2zaiPT6H9VFE3l5jqQmsPIZ-UHbmu89oXFBE,26334
171
167
  pulumiverse_scaleway/object_bucket_lock_configuration.py,sha256=dGlZSNqhU9ZVAov7hnc5Esg4n2dtUm-9GlK7VdO-qmk,16287
172
168
  pulumiverse_scaleway/object_bucket_policy.py,sha256=GxGiWrEevynIea2zuGVLm9KTPdIN3LYy4KaoEN0CuMg,25181
173
169
  pulumiverse_scaleway/object_bucket_website_configuration.py,sha256=WU1OVhYpVZz9UYhbCH-Hv8_odRTBkb5OoGoVkoTUccc,23900
174
170
  pulumiverse_scaleway/object_item.py,sha256=bGt9KrQkEYrvZqhfl_8OdPUElGFQ9cu5SKqIOrXvdmQ,31011
175
- pulumiverse_scaleway/outputs.py,sha256=HUNEH4pVtGqdrqAOZ9pdRz-kR99LRQL7K827wDHddsQ,411381
171
+ pulumiverse_scaleway/outputs.py,sha256=t8_6LgysUiWEetytkNDuGBQVkIsMk00vb7FH6VXVXXo,401065
176
172
  pulumiverse_scaleway/provider.py,sha256=peWeLAx4wsEDPL35OtX2F5JKvy1SDcIAjyNwBA-VLW0,12821
177
- pulumiverse_scaleway/pulumi-plugin.json,sha256=8EXVrQ_UYLEKVR0WEtCnSSZLa3huZRHZkkac20R9MHs,119
173
+ pulumiverse_scaleway/pulumi-plugin.json,sha256=X1KU7RrM-hvLWTaRKHHy5IAEMidgj4pGXrS03dmJ-3I,136
178
174
  pulumiverse_scaleway/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
175
  pulumiverse_scaleway/redis_cluster.py,sha256=g30_Gfl9YKsRegXj0BE4K6SWfhhweWOcTqoweAaoC5k,53091
180
176
  pulumiverse_scaleway/registry_namespace.py,sha256=d_zZrGqutVEIdjORSO0WzrBI0Jlwy5H4hNxyX-eHRCQ,17828
@@ -198,7 +194,7 @@ pulumiverse_scaleway/webhosting.py,sha256=ITSACl6FDSRz0_YPJhtiEVfnKiWeIRGGvgfsuw
198
194
  pulumiverse_scaleway/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
199
195
  pulumiverse_scaleway/config/__init__.pyi,sha256=BHsZ5qXz88BMFi_l7oW5X1wTGLrA-F2BGKK1orsUZCM,1036
200
196
  pulumiverse_scaleway/config/vars.py,sha256=kOAHH8xWWS2SXrnyuSDW0mJbWUok5L_42GjO_lmbqXo,2129
201
- pulumiverse_scaleway-1.20.0.dist-info/METADATA,sha256=WmxCvoOzlmdOG0iJQiHoQI8KGHkXkb_uUvwwC7wXm2U,1633
202
- pulumiverse_scaleway-1.20.0.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
203
- pulumiverse_scaleway-1.20.0.dist-info/top_level.txt,sha256=nZh5pqyc9FpoAll32zwyBXyAUg_m-XQXqk_YOJ5Ih2g,21
204
- pulumiverse_scaleway-1.20.0.dist-info/RECORD,,
197
+ pulumiverse_scaleway-1.20.0a1730625461.dist-info/METADATA,sha256=7K-A50oyFG0cVjZC64GeT-gQrbuqbAiHX8C4tkRu1wY,1644
198
+ pulumiverse_scaleway-1.20.0a1730625461.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
199
+ pulumiverse_scaleway-1.20.0a1730625461.dist-info/top_level.txt,sha256=nZh5pqyc9FpoAll32zwyBXyAUg_m-XQXqk_YOJ5Ih2g,21
200
+ pulumiverse_scaleway-1.20.0a1730625461.dist-info/RECORD,,