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

Files changed (28) hide show
  1. pulumiverse_scaleway/__init__.py +28 -0
  2. pulumiverse_scaleway/_inputs.py +353 -15
  3. pulumiverse_scaleway/baremetal_server.py +141 -12
  4. pulumiverse_scaleway/container_namespace.py +52 -5
  5. pulumiverse_scaleway/function_namespace.py +52 -5
  6. pulumiverse_scaleway/get_baremetal_server.py +12 -1
  7. pulumiverse_scaleway/get_container_namespace.py +15 -4
  8. pulumiverse_scaleway/get_function_namespace.py +15 -4
  9. pulumiverse_scaleway/get_iam_user.py +21 -1
  10. pulumiverse_scaleway/get_loadbalancer_ip.py +8 -2
  11. pulumiverse_scaleway/get_mongo_db_instance.py +324 -0
  12. pulumiverse_scaleway/iam_user.py +48 -1
  13. pulumiverse_scaleway/inference_deployment.py +822 -0
  14. pulumiverse_scaleway/instance_server.py +32 -22
  15. pulumiverse_scaleway/iot_network.py +47 -0
  16. pulumiverse_scaleway/iot_route.py +2 -2
  17. pulumiverse_scaleway/ipam_ip.py +91 -0
  18. pulumiverse_scaleway/loadbalancer.py +38 -72
  19. pulumiverse_scaleway/mnq_nats_credentials.py +2 -0
  20. pulumiverse_scaleway/mongo_db_instance.py +907 -0
  21. pulumiverse_scaleway/mongo_db_snapshot.py +521 -0
  22. pulumiverse_scaleway/object_bucket.py +9 -9
  23. pulumiverse_scaleway/outputs.py +337 -14
  24. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  25. {pulumiverse_scaleway-1.20.0a1730699372.dist-info → pulumiverse_scaleway-1.21.0.dist-info}/METADATA +27 -19
  26. {pulumiverse_scaleway-1.20.0a1730699372.dist-info → pulumiverse_scaleway-1.21.0.dist-info}/RECORD +28 -24
  27. {pulumiverse_scaleway-1.20.0a1730699372.dist-info → pulumiverse_scaleway-1.21.0.dist-info}/WHEEL +1 -1
  28. {pulumiverse_scaleway-1.20.0a1730699372.dist-info → pulumiverse_scaleway-1.21.0.dist-info}/top_level.txt +0 -0
@@ -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
@@ -4583,11 +4797,12 @@ class LoadbalancerPrivateNetwork(dict):
4583
4797
  status: Optional[str] = None,
4584
4798
  zone: Optional[str] = None):
4585
4799
  """
4586
- :param str private_network_id: (Required) The ID of the Private Network to attach to.
4587
- :param bool dhcp_config: (Deprecated) Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses. See below.
4588
- :param str ipam_ids: (Optional) IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
4589
- :param str static_config: (Deprecated) Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
4590
- :param str status: The status of private network connection
4800
+ :param str private_network_id: The ID of the Private Network to attach to.
4801
+ - > **Important:** Updates to `private_network` will recreate the attachment.
4802
+ :param bool dhcp_config: Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
4803
+ :param str ipam_ids: IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
4804
+ :param str static_config: Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
4805
+ :param str status: The status of the private network connection.
4591
4806
  :param str zone: `zone`) The zone of the Load Balancer.
4592
4807
  """
4593
4808
  pulumi.set(__self__, "private_network_id", private_network_id)
@@ -4606,7 +4821,8 @@ class LoadbalancerPrivateNetwork(dict):
4606
4821
  @pulumi.getter(name="privateNetworkId")
4607
4822
  def private_network_id(self) -> str:
4608
4823
  """
4609
- (Required) The ID of the Private Network to attach to.
4824
+ The ID of the Private Network to attach to.
4825
+ - > **Important:** Updates to `private_network` will recreate the attachment.
4610
4826
  """
4611
4827
  return pulumi.get(self, "private_network_id")
4612
4828
 
@@ -4615,7 +4831,7 @@ class LoadbalancerPrivateNetwork(dict):
4615
4831
  @_utilities.deprecated("""dhcp_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
4616
4832
  def dhcp_config(self) -> Optional[bool]:
4617
4833
  """
4618
- (Deprecated) Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses. See below.
4834
+ Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
4619
4835
  """
4620
4836
  return pulumi.get(self, "dhcp_config")
4621
4837
 
@@ -4623,7 +4839,7 @@ class LoadbalancerPrivateNetwork(dict):
4623
4839
  @pulumi.getter(name="ipamIds")
4624
4840
  def ipam_ids(self) -> Optional[str]:
4625
4841
  """
4626
- (Optional) IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
4842
+ IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
4627
4843
  """
4628
4844
  return pulumi.get(self, "ipam_ids")
4629
4845
 
@@ -4632,7 +4848,7 @@ class LoadbalancerPrivateNetwork(dict):
4632
4848
  @_utilities.deprecated("""static_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
4633
4849
  def static_config(self) -> Optional[str]:
4634
4850
  """
4635
- (Deprecated) Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
4851
+ Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
4636
4852
  """
4637
4853
  return pulumi.get(self, "static_config")
4638
4854
 
@@ -4640,7 +4856,7 @@ class LoadbalancerPrivateNetwork(dict):
4640
4856
  @pulumi.getter
4641
4857
  def status(self) -> Optional[str]:
4642
4858
  """
4643
- The status of private network connection
4859
+ The status of the private network connection.
4644
4860
  """
4645
4861
  return pulumi.get(self, "status")
4646
4862
 
@@ -4781,6 +4997,66 @@ class MnqSqsCredentialsPermissions(dict):
4781
4997
  return pulumi.get(self, "can_receive")
4782
4998
 
4783
4999
 
5000
+ @pulumi.output_type
5001
+ class MongoDbInstancePublicNetwork(dict):
5002
+ @staticmethod
5003
+ def __key_warning(key: str):
5004
+ suggest = None
5005
+ if key == "dnsRecord":
5006
+ suggest = "dns_record"
5007
+
5008
+ if suggest:
5009
+ pulumi.log.warn(f"Key '{key}' not found in MongoDbInstancePublicNetwork. Access the value via the '{suggest}' property getter instead.")
5010
+
5011
+ def __getitem__(self, key: str) -> Any:
5012
+ MongoDbInstancePublicNetwork.__key_warning(key)
5013
+ return super().__getitem__(key)
5014
+
5015
+ def get(self, key: str, default = None) -> Any:
5016
+ MongoDbInstancePublicNetwork.__key_warning(key)
5017
+ return super().get(key, default)
5018
+
5019
+ def __init__(__self__, *,
5020
+ dns_record: Optional[str] = None,
5021
+ id: Optional[str] = None,
5022
+ port: Optional[int] = None):
5023
+ """
5024
+ :param str dns_record: The DNS record of your endpoint
5025
+ :param str id: The ID of the MongoDB® instance.
5026
+ :param int port: TCP port of the endpoint
5027
+ """
5028
+ if dns_record is not None:
5029
+ pulumi.set(__self__, "dns_record", dns_record)
5030
+ if id is not None:
5031
+ pulumi.set(__self__, "id", id)
5032
+ if port is not None:
5033
+ pulumi.set(__self__, "port", port)
5034
+
5035
+ @property
5036
+ @pulumi.getter(name="dnsRecord")
5037
+ def dns_record(self) -> Optional[str]:
5038
+ """
5039
+ The DNS record of your endpoint
5040
+ """
5041
+ return pulumi.get(self, "dns_record")
5042
+
5043
+ @property
5044
+ @pulumi.getter
5045
+ def id(self) -> Optional[str]:
5046
+ """
5047
+ The ID of the MongoDB® instance.
5048
+ """
5049
+ return pulumi.get(self, "id")
5050
+
5051
+ @property
5052
+ @pulumi.getter
5053
+ def port(self) -> Optional[int]:
5054
+ """
5055
+ TCP port of the endpoint
5056
+ """
5057
+ return pulumi.get(self, "port")
5058
+
5059
+
4784
5060
  @pulumi.output_type
4785
5061
  class ObjectBucketAclAccessControlPolicy(dict):
4786
5062
  def __init__(__self__, *,
@@ -6374,18 +6650,21 @@ class GetBaremetalServerPrivateNetworkResult(dict):
6374
6650
  def __init__(__self__, *,
6375
6651
  created_at: str,
6376
6652
  id: str,
6653
+ ipam_ip_ids: Sequence[str],
6377
6654
  status: str,
6378
6655
  updated_at: str,
6379
6656
  vlan: int):
6380
6657
  """
6381
6658
  :param str created_at: The date and time of the creation of the private network
6382
6659
  :param str id: The ID of the server.
6660
+ :param Sequence[str] ipam_ip_ids: List of IPAM IP IDs to attach to the server
6383
6661
  :param str status: The private network status
6384
6662
  :param str updated_at: The date and time of the last update of the private network
6385
6663
  :param int vlan: The VLAN ID associated to the private network
6386
6664
  """
6387
6665
  pulumi.set(__self__, "created_at", created_at)
6388
6666
  pulumi.set(__self__, "id", id)
6667
+ pulumi.set(__self__, "ipam_ip_ids", ipam_ip_ids)
6389
6668
  pulumi.set(__self__, "status", status)
6390
6669
  pulumi.set(__self__, "updated_at", updated_at)
6391
6670
  pulumi.set(__self__, "vlan", vlan)
@@ -6406,6 +6685,14 @@ class GetBaremetalServerPrivateNetworkResult(dict):
6406
6685
  """
6407
6686
  return pulumi.get(self, "id")
6408
6687
 
6688
+ @property
6689
+ @pulumi.getter(name="ipamIpIds")
6690
+ def ipam_ip_ids(self) -> Sequence[str]:
6691
+ """
6692
+ List of IPAM IP IDs to attach to the server
6693
+ """
6694
+ return pulumi.get(self, "ipam_ip_ids")
6695
+
6409
6696
  @property
6410
6697
  @pulumi.getter
6411
6698
  def status(self) -> str:
@@ -7809,7 +8096,6 @@ class GetInstanceServersServerResult(dict):
7809
8096
  zone: str):
7810
8097
  """
7811
8098
  :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
8099
  :param bool enable_dynamic_ip: If true a dynamic IP will be attached to the server.
7814
8100
  :param bool enable_ipv6: Determines if IPv6 is enabled for the server.
7815
8101
  :param str id: The ID of the IP
@@ -7867,9 +8153,6 @@ class GetInstanceServersServerResult(dict):
7867
8153
  @pulumi.getter(name="bootscriptId")
7868
8154
  @_utilities.deprecated("""bootscript are not supported""")
7869
8155
  def bootscript_id(self) -> str:
7870
- """
7871
- The ID of the bootscript.
7872
- """
7873
8156
  return pulumi.get(self, "bootscript_id")
7874
8157
 
7875
8158
  @property
@@ -10479,6 +10762,46 @@ class GetLoadbalancerPrivateNetworkResult(dict):
10479
10762
  return pulumi.get(self, "zone")
10480
10763
 
10481
10764
 
10765
+ @pulumi.output_type
10766
+ class GetMongoDbInstancePublicNetworkResult(dict):
10767
+ def __init__(__self__, *,
10768
+ dns_record: str,
10769
+ id: str,
10770
+ port: int):
10771
+ """
10772
+ :param str dns_record: The DNS record of your endpoint
10773
+ :param str id: The ID of the MongoDB® Instance.
10774
+ :param int port: TCP port of the endpoint
10775
+ """
10776
+ pulumi.set(__self__, "dns_record", dns_record)
10777
+ pulumi.set(__self__, "id", id)
10778
+ pulumi.set(__self__, "port", port)
10779
+
10780
+ @property
10781
+ @pulumi.getter(name="dnsRecord")
10782
+ def dns_record(self) -> str:
10783
+ """
10784
+ The DNS record of your endpoint
10785
+ """
10786
+ return pulumi.get(self, "dns_record")
10787
+
10788
+ @property
10789
+ @pulumi.getter
10790
+ def id(self) -> str:
10791
+ """
10792
+ The ID of the MongoDB® Instance.
10793
+ """
10794
+ return pulumi.get(self, "id")
10795
+
10796
+ @property
10797
+ @pulumi.getter
10798
+ def port(self) -> int:
10799
+ """
10800
+ TCP port of the endpoint
10801
+ """
10802
+ return pulumi.get(self, "port")
10803
+
10804
+
10482
10805
  @pulumi.output_type
10483
10806
  class GetObjectBucketCorsRuleResult(dict):
10484
10807
  def __init__(__self__, *,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "scaleway",
4
- "version": "1.20.0-alpha.1730699372",
4
+ "version": "1.21.0",
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.0a1730699372
3
+ Version: 1.21.0
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
@@ -8,10 +8,10 @@ Project-URL: Repository, https://github.com/pulumiverse/pulumi-scaleway
8
8
  Keywords: pulumi,scaleway,pulumiverse
9
9
  Requires-Python: >=3.8
10
10
  Description-Content-Type: text/markdown
11
- Requires-Dist: parver >=0.2.1
12
- Requires-Dist: pulumi <4.0.0,>=3.0.0
13
- Requires-Dist: semver >=2.8.1
14
- Requires-Dist: typing-extensions >=4.11 ; python_version < "3.11"
11
+ Requires-Dist: parver>=0.2.1
12
+ Requires-Dist: pulumi<4.0.0,>=3.0.0
13
+ Requires-Dist: semver>=2.8.1
14
+ Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
15
15
 
16
16
 
17
17
  # Scaleway Resource Provider
@@ -19,6 +19,17 @@ Requires-Dist: typing-extensions >=4.11 ; python_version < "3.11"
19
19
  The Scaleway resource provider for Pulumi lets you creating resources in [Scaleway](https://www.scaleway.com). To use
20
20
  this package, please [install the Pulumi CLI first](https://pulumi.com/).
21
21
 
22
+ ## Support
23
+
24
+ This is a community maintained provider. Please file issues and feature requests here:
25
+
26
+ [pulumiverse/pulumi-scaleway](https://github.com/pulumiverse/pulumi-scaleway/issues)
27
+
28
+ You can also reach out on one of these channels:
29
+
30
+ * `#pulumiverse` channel on the [Pulumi Community Slack](https://slack.pulumi.com)
31
+ * `#pulumi` channel on the [Scaleway Community Slack](https://slack.scaleway.com)
32
+
22
33
  ## Installing
23
34
 
24
35
  This package is available in many languages in the standard packaging formats.
@@ -27,43 +38,40 @@ This package is available in many languages in the standard packaging formats.
27
38
 
28
39
  To use from JavaScript or TypeScript in Node.js, install using either `npm`:
29
40
 
30
- ```
31
- $ npm install @pulumiverse/scaleway
41
+ ```sh
42
+ npm install @pulumiverse/scaleway
32
43
  ```
33
44
 
34
45
  or `yarn`:
35
46
 
36
- ```
37
- $ yarn add @pulumiverse/scaleway
47
+ ```sh
48
+ yarn add @pulumiverse/scaleway
38
49
  ```
39
50
 
40
51
  ### Python
41
52
 
42
53
  To use from Python, install using `pip`:
43
54
 
44
- ```
45
- $ pip install pulumiverse-scaleway
55
+ ```sh
56
+ pip install pulumiverse-scaleway
46
57
  ```
47
58
 
48
59
  ### Go
49
60
 
50
61
  To use from Go, use `go get` to grab the latest version of the library
51
62
 
52
- ```
53
- $ go get github.com/pulumiverse/pulumi-scaleway/sdk/go/...
63
+ ```sh
64
+ go get github.com/pulumiverse/pulumi-scaleway/sdk/go/...
54
65
  ```
55
66
 
56
67
  ### .NET
57
68
 
58
69
  To use from Dotnet, use `dotnet add package` to install into your project. You must specify the version if it is a pre-release version.
59
70
 
60
-
61
- ```
62
- $ dotnet add package Pulumiverse.Scaleway
71
+ ```sh
72
+ dotnet add package Pulumiverse.Scaleway
63
73
  ```
64
74
 
65
75
  ## Reference
66
76
 
67
- See the Pulumi registry for API docs:
68
-
69
- https://www.pulumi.com/registry/packages/scaleway/api-docs/
77
+ See the Pulumi registry for [API documention](https://www.pulumi.com/registry/packages/scaleway/api-docs/).