pulumiverse-scaleway 1.28.0a1747119212__py3-none-any.whl → 1.29.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.
Files changed (102) hide show
  1. pulumiverse_scaleway/__init__.py +16 -1
  2. pulumiverse_scaleway/_inputs.py +604 -6
  3. pulumiverse_scaleway/account/__init__.py +2 -0
  4. pulumiverse_scaleway/account/get_projects.py +235 -0
  5. pulumiverse_scaleway/account/outputs.py +95 -0
  6. pulumiverse_scaleway/baremetal_server.py +67 -258
  7. pulumiverse_scaleway/block/__init__.py +2 -0
  8. pulumiverse_scaleway/block/_inputs.py +73 -0
  9. pulumiverse_scaleway/block/get_snapshot.py +13 -1
  10. pulumiverse_scaleway/block/outputs.py +79 -0
  11. pulumiverse_scaleway/block/snapshot.py +62 -14
  12. pulumiverse_scaleway/block_snapshot.py +62 -14
  13. pulumiverse_scaleway/container.py +2 -2
  14. pulumiverse_scaleway/containers/container.py +2 -2
  15. pulumiverse_scaleway/database_instance.py +61 -21
  16. pulumiverse_scaleway/databases/_inputs.py +54 -0
  17. pulumiverse_scaleway/databases/get_instance.py +12 -1
  18. pulumiverse_scaleway/databases/instance.py +61 -21
  19. pulumiverse_scaleway/databases/outputs.py +62 -0
  20. pulumiverse_scaleway/databases/snapshot.py +2 -2
  21. pulumiverse_scaleway/domain/get_zone.py +7 -1
  22. pulumiverse_scaleway/elasticmetal/__init__.py +1 -1
  23. pulumiverse_scaleway/elasticmetal/_inputs.py +74 -0
  24. pulumiverse_scaleway/elasticmetal/get_partition_schema.py +215 -0
  25. pulumiverse_scaleway/elasticmetal/get_server.py +12 -1
  26. pulumiverse_scaleway/elasticmetal/outputs.py +87 -0
  27. pulumiverse_scaleway/elasticmetal/server.py +67 -258
  28. pulumiverse_scaleway/get_baremetal_server.py +12 -1
  29. pulumiverse_scaleway/get_block_snapshot.py +13 -1
  30. pulumiverse_scaleway/get_cockpit_plan.py +2 -38
  31. pulumiverse_scaleway/get_database_instance.py +12 -1
  32. pulumiverse_scaleway/get_domain_zone.py +7 -1
  33. pulumiverse_scaleway/get_instance_private_nic.py +13 -1
  34. pulumiverse_scaleway/get_instance_server.py +12 -1
  35. pulumiverse_scaleway/get_lb_route.py +12 -1
  36. pulumiverse_scaleway/get_loadbalancer.py +12 -1
  37. pulumiverse_scaleway/get_mongo_db_instance.py +12 -1
  38. pulumiverse_scaleway/get_redis_cluster.py +12 -1
  39. pulumiverse_scaleway/get_vpc_gateway_network.py +12 -1
  40. pulumiverse_scaleway/iam/user.py +468 -14
  41. pulumiverse_scaleway/iam_user.py +468 -14
  42. pulumiverse_scaleway/inference/__init__.py +2 -0
  43. pulumiverse_scaleway/inference/_inputs.py +128 -0
  44. pulumiverse_scaleway/inference/deployment.py +70 -55
  45. pulumiverse_scaleway/inference/get_model.py +299 -0
  46. pulumiverse_scaleway/inference/model.py +683 -0
  47. pulumiverse_scaleway/inference/outputs.py +184 -0
  48. pulumiverse_scaleway/inference_deployment.py +70 -55
  49. pulumiverse_scaleway/instance/_inputs.py +108 -0
  50. pulumiverse_scaleway/instance/get_private_nic.py +13 -1
  51. pulumiverse_scaleway/instance/get_server.py +12 -1
  52. pulumiverse_scaleway/instance/outputs.py +124 -0
  53. pulumiverse_scaleway/instance/private_nic.py +49 -0
  54. pulumiverse_scaleway/instance/server.py +47 -0
  55. pulumiverse_scaleway/instance/snapshot.py +28 -7
  56. pulumiverse_scaleway/instance/volume.py +28 -7
  57. pulumiverse_scaleway/instance_private_nic.py +49 -0
  58. pulumiverse_scaleway/instance_server.py +47 -0
  59. pulumiverse_scaleway/instance_snapshot.py +28 -7
  60. pulumiverse_scaleway/instance_volume.py +28 -7
  61. pulumiverse_scaleway/kubernetes/__init__.py +1 -0
  62. pulumiverse_scaleway/kubernetes/_inputs.py +203 -0
  63. pulumiverse_scaleway/kubernetes/acl.py +446 -0
  64. pulumiverse_scaleway/kubernetes/outputs.py +195 -1
  65. pulumiverse_scaleway/loadbalancer.py +28 -0
  66. pulumiverse_scaleway/loadbalancer_route.py +138 -14
  67. pulumiverse_scaleway/loadbalancers/_inputs.py +54 -0
  68. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +12 -1
  69. pulumiverse_scaleway/loadbalancers/get_route.py +12 -1
  70. pulumiverse_scaleway/loadbalancers/load_balancer.py +28 -0
  71. pulumiverse_scaleway/loadbalancers/outputs.py +62 -0
  72. pulumiverse_scaleway/loadbalancers/route.py +138 -14
  73. pulumiverse_scaleway/mnq/sns_credentials.py +7 -7
  74. pulumiverse_scaleway/mnq/sqs_credentials.py +7 -7
  75. pulumiverse_scaleway/mnq_sns_credentials.py +7 -7
  76. pulumiverse_scaleway/mnq_sqs_credentials.py +7 -7
  77. pulumiverse_scaleway/mongo_db_instance.py +107 -7
  78. pulumiverse_scaleway/mongodb/_inputs.py +54 -0
  79. pulumiverse_scaleway/mongodb/get_instance.py +12 -1
  80. pulumiverse_scaleway/mongodb/instance.py +107 -7
  81. pulumiverse_scaleway/mongodb/outputs.py +62 -0
  82. pulumiverse_scaleway/network/_inputs.py +54 -0
  83. pulumiverse_scaleway/network/gateway_network.py +47 -0
  84. pulumiverse_scaleway/network/get_gateway_network.py +12 -1
  85. pulumiverse_scaleway/network/outputs.py +62 -0
  86. pulumiverse_scaleway/network/route.py +90 -2
  87. pulumiverse_scaleway/observability/__init__.py +0 -1
  88. pulumiverse_scaleway/observability/get_plan.py +2 -38
  89. pulumiverse_scaleway/outputs.py +718 -27
  90. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  91. pulumiverse_scaleway/rdb_snapshot.py +2 -2
  92. pulumiverse_scaleway/redis/_inputs.py +60 -6
  93. pulumiverse_scaleway/redis/cluster.py +47 -0
  94. pulumiverse_scaleway/redis/get_cluster.py +12 -1
  95. pulumiverse_scaleway/redis/outputs.py +66 -4
  96. pulumiverse_scaleway/redis_cluster.py +47 -0
  97. pulumiverse_scaleway/vpc_gateway_network.py +47 -0
  98. pulumiverse_scaleway/vpc_route.py +90 -2
  99. {pulumiverse_scaleway-1.28.0a1747119212.dist-info → pulumiverse_scaleway-1.29.0.dist-info}/METADATA +1 -1
  100. {pulumiverse_scaleway-1.28.0a1747119212.dist-info → pulumiverse_scaleway-1.29.0.dist-info}/RECORD +102 -94
  101. {pulumiverse_scaleway-1.28.0a1747119212.dist-info → pulumiverse_scaleway-1.29.0.dist-info}/WHEEL +1 -1
  102. {pulumiverse_scaleway-1.28.0a1747119212.dist-info → pulumiverse_scaleway-1.29.0.dist-info}/top_level.txt +0 -0
@@ -25,8 +25,12 @@ __all__ = [
25
25
  'BaremetalServerIpv6ArgsDict',
26
26
  'BaremetalServerOptionArgs',
27
27
  'BaremetalServerOptionArgsDict',
28
+ 'BaremetalServerPrivateIpArgs',
29
+ 'BaremetalServerPrivateIpArgsDict',
28
30
  'BaremetalServerPrivateNetworkArgs',
29
31
  'BaremetalServerPrivateNetworkArgsDict',
32
+ 'BlockSnapshotImportArgs',
33
+ 'BlockSnapshotImportArgsDict',
30
34
  'CockpitAlertManagerContactPointArgs',
31
35
  'CockpitAlertManagerContactPointArgsDict',
32
36
  'CockpitEndpointArgs',
@@ -51,6 +55,8 @@ __all__ = [
51
55
  'DatabaseInstanceLoadBalancerArgsDict',
52
56
  'DatabaseInstanceLogsPolicyArgs',
53
57
  'DatabaseInstanceLogsPolicyArgsDict',
58
+ 'DatabaseInstancePrivateIpArgs',
59
+ 'DatabaseInstancePrivateIpArgsDict',
54
60
  'DatabaseInstancePrivateNetworkArgs',
55
61
  'DatabaseInstancePrivateNetworkArgsDict',
56
62
  'DatabaseInstanceReadReplicaArgs',
@@ -97,6 +103,8 @@ __all__ = [
97
103
  'InferenceDeploymentPublicEndpointArgsDict',
98
104
  'InstanceImageAdditionalVolumeArgs',
99
105
  'InstanceImageAdditionalVolumeArgsDict',
106
+ 'InstancePrivateNicPrivateIpArgs',
107
+ 'InstancePrivateNicPrivateIpArgsDict',
100
108
  'InstanceSecurityGroupInboundRuleArgs',
101
109
  'InstanceSecurityGroupInboundRuleArgsDict',
102
110
  'InstanceSecurityGroupOutboundRuleArgs',
@@ -105,6 +113,8 @@ __all__ = [
105
113
  'InstanceSecurityGroupRulesInboundRuleArgsDict',
106
114
  'InstanceSecurityGroupRulesOutboundRuleArgs',
107
115
  'InstanceSecurityGroupRulesOutboundRuleArgsDict',
116
+ 'InstanceServerPrivateIpArgs',
117
+ 'InstanceServerPrivateIpArgsDict',
108
118
  'InstanceServerPrivateNetworkArgs',
109
119
  'InstanceServerPrivateNetworkArgsDict',
110
120
  'InstanceServerPublicIpArgs',
@@ -149,6 +159,8 @@ __all__ = [
149
159
  'KubernetesClusterOpenIdConnectConfigArgsDict',
150
160
  'KubernetesNodePoolNodeArgs',
151
161
  'KubernetesNodePoolNodeArgsDict',
162
+ 'KubernetesNodePoolNodePrivateIpArgs',
163
+ 'KubernetesNodePoolNodePrivateIpArgsDict',
152
164
  'KubernetesNodePoolUpgradePolicyArgs',
153
165
  'KubernetesNodePoolUpgradePolicyArgsDict',
154
166
  'LoadbalancerAclActionArgs',
@@ -175,12 +187,16 @@ __all__ = [
175
187
  'LoadbalancerFrontendAclActionRedirectArgsDict',
176
188
  'LoadbalancerFrontendAclMatchArgs',
177
189
  'LoadbalancerFrontendAclMatchArgsDict',
190
+ 'LoadbalancerPrivateIpArgs',
191
+ 'LoadbalancerPrivateIpArgsDict',
178
192
  'LoadbalancerPrivateNetworkArgs',
179
193
  'LoadbalancerPrivateNetworkArgsDict',
180
194
  'MnqSnsCredentialsPermissionsArgs',
181
195
  'MnqSnsCredentialsPermissionsArgsDict',
182
196
  'MnqSqsCredentialsPermissionsArgs',
183
197
  'MnqSqsCredentialsPermissionsArgsDict',
198
+ 'MongoDbInstancePrivateIpArgs',
199
+ 'MongoDbInstancePrivateIpArgsDict',
184
200
  'MongoDbInstancePrivateNetworkArgs',
185
201
  'MongoDbInstancePrivateNetworkArgsDict',
186
202
  'MongoDbInstancePublicNetworkArgs',
@@ -213,6 +229,8 @@ __all__ = [
213
229
  'ObjectBucketWebsiteConfigurationIndexDocumentArgsDict',
214
230
  'RedisClusterAclArgs',
215
231
  'RedisClusterAclArgsDict',
232
+ 'RedisClusterPrivateIpArgs',
233
+ 'RedisClusterPrivateIpArgsDict',
216
234
  'RedisClusterPrivateNetworkArgs',
217
235
  'RedisClusterPrivateNetworkArgsDict',
218
236
  'RedisClusterPublicNetworkArgs',
@@ -225,6 +243,8 @@ __all__ = [
225
243
  'TemDomainReputationArgsDict',
226
244
  'VpcGatewayNetworkIpamConfigArgs',
227
245
  'VpcGatewayNetworkIpamConfigArgsDict',
246
+ 'VpcGatewayNetworkPrivateIpArgs',
247
+ 'VpcGatewayNetworkPrivateIpArgsDict',
228
248
  'VpcPrivateNetworkIpv4SubnetArgs',
229
249
  'VpcPrivateNetworkIpv4SubnetArgsDict',
230
250
  'VpcPrivateNetworkIpv6SubnetArgs',
@@ -723,6 +743,58 @@ class BaremetalServerOptionArgs:
723
743
  pulumi.set(self, "name", value)
724
744
 
725
745
 
746
+ if not MYPY:
747
+ class BaremetalServerPrivateIpArgsDict(TypedDict):
748
+ address: NotRequired[pulumi.Input[str]]
749
+ """
750
+ The address of the IPv6.
751
+ """
752
+ id: NotRequired[pulumi.Input[str]]
753
+ """
754
+ The ID of the IPv6.
755
+ """
756
+ elif False:
757
+ BaremetalServerPrivateIpArgsDict: TypeAlias = Mapping[str, Any]
758
+
759
+ @pulumi.input_type
760
+ class BaremetalServerPrivateIpArgs:
761
+ def __init__(__self__, *,
762
+ address: Optional[pulumi.Input[str]] = None,
763
+ id: Optional[pulumi.Input[str]] = None):
764
+ """
765
+ :param pulumi.Input[str] address: The address of the IPv6.
766
+ :param pulumi.Input[str] id: The ID of the IPv6.
767
+ """
768
+ if address is not None:
769
+ pulumi.set(__self__, "address", address)
770
+ if id is not None:
771
+ pulumi.set(__self__, "id", id)
772
+
773
+ @property
774
+ @pulumi.getter
775
+ def address(self) -> Optional[pulumi.Input[str]]:
776
+ """
777
+ The address of the IPv6.
778
+ """
779
+ return pulumi.get(self, "address")
780
+
781
+ @address.setter
782
+ def address(self, value: Optional[pulumi.Input[str]]):
783
+ pulumi.set(self, "address", value)
784
+
785
+ @property
786
+ @pulumi.getter
787
+ def id(self) -> Optional[pulumi.Input[str]]:
788
+ """
789
+ The ID of the IPv6.
790
+ """
791
+ return pulumi.get(self, "id")
792
+
793
+ @id.setter
794
+ def id(self, value: Optional[pulumi.Input[str]]):
795
+ pulumi.set(self, "id", value)
796
+
797
+
726
798
  if not MYPY:
727
799
  class BaremetalServerPrivateNetworkArgsDict(TypedDict):
728
800
  id: pulumi.Input[str]
@@ -737,6 +809,10 @@ if not MYPY:
737
809
  """
738
810
  List of IPAM IP IDs to assign to the server in the requested private network.
739
811
  """
812
+ mapping_id: NotRequired[pulumi.Input[str]]
813
+ """
814
+ The ID of the Server-to-Private Network mapping.
815
+ """
740
816
  status: NotRequired[pulumi.Input[str]]
741
817
  """
742
818
  The private network status.
@@ -758,6 +834,7 @@ class BaremetalServerPrivateNetworkArgs:
758
834
  id: pulumi.Input[str],
759
835
  created_at: Optional[pulumi.Input[str]] = None,
760
836
  ipam_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
837
+ mapping_id: Optional[pulumi.Input[str]] = None,
761
838
  status: Optional[pulumi.Input[str]] = None,
762
839
  updated_at: Optional[pulumi.Input[str]] = None,
763
840
  vlan: Optional[pulumi.Input[int]] = None):
@@ -765,6 +842,7 @@ class BaremetalServerPrivateNetworkArgs:
765
842
  :param pulumi.Input[str] id: The id of the private network to attach.
766
843
  :param pulumi.Input[str] created_at: The date and time of the creation of the private network.
767
844
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ipam_ip_ids: List of IPAM IP IDs to assign to the server in the requested private network.
845
+ :param pulumi.Input[str] mapping_id: The ID of the Server-to-Private Network mapping.
768
846
  :param pulumi.Input[str] status: The private network status.
769
847
  :param pulumi.Input[str] updated_at: The date and time of the last update of the private network.
770
848
  :param pulumi.Input[int] vlan: The VLAN ID associated to the private network.
@@ -774,6 +852,8 @@ class BaremetalServerPrivateNetworkArgs:
774
852
  pulumi.set(__self__, "created_at", created_at)
775
853
  if ipam_ip_ids is not None:
776
854
  pulumi.set(__self__, "ipam_ip_ids", ipam_ip_ids)
855
+ if mapping_id is not None:
856
+ pulumi.set(__self__, "mapping_id", mapping_id)
777
857
  if status is not None:
778
858
  pulumi.set(__self__, "status", status)
779
859
  if updated_at is not None:
@@ -817,6 +897,18 @@ class BaremetalServerPrivateNetworkArgs:
817
897
  def ipam_ip_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
818
898
  pulumi.set(self, "ipam_ip_ids", value)
819
899
 
900
+ @property
901
+ @pulumi.getter(name="mappingId")
902
+ def mapping_id(self) -> Optional[pulumi.Input[str]]:
903
+ """
904
+ The ID of the Server-to-Private Network mapping.
905
+ """
906
+ return pulumi.get(self, "mapping_id")
907
+
908
+ @mapping_id.setter
909
+ def mapping_id(self, value: Optional[pulumi.Input[str]]):
910
+ pulumi.set(self, "mapping_id", value)
911
+
820
912
  @property
821
913
  @pulumi.getter
822
914
  def status(self) -> Optional[pulumi.Input[str]]:
@@ -854,6 +946,56 @@ class BaremetalServerPrivateNetworkArgs:
854
946
  pulumi.set(self, "vlan", value)
855
947
 
856
948
 
949
+ if not MYPY:
950
+ class BlockSnapshotImportArgsDict(TypedDict):
951
+ bucket: pulumi.Input[str]
952
+ """
953
+ Bucket containing qcow
954
+ """
955
+ key: pulumi.Input[str]
956
+ """
957
+ Key of the qcow file in the specified bucket
958
+ """
959
+ elif False:
960
+ BlockSnapshotImportArgsDict: TypeAlias = Mapping[str, Any]
961
+
962
+ @pulumi.input_type
963
+ class BlockSnapshotImportArgs:
964
+ def __init__(__self__, *,
965
+ bucket: pulumi.Input[str],
966
+ key: pulumi.Input[str]):
967
+ """
968
+ :param pulumi.Input[str] bucket: Bucket containing qcow
969
+ :param pulumi.Input[str] key: Key of the qcow file in the specified bucket
970
+ """
971
+ pulumi.set(__self__, "bucket", bucket)
972
+ pulumi.set(__self__, "key", key)
973
+
974
+ @property
975
+ @pulumi.getter
976
+ def bucket(self) -> pulumi.Input[str]:
977
+ """
978
+ Bucket containing qcow
979
+ """
980
+ return pulumi.get(self, "bucket")
981
+
982
+ @bucket.setter
983
+ def bucket(self, value: pulumi.Input[str]):
984
+ pulumi.set(self, "bucket", value)
985
+
986
+ @property
987
+ @pulumi.getter
988
+ def key(self) -> pulumi.Input[str]:
989
+ """
990
+ Key of the qcow file in the specified bucket
991
+ """
992
+ return pulumi.get(self, "key")
993
+
994
+ @key.setter
995
+ def key(self, value: pulumi.Input[str]):
996
+ pulumi.set(self, "key", value)
997
+
998
+
857
999
  if not MYPY:
858
1000
  class CockpitAlertManagerContactPointArgsDict(TypedDict):
859
1001
  email: NotRequired[pulumi.Input[str]]
@@ -1815,6 +1957,58 @@ class DatabaseInstanceLogsPolicyArgs:
1815
1957
  pulumi.set(self, "total_disk_retention", value)
1816
1958
 
1817
1959
 
1960
+ if not MYPY:
1961
+ class DatabaseInstancePrivateIpArgsDict(TypedDict):
1962
+ address: NotRequired[pulumi.Input[str]]
1963
+ """
1964
+ The private IPv4 address.
1965
+ """
1966
+ id: NotRequired[pulumi.Input[str]]
1967
+ """
1968
+ The ID of the IPv4 address resource.
1969
+ """
1970
+ elif False:
1971
+ DatabaseInstancePrivateIpArgsDict: TypeAlias = Mapping[str, Any]
1972
+
1973
+ @pulumi.input_type
1974
+ class DatabaseInstancePrivateIpArgs:
1975
+ def __init__(__self__, *,
1976
+ address: Optional[pulumi.Input[str]] = None,
1977
+ id: Optional[pulumi.Input[str]] = None):
1978
+ """
1979
+ :param pulumi.Input[str] address: The private IPv4 address.
1980
+ :param pulumi.Input[str] id: The ID of the IPv4 address resource.
1981
+ """
1982
+ if address is not None:
1983
+ pulumi.set(__self__, "address", address)
1984
+ if id is not None:
1985
+ pulumi.set(__self__, "id", id)
1986
+
1987
+ @property
1988
+ @pulumi.getter
1989
+ def address(self) -> Optional[pulumi.Input[str]]:
1990
+ """
1991
+ The private IPv4 address.
1992
+ """
1993
+ return pulumi.get(self, "address")
1994
+
1995
+ @address.setter
1996
+ def address(self, value: Optional[pulumi.Input[str]]):
1997
+ pulumi.set(self, "address", value)
1998
+
1999
+ @property
2000
+ @pulumi.getter
2001
+ def id(self) -> Optional[pulumi.Input[str]]:
2002
+ """
2003
+ The ID of the IPv4 address resource.
2004
+ """
2005
+ return pulumi.get(self, "id")
2006
+
2007
+ @id.setter
2008
+ def id(self, value: Optional[pulumi.Input[str]]):
2009
+ pulumi.set(self, "id", value)
2010
+
2011
+
1818
2012
  if not MYPY:
1819
2013
  class DatabaseInstancePrivateNetworkArgsDict(TypedDict):
1820
2014
  pn_id: pulumi.Input[str]
@@ -3947,6 +4141,58 @@ class InstanceImageAdditionalVolumeArgs:
3947
4141
  pulumi.set(self, "zone", value)
3948
4142
 
3949
4143
 
4144
+ if not MYPY:
4145
+ class InstancePrivateNicPrivateIpArgsDict(TypedDict):
4146
+ address: NotRequired[pulumi.Input[str]]
4147
+ """
4148
+ The private IP address.
4149
+ """
4150
+ id: NotRequired[pulumi.Input[str]]
4151
+ """
4152
+ The ID of the IP address resource.
4153
+ """
4154
+ elif False:
4155
+ InstancePrivateNicPrivateIpArgsDict: TypeAlias = Mapping[str, Any]
4156
+
4157
+ @pulumi.input_type
4158
+ class InstancePrivateNicPrivateIpArgs:
4159
+ def __init__(__self__, *,
4160
+ address: Optional[pulumi.Input[str]] = None,
4161
+ id: Optional[pulumi.Input[str]] = None):
4162
+ """
4163
+ :param pulumi.Input[str] address: The private IP address.
4164
+ :param pulumi.Input[str] id: The ID of the IP address resource.
4165
+ """
4166
+ if address is not None:
4167
+ pulumi.set(__self__, "address", address)
4168
+ if id is not None:
4169
+ pulumi.set(__self__, "id", id)
4170
+
4171
+ @property
4172
+ @pulumi.getter
4173
+ def address(self) -> Optional[pulumi.Input[str]]:
4174
+ """
4175
+ The private IP address.
4176
+ """
4177
+ return pulumi.get(self, "address")
4178
+
4179
+ @address.setter
4180
+ def address(self, value: Optional[pulumi.Input[str]]):
4181
+ pulumi.set(self, "address", value)
4182
+
4183
+ @property
4184
+ @pulumi.getter
4185
+ def id(self) -> Optional[pulumi.Input[str]]:
4186
+ """
4187
+ The ID of the IP address resource.
4188
+ """
4189
+ return pulumi.get(self, "id")
4190
+
4191
+ @id.setter
4192
+ def id(self, value: Optional[pulumi.Input[str]]):
4193
+ pulumi.set(self, "id", value)
4194
+
4195
+
3950
4196
  if not MYPY:
3951
4197
  class InstanceSecurityGroupInboundRuleArgsDict(TypedDict):
3952
4198
  action: pulumi.Input[str]
@@ -4487,6 +4733,58 @@ class InstanceSecurityGroupRulesOutboundRuleArgs:
4487
4733
  pulumi.set(self, "protocol", value)
4488
4734
 
4489
4735
 
4736
+ if not MYPY:
4737
+ class InstanceServerPrivateIpArgsDict(TypedDict):
4738
+ address: NotRequired[pulumi.Input[str]]
4739
+ """
4740
+ The private IP address.
4741
+ """
4742
+ id: NotRequired[pulumi.Input[str]]
4743
+ """
4744
+ The ID of the IP address resource.
4745
+ """
4746
+ elif False:
4747
+ InstanceServerPrivateIpArgsDict: TypeAlias = Mapping[str, Any]
4748
+
4749
+ @pulumi.input_type
4750
+ class InstanceServerPrivateIpArgs:
4751
+ def __init__(__self__, *,
4752
+ address: Optional[pulumi.Input[str]] = None,
4753
+ id: Optional[pulumi.Input[str]] = None):
4754
+ """
4755
+ :param pulumi.Input[str] address: The private IP address.
4756
+ :param pulumi.Input[str] id: The ID of the IP address resource.
4757
+ """
4758
+ if address is not None:
4759
+ pulumi.set(__self__, "address", address)
4760
+ if id is not None:
4761
+ pulumi.set(__self__, "id", id)
4762
+
4763
+ @property
4764
+ @pulumi.getter
4765
+ def address(self) -> Optional[pulumi.Input[str]]:
4766
+ """
4767
+ The private IP address.
4768
+ """
4769
+ return pulumi.get(self, "address")
4770
+
4771
+ @address.setter
4772
+ def address(self, value: Optional[pulumi.Input[str]]):
4773
+ pulumi.set(self, "address", value)
4774
+
4775
+ @property
4776
+ @pulumi.getter
4777
+ def id(self) -> Optional[pulumi.Input[str]]:
4778
+ """
4779
+ The ID of the IP address resource.
4780
+ """
4781
+ return pulumi.get(self, "id")
4782
+
4783
+ @id.setter
4784
+ def id(self, value: Optional[pulumi.Input[str]]):
4785
+ pulumi.set(self, "id", value)
4786
+
4787
+
4490
4788
  if not MYPY:
4491
4789
  class InstanceServerPrivateNetworkArgsDict(TypedDict):
4492
4790
  pn_id: pulumi.Input[str]
@@ -6333,12 +6631,20 @@ class KubernetesClusterOpenIdConnectConfigArgs:
6333
6631
 
6334
6632
  if not MYPY:
6335
6633
  class KubernetesNodePoolNodeArgsDict(TypedDict):
6634
+ id: NotRequired[pulumi.Input[str]]
6635
+ """
6636
+ The ID of the IP address resource.
6637
+ """
6336
6638
  name: NotRequired[pulumi.Input[str]]
6337
6639
  """
6338
6640
  The name for the pool.
6339
6641
 
6340
6642
  > **Important:** Updates to this field will recreate a new resource.
6341
6643
  """
6644
+ private_ips: NotRequired[pulumi.Input[Sequence[pulumi.Input['KubernetesNodePoolNodePrivateIpArgsDict']]]]
6645
+ """
6646
+ The list of private IPv4 and IPv6 addresses associated with the node.
6647
+ """
6342
6648
  public_ip: NotRequired[pulumi.Input[str]]
6343
6649
  """
6344
6650
  The public IPv4. (Deprecated, Please use the official Kubernetes provider and the kubernetes_nodes data source)
@@ -6357,20 +6663,28 @@ elif False:
6357
6663
  @pulumi.input_type
6358
6664
  class KubernetesNodePoolNodeArgs:
6359
6665
  def __init__(__self__, *,
6666
+ id: Optional[pulumi.Input[str]] = None,
6360
6667
  name: Optional[pulumi.Input[str]] = None,
6668
+ private_ips: Optional[pulumi.Input[Sequence[pulumi.Input['KubernetesNodePoolNodePrivateIpArgs']]]] = None,
6361
6669
  public_ip: Optional[pulumi.Input[str]] = None,
6362
6670
  public_ip_v6: Optional[pulumi.Input[str]] = None,
6363
6671
  status: Optional[pulumi.Input[str]] = None):
6364
6672
  """
6673
+ :param pulumi.Input[str] id: The ID of the IP address resource.
6365
6674
  :param pulumi.Input[str] name: The name for the pool.
6366
6675
 
6367
6676
  > **Important:** Updates to this field will recreate a new resource.
6677
+ :param pulumi.Input[Sequence[pulumi.Input['KubernetesNodePoolNodePrivateIpArgs']]] private_ips: The list of private IPv4 and IPv6 addresses associated with the node.
6368
6678
  :param pulumi.Input[str] public_ip: The public IPv4. (Deprecated, Please use the official Kubernetes provider and the kubernetes_nodes data source)
6369
6679
  :param pulumi.Input[str] public_ip_v6: The public IPv6. (Deprecated, Please use the official Kubernetes provider and the kubernetes_nodes data source)
6370
6680
  :param pulumi.Input[str] status: The status of the node.
6371
6681
  """
6682
+ if id is not None:
6683
+ pulumi.set(__self__, "id", id)
6372
6684
  if name is not None:
6373
6685
  pulumi.set(__self__, "name", name)
6686
+ if private_ips is not None:
6687
+ pulumi.set(__self__, "private_ips", private_ips)
6374
6688
  if public_ip is not None:
6375
6689
  warnings.warn("""Please use the official Kubernetes provider and the kubernetes_nodes data source""", DeprecationWarning)
6376
6690
  pulumi.log.warn("""public_ip is deprecated: Please use the official Kubernetes provider and the kubernetes_nodes data source""")
@@ -6384,6 +6698,18 @@ class KubernetesNodePoolNodeArgs:
6384
6698
  if status is not None:
6385
6699
  pulumi.set(__self__, "status", status)
6386
6700
 
6701
+ @property
6702
+ @pulumi.getter
6703
+ def id(self) -> Optional[pulumi.Input[str]]:
6704
+ """
6705
+ The ID of the IP address resource.
6706
+ """
6707
+ return pulumi.get(self, "id")
6708
+
6709
+ @id.setter
6710
+ def id(self, value: Optional[pulumi.Input[str]]):
6711
+ pulumi.set(self, "id", value)
6712
+
6387
6713
  @property
6388
6714
  @pulumi.getter
6389
6715
  def name(self) -> Optional[pulumi.Input[str]]:
@@ -6398,6 +6724,18 @@ class KubernetesNodePoolNodeArgs:
6398
6724
  def name(self, value: Optional[pulumi.Input[str]]):
6399
6725
  pulumi.set(self, "name", value)
6400
6726
 
6727
+ @property
6728
+ @pulumi.getter(name="privateIps")
6729
+ def private_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KubernetesNodePoolNodePrivateIpArgs']]]]:
6730
+ """
6731
+ The list of private IPv4 and IPv6 addresses associated with the node.
6732
+ """
6733
+ return pulumi.get(self, "private_ips")
6734
+
6735
+ @private_ips.setter
6736
+ def private_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KubernetesNodePoolNodePrivateIpArgs']]]]):
6737
+ pulumi.set(self, "private_ips", value)
6738
+
6401
6739
  @property
6402
6740
  @pulumi.getter(name="publicIp")
6403
6741
  @_utilities.deprecated("""Please use the official Kubernetes provider and the kubernetes_nodes data source""")
@@ -6437,6 +6775,58 @@ class KubernetesNodePoolNodeArgs:
6437
6775
  pulumi.set(self, "status", value)
6438
6776
 
6439
6777
 
6778
+ if not MYPY:
6779
+ class KubernetesNodePoolNodePrivateIpArgsDict(TypedDict):
6780
+ address: NotRequired[pulumi.Input[str]]
6781
+ """
6782
+ The private IP address.
6783
+ """
6784
+ id: NotRequired[pulumi.Input[str]]
6785
+ """
6786
+ The ID of the IP address resource.
6787
+ """
6788
+ elif False:
6789
+ KubernetesNodePoolNodePrivateIpArgsDict: TypeAlias = Mapping[str, Any]
6790
+
6791
+ @pulumi.input_type
6792
+ class KubernetesNodePoolNodePrivateIpArgs:
6793
+ def __init__(__self__, *,
6794
+ address: Optional[pulumi.Input[str]] = None,
6795
+ id: Optional[pulumi.Input[str]] = None):
6796
+ """
6797
+ :param pulumi.Input[str] address: The private IP address.
6798
+ :param pulumi.Input[str] id: The ID of the IP address resource.
6799
+ """
6800
+ if address is not None:
6801
+ pulumi.set(__self__, "address", address)
6802
+ if id is not None:
6803
+ pulumi.set(__self__, "id", id)
6804
+
6805
+ @property
6806
+ @pulumi.getter
6807
+ def address(self) -> Optional[pulumi.Input[str]]:
6808
+ """
6809
+ The private IP address.
6810
+ """
6811
+ return pulumi.get(self, "address")
6812
+
6813
+ @address.setter
6814
+ def address(self, value: Optional[pulumi.Input[str]]):
6815
+ pulumi.set(self, "address", value)
6816
+
6817
+ @property
6818
+ @pulumi.getter
6819
+ def id(self) -> Optional[pulumi.Input[str]]:
6820
+ """
6821
+ The ID of the IP address resource.
6822
+ """
6823
+ return pulumi.get(self, "id")
6824
+
6825
+ @id.setter
6826
+ def id(self, value: Optional[pulumi.Input[str]]):
6827
+ pulumi.set(self, "id", value)
6828
+
6829
+
6440
6830
  if not MYPY:
6441
6831
  class KubernetesNodePoolUpgradePolicyArgsDict(TypedDict):
6442
6832
  max_surge: NotRequired[pulumi.Input[int]]
@@ -7403,6 +7793,58 @@ class LoadbalancerFrontendAclMatchArgs:
7403
7793
  pulumi.set(self, "ip_subnets", value)
7404
7794
 
7405
7795
 
7796
+ if not MYPY:
7797
+ class LoadbalancerPrivateIpArgsDict(TypedDict):
7798
+ address: NotRequired[pulumi.Input[str]]
7799
+ """
7800
+ The private IP address.
7801
+ """
7802
+ id: NotRequired[pulumi.Input[str]]
7803
+ """
7804
+ The ID of the IP address resource.
7805
+ """
7806
+ elif False:
7807
+ LoadbalancerPrivateIpArgsDict: TypeAlias = Mapping[str, Any]
7808
+
7809
+ @pulumi.input_type
7810
+ class LoadbalancerPrivateIpArgs:
7811
+ def __init__(__self__, *,
7812
+ address: Optional[pulumi.Input[str]] = None,
7813
+ id: Optional[pulumi.Input[str]] = None):
7814
+ """
7815
+ :param pulumi.Input[str] address: The private IP address.
7816
+ :param pulumi.Input[str] id: The ID of the IP address resource.
7817
+ """
7818
+ if address is not None:
7819
+ pulumi.set(__self__, "address", address)
7820
+ if id is not None:
7821
+ pulumi.set(__self__, "id", id)
7822
+
7823
+ @property
7824
+ @pulumi.getter
7825
+ def address(self) -> Optional[pulumi.Input[str]]:
7826
+ """
7827
+ The private IP address.
7828
+ """
7829
+ return pulumi.get(self, "address")
7830
+
7831
+ @address.setter
7832
+ def address(self, value: Optional[pulumi.Input[str]]):
7833
+ pulumi.set(self, "address", value)
7834
+
7835
+ @property
7836
+ @pulumi.getter
7837
+ def id(self) -> Optional[pulumi.Input[str]]:
7838
+ """
7839
+ The ID of the IP address resource.
7840
+ """
7841
+ return pulumi.get(self, "id")
7842
+
7843
+ @id.setter
7844
+ def id(self, value: Optional[pulumi.Input[str]]):
7845
+ pulumi.set(self, "id", value)
7846
+
7847
+
7406
7848
  if not MYPY:
7407
7849
  class LoadbalancerPrivateNetworkArgsDict(TypedDict):
7408
7850
  private_network_id: pulumi.Input[str]
@@ -7689,6 +8131,58 @@ class MnqSqsCredentialsPermissionsArgs:
7689
8131
  pulumi.set(self, "can_receive", value)
7690
8132
 
7691
8133
 
8134
+ if not MYPY:
8135
+ class MongoDbInstancePrivateIpArgsDict(TypedDict):
8136
+ address: NotRequired[pulumi.Input[str]]
8137
+ """
8138
+ The private IPv4 address.
8139
+ """
8140
+ id: NotRequired[pulumi.Input[str]]
8141
+ """
8142
+ The ID of the endpoint.
8143
+ """
8144
+ elif False:
8145
+ MongoDbInstancePrivateIpArgsDict: TypeAlias = Mapping[str, Any]
8146
+
8147
+ @pulumi.input_type
8148
+ class MongoDbInstancePrivateIpArgs:
8149
+ def __init__(__self__, *,
8150
+ address: Optional[pulumi.Input[str]] = None,
8151
+ id: Optional[pulumi.Input[str]] = None):
8152
+ """
8153
+ :param pulumi.Input[str] address: The private IPv4 address.
8154
+ :param pulumi.Input[str] id: The ID of the endpoint.
8155
+ """
8156
+ if address is not None:
8157
+ pulumi.set(__self__, "address", address)
8158
+ if id is not None:
8159
+ pulumi.set(__self__, "id", id)
8160
+
8161
+ @property
8162
+ @pulumi.getter
8163
+ def address(self) -> Optional[pulumi.Input[str]]:
8164
+ """
8165
+ The private IPv4 address.
8166
+ """
8167
+ return pulumi.get(self, "address")
8168
+
8169
+ @address.setter
8170
+ def address(self, value: Optional[pulumi.Input[str]]):
8171
+ pulumi.set(self, "address", value)
8172
+
8173
+ @property
8174
+ @pulumi.getter
8175
+ def id(self) -> Optional[pulumi.Input[str]]:
8176
+ """
8177
+ The ID of the endpoint.
8178
+ """
8179
+ return pulumi.get(self, "id")
8180
+
8181
+ @id.setter
8182
+ def id(self, value: Optional[pulumi.Input[str]]):
8183
+ pulumi.set(self, "id", value)
8184
+
8185
+
7692
8186
  if not MYPY:
7693
8187
  class MongoDbInstancePrivateNetworkArgsDict(TypedDict):
7694
8188
  pn_id: pulumi.Input[str]
@@ -8671,7 +9165,7 @@ if not MYPY:
8671
9165
  """
8672
9166
  id: NotRequired[pulumi.Input[str]]
8673
9167
  """
8674
- (Required) The UUID of the endpoint.
9168
+ The ID of the IPv4 address resource.
8675
9169
  """
8676
9170
  elif False:
8677
9171
  RedisClusterAclArgsDict: TypeAlias = Mapping[str, Any]
@@ -8688,7 +9182,7 @@ class RedisClusterAclArgs:
8688
9182
  :param pulumi.Input[str] description: A text describing this rule. Default description: `Allow IP`
8689
9183
 
8690
9184
  > The `acl` conflict with `private_network`. Only one should be specified.
8691
- :param pulumi.Input[str] id: (Required) The UUID of the endpoint.
9185
+ :param pulumi.Input[str] id: The ID of the IPv4 address resource.
8692
9186
  """
8693
9187
  pulumi.set(__self__, "ip", ip)
8694
9188
  if description is not None:
@@ -8727,7 +9221,59 @@ class RedisClusterAclArgs:
8727
9221
  @pulumi.getter
8728
9222
  def id(self) -> Optional[pulumi.Input[str]]:
8729
9223
  """
8730
- (Required) The UUID of the endpoint.
9224
+ The ID of the IPv4 address resource.
9225
+ """
9226
+ return pulumi.get(self, "id")
9227
+
9228
+ @id.setter
9229
+ def id(self, value: Optional[pulumi.Input[str]]):
9230
+ pulumi.set(self, "id", value)
9231
+
9232
+
9233
+ if not MYPY:
9234
+ class RedisClusterPrivateIpArgsDict(TypedDict):
9235
+ address: NotRequired[pulumi.Input[str]]
9236
+ """
9237
+ The private IPv4 address.
9238
+ """
9239
+ id: NotRequired[pulumi.Input[str]]
9240
+ """
9241
+ The ID of the IPv4 address resource.
9242
+ """
9243
+ elif False:
9244
+ RedisClusterPrivateIpArgsDict: TypeAlias = Mapping[str, Any]
9245
+
9246
+ @pulumi.input_type
9247
+ class RedisClusterPrivateIpArgs:
9248
+ def __init__(__self__, *,
9249
+ address: Optional[pulumi.Input[str]] = None,
9250
+ id: Optional[pulumi.Input[str]] = None):
9251
+ """
9252
+ :param pulumi.Input[str] address: The private IPv4 address.
9253
+ :param pulumi.Input[str] id: The ID of the IPv4 address resource.
9254
+ """
9255
+ if address is not None:
9256
+ pulumi.set(__self__, "address", address)
9257
+ if id is not None:
9258
+ pulumi.set(__self__, "id", id)
9259
+
9260
+ @property
9261
+ @pulumi.getter
9262
+ def address(self) -> Optional[pulumi.Input[str]]:
9263
+ """
9264
+ The private IPv4 address.
9265
+ """
9266
+ return pulumi.get(self, "address")
9267
+
9268
+ @address.setter
9269
+ def address(self, value: Optional[pulumi.Input[str]]):
9270
+ pulumi.set(self, "address", value)
9271
+
9272
+ @property
9273
+ @pulumi.getter
9274
+ def id(self) -> Optional[pulumi.Input[str]]:
9275
+ """
9276
+ The ID of the IPv4 address resource.
8731
9277
  """
8732
9278
  return pulumi.get(self, "id")
8733
9279
 
@@ -8891,7 +9437,7 @@ if not MYPY:
8891
9437
  class RedisClusterPublicNetworkArgsDict(TypedDict):
8892
9438
  id: NotRequired[pulumi.Input[str]]
8893
9439
  """
8894
- (Required) The UUID of the endpoint.
9440
+ The ID of the IPv4 address resource.
8895
9441
  """
8896
9442
  ips: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
8897
9443
  """
@@ -8911,7 +9457,7 @@ class RedisClusterPublicNetworkArgs:
8911
9457
  ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
8912
9458
  port: Optional[pulumi.Input[int]] = None):
8913
9459
  """
8914
- :param pulumi.Input[str] id: (Required) The UUID of the endpoint.
9460
+ :param pulumi.Input[str] id: The ID of the IPv4 address resource.
8915
9461
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ips: Lis of IPv4 address of the endpoint (IP address).
8916
9462
  :param pulumi.Input[int] port: TCP port of the endpoint.
8917
9463
  """
@@ -8926,7 +9472,7 @@ class RedisClusterPublicNetworkArgs:
8926
9472
  @pulumi.getter
8927
9473
  def id(self) -> Optional[pulumi.Input[str]]:
8928
9474
  """
8929
- (Required) The UUID of the endpoint.
9475
+ The ID of the IPv4 address resource.
8930
9476
  """
8931
9477
  return pulumi.get(self, "id")
8932
9478
 
@@ -9346,6 +9892,58 @@ class VpcGatewayNetworkIpamConfigArgs:
9346
9892
  pulumi.set(self, "push_default_route", value)
9347
9893
 
9348
9894
 
9895
+ if not MYPY:
9896
+ class VpcGatewayNetworkPrivateIpArgsDict(TypedDict):
9897
+ address: NotRequired[pulumi.Input[str]]
9898
+ """
9899
+ The private IPv4 address.
9900
+ """
9901
+ id: NotRequired[pulumi.Input[str]]
9902
+ """
9903
+ The ID of the IPv4 address resource.
9904
+ """
9905
+ elif False:
9906
+ VpcGatewayNetworkPrivateIpArgsDict: TypeAlias = Mapping[str, Any]
9907
+
9908
+ @pulumi.input_type
9909
+ class VpcGatewayNetworkPrivateIpArgs:
9910
+ def __init__(__self__, *,
9911
+ address: Optional[pulumi.Input[str]] = None,
9912
+ id: Optional[pulumi.Input[str]] = None):
9913
+ """
9914
+ :param pulumi.Input[str] address: The private IPv4 address.
9915
+ :param pulumi.Input[str] id: The ID of the IPv4 address resource.
9916
+ """
9917
+ if address is not None:
9918
+ pulumi.set(__self__, "address", address)
9919
+ if id is not None:
9920
+ pulumi.set(__self__, "id", id)
9921
+
9922
+ @property
9923
+ @pulumi.getter
9924
+ def address(self) -> Optional[pulumi.Input[str]]:
9925
+ """
9926
+ The private IPv4 address.
9927
+ """
9928
+ return pulumi.get(self, "address")
9929
+
9930
+ @address.setter
9931
+ def address(self, value: Optional[pulumi.Input[str]]):
9932
+ pulumi.set(self, "address", value)
9933
+
9934
+ @property
9935
+ @pulumi.getter
9936
+ def id(self) -> Optional[pulumi.Input[str]]:
9937
+ """
9938
+ The ID of the IPv4 address resource.
9939
+ """
9940
+ return pulumi.get(self, "id")
9941
+
9942
+ @id.setter
9943
+ def id(self, value: Optional[pulumi.Input[str]]):
9944
+ pulumi.set(self, "id", value)
9945
+
9946
+
9349
9947
  if not MYPY:
9350
9948
  class VpcPrivateNetworkIpv4SubnetArgsDict(TypedDict):
9351
9949
  address: NotRequired[pulumi.Input[str]]