pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.25.0a1740096539__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 (98) hide show
  1. pulumi_oci/__init__.py +35 -0
  2. pulumi_oci/config/__init__.pyi +2 -0
  3. pulumi_oci/config/vars.py +4 -0
  4. pulumi_oci/containerengine/_inputs.py +40 -0
  5. pulumi_oci/containerengine/cluster.py +2 -0
  6. pulumi_oci/containerengine/outputs.py +70 -0
  7. pulumi_oci/database/_inputs.py +487 -2
  8. pulumi_oci/database/autonomous_container_database.py +92 -0
  9. pulumi_oci/database/autonomous_database.py +97 -8
  10. pulumi_oci/database/backup_destination.py +84 -0
  11. pulumi_oci/database/data_guard_association.py +49 -0
  12. pulumi_oci/database/db_system.py +111 -8
  13. pulumi_oci/database/get_autonomous_container_database.py +43 -1
  14. pulumi_oci/database/get_autonomous_database.py +32 -1
  15. pulumi_oci/database/get_autonomous_databases.py +0 -26
  16. pulumi_oci/database/get_backup_destination.py +43 -1
  17. pulumi_oci/database/get_data_guard_association.py +12 -1
  18. pulumi_oci/database/get_maintenance_runs.py +20 -1
  19. pulumi_oci/database/outputs.py +1179 -48
  20. pulumi_oci/filestorage/file_system.py +28 -0
  21. pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
  22. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
  23. pulumi_oci/filestorage/get_outbound_connector.py +15 -1
  24. pulumi_oci/filestorage/get_replication.py +15 -1
  25. pulumi_oci/filestorage/get_replication_target.py +15 -1
  26. pulumi_oci/filestorage/get_snapshot.py +15 -1
  27. pulumi_oci/filestorage/mount_target.py +28 -0
  28. pulumi_oci/filestorage/outbound_connector.py +28 -0
  29. pulumi_oci/filestorage/outputs.py +77 -0
  30. pulumi_oci/filestorage/replication.py +28 -0
  31. pulumi_oci/filestorage/snapshot.py +28 -0
  32. pulumi_oci/goldengate/connection.py +561 -162
  33. pulumi_oci/goldengate/database_registration.py +14 -14
  34. pulumi_oci/goldengate/get_connection.py +117 -6
  35. pulumi_oci/goldengate/outputs.py +96 -10
  36. pulumi_oci/jms/__init__.py +4 -0
  37. pulumi_oci/jms/_inputs.py +196 -0
  38. pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
  39. pulumi_oci/jms/get_fleet_errors.py +264 -0
  40. pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
  41. pulumi_oci/jms/get_jms_plugins.py +23 -1
  42. pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
  43. pulumi_oci/jms/get_plugin_errors.py +264 -0
  44. pulumi_oci/jms/outputs.py +566 -6
  45. pulumi_oci/provider.py +20 -0
  46. pulumi_oci/pulumi-plugin.json +1 -1
  47. pulumi_oci/stackmonitoring/__init__.py +8 -0
  48. pulumi_oci/stackmonitoring/_inputs.py +372 -1
  49. pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
  50. pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
  51. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
  52. pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
  53. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
  54. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
  55. pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
  56. pulumi_oci/stackmonitoring/metric_extension.py +4 -4
  57. pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
  58. pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
  59. pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
  60. pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
  61. pulumi_oci/stackmonitoring/outputs.py +1305 -118
  62. pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
  63. pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
  64. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
  65. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
  66. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
  67. pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
  68. pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
  69. pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
  70. pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
  71. pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
  72. pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
  73. pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
  74. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
  75. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
  76. pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
  77. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
  78. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
  79. pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
  80. pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
  81. pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
  82. pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
  83. pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
  84. pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
  85. pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
  86. pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
  87. pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
  88. pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
  89. pulumi_oci/vault/__init__.py +1 -1
  90. pulumi_oci/vault/_inputs.py +92 -0
  91. pulumi_oci/vault/get_secret.py +40 -1
  92. pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
  93. pulumi_oci/vault/outputs.py +210 -0
  94. pulumi_oci/vault/secret.py +122 -0
  95. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/METADATA +1 -1
  96. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/RECORD +98 -59
  97. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/WHEEL +0 -0
  98. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.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]:
@@ -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]: