pulumi-oci 2.14.0a1730182164__py3-none-any.whl → 2.14.0a1730198001__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 (39) hide show
  1. pulumi_oci/core/_inputs.py +74 -0
  2. pulumi_oci/core/get_instance.py +1 -1
  3. pulumi_oci/core/get_virtual_circuit.py +18 -4
  4. pulumi_oci/core/instance.py +7 -7
  5. pulumi_oci/core/outputs.py +165 -7
  6. pulumi_oci/core/virtual_circuit.py +30 -2
  7. pulumi_oci/database/_inputs.py +642 -0
  8. pulumi_oci/database/autonomous_container_database.py +14 -14
  9. pulumi_oci/database/autonomous_database.py +75 -0
  10. pulumi_oci/database/get_autonomous_container_database.py +3 -3
  11. pulumi_oci/database/get_autonomous_database.py +29 -1
  12. pulumi_oci/database/get_autonomous_databases.py +22 -28
  13. pulumi_oci/database/outputs.py +1669 -86
  14. pulumi_oci/datascience/_inputs.py +353 -0
  15. pulumi_oci/datascience/get_model.py +85 -1
  16. pulumi_oci/datascience/get_models.py +5 -0
  17. pulumi_oci/datascience/model.py +206 -66
  18. pulumi_oci/datascience/outputs.py +759 -0
  19. pulumi_oci/filestorage/_inputs.py +651 -0
  20. pulumi_oci/filestorage/export.py +96 -3
  21. pulumi_oci/filestorage/file_system.py +93 -0
  22. pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
  23. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
  24. pulumi_oci/filestorage/get_outbound_connector.py +26 -1
  25. pulumi_oci/filestorage/get_replication.py +27 -1
  26. pulumi_oci/filestorage/get_snapshot.py +27 -1
  27. pulumi_oci/filestorage/mount_target.py +108 -0
  28. pulumi_oci/filestorage/outbound_connector.py +93 -0
  29. pulumi_oci/filestorage/outputs.py +1218 -2
  30. pulumi_oci/filestorage/replication.py +95 -0
  31. pulumi_oci/filestorage/snapshot.py +97 -2
  32. pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
  33. pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
  34. pulumi_oci/networkloadbalancer/outputs.py +11 -0
  35. pulumi_oci/pulumi-plugin.json +1 -1
  36. {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/METADATA +1 -1
  37. {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/RECORD +39 -39
  38. {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/WHEEL +1 -1
  39. {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/top_level.txt +0 -0
@@ -68,10 +68,10 @@ class AutonomousContainerDatabaseArgs:
68
68
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Autonomous Container Database.
69
69
  :param pulumi.Input[str] database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
70
70
  :param pulumi.Input[str] db_name: The Database name for the Autonomous Container Database. The name must be unique within the Cloud Autonomous VM Cluster, starting with an alphabetic character, followed by 1 to 7 alphanumeric characters.
71
- :param pulumi.Input[int] db_split_threshold: The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
71
+ :param pulumi.Input[int] db_split_threshold: The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
72
72
  :param pulumi.Input[str] db_version: The base version for the Autonomous Container Database.
73
73
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags 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).
74
- :param pulumi.Input[str] distribution_affinity: This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
74
+ :param pulumi.Input[str] distribution_affinity: Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
75
75
  :param pulumi.Input[int] fast_start_fail_over_lag_limit_in_seconds: The lag time for my preference based on data loss tolerance in seconds.
76
76
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
77
77
  :param pulumi.Input[bool] is_automatic_failover_enabled: Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example : is_automatic_failover_enabled = true.
@@ -280,7 +280,7 @@ class AutonomousContainerDatabaseArgs:
280
280
  @pulumi.getter(name="dbSplitThreshold")
281
281
  def db_split_threshold(self) -> Optional[pulumi.Input[int]]:
282
282
  """
283
- The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
283
+ The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
284
284
  """
285
285
  return pulumi.get(self, "db_split_threshold")
286
286
 
@@ -325,7 +325,7 @@ class AutonomousContainerDatabaseArgs:
325
325
  @pulumi.getter(name="distributionAffinity")
326
326
  def distribution_affinity(self) -> Optional[pulumi.Input[str]]:
327
327
  """
328
- This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
328
+ Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
329
329
  """
330
330
  return pulumi.get(self, "distribution_affinity")
331
331
 
@@ -672,11 +672,11 @@ class _AutonomousContainerDatabaseState:
672
672
  :param pulumi.Input[str] compute_model: The compute model of the Autonomous Container Database. For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (ECPUs or OCPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. ECPU compute model is the recommended model and OCPU compute model is legacy. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details.
673
673
  :param pulumi.Input[str] database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
674
674
  :param pulumi.Input[str] db_name: The Database name for the Autonomous Container Database. The name must be unique within the Cloud Autonomous VM Cluster, starting with an alphabetic character, followed by 1 to 7 alphanumeric characters.
675
- :param pulumi.Input[int] db_split_threshold: The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
675
+ :param pulumi.Input[int] db_split_threshold: The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
676
676
  :param pulumi.Input[str] db_version: The base version for the Autonomous Container Database.
677
677
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags 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).
678
678
  :param pulumi.Input[str] display_name: (Updatable) The display name for the Autonomous Container Database.
679
- :param pulumi.Input[str] distribution_affinity: This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
679
+ :param pulumi.Input[str] distribution_affinity: Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
680
680
  :param pulumi.Input[str] dst_file_version: DST Time-zone File version of the Autonomous Container Database.
681
681
  :param pulumi.Input[int] fast_start_fail_over_lag_limit_in_seconds: The lag time for my preference based on data loss tolerance in seconds.
682
682
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
@@ -976,7 +976,7 @@ class _AutonomousContainerDatabaseState:
976
976
  @pulumi.getter(name="dbSplitThreshold")
977
977
  def db_split_threshold(self) -> Optional[pulumi.Input[int]]:
978
978
  """
979
- The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
979
+ The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
980
980
  """
981
981
  return pulumi.get(self, "db_split_threshold")
982
982
 
@@ -1033,7 +1033,7 @@ class _AutonomousContainerDatabaseState:
1033
1033
  @pulumi.getter(name="distributionAffinity")
1034
1034
  def distribution_affinity(self) -> Optional[pulumi.Input[str]]:
1035
1035
  """
1036
- This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
1036
+ Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
1037
1037
  """
1038
1038
  return pulumi.get(self, "distribution_affinity")
1039
1039
 
@@ -1648,11 +1648,11 @@ class AutonomousContainerDatabase(pulumi.CustomResource):
1648
1648
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Autonomous Container Database.
1649
1649
  :param pulumi.Input[str] database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
1650
1650
  :param pulumi.Input[str] db_name: The Database name for the Autonomous Container Database. The name must be unique within the Cloud Autonomous VM Cluster, starting with an alphabetic character, followed by 1 to 7 alphanumeric characters.
1651
- :param pulumi.Input[int] db_split_threshold: The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
1651
+ :param pulumi.Input[int] db_split_threshold: The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
1652
1652
  :param pulumi.Input[str] db_version: The base version for the Autonomous Container Database.
1653
1653
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags 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).
1654
1654
  :param pulumi.Input[str] display_name: (Updatable) The display name for the Autonomous Container Database.
1655
- :param pulumi.Input[str] distribution_affinity: This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
1655
+ :param pulumi.Input[str] distribution_affinity: Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
1656
1656
  :param pulumi.Input[int] fast_start_fail_over_lag_limit_in_seconds: The lag time for my preference based on data loss tolerance in seconds.
1657
1657
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
1658
1658
  :param pulumi.Input[bool] is_automatic_failover_enabled: Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example : is_automatic_failover_enabled = true.
@@ -1911,11 +1911,11 @@ class AutonomousContainerDatabase(pulumi.CustomResource):
1911
1911
  :param pulumi.Input[str] compute_model: The compute model of the Autonomous Container Database. For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (ECPUs or OCPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. ECPU compute model is the recommended model and OCPU compute model is legacy. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details.
1912
1912
  :param pulumi.Input[str] database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
1913
1913
  :param pulumi.Input[str] db_name: The Database name for the Autonomous Container Database. The name must be unique within the Cloud Autonomous VM Cluster, starting with an alphabetic character, followed by 1 to 7 alphanumeric characters.
1914
- :param pulumi.Input[int] db_split_threshold: The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
1914
+ :param pulumi.Input[int] db_split_threshold: The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
1915
1915
  :param pulumi.Input[str] db_version: The base version for the Autonomous Container Database.
1916
1916
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags 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).
1917
1917
  :param pulumi.Input[str] display_name: (Updatable) The display name for the Autonomous Container Database.
1918
- :param pulumi.Input[str] distribution_affinity: This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
1918
+ :param pulumi.Input[str] distribution_affinity: Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
1919
1919
  :param pulumi.Input[str] dst_file_version: DST Time-zone File version of the Autonomous Container Database.
1920
1920
  :param pulumi.Input[int] fast_start_fail_over_lag_limit_in_seconds: The lag time for my preference based on data loss tolerance in seconds.
1921
1921
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
@@ -2119,7 +2119,7 @@ class AutonomousContainerDatabase(pulumi.CustomResource):
2119
2119
  @pulumi.getter(name="dbSplitThreshold")
2120
2120
  def db_split_threshold(self) -> pulumi.Output[int]:
2121
2121
  """
2122
- The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
2122
+ The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
2123
2123
  """
2124
2124
  return pulumi.get(self, "db_split_threshold")
2125
2125
 
@@ -2156,7 +2156,7 @@ class AutonomousContainerDatabase(pulumi.CustomResource):
2156
2156
  @pulumi.getter(name="distributionAffinity")
2157
2157
  def distribution_affinity(self) -> pulumi.Output[str]:
2158
2158
  """
2159
- This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
2159
+ Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
2160
2160
  """
2161
2161
  return pulumi.get(self, "distribution_affinity")
2162
2162
 
@@ -50,6 +50,7 @@ class AutonomousDatabaseArgs:
50
50
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
51
51
  disaster_recovery_type: Optional[pulumi.Input[str]] = None,
52
52
  display_name: Optional[pulumi.Input[str]] = None,
53
+ encryption_key: Optional[pulumi.Input['AutonomousDatabaseEncryptionKeyArgs']] = None,
53
54
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
54
55
  in_memory_percentage: Optional[pulumi.Input[int]] = None,
55
56
  is_access_control_enabled: Optional[pulumi.Input[bool]] = None,
@@ -157,6 +158,7 @@ class AutonomousDatabaseArgs:
157
158
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags 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).
158
159
  :param pulumi.Input[str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
159
160
  :param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
161
+ :param pulumi.Input['AutonomousDatabaseEncryptionKeyArgs'] encryption_key: (Updatable) Details of the Autonomous Database encryption key.
160
162
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
161
163
  :param pulumi.Input[int] in_memory_percentage: (Updatable) The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database. This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform.
162
164
  :param pulumi.Input[bool] is_access_control_enabled: (Updatable) Indicates if the database-level access control is enabled. If disabled, database access is defined by the network security rules. If enabled, database access is restricted to the IP addresses defined by the rules specified with the `whitelistedIps` property. While specifying `whitelistedIps` rules is optional, if database-level access control is enabled and no rules are specified, the database will become inaccessible. The rules can be added later using the `UpdateAutonomousDatabase` API operation or edit option in console. When creating a database clone, the desired access control setting should be specified. By default, database-level access control will be disabled for the clone.
@@ -314,6 +316,8 @@ class AutonomousDatabaseArgs:
314
316
  pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
315
317
  if display_name is not None:
316
318
  pulumi.set(__self__, "display_name", display_name)
319
+ if encryption_key is not None:
320
+ pulumi.set(__self__, "encryption_key", encryption_key)
317
321
  if freeform_tags is not None:
318
322
  pulumi.set(__self__, "freeform_tags", freeform_tags)
319
323
  if in_memory_percentage is not None:
@@ -790,6 +794,18 @@ class AutonomousDatabaseArgs:
790
794
  def display_name(self, value: Optional[pulumi.Input[str]]):
791
795
  pulumi.set(self, "display_name", value)
792
796
 
797
+ @property
798
+ @pulumi.getter(name="encryptionKey")
799
+ def encryption_key(self) -> Optional[pulumi.Input['AutonomousDatabaseEncryptionKeyArgs']]:
800
+ """
801
+ (Updatable) Details of the Autonomous Database encryption key.
802
+ """
803
+ return pulumi.get(self, "encryption_key")
804
+
805
+ @encryption_key.setter
806
+ def encryption_key(self, value: Optional[pulumi.Input['AutonomousDatabaseEncryptionKeyArgs']]):
807
+ pulumi.set(self, "encryption_key", value)
808
+
793
809
  @property
794
810
  @pulumi.getter(name="freeformTags")
795
811
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -1483,6 +1499,8 @@ class _AutonomousDatabaseState:
1483
1499
  disaster_recovery_region_type: Optional[pulumi.Input[str]] = None,
1484
1500
  disaster_recovery_type: Optional[pulumi.Input[str]] = None,
1485
1501
  display_name: Optional[pulumi.Input[str]] = None,
1502
+ encryption_key: Optional[pulumi.Input['AutonomousDatabaseEncryptionKeyArgs']] = None,
1503
+ encryption_key_history_entries: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseEncryptionKeyHistoryEntryArgs']]]] = None,
1486
1504
  failed_data_recovery_in_seconds: Optional[pulumi.Input[int]] = None,
1487
1505
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1488
1506
  in_memory_area_in_gbs: Optional[pulumi.Input[int]] = None,
@@ -1649,6 +1667,8 @@ class _AutonomousDatabaseState:
1649
1667
  :param pulumi.Input[str] disaster_recovery_region_type: **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Serverless Autonomous Databases, DR associations have designated primary (`PRIMARY`) and standby (`REMOTE`) regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.
1650
1668
  :param pulumi.Input[str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
1651
1669
  :param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
1670
+ :param pulumi.Input['AutonomousDatabaseEncryptionKeyArgs'] encryption_key: (Updatable) Details of the Autonomous Database encryption key.
1671
+ :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseEncryptionKeyHistoryEntryArgs']]] encryption_key_history_entries: Key History Entry.
1652
1672
  :param pulumi.Input[int] failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
1653
1673
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
1654
1674
  :param pulumi.Input[int] in_memory_area_in_gbs: The area assigned to In-Memory tables in Autonomous Database.
@@ -1876,6 +1896,10 @@ class _AutonomousDatabaseState:
1876
1896
  pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
1877
1897
  if display_name is not None:
1878
1898
  pulumi.set(__self__, "display_name", display_name)
1899
+ if encryption_key is not None:
1900
+ pulumi.set(__self__, "encryption_key", encryption_key)
1901
+ if encryption_key_history_entries is not None:
1902
+ pulumi.set(__self__, "encryption_key_history_entries", encryption_key_history_entries)
1879
1903
  if failed_data_recovery_in_seconds is not None:
1880
1904
  pulumi.set(__self__, "failed_data_recovery_in_seconds", failed_data_recovery_in_seconds)
1881
1905
  if freeform_tags is not None:
@@ -2580,6 +2604,30 @@ class _AutonomousDatabaseState:
2580
2604
  def display_name(self, value: Optional[pulumi.Input[str]]):
2581
2605
  pulumi.set(self, "display_name", value)
2582
2606
 
2607
+ @property
2608
+ @pulumi.getter(name="encryptionKey")
2609
+ def encryption_key(self) -> Optional[pulumi.Input['AutonomousDatabaseEncryptionKeyArgs']]:
2610
+ """
2611
+ (Updatable) Details of the Autonomous Database encryption key.
2612
+ """
2613
+ return pulumi.get(self, "encryption_key")
2614
+
2615
+ @encryption_key.setter
2616
+ def encryption_key(self, value: Optional[pulumi.Input['AutonomousDatabaseEncryptionKeyArgs']]):
2617
+ pulumi.set(self, "encryption_key", value)
2618
+
2619
+ @property
2620
+ @pulumi.getter(name="encryptionKeyHistoryEntries")
2621
+ def encryption_key_history_entries(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseEncryptionKeyHistoryEntryArgs']]]]:
2622
+ """
2623
+ Key History Entry.
2624
+ """
2625
+ return pulumi.get(self, "encryption_key_history_entries")
2626
+
2627
+ @encryption_key_history_entries.setter
2628
+ def encryption_key_history_entries(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseEncryptionKeyHistoryEntryArgs']]]]):
2629
+ pulumi.set(self, "encryption_key_history_entries", value)
2630
+
2583
2631
  @property
2584
2632
  @pulumi.getter(name="failedDataRecoveryInSeconds")
2585
2633
  def failed_data_recovery_in_seconds(self) -> Optional[pulumi.Input[int]]:
@@ -3834,6 +3882,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3834
3882
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
3835
3883
  disaster_recovery_type: Optional[pulumi.Input[str]] = None,
3836
3884
  display_name: Optional[pulumi.Input[str]] = None,
3885
+ encryption_key: Optional[pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']]] = None,
3837
3886
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
3838
3887
  in_memory_percentage: Optional[pulumi.Input[int]] = None,
3839
3888
  is_access_control_enabled: Optional[pulumi.Input[bool]] = None,
@@ -3957,6 +4006,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3957
4006
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags 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).
3958
4007
  :param pulumi.Input[str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
3959
4008
  :param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
4009
+ :param pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']] encryption_key: (Updatable) Details of the Autonomous Database encryption key.
3960
4010
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
3961
4011
  :param pulumi.Input[int] in_memory_percentage: (Updatable) The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database. This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform.
3962
4012
  :param pulumi.Input[bool] is_access_control_enabled: (Updatable) Indicates if the database-level access control is enabled. If disabled, database access is defined by the network security rules. If enabled, database access is restricted to the IP addresses defined by the rules specified with the `whitelistedIps` property. While specifying `whitelistedIps` rules is optional, if database-level access control is enabled and no rules are specified, the database will become inaccessible. The rules can be added later using the `UpdateAutonomousDatabase` API operation or edit option in console. When creating a database clone, the desired access control setting should be specified. By default, database-level access control will be disabled for the clone.
@@ -4123,6 +4173,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4123
4173
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
4124
4174
  disaster_recovery_type: Optional[pulumi.Input[str]] = None,
4125
4175
  display_name: Optional[pulumi.Input[str]] = None,
4176
+ encryption_key: Optional[pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']]] = None,
4126
4177
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
4127
4178
  in_memory_percentage: Optional[pulumi.Input[int]] = None,
4128
4179
  is_access_control_enabled: Optional[pulumi.Input[bool]] = None,
@@ -4215,6 +4266,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4215
4266
  __props__.__dict__["defined_tags"] = defined_tags
4216
4267
  __props__.__dict__["disaster_recovery_type"] = disaster_recovery_type
4217
4268
  __props__.__dict__["display_name"] = display_name
4269
+ __props__.__dict__["encryption_key"] = encryption_key
4218
4270
  __props__.__dict__["freeform_tags"] = freeform_tags
4219
4271
  __props__.__dict__["in_memory_percentage"] = in_memory_percentage
4220
4272
  __props__.__dict__["is_access_control_enabled"] = is_access_control_enabled
@@ -4276,6 +4328,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4276
4328
  __props__.__dict__["connection_urls"] = None
4277
4329
  __props__.__dict__["dataguard_region_type"] = None
4278
4330
  __props__.__dict__["disaster_recovery_region_type"] = None
4331
+ __props__.__dict__["encryption_key_history_entries"] = None
4279
4332
  __props__.__dict__["failed_data_recovery_in_seconds"] = None
4280
4333
  __props__.__dict__["in_memory_area_in_gbs"] = None
4281
4334
  __props__.__dict__["infrastructure_type"] = None
@@ -4376,6 +4429,8 @@ class AutonomousDatabase(pulumi.CustomResource):
4376
4429
  disaster_recovery_region_type: Optional[pulumi.Input[str]] = None,
4377
4430
  disaster_recovery_type: Optional[pulumi.Input[str]] = None,
4378
4431
  display_name: Optional[pulumi.Input[str]] = None,
4432
+ encryption_key: Optional[pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']]] = None,
4433
+ encryption_key_history_entries: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseEncryptionKeyHistoryEntryArgs', 'AutonomousDatabaseEncryptionKeyHistoryEntryArgsDict']]]]] = None,
4379
4434
  failed_data_recovery_in_seconds: Optional[pulumi.Input[int]] = None,
4380
4435
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
4381
4436
  in_memory_area_in_gbs: Optional[pulumi.Input[int]] = None,
@@ -4547,6 +4602,8 @@ class AutonomousDatabase(pulumi.CustomResource):
4547
4602
  :param pulumi.Input[str] disaster_recovery_region_type: **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Serverless Autonomous Databases, DR associations have designated primary (`PRIMARY`) and standby (`REMOTE`) regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.
4548
4603
  :param pulumi.Input[str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
4549
4604
  :param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
4605
+ :param pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']] encryption_key: (Updatable) Details of the Autonomous Database encryption key.
4606
+ :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseEncryptionKeyHistoryEntryArgs', 'AutonomousDatabaseEncryptionKeyHistoryEntryArgsDict']]]] encryption_key_history_entries: Key History Entry.
4550
4607
  :param pulumi.Input[int] failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
4551
4608
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
4552
4609
  :param pulumi.Input[int] in_memory_area_in_gbs: The area assigned to In-Memory tables in Autonomous Database.
@@ -4738,6 +4795,8 @@ class AutonomousDatabase(pulumi.CustomResource):
4738
4795
  __props__.__dict__["disaster_recovery_region_type"] = disaster_recovery_region_type
4739
4796
  __props__.__dict__["disaster_recovery_type"] = disaster_recovery_type
4740
4797
  __props__.__dict__["display_name"] = display_name
4798
+ __props__.__dict__["encryption_key"] = encryption_key
4799
+ __props__.__dict__["encryption_key_history_entries"] = encryption_key_history_entries
4741
4800
  __props__.__dict__["failed_data_recovery_in_seconds"] = failed_data_recovery_in_seconds
4742
4801
  __props__.__dict__["freeform_tags"] = freeform_tags
4743
4802
  __props__.__dict__["in_memory_area_in_gbs"] = in_memory_area_in_gbs
@@ -5182,6 +5241,22 @@ class AutonomousDatabase(pulumi.CustomResource):
5182
5241
  """
5183
5242
  return pulumi.get(self, "display_name")
5184
5243
 
5244
+ @property
5245
+ @pulumi.getter(name="encryptionKey")
5246
+ def encryption_key(self) -> pulumi.Output['outputs.AutonomousDatabaseEncryptionKey']:
5247
+ """
5248
+ (Updatable) Details of the Autonomous Database encryption key.
5249
+ """
5250
+ return pulumi.get(self, "encryption_key")
5251
+
5252
+ @property
5253
+ @pulumi.getter(name="encryptionKeyHistoryEntries")
5254
+ def encryption_key_history_entries(self) -> pulumi.Output[Sequence['outputs.AutonomousDatabaseEncryptionKeyHistoryEntry']]:
5255
+ """
5256
+ Key History Entry.
5257
+ """
5258
+ return pulumi.get(self, "encryption_key_history_entries")
5259
+
5185
5260
  @property
5186
5261
  @pulumi.getter(name="failedDataRecoveryInSeconds")
5187
5262
  def failed_data_recovery_in_seconds(self) -> pulumi.Output[int]:
@@ -304,7 +304,7 @@ class GetAutonomousContainerDatabaseResult:
304
304
  @pulumi.getter(name="dbSplitThreshold")
305
305
  def db_split_threshold(self) -> int:
306
306
  """
307
- The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
307
+ The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
308
308
  """
309
309
  return pulumi.get(self, "db_split_threshold")
310
310
 
@@ -341,7 +341,7 @@ class GetAutonomousContainerDatabaseResult:
341
341
  @pulumi.getter(name="distributionAffinity")
342
342
  def distribution_affinity(self) -> str:
343
343
  """
344
- This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
344
+ Determines whether an Autonomous Database must be opened across the maximum number of nodes or the least number of nodes. By default, Minimum nodes is selected.
345
345
  """
346
346
  return pulumi.get(self, "distribution_affinity")
347
347
 
@@ -673,7 +673,7 @@ class GetAutonomousContainerDatabaseResult:
673
673
  @pulumi.getter(name="vmFailoverReservation")
674
674
  def vm_failover_reservation(self) -> int:
675
675
  """
676
- The percentage of CPUs to reserve for a single node Autonomous Database, in increments of 25.
676
+ The percentage of CPUs reserved across nodes to support node failover. Allowed values are 0%, 25%, and 50%, with 50% being the default option.
677
677
  """
678
678
  return pulumi.get(self, "vm_failover_reservation")
679
679
 
@@ -27,7 +27,7 @@ class GetAutonomousDatabaseResult:
27
27
  """
28
28
  A collection of values returned by getAutonomousDatabase.
29
29
  """
30
- def __init__(__self__, actual_used_data_storage_size_in_tbs=None, admin_password=None, allocated_storage_size_in_tbs=None, apex_details=None, are_primary_whitelisted_ips_used=None, auto_refresh_frequency_in_seconds=None, auto_refresh_point_lag_in_seconds=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, availability_domain=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, byol_compute_count_limit=None, character_set=None, clone_type=None, cluster_placement_group_id=None, compartment_id=None, compute_count=None, compute_model=None, connection_strings=None, connection_urls=None, cpu_core_count=None, customer_contacts=None, data_safe_status=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, database_edition=None, database_management_status=None, dataguard_region_type=None, db_name=None, db_tools_details=None, db_version=None, db_workload=None, defined_tags=None, disaster_recovery_region_type=None, disaster_recovery_type=None, display_name=None, failed_data_recovery_in_seconds=None, freeform_tags=None, id=None, in_memory_area_in_gbs=None, in_memory_percentage=None, infrastructure_type=None, is_access_control_enabled=None, is_auto_scaling_enabled=None, is_auto_scaling_for_storage_enabled=None, is_data_guard_enabled=None, is_dedicated=None, is_dev_tier=None, is_free_tier=None, is_local_data_guard_enabled=None, is_mtls_connection_required=None, is_preview=None, is_preview_version_with_service_terms_accepted=None, is_reconnect_clone_enabled=None, is_refreshable_clone=None, is_remote_data_guard_enabled=None, is_replicate_automatic_backups=None, is_shrink_only=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, kms_key_id=None, kms_key_lifecycle_details=None, kms_key_version_id=None, license_model=None, lifecycle_details=None, local_adg_auto_failover_max_data_loss_limit=None, local_disaster_recovery_type=None, local_standby_dbs=None, long_term_backup_schedules=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, net_services_architecture=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None, public_connection_urls=None, public_endpoint=None, refreshable_mode=None, refreshable_status=None, remote_disaster_recovery_configurations=None, remote_disaster_recovery_type=None, resource_pool_leader_id=None, resource_pool_summaries=None, role=None, rotate_key_trigger=None, scheduled_operations=None, secret_id=None, secret_version_number=None, service_console_url=None, shrink_adb_trigger=None, source=None, source_id=None, standby_dbs=None, standby_whitelisted_ips=None, state=None, subnet_id=None, subscription_id=None, supported_regions_to_clone_tos=None, switchover_to=None, switchover_to_remote_peer_id=None, system_tags=None, time_created=None, time_data_guard_role_changed=None, time_deletion_of_free_autonomous_database=None, time_disaster_recovery_role_changed=None, time_local_data_guard_enabled=None, time_maintenance_begin=None, time_maintenance_end=None, time_of_auto_refresh_start=None, time_of_joining_resource_pool=None, time_of_last_failover=None, time_of_last_refresh=None, time_of_last_refresh_point=None, time_of_last_switchover=None, time_of_next_refresh=None, time_reclamation_of_free_autonomous_database=None, time_undeleted=None, time_until_reconnect_clone_enabled=None, timestamp=None, total_backup_storage_size_in_gbs=None, use_latest_available_backup_time_stamp=None, used_data_storage_size_in_gbs=None, used_data_storage_size_in_tbs=None, vault_id=None, whitelisted_ips=None):
30
+ def __init__(__self__, actual_used_data_storage_size_in_tbs=None, admin_password=None, allocated_storage_size_in_tbs=None, apex_details=None, are_primary_whitelisted_ips_used=None, auto_refresh_frequency_in_seconds=None, auto_refresh_point_lag_in_seconds=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, availability_domain=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, byol_compute_count_limit=None, character_set=None, clone_type=None, cluster_placement_group_id=None, compartment_id=None, compute_count=None, compute_model=None, connection_strings=None, connection_urls=None, cpu_core_count=None, customer_contacts=None, data_safe_status=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, database_edition=None, database_management_status=None, dataguard_region_type=None, db_name=None, db_tools_details=None, db_version=None, db_workload=None, defined_tags=None, disaster_recovery_region_type=None, disaster_recovery_type=None, display_name=None, encryption_key_history_entries=None, encryption_keys=None, failed_data_recovery_in_seconds=None, freeform_tags=None, id=None, in_memory_area_in_gbs=None, in_memory_percentage=None, infrastructure_type=None, is_access_control_enabled=None, is_auto_scaling_enabled=None, is_auto_scaling_for_storage_enabled=None, is_data_guard_enabled=None, is_dedicated=None, is_dev_tier=None, is_free_tier=None, is_local_data_guard_enabled=None, is_mtls_connection_required=None, is_preview=None, is_preview_version_with_service_terms_accepted=None, is_reconnect_clone_enabled=None, is_refreshable_clone=None, is_remote_data_guard_enabled=None, is_replicate_automatic_backups=None, is_shrink_only=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, kms_key_id=None, kms_key_lifecycle_details=None, kms_key_version_id=None, license_model=None, lifecycle_details=None, local_adg_auto_failover_max_data_loss_limit=None, local_disaster_recovery_type=None, local_standby_dbs=None, long_term_backup_schedules=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, net_services_architecture=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None, public_connection_urls=None, public_endpoint=None, refreshable_mode=None, refreshable_status=None, remote_disaster_recovery_configurations=None, remote_disaster_recovery_type=None, resource_pool_leader_id=None, resource_pool_summaries=None, role=None, rotate_key_trigger=None, scheduled_operations=None, secret_id=None, secret_version_number=None, service_console_url=None, shrink_adb_trigger=None, source=None, source_id=None, standby_dbs=None, standby_whitelisted_ips=None, state=None, subnet_id=None, subscription_id=None, supported_regions_to_clone_tos=None, switchover_to=None, switchover_to_remote_peer_id=None, system_tags=None, time_created=None, time_data_guard_role_changed=None, time_deletion_of_free_autonomous_database=None, time_disaster_recovery_role_changed=None, time_local_data_guard_enabled=None, time_maintenance_begin=None, time_maintenance_end=None, time_of_auto_refresh_start=None, time_of_joining_resource_pool=None, time_of_last_failover=None, time_of_last_refresh=None, time_of_last_refresh_point=None, time_of_last_switchover=None, time_of_next_refresh=None, time_reclamation_of_free_autonomous_database=None, time_undeleted=None, time_until_reconnect_clone_enabled=None, timestamp=None, total_backup_storage_size_in_gbs=None, use_latest_available_backup_time_stamp=None, used_data_storage_size_in_gbs=None, used_data_storage_size_in_tbs=None, vault_id=None, whitelisted_ips=None):
31
31
  if actual_used_data_storage_size_in_tbs and not isinstance(actual_used_data_storage_size_in_tbs, float):
32
32
  raise TypeError("Expected argument 'actual_used_data_storage_size_in_tbs' to be a float")
33
33
  pulumi.set(__self__, "actual_used_data_storage_size_in_tbs", actual_used_data_storage_size_in_tbs)
@@ -148,6 +148,12 @@ class GetAutonomousDatabaseResult:
148
148
  if display_name and not isinstance(display_name, str):
149
149
  raise TypeError("Expected argument 'display_name' to be a str")
150
150
  pulumi.set(__self__, "display_name", display_name)
151
+ if encryption_key_history_entries and not isinstance(encryption_key_history_entries, list):
152
+ raise TypeError("Expected argument 'encryption_key_history_entries' to be a list")
153
+ pulumi.set(__self__, "encryption_key_history_entries", encryption_key_history_entries)
154
+ if encryption_keys and not isinstance(encryption_keys, list):
155
+ raise TypeError("Expected argument 'encryption_keys' to be a list")
156
+ pulumi.set(__self__, "encryption_keys", encryption_keys)
151
157
  if failed_data_recovery_in_seconds and not isinstance(failed_data_recovery_in_seconds, int):
152
158
  raise TypeError("Expected argument 'failed_data_recovery_in_seconds' to be a int")
153
159
  pulumi.set(__self__, "failed_data_recovery_in_seconds", failed_data_recovery_in_seconds)
@@ -755,6 +761,22 @@ class GetAutonomousDatabaseResult:
755
761
  """
756
762
  return pulumi.get(self, "display_name")
757
763
 
764
+ @property
765
+ @pulumi.getter(name="encryptionKeyHistoryEntries")
766
+ def encryption_key_history_entries(self) -> Sequence['outputs.GetAutonomousDatabaseEncryptionKeyHistoryEntryResult']:
767
+ """
768
+ Key History Entry.
769
+ """
770
+ return pulumi.get(self, "encryption_key_history_entries")
771
+
772
+ @property
773
+ @pulumi.getter(name="encryptionKeys")
774
+ def encryption_keys(self) -> Sequence['outputs.GetAutonomousDatabaseEncryptionKeyResult']:
775
+ """
776
+ Details of the Autonomous Database encryption key.
777
+ """
778
+ return pulumi.get(self, "encryption_keys")
779
+
758
780
  @property
759
781
  @pulumi.getter(name="failedDataRecoveryInSeconds")
760
782
  def failed_data_recovery_in_seconds(self) -> int:
@@ -1561,6 +1583,8 @@ class AwaitableGetAutonomousDatabaseResult(GetAutonomousDatabaseResult):
1561
1583
  disaster_recovery_region_type=self.disaster_recovery_region_type,
1562
1584
  disaster_recovery_type=self.disaster_recovery_type,
1563
1585
  display_name=self.display_name,
1586
+ encryption_key_history_entries=self.encryption_key_history_entries,
1587
+ encryption_keys=self.encryption_keys,
1564
1588
  failed_data_recovery_in_seconds=self.failed_data_recovery_in_seconds,
1565
1589
  freeform_tags=self.freeform_tags,
1566
1590
  id=self.id,
@@ -1727,6 +1751,8 @@ def get_autonomous_database(autonomous_database_id: Optional[str] = None,
1727
1751
  disaster_recovery_region_type=pulumi.get(__ret__, 'disaster_recovery_region_type'),
1728
1752
  disaster_recovery_type=pulumi.get(__ret__, 'disaster_recovery_type'),
1729
1753
  display_name=pulumi.get(__ret__, 'display_name'),
1754
+ encryption_key_history_entries=pulumi.get(__ret__, 'encryption_key_history_entries'),
1755
+ encryption_keys=pulumi.get(__ret__, 'encryption_keys'),
1730
1756
  failed_data_recovery_in_seconds=pulumi.get(__ret__, 'failed_data_recovery_in_seconds'),
1731
1757
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
1732
1758
  id=pulumi.get(__ret__, 'id'),
@@ -1890,6 +1916,8 @@ def get_autonomous_database_output(autonomous_database_id: Optional[pulumi.Input
1890
1916
  disaster_recovery_region_type=pulumi.get(__response__, 'disaster_recovery_region_type'),
1891
1917
  disaster_recovery_type=pulumi.get(__response__, 'disaster_recovery_type'),
1892
1918
  display_name=pulumi.get(__response__, 'display_name'),
1919
+ encryption_key_history_entries=pulumi.get(__response__, 'encryption_key_history_entries'),
1920
+ encryption_keys=pulumi.get(__response__, 'encryption_keys'),
1893
1921
  failed_data_recovery_in_seconds=pulumi.get(__response__, 'failed_data_recovery_in_seconds'),
1894
1922
  freeform_tags=pulumi.get(__response__, 'freeform_tags'),
1895
1923
  id=pulumi.get(__response__, 'id'),
@@ -279,20 +279,17 @@ def get_autonomous_databases(autonomous_container_database_id: Optional[str] = N
279
279
 
280
280
 
281
281
  :param str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
282
- :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
283
- :param str db_version: A valid Oracle Database version for Autonomous Database.
284
- :param str db_workload: The Autonomous Database workload type. The following values are valid:
285
- * OLTP - indicates an Autonomous Transaction Processing database
286
- * DW - indicates an Autonomous Data Warehouse database
287
- * AJD - indicates an Autonomous JSON Database
288
- * APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
289
- :param str display_name: The user-friendly name for the Autonomous Database. The name does not have to be unique.
290
- :param str infrastructure_type: The infrastructure type this resource belongs to.
291
- :param bool is_data_guard_enabled: **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
292
- :param bool is_free_tier: Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.
293
- :param bool is_refreshable_clone: Indicates if the Autonomous Database is a refreshable clone.
294
- :param str resource_pool_leader_id: The unique identifier for leader autonomous database OCID [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
295
- :param str state: The current state of the Autonomous Database.
282
+ :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
283
+ :param str db_version: A filter to return only autonomous database resources that match the specified dbVersion.
284
+ :param str db_workload: A filter to return only autonomous database resources that match the specified workload type.
285
+ :param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
286
+ :param str infrastructure_type: A filter to return only resources that match the given Infrastructure Type.
287
+ :param bool is_data_guard_enabled: A filter to return only resources that have Data Guard enabled.
288
+ :param bool is_free_tier: Filter on the value of the resource's 'isFreeTier' property. A value of `true` returns only Always Free resources. A value of `false` excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.
289
+ :param bool is_refreshable_clone: Filter on the value of the resource's 'isRefreshableClone' property. A value of `true` returns only refreshable clones. A value of `false` excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.
290
+ :param bool is_resource_pool_leader: Filter if the resource is the resource pool leader. A value of `true` returns only resource pool leader.
291
+ :param str resource_pool_leader_id: The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resourcepool Leader Autonomous Database.
292
+ :param str state: A filter to return only resources that match the given lifecycle state exactly.
296
293
  """
297
294
  __args__ = dict()
298
295
  __args__['autonomousContainerDatabaseId'] = autonomous_container_database_id
@@ -385,20 +382,17 @@ def get_autonomous_databases_output(autonomous_container_database_id: Optional[p
385
382
 
386
383
 
387
384
  :param str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
388
- :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
389
- :param str db_version: A valid Oracle Database version for Autonomous Database.
390
- :param str db_workload: The Autonomous Database workload type. The following values are valid:
391
- * OLTP - indicates an Autonomous Transaction Processing database
392
- * DW - indicates an Autonomous Data Warehouse database
393
- * AJD - indicates an Autonomous JSON Database
394
- * APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
395
- :param str display_name: The user-friendly name for the Autonomous Database. The name does not have to be unique.
396
- :param str infrastructure_type: The infrastructure type this resource belongs to.
397
- :param bool is_data_guard_enabled: **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
398
- :param bool is_free_tier: Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.
399
- :param bool is_refreshable_clone: Indicates if the Autonomous Database is a refreshable clone.
400
- :param str resource_pool_leader_id: The unique identifier for leader autonomous database OCID [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
401
- :param str state: The current state of the Autonomous Database.
385
+ :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
386
+ :param str db_version: A filter to return only autonomous database resources that match the specified dbVersion.
387
+ :param str db_workload: A filter to return only autonomous database resources that match the specified workload type.
388
+ :param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
389
+ :param str infrastructure_type: A filter to return only resources that match the given Infrastructure Type.
390
+ :param bool is_data_guard_enabled: A filter to return only resources that have Data Guard enabled.
391
+ :param bool is_free_tier: Filter on the value of the resource's 'isFreeTier' property. A value of `true` returns only Always Free resources. A value of `false` excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.
392
+ :param bool is_refreshable_clone: Filter on the value of the resource's 'isRefreshableClone' property. A value of `true` returns only refreshable clones. A value of `false` excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.
393
+ :param bool is_resource_pool_leader: Filter if the resource is the resource pool leader. A value of `true` returns only resource pool leader.
394
+ :param str resource_pool_leader_id: The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resourcepool Leader Autonomous Database.
395
+ :param str state: A filter to return only resources that match the given lifecycle state exactly.
402
396
  """
403
397
  __args__ = dict()
404
398
  __args__['autonomousContainerDatabaseId'] = autonomous_container_database_id