pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.26.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 (218) hide show
  1. pulumi_oci/__init__.py +102 -0
  2. pulumi_oci/config/__init__.pyi +2 -0
  3. pulumi_oci/config/vars.py +4 -0
  4. pulumi_oci/containerengine/_inputs.py +74 -35
  5. pulumi_oci/containerengine/cluster.py +4 -0
  6. pulumi_oci/containerengine/container_instance.py +2 -4
  7. pulumi_oci/containerengine/outputs.py +180 -21
  8. pulumi_oci/containerinstances/outputs.py +0 -14
  9. pulumi_oci/core/_inputs.py +21 -33
  10. pulumi_oci/core/outputs.py +13 -21
  11. pulumi_oci/database/__init__.py +1 -0
  12. pulumi_oci/database/_inputs.py +1246 -57
  13. pulumi_oci/database/application_vip.py +59 -10
  14. pulumi_oci/database/autonomous_container_database.py +92 -0
  15. pulumi_oci/database/autonomous_database.py +90 -22
  16. pulumi_oci/database/backup.py +153 -5
  17. pulumi_oci/database/backup_destination.py +84 -0
  18. pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
  19. pulumi_oci/database/cloud_vm_cluster.py +163 -30
  20. pulumi_oci/database/data_guard_association.py +49 -0
  21. pulumi_oci/database/db_node.py +64 -8
  22. pulumi_oci/database/db_system.py +111 -8
  23. pulumi_oci/database/exadata_infrastructure.py +157 -3
  24. pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
  25. pulumi_oci/database/exadb_vm_cluster.py +84 -7
  26. pulumi_oci/database/exascale_db_storage_vault.py +147 -0
  27. pulumi_oci/database/external_container_database.py +4 -4
  28. pulumi_oci/database/external_non_container_database.py +4 -4
  29. pulumi_oci/database/external_pluggable_database.py +4 -4
  30. pulumi_oci/database/get_application_vip.py +16 -2
  31. pulumi_oci/database/get_autonomous_container_database.py +43 -1
  32. pulumi_oci/database/get_autonomous_database.py +29 -1
  33. pulumi_oci/database/get_autonomous_databases.py +0 -26
  34. pulumi_oci/database/get_backup_destination.py +43 -1
  35. pulumi_oci/database/get_backups.py +136 -10
  36. pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
  37. pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
  38. pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
  39. pulumi_oci/database/get_data_guard_association.py +12 -1
  40. pulumi_oci/database/get_database_software_images.py +20 -1
  41. pulumi_oci/database/get_db_node.py +31 -4
  42. pulumi_oci/database/get_db_server.py +15 -1
  43. pulumi_oci/database/get_exadata_infrastructure.py +57 -1
  44. pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
  45. pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
  48. pulumi_oci/database/get_external_container_database.py +1 -1
  49. pulumi_oci/database/get_external_non_container_database.py +1 -1
  50. pulumi_oci/database/get_external_pluggable_database.py +1 -1
  51. pulumi_oci/database/get_flex_components.py +28 -6
  52. pulumi_oci/database/get_maintenance_runs.py +20 -1
  53. pulumi_oci/database/get_vm_cluster.py +60 -4
  54. pulumi_oci/database/get_vm_clusters.py +25 -3
  55. pulumi_oci/database/outputs.py +2260 -87
  56. pulumi_oci/database/pluggable_database.py +13 -13
  57. pulumi_oci/database/vm_cluster.py +172 -18
  58. pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
  59. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
  60. pulumi_oci/datasafe/__init__.py +7 -0
  61. pulumi_oci/datasafe/_inputs.py +301 -0
  62. pulumi_oci/datasafe/discovery_mod.py +49 -0
  63. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  64. pulumi_oci/datasafe/get_masking_report.py +46 -4
  65. pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
  66. pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
  67. pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
  68. pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
  69. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  70. pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
  71. pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
  72. pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
  73. pulumi_oci/datasafe/outputs.py +676 -3
  74. pulumi_oci/datasafe/sensitive_data_model.py +49 -0
  75. pulumi_oci/datasafe/sensitive_type_group.py +563 -0
  76. pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
  77. pulumi_oci/datascience/__init__.py +4 -0
  78. pulumi_oci/datascience/_inputs.py +1160 -41
  79. pulumi_oci/datascience/get_model.py +29 -1
  80. pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
  81. pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
  82. pulumi_oci/datascience/get_model_version_set.py +15 -1
  83. pulumi_oci/datascience/get_model_version_sets.py +25 -3
  84. pulumi_oci/datascience/get_models.py +25 -3
  85. pulumi_oci/datascience/get_pipeline.py +15 -1
  86. pulumi_oci/datascience/model.py +64 -0
  87. pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
  88. pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
  89. pulumi_oci/datascience/model_version_set.py +28 -0
  90. pulumi_oci/datascience/outputs.py +4343 -2164
  91. pulumi_oci/datascience/pipeline.py +48 -141
  92. pulumi_oci/datascience/pipeline_run.py +32 -0
  93. pulumi_oci/dblm/__init__.py +17 -0
  94. pulumi_oci/dblm/_inputs.py +275 -0
  95. pulumi_oci/dblm/get_vulnerability.py +242 -0
  96. pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
  97. pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
  98. pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
  99. pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
  100. pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
  101. pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
  102. pulumi_oci/dblm/outputs.py +1294 -0
  103. pulumi_oci/dblm/vulnerability_scan.py +521 -0
  104. pulumi_oci/email/dkim.py +120 -20
  105. pulumi_oci/email/get_dkim.py +40 -1
  106. pulumi_oci/email/outputs.py +29 -0
  107. pulumi_oci/filestorage/__init__.py +3 -0
  108. pulumi_oci/filestorage/_inputs.py +49 -0
  109. pulumi_oci/filestorage/file_system.py +133 -0
  110. pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
  111. pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
  112. pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
  113. pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
  114. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
  115. pulumi_oci/filestorage/get_outbound_connector.py +15 -1
  116. pulumi_oci/filestorage/get_replication.py +15 -1
  117. pulumi_oci/filestorage/get_replication_target.py +15 -1
  118. pulumi_oci/filestorage/get_snapshot.py +15 -1
  119. pulumi_oci/filestorage/mount_target.py +28 -0
  120. pulumi_oci/filestorage/outbound_connector.py +28 -0
  121. pulumi_oci/filestorage/outputs.py +263 -0
  122. pulumi_oci/filestorage/replication.py +28 -0
  123. pulumi_oci/filestorage/snapshot.py +28 -0
  124. pulumi_oci/goldengate/connection.py +561 -162
  125. pulumi_oci/goldengate/database_registration.py +14 -14
  126. pulumi_oci/goldengate/get_connection.py +117 -6
  127. pulumi_oci/goldengate/outputs.py +96 -10
  128. pulumi_oci/jms/__init__.py +4 -0
  129. pulumi_oci/jms/_inputs.py +196 -0
  130. pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
  131. pulumi_oci/jms/get_fleet_errors.py +264 -0
  132. pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
  133. pulumi_oci/jms/get_jms_plugins.py +23 -1
  134. pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
  135. pulumi_oci/jms/get_plugin_errors.py +264 -0
  136. pulumi_oci/jms/outputs.py +566 -6
  137. pulumi_oci/mysql/_inputs.py +1239 -10
  138. pulumi_oci/mysql/channel.py +28 -0
  139. pulumi_oci/mysql/get_channel.py +15 -1
  140. pulumi_oci/mysql/get_mysql_backup.py +15 -1
  141. pulumi_oci/mysql/get_mysql_configuration.py +15 -1
  142. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  143. pulumi_oci/mysql/mysql_backup.py +28 -0
  144. pulumi_oci/mysql/mysql_configuration.py +106 -0
  145. pulumi_oci/mysql/mysql_db_system.py +36 -0
  146. pulumi_oci/mysql/outputs.py +2008 -35
  147. pulumi_oci/opensearch/__init__.py +3 -0
  148. pulumi_oci/opensearch/_inputs.py +101 -0
  149. pulumi_oci/opensearch/cluster.py +76 -29
  150. pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
  151. pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
  152. pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
  153. pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
  154. pulumi_oci/opensearch/outputs.py +425 -0
  155. pulumi_oci/provider.py +20 -0
  156. pulumi_oci/psql/_inputs.py +258 -0
  157. pulumi_oci/psql/backup.py +129 -28
  158. pulumi_oci/psql/db_system.py +10 -0
  159. pulumi_oci/psql/get_backup.py +47 -2
  160. pulumi_oci/psql/get_backups.py +3 -0
  161. pulumi_oci/psql/get_configurations.py +23 -1
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_db_systems.py +1 -1
  164. pulumi_oci/psql/outputs.py +541 -5
  165. pulumi_oci/pulumi-plugin.json +1 -1
  166. pulumi_oci/redis/redis_cluster.py +7 -7
  167. pulumi_oci/stackmonitoring/__init__.py +8 -0
  168. pulumi_oci/stackmonitoring/_inputs.py +372 -1
  169. pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
  170. pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
  171. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
  172. pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
  173. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
  174. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
  175. pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
  176. pulumi_oci/stackmonitoring/metric_extension.py +4 -4
  177. pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
  178. pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
  179. pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
  180. pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
  181. pulumi_oci/stackmonitoring/outputs.py +1305 -118
  182. pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
  183. pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
  184. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
  185. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
  186. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
  187. pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
  188. pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
  189. pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
  190. pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
  191. pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
  192. pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
  193. pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
  194. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
  195. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
  196. pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
  197. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
  198. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
  199. pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
  200. pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
  201. pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
  202. pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
  203. pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
  204. pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
  205. pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
  206. pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
  207. pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
  208. pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
  209. pulumi_oci/vault/__init__.py +1 -1
  210. pulumi_oci/vault/_inputs.py +92 -0
  211. pulumi_oci/vault/get_secret.py +40 -1
  212. pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
  213. pulumi_oci/vault/outputs.py +210 -0
  214. pulumi_oci/vault/secret.py +122 -0
  215. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/METADATA +1 -1
  216. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/RECORD +218 -150
  217. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/WHEEL +1 -1
  218. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/top_level.txt +0 -0
@@ -53,6 +53,7 @@ class DataGuardAssociationArgs:
53
53
  peer_sid_prefix: Optional[pulumi.Input[str]] = None,
54
54
  peer_vm_cluster_id: Optional[pulumi.Input[str]] = None,
55
55
  private_ip: Optional[pulumi.Input[str]] = None,
56
+ private_ip_v6: Optional[pulumi.Input[str]] = None,
56
57
  shape: Optional[pulumi.Input[str]] = None,
57
58
  storage_volume_performance_mode: Optional[pulumi.Input[str]] = None,
58
59
  subnet_id: Optional[pulumi.Input[str]] = None,
@@ -119,6 +120,7 @@ class DataGuardAssociationArgs:
119
120
  :param pulumi.Input[str] peer_sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
120
121
  :param pulumi.Input[str] peer_vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM Cluster in which to create the standby database. You must supply this value if creationType is `ExistingVmCluster`.
121
122
  :param pulumi.Input[str] private_ip: The IPv4 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv4 address from the subnet.
123
+ :param pulumi.Input[str] private_ip_v6: The IPv6 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv6 address from the subnet.
122
124
  :param pulumi.Input[str] shape: The virtual machine DB system shape to launch for the standby database in the Data Guard association. The shape determines the number of CPU cores and the amount of memory available for the DB system. Only virtual machine shapes are valid options. If you do not supply this parameter, the default shape is the shape of the primary DB system.
123
125
 
124
126
  To get a list of all shapes, use the [ListDbSystemShapes](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/DbSystemShapeSummary/ListDbSystemShapes) operation.
@@ -187,6 +189,8 @@ class DataGuardAssociationArgs:
187
189
  pulumi.set(__self__, "peer_vm_cluster_id", peer_vm_cluster_id)
188
190
  if private_ip is not None:
189
191
  pulumi.set(__self__, "private_ip", private_ip)
192
+ if private_ip_v6 is not None:
193
+ pulumi.set(__self__, "private_ip_v6", private_ip_v6)
190
194
  if shape is not None:
191
195
  pulumi.set(__self__, "shape", shape)
192
196
  if storage_volume_performance_mode is not None:
@@ -604,6 +608,18 @@ class DataGuardAssociationArgs:
604
608
  def private_ip(self, value: Optional[pulumi.Input[str]]):
605
609
  pulumi.set(self, "private_ip", value)
606
610
 
611
+ @property
612
+ @pulumi.getter(name="privateIpV6")
613
+ def private_ip_v6(self) -> Optional[pulumi.Input[str]]:
614
+ """
615
+ The IPv6 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv6 address from the subnet.
616
+ """
617
+ return pulumi.get(self, "private_ip_v6")
618
+
619
+ @private_ip_v6.setter
620
+ def private_ip_v6(self, value: Optional[pulumi.Input[str]]):
621
+ pulumi.set(self, "private_ip_v6", value)
622
+
607
623
  @property
608
624
  @pulumi.getter
609
625
  def shape(self) -> Optional[pulumi.Input[str]]:
@@ -697,6 +713,7 @@ class _DataGuardAssociationState:
697
713
  peer_sid_prefix: Optional[pulumi.Input[str]] = None,
698
714
  peer_vm_cluster_id: Optional[pulumi.Input[str]] = None,
699
715
  private_ip: Optional[pulumi.Input[str]] = None,
716
+ private_ip_v6: Optional[pulumi.Input[str]] = None,
700
717
  protection_mode: Optional[pulumi.Input[str]] = None,
701
718
  role: Optional[pulumi.Input[str]] = None,
702
719
  shape: Optional[pulumi.Input[str]] = None,
@@ -763,6 +780,7 @@ class _DataGuardAssociationState:
763
780
  :param pulumi.Input[str] peer_sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
764
781
  :param pulumi.Input[str] peer_vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM Cluster in which to create the standby database. You must supply this value if creationType is `ExistingVmCluster`.
765
782
  :param pulumi.Input[str] private_ip: The IPv4 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv4 address from the subnet.
783
+ :param pulumi.Input[str] private_ip_v6: The IPv6 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv6 address from the subnet.
766
784
  :param pulumi.Input[str] protection_mode: (Updatable) The protection mode to set up between the primary and standby databases. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
767
785
 
768
786
  **IMPORTANT** - The only protection mode currently supported by the Database service is MAXIMUM_PERFORMANCE.
@@ -859,6 +877,8 @@ class _DataGuardAssociationState:
859
877
  pulumi.set(__self__, "peer_vm_cluster_id", peer_vm_cluster_id)
860
878
  if private_ip is not None:
861
879
  pulumi.set(__self__, "private_ip", private_ip)
880
+ if private_ip_v6 is not None:
881
+ pulumi.set(__self__, "private_ip_v6", private_ip_v6)
862
882
  if protection_mode is not None:
863
883
  pulumi.set(__self__, "protection_mode", protection_mode)
864
884
  if role is not None:
@@ -1325,6 +1345,18 @@ class _DataGuardAssociationState:
1325
1345
  def private_ip(self, value: Optional[pulumi.Input[str]]):
1326
1346
  pulumi.set(self, "private_ip", value)
1327
1347
 
1348
+ @property
1349
+ @pulumi.getter(name="privateIpV6")
1350
+ def private_ip_v6(self) -> Optional[pulumi.Input[str]]:
1351
+ """
1352
+ The IPv6 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv6 address from the subnet.
1353
+ """
1354
+ return pulumi.get(self, "private_ip_v6")
1355
+
1356
+ @private_ip_v6.setter
1357
+ def private_ip_v6(self, value: Optional[pulumi.Input[str]]):
1358
+ pulumi.set(self, "private_ip_v6", value)
1359
+
1328
1360
  @property
1329
1361
  @pulumi.getter(name="protectionMode")
1330
1362
  def protection_mode(self) -> Optional[pulumi.Input[str]]:
@@ -1483,6 +1515,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1483
1515
  peer_sid_prefix: Optional[pulumi.Input[str]] = None,
1484
1516
  peer_vm_cluster_id: Optional[pulumi.Input[str]] = None,
1485
1517
  private_ip: Optional[pulumi.Input[str]] = None,
1518
+ private_ip_v6: Optional[pulumi.Input[str]] = None,
1486
1519
  protection_mode: Optional[pulumi.Input[str]] = None,
1487
1520
  shape: Optional[pulumi.Input[str]] = None,
1488
1521
  storage_volume_performance_mode: Optional[pulumi.Input[str]] = None,
@@ -1543,6 +1576,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1543
1576
  peer_sid_prefix=data_guard_association_peer_sid_prefix,
1544
1577
  peer_vm_cluster_id=test_vm_cluster["id"],
1545
1578
  private_ip=data_guard_association_private_ip,
1579
+ private_ip_v6=data_guard_association_private_ip_v6,
1546
1580
  shape=data_guard_association_shape,
1547
1581
  storage_volume_performance_mode=data_guard_association_storage_volume_performance_mode,
1548
1582
  subnet_id=test_subnet["id"],
@@ -1604,6 +1638,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1604
1638
  :param pulumi.Input[str] peer_sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
1605
1639
  :param pulumi.Input[str] peer_vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM Cluster in which to create the standby database. You must supply this value if creationType is `ExistingVmCluster`.
1606
1640
  :param pulumi.Input[str] private_ip: The IPv4 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv4 address from the subnet.
1641
+ :param pulumi.Input[str] private_ip_v6: The IPv6 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv6 address from the subnet.
1607
1642
  :param pulumi.Input[str] protection_mode: (Updatable) The protection mode to set up between the primary and standby databases. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
1608
1643
 
1609
1644
  **IMPORTANT** - The only protection mode currently supported by the Database service is MAXIMUM_PERFORMANCE.
@@ -1684,6 +1719,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1684
1719
  peer_sid_prefix=data_guard_association_peer_sid_prefix,
1685
1720
  peer_vm_cluster_id=test_vm_cluster["id"],
1686
1721
  private_ip=data_guard_association_private_ip,
1722
+ private_ip_v6=data_guard_association_private_ip_v6,
1687
1723
  shape=data_guard_association_shape,
1688
1724
  storage_volume_performance_mode=data_guard_association_storage_volume_performance_mode,
1689
1725
  subnet_id=test_subnet["id"],
@@ -1739,6 +1775,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1739
1775
  peer_sid_prefix: Optional[pulumi.Input[str]] = None,
1740
1776
  peer_vm_cluster_id: Optional[pulumi.Input[str]] = None,
1741
1777
  private_ip: Optional[pulumi.Input[str]] = None,
1778
+ private_ip_v6: Optional[pulumi.Input[str]] = None,
1742
1779
  protection_mode: Optional[pulumi.Input[str]] = None,
1743
1780
  shape: Optional[pulumi.Input[str]] = None,
1744
1781
  storage_volume_performance_mode: Optional[pulumi.Input[str]] = None,
@@ -1792,6 +1829,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1792
1829
  __props__.__dict__["peer_sid_prefix"] = peer_sid_prefix
1793
1830
  __props__.__dict__["peer_vm_cluster_id"] = peer_vm_cluster_id
1794
1831
  __props__.__dict__["private_ip"] = private_ip
1832
+ __props__.__dict__["private_ip_v6"] = private_ip_v6
1795
1833
  if protection_mode is None and not opts.urn:
1796
1834
  raise TypeError("Missing required property 'protection_mode'")
1797
1835
  __props__.__dict__["protection_mode"] = protection_mode
@@ -1859,6 +1897,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1859
1897
  peer_sid_prefix: Optional[pulumi.Input[str]] = None,
1860
1898
  peer_vm_cluster_id: Optional[pulumi.Input[str]] = None,
1861
1899
  private_ip: Optional[pulumi.Input[str]] = None,
1900
+ private_ip_v6: Optional[pulumi.Input[str]] = None,
1862
1901
  protection_mode: Optional[pulumi.Input[str]] = None,
1863
1902
  role: Optional[pulumi.Input[str]] = None,
1864
1903
  shape: Optional[pulumi.Input[str]] = None,
@@ -1930,6 +1969,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1930
1969
  :param pulumi.Input[str] peer_sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
1931
1970
  :param pulumi.Input[str] peer_vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM Cluster in which to create the standby database. You must supply this value if creationType is `ExistingVmCluster`.
1932
1971
  :param pulumi.Input[str] private_ip: The IPv4 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv4 address from the subnet.
1972
+ :param pulumi.Input[str] private_ip_v6: The IPv6 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv6 address from the subnet.
1933
1973
  :param pulumi.Input[str] protection_mode: (Updatable) The protection mode to set up between the primary and standby databases. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
1934
1974
 
1935
1975
  **IMPORTANT** - The only protection mode currently supported by the Database service is MAXIMUM_PERFORMANCE.
@@ -1994,6 +2034,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1994
2034
  __props__.__dict__["peer_sid_prefix"] = peer_sid_prefix
1995
2035
  __props__.__dict__["peer_vm_cluster_id"] = peer_vm_cluster_id
1996
2036
  __props__.__dict__["private_ip"] = private_ip
2037
+ __props__.__dict__["private_ip_v6"] = private_ip_v6
1997
2038
  __props__.__dict__["protection_mode"] = protection_mode
1998
2039
  __props__.__dict__["role"] = role
1999
2040
  __props__.__dict__["shape"] = shape
@@ -2308,6 +2349,14 @@ class DataGuardAssociation(pulumi.CustomResource):
2308
2349
  """
2309
2350
  return pulumi.get(self, "private_ip")
2310
2351
 
2352
+ @property
2353
+ @pulumi.getter(name="privateIpV6")
2354
+ def private_ip_v6(self) -> pulumi.Output[str]:
2355
+ """
2356
+ The IPv6 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv6 address from the subnet.
2357
+ """
2358
+ return pulumi.get(self, "private_ip_v6")
2359
+
2311
2360
  @property
2312
2361
  @pulumi.getter(name="protectionMode")
2313
2362
  def protection_mode(self) -> pulumi.Output[str]:
@@ -84,6 +84,7 @@ class _DbNodeState:
84
84
  def __init__(__self__, *,
85
85
  additional_details: Optional[pulumi.Input[str]] = None,
86
86
  backup_ip_id: Optional[pulumi.Input[str]] = None,
87
+ backup_ipv6id: Optional[pulumi.Input[str]] = None,
87
88
  backup_vnic2id: Optional[pulumi.Input[str]] = None,
88
89
  backup_vnic_id: Optional[pulumi.Input[str]] = None,
89
90
  cpu_core_count: Optional[pulumi.Input[int]] = None,
@@ -95,6 +96,7 @@ class _DbNodeState:
95
96
  fault_domain: Optional[pulumi.Input[str]] = None,
96
97
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
97
98
  host_ip_id: Optional[pulumi.Input[str]] = None,
99
+ host_ipv6id: Optional[pulumi.Input[str]] = None,
98
100
  hostname: Optional[pulumi.Input[str]] = None,
99
101
  lifecycle_details: Optional[pulumi.Input[str]] = None,
100
102
  maintenance_type: Optional[pulumi.Input[str]] = None,
@@ -110,7 +112,8 @@ class _DbNodeState:
110
112
  """
111
113
  Input properties used for looking up and filtering DbNode resources.
112
114
  :param pulumi.Input[str] additional_details: Additional information about the planned maintenance.
113
- :param pulumi.Input[str] backup_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IP address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IP address needed to make a database connection.
115
+ :param pulumi.Input[str] backup_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
116
+ :param pulumi.Input[str] backup_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
114
117
  :param pulumi.Input[str] backup_vnic2id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the second backup VNIC.
115
118
  :param pulumi.Input[str] backup_vnic_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup VNIC.
116
119
  :param pulumi.Input[int] cpu_core_count: The number of CPU cores enabled on the Db node.
@@ -125,7 +128,8 @@ class _DbNodeState:
125
128
 
126
129
  ** IMPORTANT **
127
130
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
128
- :param pulumi.Input[str] host_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IP address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IP address needed to make a database connection.
131
+ :param pulumi.Input[str] host_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
132
+ :param pulumi.Input[str] host_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
129
133
  :param pulumi.Input[str] hostname: The host name for the database node.
130
134
  :param pulumi.Input[str] lifecycle_details: Information about the current lifecycle state.
131
135
  :param pulumi.Input[str] maintenance_type: The type of database node maintenance.
@@ -143,6 +147,8 @@ class _DbNodeState:
143
147
  pulumi.set(__self__, "additional_details", additional_details)
144
148
  if backup_ip_id is not None:
145
149
  pulumi.set(__self__, "backup_ip_id", backup_ip_id)
150
+ if backup_ipv6id is not None:
151
+ pulumi.set(__self__, "backup_ipv6id", backup_ipv6id)
146
152
  if backup_vnic2id is not None:
147
153
  pulumi.set(__self__, "backup_vnic2id", backup_vnic2id)
148
154
  if backup_vnic_id is not None:
@@ -165,6 +171,8 @@ class _DbNodeState:
165
171
  pulumi.set(__self__, "freeform_tags", freeform_tags)
166
172
  if host_ip_id is not None:
167
173
  pulumi.set(__self__, "host_ip_id", host_ip_id)
174
+ if host_ipv6id is not None:
175
+ pulumi.set(__self__, "host_ipv6id", host_ipv6id)
168
176
  if hostname is not None:
169
177
  pulumi.set(__self__, "hostname", hostname)
170
178
  if lifecycle_details is not None:
@@ -206,7 +214,7 @@ class _DbNodeState:
206
214
  @pulumi.getter(name="backupIpId")
207
215
  def backup_ip_id(self) -> Optional[pulumi.Input[str]]:
208
216
  """
209
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IP address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IP address needed to make a database connection.
217
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
210
218
  """
211
219
  return pulumi.get(self, "backup_ip_id")
212
220
 
@@ -214,6 +222,18 @@ class _DbNodeState:
214
222
  def backup_ip_id(self, value: Optional[pulumi.Input[str]]):
215
223
  pulumi.set(self, "backup_ip_id", value)
216
224
 
225
+ @property
226
+ @pulumi.getter(name="backupIpv6id")
227
+ def backup_ipv6id(self) -> Optional[pulumi.Input[str]]:
228
+ """
229
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
230
+ """
231
+ return pulumi.get(self, "backup_ipv6id")
232
+
233
+ @backup_ipv6id.setter
234
+ def backup_ipv6id(self, value: Optional[pulumi.Input[str]]):
235
+ pulumi.set(self, "backup_ipv6id", value)
236
+
217
237
  @property
218
238
  @pulumi.getter(name="backupVnic2id")
219
239
  def backup_vnic2id(self) -> Optional[pulumi.Input[str]]:
@@ -342,7 +362,7 @@ class _DbNodeState:
342
362
  @pulumi.getter(name="hostIpId")
343
363
  def host_ip_id(self) -> Optional[pulumi.Input[str]]:
344
364
  """
345
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IP address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IP address needed to make a database connection.
365
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
346
366
  """
347
367
  return pulumi.get(self, "host_ip_id")
348
368
 
@@ -350,6 +370,18 @@ class _DbNodeState:
350
370
  def host_ip_id(self, value: Optional[pulumi.Input[str]]):
351
371
  pulumi.set(self, "host_ip_id", value)
352
372
 
373
+ @property
374
+ @pulumi.getter(name="hostIpv6id")
375
+ def host_ipv6id(self) -> Optional[pulumi.Input[str]]:
376
+ """
377
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
378
+ """
379
+ return pulumi.get(self, "host_ipv6id")
380
+
381
+ @host_ipv6id.setter
382
+ def host_ipv6id(self, value: Optional[pulumi.Input[str]]):
383
+ pulumi.set(self, "host_ipv6id", value)
384
+
353
385
  @property
354
386
  @pulumi.getter
355
387
  def hostname(self) -> Optional[pulumi.Input[str]]:
@@ -580,6 +612,7 @@ class DbNode(pulumi.CustomResource):
580
612
  __props__.__dict__["freeform_tags"] = freeform_tags
581
613
  __props__.__dict__["additional_details"] = None
582
614
  __props__.__dict__["backup_ip_id"] = None
615
+ __props__.__dict__["backup_ipv6id"] = None
583
616
  __props__.__dict__["backup_vnic2id"] = None
584
617
  __props__.__dict__["backup_vnic_id"] = None
585
618
  __props__.__dict__["cpu_core_count"] = None
@@ -588,6 +621,7 @@ class DbNode(pulumi.CustomResource):
588
621
  __props__.__dict__["db_system_id"] = None
589
622
  __props__.__dict__["fault_domain"] = None
590
623
  __props__.__dict__["host_ip_id"] = None
624
+ __props__.__dict__["host_ipv6id"] = None
591
625
  __props__.__dict__["hostname"] = None
592
626
  __props__.__dict__["lifecycle_details"] = None
593
627
  __props__.__dict__["maintenance_type"] = None
@@ -612,6 +646,7 @@ class DbNode(pulumi.CustomResource):
612
646
  opts: Optional[pulumi.ResourceOptions] = None,
613
647
  additional_details: Optional[pulumi.Input[str]] = None,
614
648
  backup_ip_id: Optional[pulumi.Input[str]] = None,
649
+ backup_ipv6id: Optional[pulumi.Input[str]] = None,
615
650
  backup_vnic2id: Optional[pulumi.Input[str]] = None,
616
651
  backup_vnic_id: Optional[pulumi.Input[str]] = None,
617
652
  cpu_core_count: Optional[pulumi.Input[int]] = None,
@@ -623,6 +658,7 @@ class DbNode(pulumi.CustomResource):
623
658
  fault_domain: Optional[pulumi.Input[str]] = None,
624
659
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
625
660
  host_ip_id: Optional[pulumi.Input[str]] = None,
661
+ host_ipv6id: Optional[pulumi.Input[str]] = None,
626
662
  hostname: Optional[pulumi.Input[str]] = None,
627
663
  lifecycle_details: Optional[pulumi.Input[str]] = None,
628
664
  maintenance_type: Optional[pulumi.Input[str]] = None,
@@ -643,7 +679,8 @@ class DbNode(pulumi.CustomResource):
643
679
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
644
680
  :param pulumi.ResourceOptions opts: Options for the resource.
645
681
  :param pulumi.Input[str] additional_details: Additional information about the planned maintenance.
646
- :param pulumi.Input[str] backup_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IP address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IP address needed to make a database connection.
682
+ :param pulumi.Input[str] backup_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
683
+ :param pulumi.Input[str] backup_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
647
684
  :param pulumi.Input[str] backup_vnic2id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the second backup VNIC.
648
685
  :param pulumi.Input[str] backup_vnic_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup VNIC.
649
686
  :param pulumi.Input[int] cpu_core_count: The number of CPU cores enabled on the Db node.
@@ -658,7 +695,8 @@ class DbNode(pulumi.CustomResource):
658
695
 
659
696
  ** IMPORTANT **
660
697
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
661
- :param pulumi.Input[str] host_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IP address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IP address needed to make a database connection.
698
+ :param pulumi.Input[str] host_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
699
+ :param pulumi.Input[str] host_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
662
700
  :param pulumi.Input[str] hostname: The host name for the database node.
663
701
  :param pulumi.Input[str] lifecycle_details: Information about the current lifecycle state.
664
702
  :param pulumi.Input[str] maintenance_type: The type of database node maintenance.
@@ -678,6 +716,7 @@ class DbNode(pulumi.CustomResource):
678
716
 
679
717
  __props__.__dict__["additional_details"] = additional_details
680
718
  __props__.__dict__["backup_ip_id"] = backup_ip_id
719
+ __props__.__dict__["backup_ipv6id"] = backup_ipv6id
681
720
  __props__.__dict__["backup_vnic2id"] = backup_vnic2id
682
721
  __props__.__dict__["backup_vnic_id"] = backup_vnic_id
683
722
  __props__.__dict__["cpu_core_count"] = cpu_core_count
@@ -689,6 +728,7 @@ class DbNode(pulumi.CustomResource):
689
728
  __props__.__dict__["fault_domain"] = fault_domain
690
729
  __props__.__dict__["freeform_tags"] = freeform_tags
691
730
  __props__.__dict__["host_ip_id"] = host_ip_id
731
+ __props__.__dict__["host_ipv6id"] = host_ipv6id
692
732
  __props__.__dict__["hostname"] = hostname
693
733
  __props__.__dict__["lifecycle_details"] = lifecycle_details
694
734
  __props__.__dict__["maintenance_type"] = maintenance_type
@@ -715,10 +755,18 @@ class DbNode(pulumi.CustomResource):
715
755
  @pulumi.getter(name="backupIpId")
716
756
  def backup_ip_id(self) -> pulumi.Output[str]:
717
757
  """
718
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IP address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IP address needed to make a database connection.
758
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
719
759
  """
720
760
  return pulumi.get(self, "backup_ip_id")
721
761
 
762
+ @property
763
+ @pulumi.getter(name="backupIpv6id")
764
+ def backup_ipv6id(self) -> pulumi.Output[str]:
765
+ """
766
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
767
+ """
768
+ return pulumi.get(self, "backup_ipv6id")
769
+
722
770
  @property
723
771
  @pulumi.getter(name="backupVnic2id")
724
772
  def backup_vnic2id(self) -> pulumi.Output[str]:
@@ -807,10 +855,18 @@ class DbNode(pulumi.CustomResource):
807
855
  @pulumi.getter(name="hostIpId")
808
856
  def host_ip_id(self) -> pulumi.Output[str]:
809
857
  """
810
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IP address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IP address needed to make a database connection.
858
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
811
859
  """
812
860
  return pulumi.get(self, "host_ip_id")
813
861
 
862
+ @property
863
+ @pulumi.getter(name="hostIpv6id")
864
+ def host_ipv6id(self) -> pulumi.Output[str]:
865
+ """
866
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
867
+ """
868
+ return pulumi.get(self, "host_ipv6id")
869
+
814
870
  @property
815
871
  @pulumi.getter
816
872
  def hostname(self) -> pulumi.Output[str]: