pulumiverse-scaleway 1.27.1__py3-none-any.whl → 1.28.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 (73) hide show
  1. pulumiverse_scaleway/__init__.py +16 -0
  2. pulumiverse_scaleway/_inputs.py +498 -6
  3. pulumiverse_scaleway/baremetal_server.py +48 -258
  4. pulumiverse_scaleway/database_instance.py +42 -21
  5. pulumiverse_scaleway/databases/_inputs.py +54 -0
  6. pulumiverse_scaleway/databases/get_instance.py +12 -1
  7. pulumiverse_scaleway/databases/instance.py +42 -21
  8. pulumiverse_scaleway/databases/outputs.py +62 -0
  9. pulumiverse_scaleway/databases/snapshot.py +2 -2
  10. pulumiverse_scaleway/elasticmetal/_inputs.py +74 -0
  11. pulumiverse_scaleway/elasticmetal/get_server.py +12 -1
  12. pulumiverse_scaleway/elasticmetal/outputs.py +87 -0
  13. pulumiverse_scaleway/elasticmetal/server.py +48 -258
  14. pulumiverse_scaleway/get_baremetal_server.py +12 -1
  15. pulumiverse_scaleway/get_cockpit_plan.py +2 -38
  16. pulumiverse_scaleway/get_database_instance.py +12 -1
  17. pulumiverse_scaleway/get_instance_private_nic.py +13 -1
  18. pulumiverse_scaleway/get_instance_server.py +12 -1
  19. pulumiverse_scaleway/get_lb_route.py +12 -1
  20. pulumiverse_scaleway/get_loadbalancer.py +12 -1
  21. pulumiverse_scaleway/get_redis_cluster.py +12 -1
  22. pulumiverse_scaleway/get_vpc_gateway_network.py +12 -1
  23. pulumiverse_scaleway/inference/__init__.py +2 -0
  24. pulumiverse_scaleway/inference/_inputs.py +128 -0
  25. pulumiverse_scaleway/inference/deployment.py +70 -55
  26. pulumiverse_scaleway/inference/get_model.py +299 -0
  27. pulumiverse_scaleway/inference/model.py +683 -0
  28. pulumiverse_scaleway/inference/outputs.py +184 -0
  29. pulumiverse_scaleway/inference_deployment.py +70 -55
  30. pulumiverse_scaleway/instance/_inputs.py +108 -0
  31. pulumiverse_scaleway/instance/get_private_nic.py +13 -1
  32. pulumiverse_scaleway/instance/get_server.py +12 -1
  33. pulumiverse_scaleway/instance/outputs.py +124 -0
  34. pulumiverse_scaleway/instance/private_nic.py +30 -0
  35. pulumiverse_scaleway/instance/server.py +28 -0
  36. pulumiverse_scaleway/instance_private_nic.py +30 -0
  37. pulumiverse_scaleway/instance_server.py +28 -0
  38. pulumiverse_scaleway/kubernetes/__init__.py +1 -0
  39. pulumiverse_scaleway/kubernetes/_inputs.py +203 -0
  40. pulumiverse_scaleway/kubernetes/acl.py +446 -0
  41. pulumiverse_scaleway/kubernetes/outputs.py +195 -1
  42. pulumiverse_scaleway/loadbalancer.py +28 -0
  43. pulumiverse_scaleway/loadbalancer_route.py +138 -14
  44. pulumiverse_scaleway/loadbalancers/_inputs.py +54 -0
  45. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +12 -1
  46. pulumiverse_scaleway/loadbalancers/get_route.py +12 -1
  47. pulumiverse_scaleway/loadbalancers/load_balancer.py +28 -0
  48. pulumiverse_scaleway/loadbalancers/outputs.py +62 -0
  49. pulumiverse_scaleway/loadbalancers/route.py +138 -14
  50. pulumiverse_scaleway/mnq/sns_credentials.py +7 -7
  51. pulumiverse_scaleway/mnq/sqs_credentials.py +7 -7
  52. pulumiverse_scaleway/mnq_sns_credentials.py +7 -7
  53. pulumiverse_scaleway/mnq_sqs_credentials.py +7 -7
  54. pulumiverse_scaleway/network/_inputs.py +54 -0
  55. pulumiverse_scaleway/network/gateway_network.py +28 -0
  56. pulumiverse_scaleway/network/get_gateway_network.py +12 -1
  57. pulumiverse_scaleway/network/outputs.py +62 -0
  58. pulumiverse_scaleway/network/route.py +90 -2
  59. pulumiverse_scaleway/observability/get_plan.py +2 -38
  60. pulumiverse_scaleway/outputs.py +574 -5
  61. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  62. pulumiverse_scaleway/rdb_snapshot.py +2 -2
  63. pulumiverse_scaleway/redis/_inputs.py +60 -6
  64. pulumiverse_scaleway/redis/cluster.py +28 -0
  65. pulumiverse_scaleway/redis/get_cluster.py +12 -1
  66. pulumiverse_scaleway/redis/outputs.py +66 -4
  67. pulumiverse_scaleway/redis_cluster.py +28 -0
  68. pulumiverse_scaleway/vpc_gateway_network.py +28 -0
  69. pulumiverse_scaleway/vpc_route.py +90 -2
  70. {pulumiverse_scaleway-1.27.1.dist-info → pulumiverse_scaleway-1.28.0.dist-info}/METADATA +1 -1
  71. {pulumiverse_scaleway-1.27.1.dist-info → pulumiverse_scaleway-1.28.0.dist-info}/RECORD +73 -70
  72. {pulumiverse_scaleway-1.27.1.dist-info → pulumiverse_scaleway-1.28.0.dist-info}/WHEEL +1 -1
  73. {pulumiverse_scaleway-1.27.1.dist-info → pulumiverse_scaleway-1.28.0.dist-info}/top_level.txt +0 -0
@@ -21,6 +21,7 @@ __all__ = [
21
21
  'BaremetalServerIpv4',
22
22
  'BaremetalServerIpv6',
23
23
  'BaremetalServerOption',
24
+ 'BaremetalServerPrivateIp',
24
25
  'BaremetalServerPrivateNetwork',
25
26
  'CockpitAlertManagerContactPoint',
26
27
  'CockpitEndpoint',
@@ -34,6 +35,7 @@ __all__ = [
34
35
  'DatabaseAclAclRule',
35
36
  'DatabaseInstanceLoadBalancer',
36
37
  'DatabaseInstanceLogsPolicy',
38
+ 'DatabaseInstancePrivateIp',
37
39
  'DatabaseInstancePrivateNetwork',
38
40
  'DatabaseInstanceReadReplica',
39
41
  'DatabaseReadReplicaDirectAccess',
@@ -57,10 +59,12 @@ __all__ = [
57
59
  'InferenceDeploymentPrivateEndpoint',
58
60
  'InferenceDeploymentPublicEndpoint',
59
61
  'InstanceImageAdditionalVolume',
62
+ 'InstancePrivateNicPrivateIp',
60
63
  'InstanceSecurityGroupInboundRule',
61
64
  'InstanceSecurityGroupOutboundRule',
62
65
  'InstanceSecurityGroupRulesInboundRule',
63
66
  'InstanceSecurityGroupRulesOutboundRule',
67
+ 'InstanceServerPrivateIp',
64
68
  'InstanceServerPrivateNetwork',
65
69
  'InstanceServerPublicIp',
66
70
  'InstanceServerRootVolume',
@@ -83,6 +87,7 @@ __all__ = [
83
87
  'KubernetesClusterKubeconfig',
84
88
  'KubernetesClusterOpenIdConnectConfig',
85
89
  'KubernetesNodePoolNode',
90
+ 'KubernetesNodePoolNodePrivateIp',
86
91
  'KubernetesNodePoolUpgradePolicy',
87
92
  'LoadbalancerAclAction',
88
93
  'LoadbalancerAclActionRedirect',
@@ -96,6 +101,7 @@ __all__ = [
96
101
  'LoadbalancerFrontendAclAction',
97
102
  'LoadbalancerFrontendAclActionRedirect',
98
103
  'LoadbalancerFrontendAclMatch',
104
+ 'LoadbalancerPrivateIp',
99
105
  'LoadbalancerPrivateNetwork',
100
106
  'MnqSnsCredentialsPermissions',
101
107
  'MnqSqsCredentialsPermissions',
@@ -115,12 +121,14 @@ __all__ = [
115
121
  'ObjectBucketWebsiteConfigurationErrorDocument',
116
122
  'ObjectBucketWebsiteConfigurationIndexDocument',
117
123
  'RedisClusterAcl',
124
+ 'RedisClusterPrivateIp',
118
125
  'RedisClusterPrivateNetwork',
119
126
  'RedisClusterPublicNetwork',
120
127
  'SecretEphemeralPolicy',
121
128
  'SecretVersion',
122
129
  'TemDomainReputation',
123
130
  'VpcGatewayNetworkIpamConfig',
131
+ 'VpcGatewayNetworkPrivateIp',
124
132
  'VpcPrivateNetworkIpv4Subnet',
125
133
  'VpcPrivateNetworkIpv6Subnet',
126
134
  'WebhostingCpanelUrl',
@@ -134,6 +142,7 @@ __all__ = [
134
142
  'GetBaremetalServerIpv4Result',
135
143
  'GetBaremetalServerIpv6Result',
136
144
  'GetBaremetalServerOptionResult',
145
+ 'GetBaremetalServerPrivateIpResult',
137
146
  'GetBaremetalServerPrivateNetworkResult',
138
147
  'GetBillingConsumptionsConsumptionResult',
139
148
  'GetBillingInvoicesInvoiceResult',
@@ -145,6 +154,7 @@ __all__ = [
145
154
  'GetDatabaseAclAclRuleResult',
146
155
  'GetDatabaseInstanceLoadBalancerResult',
147
156
  'GetDatabaseInstanceLogsPolicyResult',
157
+ 'GetDatabaseInstancePrivateIpResult',
148
158
  'GetDatabaseInstancePrivateNetworkResult',
149
159
  'GetDatabaseInstanceReadReplicaResult',
150
160
  'GetDomainRecordGeoIpResult',
@@ -154,8 +164,10 @@ __all__ = [
154
164
  'GetDomainRecordWeightedResult',
155
165
  'GetFlexibleIpsIpResult',
156
166
  'GetFlexibleIpsIpMacAddressResult',
167
+ 'GetInstancePrivateNicPrivateIpResult',
157
168
  'GetInstanceSecurityGroupInboundRuleResult',
158
169
  'GetInstanceSecurityGroupOutboundRuleResult',
170
+ 'GetInstanceServerPrivateIpResult',
159
171
  'GetInstanceServerPrivateNetworkResult',
160
172
  'GetInstanceServerPublicIpResult',
161
173
  'GetInstanceServerRootVolumeResult',
@@ -175,6 +187,7 @@ __all__ = [
175
187
  'GetKubernetesClusterKubeconfigResult',
176
188
  'GetKubernetesClusterOpenIdConnectConfigResult',
177
189
  'GetKubernetesNodePoolNodeResult',
190
+ 'GetKubernetesNodePoolNodePrivateIpResult',
178
191
  'GetKubernetesNodePoolUpgradePolicyResult',
179
192
  'GetLbAclsAclResult',
180
193
  'GetLbAclsAclActionResult',
@@ -197,6 +210,7 @@ __all__ = [
197
210
  'GetLbsLbIpResult',
198
211
  'GetLoadbalancerCertificateCustomCertificateResult',
199
212
  'GetLoadbalancerCertificateLetsencryptResult',
213
+ 'GetLoadbalancerPrivateIpResult',
200
214
  'GetLoadbalancerPrivateNetworkResult',
201
215
  'GetMongoDbInstancePrivateNetworkResult',
202
216
  'GetMongoDbInstancePublicNetworkResult',
@@ -206,12 +220,14 @@ __all__ = [
206
220
  'GetObjectBucketLifecycleRuleTransitionResult',
207
221
  'GetObjectBucketVersioningResult',
208
222
  'GetRedisClusterAclResult',
223
+ 'GetRedisClusterPrivateIpResult',
209
224
  'GetRedisClusterPrivateNetworkResult',
210
225
  'GetRedisClusterPublicNetworkResult',
211
226
  'GetSecretEphemeralPolicyResult',
212
227
  'GetSecretVersionResult',
213
228
  'GetTemDomainReputationResult',
214
229
  'GetVpcGatewayNetworkIpamConfigResult',
230
+ 'GetVpcGatewayNetworkPrivateIpResult',
215
231
  'GetVpcPrivateNetworkIpv4SubnetResult',
216
232
  'GetVpcPrivateNetworkIpv6SubnetResult',
217
233
  'GetVpcRoutesRouteResult',
@@ -548,6 +564,37 @@ class BaremetalServerOption(dict):
548
564
  return pulumi.get(self, "name")
549
565
 
550
566
 
567
+ @pulumi.output_type
568
+ class BaremetalServerPrivateIp(dict):
569
+ def __init__(__self__, *,
570
+ address: Optional[str] = None,
571
+ id: Optional[str] = None):
572
+ """
573
+ :param str address: The address of the IPv6.
574
+ :param str id: The ID of the IPv6.
575
+ """
576
+ if address is not None:
577
+ pulumi.set(__self__, "address", address)
578
+ if id is not None:
579
+ pulumi.set(__self__, "id", id)
580
+
581
+ @property
582
+ @pulumi.getter
583
+ def address(self) -> Optional[str]:
584
+ """
585
+ The address of the IPv6.
586
+ """
587
+ return pulumi.get(self, "address")
588
+
589
+ @property
590
+ @pulumi.getter
591
+ def id(self) -> Optional[str]:
592
+ """
593
+ The ID of the IPv6.
594
+ """
595
+ return pulumi.get(self, "id")
596
+
597
+
551
598
  @pulumi.output_type
552
599
  class BaremetalServerPrivateNetwork(dict):
553
600
  @staticmethod
@@ -557,6 +604,8 @@ class BaremetalServerPrivateNetwork(dict):
557
604
  suggest = "created_at"
558
605
  elif key == "ipamIpIds":
559
606
  suggest = "ipam_ip_ids"
607
+ elif key == "mappingId":
608
+ suggest = "mapping_id"
560
609
  elif key == "updatedAt":
561
610
  suggest = "updated_at"
562
611
 
@@ -575,6 +624,7 @@ class BaremetalServerPrivateNetwork(dict):
575
624
  id: str,
576
625
  created_at: Optional[str] = None,
577
626
  ipam_ip_ids: Optional[Sequence[str]] = None,
627
+ mapping_id: Optional[str] = None,
578
628
  status: Optional[str] = None,
579
629
  updated_at: Optional[str] = None,
580
630
  vlan: Optional[int] = None):
@@ -582,6 +632,7 @@ class BaremetalServerPrivateNetwork(dict):
582
632
  :param str id: The id of the private network to attach.
583
633
  :param str created_at: The date and time of the creation of the private network.
584
634
  :param Sequence[str] ipam_ip_ids: List of IPAM IP IDs to assign to the server in the requested private network.
635
+ :param str mapping_id: The ID of the Server-to-Private Network mapping.
585
636
  :param str status: The private network status.
586
637
  :param str updated_at: The date and time of the last update of the private network.
587
638
  :param int vlan: The VLAN ID associated to the private network.
@@ -591,6 +642,8 @@ class BaremetalServerPrivateNetwork(dict):
591
642
  pulumi.set(__self__, "created_at", created_at)
592
643
  if ipam_ip_ids is not None:
593
644
  pulumi.set(__self__, "ipam_ip_ids", ipam_ip_ids)
645
+ if mapping_id is not None:
646
+ pulumi.set(__self__, "mapping_id", mapping_id)
594
647
  if status is not None:
595
648
  pulumi.set(__self__, "status", status)
596
649
  if updated_at is not None:
@@ -622,6 +675,14 @@ class BaremetalServerPrivateNetwork(dict):
622
675
  """
623
676
  return pulumi.get(self, "ipam_ip_ids")
624
677
 
678
+ @property
679
+ @pulumi.getter(name="mappingId")
680
+ def mapping_id(self) -> Optional[str]:
681
+ """
682
+ The ID of the Server-to-Private Network mapping.
683
+ """
684
+ return pulumi.get(self, "mapping_id")
685
+
625
686
  @property
626
687
  @pulumi.getter
627
688
  def status(self) -> Optional[str]:
@@ -1406,6 +1467,37 @@ class DatabaseInstanceLogsPolicy(dict):
1406
1467
  return pulumi.get(self, "total_disk_retention")
1407
1468
 
1408
1469
 
1470
+ @pulumi.output_type
1471
+ class DatabaseInstancePrivateIp(dict):
1472
+ def __init__(__self__, *,
1473
+ address: Optional[str] = None,
1474
+ id: Optional[str] = None):
1475
+ """
1476
+ :param str address: The private IPv4 address.
1477
+ :param str id: The ID of the IPv4 address resource.
1478
+ """
1479
+ if address is not None:
1480
+ pulumi.set(__self__, "address", address)
1481
+ if id is not None:
1482
+ pulumi.set(__self__, "id", id)
1483
+
1484
+ @property
1485
+ @pulumi.getter
1486
+ def address(self) -> Optional[str]:
1487
+ """
1488
+ The private IPv4 address.
1489
+ """
1490
+ return pulumi.get(self, "address")
1491
+
1492
+ @property
1493
+ @pulumi.getter
1494
+ def id(self) -> Optional[str]:
1495
+ """
1496
+ The ID of the IPv4 address resource.
1497
+ """
1498
+ return pulumi.get(self, "id")
1499
+
1500
+
1409
1501
  @pulumi.output_type
1410
1502
  class DatabaseInstancePrivateNetwork(dict):
1411
1503
  @staticmethod
@@ -3024,6 +3116,37 @@ class InstanceImageAdditionalVolume(dict):
3024
3116
  return pulumi.get(self, "zone")
3025
3117
 
3026
3118
 
3119
+ @pulumi.output_type
3120
+ class InstancePrivateNicPrivateIp(dict):
3121
+ def __init__(__self__, *,
3122
+ address: Optional[str] = None,
3123
+ id: Optional[str] = None):
3124
+ """
3125
+ :param str address: The private IP address.
3126
+ :param str id: The ID of the IP address resource.
3127
+ """
3128
+ if address is not None:
3129
+ pulumi.set(__self__, "address", address)
3130
+ if id is not None:
3131
+ pulumi.set(__self__, "id", id)
3132
+
3133
+ @property
3134
+ @pulumi.getter
3135
+ def address(self) -> Optional[str]:
3136
+ """
3137
+ The private IP address.
3138
+ """
3139
+ return pulumi.get(self, "address")
3140
+
3141
+ @property
3142
+ @pulumi.getter
3143
+ def id(self) -> Optional[str]:
3144
+ """
3145
+ The ID of the IP address resource.
3146
+ """
3147
+ return pulumi.get(self, "id")
3148
+
3149
+
3027
3150
  @pulumi.output_type
3028
3151
  class InstanceSecurityGroupInboundRule(dict):
3029
3152
  @staticmethod
@@ -3416,6 +3539,37 @@ class InstanceSecurityGroupRulesOutboundRule(dict):
3416
3539
  return pulumi.get(self, "protocol")
3417
3540
 
3418
3541
 
3542
+ @pulumi.output_type
3543
+ class InstanceServerPrivateIp(dict):
3544
+ def __init__(__self__, *,
3545
+ address: Optional[str] = None,
3546
+ id: Optional[str] = None):
3547
+ """
3548
+ :param str address: The private IP address.
3549
+ :param str id: The ID of the IP address resource.
3550
+ """
3551
+ if address is not None:
3552
+ pulumi.set(__self__, "address", address)
3553
+ if id is not None:
3554
+ pulumi.set(__self__, "id", id)
3555
+
3556
+ @property
3557
+ @pulumi.getter
3558
+ def address(self) -> Optional[str]:
3559
+ """
3560
+ The private IP address.
3561
+ """
3562
+ return pulumi.get(self, "address")
3563
+
3564
+ @property
3565
+ @pulumi.getter
3566
+ def id(self) -> Optional[str]:
3567
+ """
3568
+ The ID of the IP address resource.
3569
+ """
3570
+ return pulumi.get(self, "id")
3571
+
3572
+
3419
3573
  @pulumi.output_type
3420
3574
  class InstanceServerPrivateNetwork(dict):
3421
3575
  @staticmethod
@@ -4755,7 +4909,9 @@ class KubernetesNodePoolNode(dict):
4755
4909
  @staticmethod
4756
4910
  def __key_warning(key: str):
4757
4911
  suggest = None
4758
- if key == "publicIp":
4912
+ if key == "privateIps":
4913
+ suggest = "private_ips"
4914
+ elif key == "publicIp":
4759
4915
  suggest = "public_ip"
4760
4916
  elif key == "publicIpV6":
4761
4917
  suggest = "public_ip_v6"
@@ -4772,20 +4928,28 @@ class KubernetesNodePoolNode(dict):
4772
4928
  return super().get(key, default)
4773
4929
 
4774
4930
  def __init__(__self__, *,
4931
+ id: Optional[str] = None,
4775
4932
  name: Optional[str] = None,
4933
+ private_ips: Optional[Sequence['outputs.KubernetesNodePoolNodePrivateIp']] = None,
4776
4934
  public_ip: Optional[str] = None,
4777
4935
  public_ip_v6: Optional[str] = None,
4778
4936
  status: Optional[str] = None):
4779
4937
  """
4938
+ :param str id: The ID of the IP address resource.
4780
4939
  :param str name: The name for the pool.
4781
4940
 
4782
4941
  > **Important:** Updates to this field will recreate a new resource.
4942
+ :param Sequence['KubernetesNodePoolNodePrivateIpArgs'] private_ips: The list of private IPv4 and IPv6 addresses associated with the node.
4783
4943
  :param str public_ip: The public IPv4. (Deprecated, Please use the official Kubernetes provider and the kubernetes_nodes data source)
4784
4944
  :param str public_ip_v6: The public IPv6. (Deprecated, Please use the official Kubernetes provider and the kubernetes_nodes data source)
4785
4945
  :param str status: The status of the node.
4786
4946
  """
4947
+ if id is not None:
4948
+ pulumi.set(__self__, "id", id)
4787
4949
  if name is not None:
4788
4950
  pulumi.set(__self__, "name", name)
4951
+ if private_ips is not None:
4952
+ pulumi.set(__self__, "private_ips", private_ips)
4789
4953
  if public_ip is not None:
4790
4954
  pulumi.set(__self__, "public_ip", public_ip)
4791
4955
  if public_ip_v6 is not None:
@@ -4793,6 +4957,14 @@ class KubernetesNodePoolNode(dict):
4793
4957
  if status is not None:
4794
4958
  pulumi.set(__self__, "status", status)
4795
4959
 
4960
+ @property
4961
+ @pulumi.getter
4962
+ def id(self) -> Optional[str]:
4963
+ """
4964
+ The ID of the IP address resource.
4965
+ """
4966
+ return pulumi.get(self, "id")
4967
+
4796
4968
  @property
4797
4969
  @pulumi.getter
4798
4970
  def name(self) -> Optional[str]:
@@ -4803,6 +4975,14 @@ class KubernetesNodePoolNode(dict):
4803
4975
  """
4804
4976
  return pulumi.get(self, "name")
4805
4977
 
4978
+ @property
4979
+ @pulumi.getter(name="privateIps")
4980
+ def private_ips(self) -> Optional[Sequence['outputs.KubernetesNodePoolNodePrivateIp']]:
4981
+ """
4982
+ The list of private IPv4 and IPv6 addresses associated with the node.
4983
+ """
4984
+ return pulumi.get(self, "private_ips")
4985
+
4806
4986
  @property
4807
4987
  @pulumi.getter(name="publicIp")
4808
4988
  @_utilities.deprecated("""Please use the official Kubernetes provider and the kubernetes_nodes data source""")
@@ -4830,6 +5010,37 @@ class KubernetesNodePoolNode(dict):
4830
5010
  return pulumi.get(self, "status")
4831
5011
 
4832
5012
 
5013
+ @pulumi.output_type
5014
+ class KubernetesNodePoolNodePrivateIp(dict):
5015
+ def __init__(__self__, *,
5016
+ address: Optional[str] = None,
5017
+ id: Optional[str] = None):
5018
+ """
5019
+ :param str address: The private IP address.
5020
+ :param str id: The ID of the IP address resource.
5021
+ """
5022
+ if address is not None:
5023
+ pulumi.set(__self__, "address", address)
5024
+ if id is not None:
5025
+ pulumi.set(__self__, "id", id)
5026
+
5027
+ @property
5028
+ @pulumi.getter
5029
+ def address(self) -> Optional[str]:
5030
+ """
5031
+ The private IP address.
5032
+ """
5033
+ return pulumi.get(self, "address")
5034
+
5035
+ @property
5036
+ @pulumi.getter
5037
+ def id(self) -> Optional[str]:
5038
+ """
5039
+ The ID of the IP address resource.
5040
+ """
5041
+ return pulumi.get(self, "id")
5042
+
5043
+
4833
5044
  @pulumi.output_type
4834
5045
  class KubernetesNodePoolUpgradePolicy(dict):
4835
5046
  @staticmethod
@@ -5558,6 +5769,37 @@ class LoadbalancerFrontendAclMatch(dict):
5558
5769
  return pulumi.get(self, "ip_subnets")
5559
5770
 
5560
5771
 
5772
+ @pulumi.output_type
5773
+ class LoadbalancerPrivateIp(dict):
5774
+ def __init__(__self__, *,
5775
+ address: Optional[str] = None,
5776
+ id: Optional[str] = None):
5777
+ """
5778
+ :param str address: The private IP address.
5779
+ :param str id: The ID of the IP address resource.
5780
+ """
5781
+ if address is not None:
5782
+ pulumi.set(__self__, "address", address)
5783
+ if id is not None:
5784
+ pulumi.set(__self__, "id", id)
5785
+
5786
+ @property
5787
+ @pulumi.getter
5788
+ def address(self) -> Optional[str]:
5789
+ """
5790
+ The private IP address.
5791
+ """
5792
+ return pulumi.get(self, "address")
5793
+
5794
+ @property
5795
+ @pulumi.getter
5796
+ def id(self) -> Optional[str]:
5797
+ """
5798
+ The ID of the IP address resource.
5799
+ """
5800
+ return pulumi.get(self, "id")
5801
+
5802
+
5561
5803
  @pulumi.output_type
5562
5804
  class LoadbalancerPrivateNetwork(dict):
5563
5805
  @staticmethod
@@ -6523,7 +6765,7 @@ class RedisClusterAcl(dict):
6523
6765
  :param str description: A text describing this rule. Default description: `Allow IP`
6524
6766
 
6525
6767
  > The `acl` conflict with `private_network`. Only one should be specified.
6526
- :param str id: (Required) The UUID of the endpoint.
6768
+ :param str id: The ID of the IPv4 address resource.
6527
6769
  """
6528
6770
  pulumi.set(__self__, "ip", ip)
6529
6771
  if description is not None:
@@ -6554,7 +6796,38 @@ class RedisClusterAcl(dict):
6554
6796
  @pulumi.getter
6555
6797
  def id(self) -> Optional[str]:
6556
6798
  """
6557
- (Required) The UUID of the endpoint.
6799
+ The ID of the IPv4 address resource.
6800
+ """
6801
+ return pulumi.get(self, "id")
6802
+
6803
+
6804
+ @pulumi.output_type
6805
+ class RedisClusterPrivateIp(dict):
6806
+ def __init__(__self__, *,
6807
+ address: Optional[str] = None,
6808
+ id: Optional[str] = None):
6809
+ """
6810
+ :param str address: The private IPv4 address.
6811
+ :param str id: The ID of the IPv4 address resource.
6812
+ """
6813
+ if address is not None:
6814
+ pulumi.set(__self__, "address", address)
6815
+ if id is not None:
6816
+ pulumi.set(__self__, "id", id)
6817
+
6818
+ @property
6819
+ @pulumi.getter
6820
+ def address(self) -> Optional[str]:
6821
+ """
6822
+ The private IPv4 address.
6823
+ """
6824
+ return pulumi.get(self, "address")
6825
+
6826
+ @property
6827
+ @pulumi.getter
6828
+ def id(self) -> Optional[str]:
6829
+ """
6830
+ The ID of the IPv4 address resource.
6558
6831
  """
6559
6832
  return pulumi.get(self, "id")
6560
6833
 
@@ -6679,7 +6952,7 @@ class RedisClusterPublicNetwork(dict):
6679
6952
  ips: Optional[Sequence[str]] = None,
6680
6953
  port: Optional[int] = None):
6681
6954
  """
6682
- :param str id: (Required) The UUID of the endpoint.
6955
+ :param str id: The ID of the IPv4 address resource.
6683
6956
  :param Sequence[str] ips: Lis of IPv4 address of the endpoint (IP address).
6684
6957
  :param int port: TCP port of the endpoint.
6685
6958
  """
@@ -6694,7 +6967,7 @@ class RedisClusterPublicNetwork(dict):
6694
6967
  @pulumi.getter
6695
6968
  def id(self) -> Optional[str]:
6696
6969
  """
6697
- (Required) The UUID of the endpoint.
6970
+ The ID of the IPv4 address resource.
6698
6971
  """
6699
6972
  return pulumi.get(self, "id")
6700
6973
 
@@ -7024,6 +7297,37 @@ class VpcGatewayNetworkIpamConfig(dict):
7024
7297
  return pulumi.get(self, "push_default_route")
7025
7298
 
7026
7299
 
7300
+ @pulumi.output_type
7301
+ class VpcGatewayNetworkPrivateIp(dict):
7302
+ def __init__(__self__, *,
7303
+ address: Optional[str] = None,
7304
+ id: Optional[str] = None):
7305
+ """
7306
+ :param str address: The private IPv4 address.
7307
+ :param str id: The ID of the IPv4 address resource.
7308
+ """
7309
+ if address is not None:
7310
+ pulumi.set(__self__, "address", address)
7311
+ if id is not None:
7312
+ pulumi.set(__self__, "id", id)
7313
+
7314
+ @property
7315
+ @pulumi.getter
7316
+ def address(self) -> Optional[str]:
7317
+ """
7318
+ The private IPv4 address.
7319
+ """
7320
+ return pulumi.get(self, "address")
7321
+
7322
+ @property
7323
+ @pulumi.getter
7324
+ def id(self) -> Optional[str]:
7325
+ """
7326
+ The ID of the IPv4 address resource.
7327
+ """
7328
+ return pulumi.get(self, "id")
7329
+
7330
+
7027
7331
  @pulumi.output_type
7028
7332
  class VpcPrivateNetworkIpv4Subnet(dict):
7029
7333
  @staticmethod
@@ -7753,12 +8057,42 @@ class GetBaremetalServerOptionResult(dict):
7753
8057
  return pulumi.get(self, "name")
7754
8058
 
7755
8059
 
8060
+ @pulumi.output_type
8061
+ class GetBaremetalServerPrivateIpResult(dict):
8062
+ def __init__(__self__, *,
8063
+ address: str,
8064
+ id: str):
8065
+ """
8066
+ :param str address: The private IP address
8067
+ :param str id: The ID of the server.
8068
+ """
8069
+ pulumi.set(__self__, "address", address)
8070
+ pulumi.set(__self__, "id", id)
8071
+
8072
+ @property
8073
+ @pulumi.getter
8074
+ def address(self) -> str:
8075
+ """
8076
+ The private IP address
8077
+ """
8078
+ return pulumi.get(self, "address")
8079
+
8080
+ @property
8081
+ @pulumi.getter
8082
+ def id(self) -> str:
8083
+ """
8084
+ The ID of the server.
8085
+ """
8086
+ return pulumi.get(self, "id")
8087
+
8088
+
7756
8089
  @pulumi.output_type
7757
8090
  class GetBaremetalServerPrivateNetworkResult(dict):
7758
8091
  def __init__(__self__, *,
7759
8092
  created_at: str,
7760
8093
  id: str,
7761
8094
  ipam_ip_ids: Sequence[str],
8095
+ mapping_id: str,
7762
8096
  status: str,
7763
8097
  updated_at: str,
7764
8098
  vlan: int):
@@ -7766,6 +8100,7 @@ class GetBaremetalServerPrivateNetworkResult(dict):
7766
8100
  :param str created_at: The date and time of the creation of the private network
7767
8101
  :param str id: The ID of the server.
7768
8102
  :param Sequence[str] ipam_ip_ids: List of IPAM IP IDs to attach to the server
8103
+ :param str mapping_id: The ID of the Server-to-Private Network mapping
7769
8104
  :param str status: The private network status
7770
8105
  :param str updated_at: The date and time of the last update of the private network
7771
8106
  :param int vlan: The VLAN ID associated to the private network
@@ -7773,6 +8108,7 @@ class GetBaremetalServerPrivateNetworkResult(dict):
7773
8108
  pulumi.set(__self__, "created_at", created_at)
7774
8109
  pulumi.set(__self__, "id", id)
7775
8110
  pulumi.set(__self__, "ipam_ip_ids", ipam_ip_ids)
8111
+ pulumi.set(__self__, "mapping_id", mapping_id)
7776
8112
  pulumi.set(__self__, "status", status)
7777
8113
  pulumi.set(__self__, "updated_at", updated_at)
7778
8114
  pulumi.set(__self__, "vlan", vlan)
@@ -7801,6 +8137,14 @@ class GetBaremetalServerPrivateNetworkResult(dict):
7801
8137
  """
7802
8138
  return pulumi.get(self, "ipam_ip_ids")
7803
8139
 
8140
+ @property
8141
+ @pulumi.getter(name="mappingId")
8142
+ def mapping_id(self) -> str:
8143
+ """
8144
+ The ID of the Server-to-Private Network mapping
8145
+ """
8146
+ return pulumi.get(self, "mapping_id")
8147
+
7804
8148
  @property
7805
8149
  @pulumi.getter
7806
8150
  def status(self) -> str:
@@ -8402,6 +8746,35 @@ class GetDatabaseInstanceLogsPolicyResult(dict):
8402
8746
  return pulumi.get(self, "total_disk_retention")
8403
8747
 
8404
8748
 
8749
+ @pulumi.output_type
8750
+ class GetDatabaseInstancePrivateIpResult(dict):
8751
+ def __init__(__self__, *,
8752
+ address: str,
8753
+ id: str):
8754
+ """
8755
+ :param str address: The private IPv4 address
8756
+ :param str id: The ID of the Database Instance.
8757
+ """
8758
+ pulumi.set(__self__, "address", address)
8759
+ pulumi.set(__self__, "id", id)
8760
+
8761
+ @property
8762
+ @pulumi.getter
8763
+ def address(self) -> str:
8764
+ """
8765
+ The private IPv4 address
8766
+ """
8767
+ return pulumi.get(self, "address")
8768
+
8769
+ @property
8770
+ @pulumi.getter
8771
+ def id(self) -> str:
8772
+ """
8773
+ The ID of the Database Instance.
8774
+ """
8775
+ return pulumi.get(self, "id")
8776
+
8777
+
8405
8778
  @pulumi.output_type
8406
8779
  class GetDatabaseInstancePrivateNetworkResult(dict):
8407
8780
  def __init__(__self__, *,
@@ -8945,6 +9318,35 @@ class GetFlexibleIpsIpMacAddressResult(dict):
8945
9318
  return pulumi.get(self, "zone")
8946
9319
 
8947
9320
 
9321
+ @pulumi.output_type
9322
+ class GetInstancePrivateNicPrivateIpResult(dict):
9323
+ def __init__(__self__, *,
9324
+ address: str,
9325
+ id: str):
9326
+ """
9327
+ :param str address: The private IP address
9328
+ :param str id: The ID of the IP address resource
9329
+ """
9330
+ pulumi.set(__self__, "address", address)
9331
+ pulumi.set(__self__, "id", id)
9332
+
9333
+ @property
9334
+ @pulumi.getter
9335
+ def address(self) -> str:
9336
+ """
9337
+ The private IP address
9338
+ """
9339
+ return pulumi.get(self, "address")
9340
+
9341
+ @property
9342
+ @pulumi.getter
9343
+ def id(self) -> str:
9344
+ """
9345
+ The ID of the IP address resource
9346
+ """
9347
+ return pulumi.get(self, "id")
9348
+
9349
+
8948
9350
  @pulumi.output_type
8949
9351
  class GetInstanceSecurityGroupInboundRuleResult(dict):
8950
9352
  def __init__(__self__, *,
@@ -9099,6 +9501,35 @@ class GetInstanceSecurityGroupOutboundRuleResult(dict):
9099
9501
  return pulumi.get(self, "protocol")
9100
9502
 
9101
9503
 
9504
+ @pulumi.output_type
9505
+ class GetInstanceServerPrivateIpResult(dict):
9506
+ def __init__(__self__, *,
9507
+ address: str,
9508
+ id: str):
9509
+ """
9510
+ :param str address: The address of the IP
9511
+ :param str id: The ID of the IP
9512
+ """
9513
+ pulumi.set(__self__, "address", address)
9514
+ pulumi.set(__self__, "id", id)
9515
+
9516
+ @property
9517
+ @pulumi.getter
9518
+ def address(self) -> str:
9519
+ """
9520
+ The address of the IP
9521
+ """
9522
+ return pulumi.get(self, "address")
9523
+
9524
+ @property
9525
+ @pulumi.getter
9526
+ def id(self) -> str:
9527
+ """
9528
+ The ID of the IP
9529
+ """
9530
+ return pulumi.get(self, "id")
9531
+
9532
+
9102
9533
  @pulumi.output_type
9103
9534
  class GetInstanceServerPrivateNetworkResult(dict):
9104
9535
  def __init__(__self__, *,
@@ -10227,21 +10658,35 @@ class GetKubernetesClusterOpenIdConnectConfigResult(dict):
10227
10658
  @pulumi.output_type
10228
10659
  class GetKubernetesNodePoolNodeResult(dict):
10229
10660
  def __init__(__self__, *,
10661
+ id: str,
10230
10662
  name: str,
10663
+ private_ips: Sequence['outputs.GetKubernetesNodePoolNodePrivateIpResult'],
10231
10664
  public_ip: str,
10232
10665
  public_ip_v6: str,
10233
10666
  status: str):
10234
10667
  """
10668
+ :param str id: The ID of the pool.
10235
10669
  :param str name: The pool name. Only one of `name` and `pool_id` should be specified. `cluster_id` should be specified with `name`.
10670
+ :param Sequence['GetKubernetesNodePoolNodePrivateIpArgs'] private_ips: List of private IPv4 and IPv6 addresses associated with the node
10236
10671
  :param str public_ip: The public IPv4.
10237
10672
  :param str public_ip_v6: The public IPv6.
10238
10673
  :param str status: The status of the node.
10239
10674
  """
10675
+ pulumi.set(__self__, "id", id)
10240
10676
  pulumi.set(__self__, "name", name)
10677
+ pulumi.set(__self__, "private_ips", private_ips)
10241
10678
  pulumi.set(__self__, "public_ip", public_ip)
10242
10679
  pulumi.set(__self__, "public_ip_v6", public_ip_v6)
10243
10680
  pulumi.set(__self__, "status", status)
10244
10681
 
10682
+ @property
10683
+ @pulumi.getter
10684
+ def id(self) -> str:
10685
+ """
10686
+ The ID of the pool.
10687
+ """
10688
+ return pulumi.get(self, "id")
10689
+
10245
10690
  @property
10246
10691
  @pulumi.getter
10247
10692
  def name(self) -> str:
@@ -10250,6 +10695,14 @@ class GetKubernetesNodePoolNodeResult(dict):
10250
10695
  """
10251
10696
  return pulumi.get(self, "name")
10252
10697
 
10698
+ @property
10699
+ @pulumi.getter(name="privateIps")
10700
+ def private_ips(self) -> Sequence['outputs.GetKubernetesNodePoolNodePrivateIpResult']:
10701
+ """
10702
+ List of private IPv4 and IPv6 addresses associated with the node
10703
+ """
10704
+ return pulumi.get(self, "private_ips")
10705
+
10253
10706
  @property
10254
10707
  @pulumi.getter(name="publicIp")
10255
10708
  def public_ip(self) -> str:
@@ -10275,6 +10728,35 @@ class GetKubernetesNodePoolNodeResult(dict):
10275
10728
  return pulumi.get(self, "status")
10276
10729
 
10277
10730
 
10731
+ @pulumi.output_type
10732
+ class GetKubernetesNodePoolNodePrivateIpResult(dict):
10733
+ def __init__(__self__, *,
10734
+ address: str,
10735
+ id: str):
10736
+ """
10737
+ :param str address: The private IP address
10738
+ :param str id: The ID of the pool.
10739
+ """
10740
+ pulumi.set(__self__, "address", address)
10741
+ pulumi.set(__self__, "id", id)
10742
+
10743
+ @property
10744
+ @pulumi.getter
10745
+ def address(self) -> str:
10746
+ """
10747
+ The private IP address
10748
+ """
10749
+ return pulumi.get(self, "address")
10750
+
10751
+ @property
10752
+ @pulumi.getter
10753
+ def id(self) -> str:
10754
+ """
10755
+ The ID of the pool.
10756
+ """
10757
+ return pulumi.get(self, "id")
10758
+
10759
+
10278
10760
  @pulumi.output_type
10279
10761
  class GetKubernetesNodePoolUpgradePolicyResult(dict):
10280
10762
  def __init__(__self__, *,
@@ -11895,6 +12377,35 @@ class GetLoadbalancerCertificateLetsencryptResult(dict):
11895
12377
  return pulumi.get(self, "subject_alternative_names")
11896
12378
 
11897
12379
 
12380
+ @pulumi.output_type
12381
+ class GetLoadbalancerPrivateIpResult(dict):
12382
+ def __init__(__self__, *,
12383
+ address: str,
12384
+ id: str):
12385
+ """
12386
+ :param str address: The private IP address
12387
+ :param str id: The ID of the Load Balancer.
12388
+ """
12389
+ pulumi.set(__self__, "address", address)
12390
+ pulumi.set(__self__, "id", id)
12391
+
12392
+ @property
12393
+ @pulumi.getter
12394
+ def address(self) -> str:
12395
+ """
12396
+ The private IP address
12397
+ """
12398
+ return pulumi.get(self, "address")
12399
+
12400
+ @property
12401
+ @pulumi.getter
12402
+ def id(self) -> str:
12403
+ """
12404
+ The ID of the Load Balancer.
12405
+ """
12406
+ return pulumi.get(self, "id")
12407
+
12408
+
11898
12409
  @pulumi.output_type
11899
12410
  class GetLoadbalancerPrivateNetworkResult(dict):
11900
12411
  def __init__(__self__, *,
@@ -12299,6 +12810,35 @@ class GetRedisClusterAclResult(dict):
12299
12810
  return pulumi.get(self, "ip")
12300
12811
 
12301
12812
 
12813
+ @pulumi.output_type
12814
+ class GetRedisClusterPrivateIpResult(dict):
12815
+ def __init__(__self__, *,
12816
+ address: str,
12817
+ id: str):
12818
+ """
12819
+ :param str address: The private IPv4 address
12820
+ :param str id: The ID of the Redis cluster.
12821
+ """
12822
+ pulumi.set(__self__, "address", address)
12823
+ pulumi.set(__self__, "id", id)
12824
+
12825
+ @property
12826
+ @pulumi.getter
12827
+ def address(self) -> str:
12828
+ """
12829
+ The private IPv4 address
12830
+ """
12831
+ return pulumi.get(self, "address")
12832
+
12833
+ @property
12834
+ @pulumi.getter
12835
+ def id(self) -> str:
12836
+ """
12837
+ The ID of the Redis cluster.
12838
+ """
12839
+ return pulumi.get(self, "id")
12840
+
12841
+
12302
12842
  @pulumi.output_type
12303
12843
  class GetRedisClusterPrivateNetworkResult(dict):
12304
12844
  def __init__(__self__, *,
@@ -12603,6 +13143,35 @@ class GetVpcGatewayNetworkIpamConfigResult(dict):
12603
13143
  return pulumi.get(self, "push_default_route")
12604
13144
 
12605
13145
 
13146
+ @pulumi.output_type
13147
+ class GetVpcGatewayNetworkPrivateIpResult(dict):
13148
+ def __init__(__self__, *,
13149
+ address: str,
13150
+ id: str):
13151
+ """
13152
+ :param str address: The private IPv4 address.
13153
+ :param str id: The ID of the IPv4 address resource.
13154
+ """
13155
+ pulumi.set(__self__, "address", address)
13156
+ pulumi.set(__self__, "id", id)
13157
+
13158
+ @property
13159
+ @pulumi.getter
13160
+ def address(self) -> str:
13161
+ """
13162
+ The private IPv4 address.
13163
+ """
13164
+ return pulumi.get(self, "address")
13165
+
13166
+ @property
13167
+ @pulumi.getter
13168
+ def id(self) -> str:
13169
+ """
13170
+ The ID of the IPv4 address resource.
13171
+ """
13172
+ return pulumi.get(self, "id")
13173
+
13174
+
12606
13175
  @pulumi.output_type
12607
13176
  class GetVpcPrivateNetworkIpv4SubnetResult(dict):
12608
13177
  def __init__(__self__, *,