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
@@ -50,6 +50,7 @@ class DbSystemArgs:
50
50
  node_count: Optional[pulumi.Input[int]] = None,
51
51
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
52
52
  private_ip: Optional[pulumi.Input[str]] = None,
53
+ private_ip_v6: Optional[pulumi.Input[str]] = None,
53
54
  reco_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
54
55
  security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
55
56
  source: Optional[pulumi.Input[str]] = None,
@@ -127,6 +128,7 @@ class DbSystemArgs:
127
128
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
128
129
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
129
130
  :param pulumi.Input[str] private_ip: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Supported for VM BM shape.
131
+ :param pulumi.Input[str] private_ip_v6: A private IPv6 address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value and the subnet is dual stack, Oracle automatically assigns a private IPv6 address from the subnet.
130
132
  :param pulumi.Input[int] reco_storage_size_in_gb: The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
131
133
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
132
134
  :param pulumi.Input[str] source: The source of the database: Use `NONE` for creating a new database. Use `DB_BACKUP` for creating a new database by restoring from a backup. Use `DATABASE` for creating a new database from an existing database, including archive redo log data. The default is `NONE`.
@@ -190,6 +192,8 @@ class DbSystemArgs:
190
192
  pulumi.set(__self__, "nsg_ids", nsg_ids)
191
193
  if private_ip is not None:
192
194
  pulumi.set(__self__, "private_ip", private_ip)
195
+ if private_ip_v6 is not None:
196
+ pulumi.set(__self__, "private_ip_v6", private_ip_v6)
193
197
  if reco_storage_size_in_gb is not None:
194
198
  pulumi.set(__self__, "reco_storage_size_in_gb", reco_storage_size_in_gb)
195
199
  if security_attributes is not None:
@@ -592,6 +596,18 @@ class DbSystemArgs:
592
596
  def private_ip(self, value: Optional[pulumi.Input[str]]):
593
597
  pulumi.set(self, "private_ip", value)
594
598
 
599
+ @property
600
+ @pulumi.getter(name="privateIpV6")
601
+ def private_ip_v6(self) -> Optional[pulumi.Input[str]]:
602
+ """
603
+ A private IPv6 address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value and the subnet is dual stack, Oracle automatically assigns a private IPv6 address from the subnet.
604
+ """
605
+ return pulumi.get(self, "private_ip_v6")
606
+
607
+ @private_ip_v6.setter
608
+ def private_ip_v6(self, value: Optional[pulumi.Input[str]]):
609
+ pulumi.set(self, "private_ip_v6", value)
610
+
595
611
  @property
596
612
  @pulumi.getter(name="recoStorageSizeInGb")
597
613
  def reco_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
@@ -720,10 +736,12 @@ class _DbSystemState:
720
736
  os_version: Optional[pulumi.Input[str]] = None,
721
737
  point_in_time_data_disk_clone_timestamp: Optional[pulumi.Input[str]] = None,
722
738
  private_ip: Optional[pulumi.Input[str]] = None,
739
+ private_ip_v6: Optional[pulumi.Input[str]] = None,
723
740
  reco_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
724
741
  scan_dns_name: Optional[pulumi.Input[str]] = None,
725
742
  scan_dns_record_id: Optional[pulumi.Input[str]] = None,
726
743
  scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
744
+ scan_ipv6ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
727
745
  security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
728
746
  shape: Optional[pulumi.Input[str]] = None,
729
747
  source: Optional[pulumi.Input[str]] = None,
@@ -737,6 +755,7 @@ class _DbSystemState:
737
755
  time_zone: Optional[pulumi.Input[str]] = None,
738
756
  version: Optional[pulumi.Input[str]] = None,
739
757
  vip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
758
+ vipv6ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
740
759
  zone_id: Optional[pulumi.Input[str]] = None):
741
760
  """
742
761
  Input properties used for looking up and filtering DbSystem resources.
@@ -805,10 +824,12 @@ class _DbSystemState:
805
824
  :param pulumi.Input[str] os_version: The most recent OS Patch Version applied on the DB system.
806
825
  :param pulumi.Input[str] point_in_time_data_disk_clone_timestamp: The point in time for a cloned database system when the data disks were cloned from the source database system, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
807
826
  :param pulumi.Input[str] private_ip: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Supported for VM BM shape.
827
+ :param pulumi.Input[str] private_ip_v6: A private IPv6 address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value and the subnet is dual stack, Oracle automatically assigns a private IPv6 address from the subnet.
808
828
  :param pulumi.Input[int] reco_storage_size_in_gb: The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
809
829
  :param pulumi.Input[str] scan_dns_name: The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
810
830
  :param pulumi.Input[str] scan_dns_record_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the DB system.
811
- :param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
831
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
832
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
812
833
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
813
834
  :param pulumi.Input[str] shape: (Updatable) The shape of the DB system. The shape determines resources allocated to the DB system.
814
835
  * For virtual machine shapes, the number of CPU cores and memory
@@ -835,7 +856,8 @@ class _DbSystemState:
835
856
  ** IMPORTANT **
836
857
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
837
858
  :param pulumi.Input[str] version: The Oracle Database version of the DB system.
838
- :param pulumi.Input[Sequence[pulumi.Input[str]]] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
859
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
860
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] vipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
839
861
  :param pulumi.Input[str] zone_id: The OCID of the zone the DB system is associated with.
840
862
  """
841
863
  if availability_domain is not None:
@@ -910,6 +932,8 @@ class _DbSystemState:
910
932
  pulumi.set(__self__, "point_in_time_data_disk_clone_timestamp", point_in_time_data_disk_clone_timestamp)
911
933
  if private_ip is not None:
912
934
  pulumi.set(__self__, "private_ip", private_ip)
935
+ if private_ip_v6 is not None:
936
+ pulumi.set(__self__, "private_ip_v6", private_ip_v6)
913
937
  if reco_storage_size_in_gb is not None:
914
938
  pulumi.set(__self__, "reco_storage_size_in_gb", reco_storage_size_in_gb)
915
939
  if scan_dns_name is not None:
@@ -918,6 +942,8 @@ class _DbSystemState:
918
942
  pulumi.set(__self__, "scan_dns_record_id", scan_dns_record_id)
919
943
  if scan_ip_ids is not None:
920
944
  pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
945
+ if scan_ipv6ids is not None:
946
+ pulumi.set(__self__, "scan_ipv6ids", scan_ipv6ids)
921
947
  if security_attributes is not None:
922
948
  pulumi.set(__self__, "security_attributes", security_attributes)
923
949
  if shape is not None:
@@ -944,6 +970,8 @@ class _DbSystemState:
944
970
  pulumi.set(__self__, "version", version)
945
971
  if vip_ids is not None:
946
972
  pulumi.set(__self__, "vip_ids", vip_ids)
973
+ if vipv6ids is not None:
974
+ pulumi.set(__self__, "vipv6ids", vipv6ids)
947
975
  if zone_id is not None:
948
976
  pulumi.set(__self__, "zone_id", zone_id)
949
977
 
@@ -1408,6 +1436,18 @@ class _DbSystemState:
1408
1436
  def private_ip(self, value: Optional[pulumi.Input[str]]):
1409
1437
  pulumi.set(self, "private_ip", value)
1410
1438
 
1439
+ @property
1440
+ @pulumi.getter(name="privateIpV6")
1441
+ def private_ip_v6(self) -> Optional[pulumi.Input[str]]:
1442
+ """
1443
+ A private IPv6 address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value and the subnet is dual stack, Oracle automatically assigns a private IPv6 address from the subnet.
1444
+ """
1445
+ return pulumi.get(self, "private_ip_v6")
1446
+
1447
+ @private_ip_v6.setter
1448
+ def private_ip_v6(self, value: Optional[pulumi.Input[str]]):
1449
+ pulumi.set(self, "private_ip_v6", value)
1450
+
1411
1451
  @property
1412
1452
  @pulumi.getter(name="recoStorageSizeInGb")
1413
1453
  def reco_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
@@ -1448,7 +1488,7 @@ class _DbSystemState:
1448
1488
  @pulumi.getter(name="scanIpIds")
1449
1489
  def scan_ip_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1450
1490
  """
1451
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
1491
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
1452
1492
  """
1453
1493
  return pulumi.get(self, "scan_ip_ids")
1454
1494
 
@@ -1456,6 +1496,18 @@ class _DbSystemState:
1456
1496
  def scan_ip_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1457
1497
  pulumi.set(self, "scan_ip_ids", value)
1458
1498
 
1499
+ @property
1500
+ @pulumi.getter(name="scanIpv6ids")
1501
+ def scan_ipv6ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1502
+ """
1503
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
1504
+ """
1505
+ return pulumi.get(self, "scan_ipv6ids")
1506
+
1507
+ @scan_ipv6ids.setter
1508
+ def scan_ipv6ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1509
+ pulumi.set(self, "scan_ipv6ids", value)
1510
+
1459
1511
  @property
1460
1512
  @pulumi.getter(name="securityAttributes")
1461
1513
  def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -1618,7 +1670,7 @@ class _DbSystemState:
1618
1670
  @pulumi.getter(name="vipIds")
1619
1671
  def vip_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1620
1672
  """
1621
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
1673
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
1622
1674
  """
1623
1675
  return pulumi.get(self, "vip_ids")
1624
1676
 
@@ -1626,6 +1678,18 @@ class _DbSystemState:
1626
1678
  def vip_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1627
1679
  pulumi.set(self, "vip_ids", value)
1628
1680
 
1681
+ @property
1682
+ @pulumi.getter
1683
+ def vipv6ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1684
+ """
1685
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
1686
+ """
1687
+ return pulumi.get(self, "vipv6ids")
1688
+
1689
+ @vipv6ids.setter
1690
+ def vipv6ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1691
+ pulumi.set(self, "vipv6ids", value)
1692
+
1629
1693
  @property
1630
1694
  @pulumi.getter(name="zoneId")
1631
1695
  def zone_id(self) -> Optional[pulumi.Input[str]]:
@@ -1670,6 +1734,7 @@ class DbSystem(pulumi.CustomResource):
1670
1734
  node_count: Optional[pulumi.Input[int]] = None,
1671
1735
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1672
1736
  private_ip: Optional[pulumi.Input[str]] = None,
1737
+ private_ip_v6: Optional[pulumi.Input[str]] = None,
1673
1738
  reco_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
1674
1739
  security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1675
1740
  shape: Optional[pulumi.Input[str]] = None,
@@ -1791,6 +1856,7 @@ class DbSystem(pulumi.CustomResource):
1791
1856
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
1792
1857
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
1793
1858
  :param pulumi.Input[str] private_ip: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Supported for VM BM shape.
1859
+ :param pulumi.Input[str] private_ip_v6: A private IPv6 address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value and the subnet is dual stack, Oracle automatically assigns a private IPv6 address from the subnet.
1794
1860
  :param pulumi.Input[int] reco_storage_size_in_gb: The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
1795
1861
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
1796
1862
  :param pulumi.Input[str] shape: (Updatable) The shape of the DB system. The shape determines resources allocated to the DB system.
@@ -1916,6 +1982,7 @@ class DbSystem(pulumi.CustomResource):
1916
1982
  node_count: Optional[pulumi.Input[int]] = None,
1917
1983
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1918
1984
  private_ip: Optional[pulumi.Input[str]] = None,
1985
+ private_ip_v6: Optional[pulumi.Input[str]] = None,
1919
1986
  reco_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
1920
1987
  security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1921
1988
  shape: Optional[pulumi.Input[str]] = None,
@@ -1969,6 +2036,7 @@ class DbSystem(pulumi.CustomResource):
1969
2036
  __props__.__dict__["node_count"] = node_count
1970
2037
  __props__.__dict__["nsg_ids"] = nsg_ids
1971
2038
  __props__.__dict__["private_ip"] = private_ip
2039
+ __props__.__dict__["private_ip_v6"] = private_ip_v6
1972
2040
  __props__.__dict__["reco_storage_size_in_gb"] = reco_storage_size_in_gb
1973
2041
  __props__.__dict__["security_attributes"] = security_attributes
1974
2042
  if shape is None and not opts.urn:
@@ -1998,10 +2066,12 @@ class DbSystem(pulumi.CustomResource):
1998
2066
  __props__.__dict__["scan_dns_name"] = None
1999
2067
  __props__.__dict__["scan_dns_record_id"] = None
2000
2068
  __props__.__dict__["scan_ip_ids"] = None
2069
+ __props__.__dict__["scan_ipv6ids"] = None
2001
2070
  __props__.__dict__["state"] = None
2002
2071
  __props__.__dict__["time_created"] = None
2003
2072
  __props__.__dict__["version"] = None
2004
2073
  __props__.__dict__["vip_ids"] = None
2074
+ __props__.__dict__["vipv6ids"] = None
2005
2075
  __props__.__dict__["zone_id"] = None
2006
2076
  super(DbSystem, __self__).__init__(
2007
2077
  'oci:Database/dbSystem:DbSystem',
@@ -2049,10 +2119,12 @@ class DbSystem(pulumi.CustomResource):
2049
2119
  os_version: Optional[pulumi.Input[str]] = None,
2050
2120
  point_in_time_data_disk_clone_timestamp: Optional[pulumi.Input[str]] = None,
2051
2121
  private_ip: Optional[pulumi.Input[str]] = None,
2122
+ private_ip_v6: Optional[pulumi.Input[str]] = None,
2052
2123
  reco_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
2053
2124
  scan_dns_name: Optional[pulumi.Input[str]] = None,
2054
2125
  scan_dns_record_id: Optional[pulumi.Input[str]] = None,
2055
2126
  scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2127
+ scan_ipv6ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2056
2128
  security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2057
2129
  shape: Optional[pulumi.Input[str]] = None,
2058
2130
  source: Optional[pulumi.Input[str]] = None,
@@ -2066,6 +2138,7 @@ class DbSystem(pulumi.CustomResource):
2066
2138
  time_zone: Optional[pulumi.Input[str]] = None,
2067
2139
  version: Optional[pulumi.Input[str]] = None,
2068
2140
  vip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2141
+ vipv6ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2069
2142
  zone_id: Optional[pulumi.Input[str]] = None) -> 'DbSystem':
2070
2143
  """
2071
2144
  Get an existing DbSystem resource's state with the given name, id, and optional extra
@@ -2139,10 +2212,12 @@ class DbSystem(pulumi.CustomResource):
2139
2212
  :param pulumi.Input[str] os_version: The most recent OS Patch Version applied on the DB system.
2140
2213
  :param pulumi.Input[str] point_in_time_data_disk_clone_timestamp: The point in time for a cloned database system when the data disks were cloned from the source database system, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
2141
2214
  :param pulumi.Input[str] private_ip: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Supported for VM BM shape.
2215
+ :param pulumi.Input[str] private_ip_v6: A private IPv6 address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value and the subnet is dual stack, Oracle automatically assigns a private IPv6 address from the subnet.
2142
2216
  :param pulumi.Input[int] reco_storage_size_in_gb: The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
2143
2217
  :param pulumi.Input[str] scan_dns_name: The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
2144
2218
  :param pulumi.Input[str] scan_dns_record_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the DB system.
2145
- :param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
2219
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
2220
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
2146
2221
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
2147
2222
  :param pulumi.Input[str] shape: (Updatable) The shape of the DB system. The shape determines resources allocated to the DB system.
2148
2223
  * For virtual machine shapes, the number of CPU cores and memory
@@ -2169,7 +2244,8 @@ class DbSystem(pulumi.CustomResource):
2169
2244
  ** IMPORTANT **
2170
2245
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
2171
2246
  :param pulumi.Input[str] version: The Oracle Database version of the DB system.
2172
- :param pulumi.Input[Sequence[pulumi.Input[str]]] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
2247
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
2248
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] vipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
2173
2249
  :param pulumi.Input[str] zone_id: The OCID of the zone the DB system is associated with.
2174
2250
  """
2175
2251
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -2212,10 +2288,12 @@ class DbSystem(pulumi.CustomResource):
2212
2288
  __props__.__dict__["os_version"] = os_version
2213
2289
  __props__.__dict__["point_in_time_data_disk_clone_timestamp"] = point_in_time_data_disk_clone_timestamp
2214
2290
  __props__.__dict__["private_ip"] = private_ip
2291
+ __props__.__dict__["private_ip_v6"] = private_ip_v6
2215
2292
  __props__.__dict__["reco_storage_size_in_gb"] = reco_storage_size_in_gb
2216
2293
  __props__.__dict__["scan_dns_name"] = scan_dns_name
2217
2294
  __props__.__dict__["scan_dns_record_id"] = scan_dns_record_id
2218
2295
  __props__.__dict__["scan_ip_ids"] = scan_ip_ids
2296
+ __props__.__dict__["scan_ipv6ids"] = scan_ipv6ids
2219
2297
  __props__.__dict__["security_attributes"] = security_attributes
2220
2298
  __props__.__dict__["shape"] = shape
2221
2299
  __props__.__dict__["source"] = source
@@ -2229,6 +2307,7 @@ class DbSystem(pulumi.CustomResource):
2229
2307
  __props__.__dict__["time_zone"] = time_zone
2230
2308
  __props__.__dict__["version"] = version
2231
2309
  __props__.__dict__["vip_ids"] = vip_ids
2310
+ __props__.__dict__["vipv6ids"] = vipv6ids
2232
2311
  __props__.__dict__["zone_id"] = zone_id
2233
2312
  return DbSystem(resource_name, opts=opts, __props__=__props__)
2234
2313
 
@@ -2549,6 +2628,14 @@ class DbSystem(pulumi.CustomResource):
2549
2628
  """
2550
2629
  return pulumi.get(self, "private_ip")
2551
2630
 
2631
+ @property
2632
+ @pulumi.getter(name="privateIpV6")
2633
+ def private_ip_v6(self) -> pulumi.Output[str]:
2634
+ """
2635
+ A private IPv6 address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value and the subnet is dual stack, Oracle automatically assigns a private IPv6 address from the subnet.
2636
+ """
2637
+ return pulumi.get(self, "private_ip_v6")
2638
+
2552
2639
  @property
2553
2640
  @pulumi.getter(name="recoStorageSizeInGb")
2554
2641
  def reco_storage_size_in_gb(self) -> pulumi.Output[int]:
@@ -2577,10 +2664,18 @@ class DbSystem(pulumi.CustomResource):
2577
2664
  @pulumi.getter(name="scanIpIds")
2578
2665
  def scan_ip_ids(self) -> pulumi.Output[Sequence[str]]:
2579
2666
  """
2580
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
2667
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
2581
2668
  """
2582
2669
  return pulumi.get(self, "scan_ip_ids")
2583
2670
 
2671
+ @property
2672
+ @pulumi.getter(name="scanIpv6ids")
2673
+ def scan_ipv6ids(self) -> pulumi.Output[Sequence[str]]:
2674
+ """
2675
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
2676
+ """
2677
+ return pulumi.get(self, "scan_ipv6ids")
2678
+
2584
2679
  @property
2585
2680
  @pulumi.getter(name="securityAttributes")
2586
2681
  def security_attributes(self) -> pulumi.Output[Mapping[str, str]]:
@@ -2695,10 +2790,18 @@ class DbSystem(pulumi.CustomResource):
2695
2790
  @pulumi.getter(name="vipIds")
2696
2791
  def vip_ids(self) -> pulumi.Output[Sequence[str]]:
2697
2792
  """
2698
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
2793
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
2699
2794
  """
2700
2795
  return pulumi.get(self, "vip_ids")
2701
2796
 
2797
+ @property
2798
+ @pulumi.getter
2799
+ def vipv6ids(self) -> pulumi.Output[Sequence[str]]:
2800
+ """
2801
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
2802
+ """
2803
+ return pulumi.get(self, "vipv6ids")
2804
+
2702
2805
  @property
2703
2806
  @pulumi.getter(name="zoneId")
2704
2807
  def zone_id(self) -> pulumi.Output[str]: