pulumi-oci 2.14.0__py3-none-any.whl → 2.14.0a1730182164__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 +0 -74
  2. pulumi_oci/core/get_instance.py +1 -1
  3. pulumi_oci/core/get_virtual_circuit.py +4 -18
  4. pulumi_oci/core/instance.py +7 -7
  5. pulumi_oci/core/outputs.py +7 -165
  6. pulumi_oci/core/virtual_circuit.py +2 -30
  7. pulumi_oci/database/_inputs.py +0 -642
  8. pulumi_oci/database/autonomous_container_database.py +14 -14
  9. pulumi_oci/database/autonomous_database.py +0 -75
  10. pulumi_oci/database/get_autonomous_container_database.py +3 -3
  11. pulumi_oci/database/get_autonomous_database.py +1 -29
  12. pulumi_oci/database/get_autonomous_databases.py +28 -22
  13. pulumi_oci/database/outputs.py +89 -1672
  14. pulumi_oci/datascience/_inputs.py +0 -353
  15. pulumi_oci/datascience/get_model.py +1 -85
  16. pulumi_oci/datascience/get_models.py +0 -5
  17. pulumi_oci/datascience/model.py +66 -206
  18. pulumi_oci/datascience/outputs.py +0 -759
  19. pulumi_oci/filestorage/_inputs.py +0 -651
  20. pulumi_oci/filestorage/export.py +3 -96
  21. pulumi_oci/filestorage/file_system.py +0 -93
  22. pulumi_oci/filestorage/filesystem_snapshot_policy.py +0 -93
  23. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +1 -26
  24. pulumi_oci/filestorage/get_outbound_connector.py +1 -26
  25. pulumi_oci/filestorage/get_replication.py +1 -27
  26. pulumi_oci/filestorage/get_snapshot.py +1 -27
  27. pulumi_oci/filestorage/mount_target.py +0 -108
  28. pulumi_oci/filestorage/outbound_connector.py +0 -93
  29. pulumi_oci/filestorage/outputs.py +9 -1225
  30. pulumi_oci/filestorage/replication.py +0 -95
  31. pulumi_oci/filestorage/snapshot.py +2 -97
  32. pulumi_oci/networkloadbalancer/get_network_load_balancer.py +1 -15
  33. pulumi_oci/networkloadbalancer/network_load_balancer.py +0 -47
  34. pulumi_oci/networkloadbalancer/outputs.py +0 -11
  35. pulumi_oci/pulumi-plugin.json +1 -1
  36. {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/METADATA +1 -1
  37. {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/RECORD +39 -39
  38. {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/WHEEL +1 -1
  39. {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.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 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.
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.
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: Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
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.
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 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.
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.
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
- Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
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.
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 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.
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.
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: Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
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.
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 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.
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.
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
- Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
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.
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 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.
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.
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: Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
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.
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 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.
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.
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: Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
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.
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 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.
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.
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
- Determines whether an Autonomous Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected.
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.
2160
2160
  """
2161
2161
  return pulumi.get(self, "distribution_affinity")
2162
2162
 
@@ -50,7 +50,6 @@ 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,
54
53
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
55
54
  in_memory_percentage: Optional[pulumi.Input[int]] = None,
56
55
  is_access_control_enabled: Optional[pulumi.Input[bool]] = None,
@@ -158,7 +157,6 @@ class AutonomousDatabaseArgs:
158
157
  :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).
159
158
  :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.
160
159
  :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.
162
160
  :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"}`
163
161
  :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.
164
162
  :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.
@@ -316,8 +314,6 @@ class AutonomousDatabaseArgs:
316
314
  pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
317
315
  if display_name is not None:
318
316
  pulumi.set(__self__, "display_name", display_name)
319
- if encryption_key is not None:
320
- pulumi.set(__self__, "encryption_key", encryption_key)
321
317
  if freeform_tags is not None:
322
318
  pulumi.set(__self__, "freeform_tags", freeform_tags)
323
319
  if in_memory_percentage is not None:
@@ -794,18 +790,6 @@ class AutonomousDatabaseArgs:
794
790
  def display_name(self, value: Optional[pulumi.Input[str]]):
795
791
  pulumi.set(self, "display_name", value)
796
792
 
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
-
809
793
  @property
810
794
  @pulumi.getter(name="freeformTags")
811
795
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -1499,8 +1483,6 @@ class _AutonomousDatabaseState:
1499
1483
  disaster_recovery_region_type: Optional[pulumi.Input[str]] = None,
1500
1484
  disaster_recovery_type: Optional[pulumi.Input[str]] = None,
1501
1485
  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,
1504
1486
  failed_data_recovery_in_seconds: Optional[pulumi.Input[int]] = None,
1505
1487
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1506
1488
  in_memory_area_in_gbs: Optional[pulumi.Input[int]] = None,
@@ -1667,8 +1649,6 @@ class _AutonomousDatabaseState:
1667
1649
  :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.
1668
1650
  :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.
1669
1651
  :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.
1672
1652
  :param pulumi.Input[int] failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
1673
1653
  :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"}`
1674
1654
  :param pulumi.Input[int] in_memory_area_in_gbs: The area assigned to In-Memory tables in Autonomous Database.
@@ -1896,10 +1876,6 @@ class _AutonomousDatabaseState:
1896
1876
  pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
1897
1877
  if display_name is not None:
1898
1878
  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)
1903
1879
  if failed_data_recovery_in_seconds is not None:
1904
1880
  pulumi.set(__self__, "failed_data_recovery_in_seconds", failed_data_recovery_in_seconds)
1905
1881
  if freeform_tags is not None:
@@ -2604,30 +2580,6 @@ class _AutonomousDatabaseState:
2604
2580
  def display_name(self, value: Optional[pulumi.Input[str]]):
2605
2581
  pulumi.set(self, "display_name", value)
2606
2582
 
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
-
2631
2583
  @property
2632
2584
  @pulumi.getter(name="failedDataRecoveryInSeconds")
2633
2585
  def failed_data_recovery_in_seconds(self) -> Optional[pulumi.Input[int]]:
@@ -3882,7 +3834,6 @@ class AutonomousDatabase(pulumi.CustomResource):
3882
3834
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
3883
3835
  disaster_recovery_type: Optional[pulumi.Input[str]] = None,
3884
3836
  display_name: Optional[pulumi.Input[str]] = None,
3885
- encryption_key: Optional[pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']]] = None,
3886
3837
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
3887
3838
  in_memory_percentage: Optional[pulumi.Input[int]] = None,
3888
3839
  is_access_control_enabled: Optional[pulumi.Input[bool]] = None,
@@ -4006,7 +3957,6 @@ class AutonomousDatabase(pulumi.CustomResource):
4006
3957
  :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).
4007
3958
  :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.
4008
3959
  :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.
4010
3960
  :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"}`
4011
3961
  :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.
4012
3962
  :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.
@@ -4173,7 +4123,6 @@ class AutonomousDatabase(pulumi.CustomResource):
4173
4123
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
4174
4124
  disaster_recovery_type: Optional[pulumi.Input[str]] = None,
4175
4125
  display_name: Optional[pulumi.Input[str]] = None,
4176
- encryption_key: Optional[pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']]] = None,
4177
4126
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
4178
4127
  in_memory_percentage: Optional[pulumi.Input[int]] = None,
4179
4128
  is_access_control_enabled: Optional[pulumi.Input[bool]] = None,
@@ -4266,7 +4215,6 @@ class AutonomousDatabase(pulumi.CustomResource):
4266
4215
  __props__.__dict__["defined_tags"] = defined_tags
4267
4216
  __props__.__dict__["disaster_recovery_type"] = disaster_recovery_type
4268
4217
  __props__.__dict__["display_name"] = display_name
4269
- __props__.__dict__["encryption_key"] = encryption_key
4270
4218
  __props__.__dict__["freeform_tags"] = freeform_tags
4271
4219
  __props__.__dict__["in_memory_percentage"] = in_memory_percentage
4272
4220
  __props__.__dict__["is_access_control_enabled"] = is_access_control_enabled
@@ -4328,7 +4276,6 @@ class AutonomousDatabase(pulumi.CustomResource):
4328
4276
  __props__.__dict__["connection_urls"] = None
4329
4277
  __props__.__dict__["dataguard_region_type"] = None
4330
4278
  __props__.__dict__["disaster_recovery_region_type"] = None
4331
- __props__.__dict__["encryption_key_history_entries"] = None
4332
4279
  __props__.__dict__["failed_data_recovery_in_seconds"] = None
4333
4280
  __props__.__dict__["in_memory_area_in_gbs"] = None
4334
4281
  __props__.__dict__["infrastructure_type"] = None
@@ -4429,8 +4376,6 @@ class AutonomousDatabase(pulumi.CustomResource):
4429
4376
  disaster_recovery_region_type: Optional[pulumi.Input[str]] = None,
4430
4377
  disaster_recovery_type: Optional[pulumi.Input[str]] = None,
4431
4378
  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,
4434
4379
  failed_data_recovery_in_seconds: Optional[pulumi.Input[int]] = None,
4435
4380
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
4436
4381
  in_memory_area_in_gbs: Optional[pulumi.Input[int]] = None,
@@ -4602,8 +4547,6 @@ class AutonomousDatabase(pulumi.CustomResource):
4602
4547
  :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.
4603
4548
  :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.
4604
4549
  :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.
4607
4550
  :param pulumi.Input[int] failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
4608
4551
  :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"}`
4609
4552
  :param pulumi.Input[int] in_memory_area_in_gbs: The area assigned to In-Memory tables in Autonomous Database.
@@ -4795,8 +4738,6 @@ class AutonomousDatabase(pulumi.CustomResource):
4795
4738
  __props__.__dict__["disaster_recovery_region_type"] = disaster_recovery_region_type
4796
4739
  __props__.__dict__["disaster_recovery_type"] = disaster_recovery_type
4797
4740
  __props__.__dict__["display_name"] = display_name
4798
- __props__.__dict__["encryption_key"] = encryption_key
4799
- __props__.__dict__["encryption_key_history_entries"] = encryption_key_history_entries
4800
4741
  __props__.__dict__["failed_data_recovery_in_seconds"] = failed_data_recovery_in_seconds
4801
4742
  __props__.__dict__["freeform_tags"] = freeform_tags
4802
4743
  __props__.__dict__["in_memory_area_in_gbs"] = in_memory_area_in_gbs
@@ -5241,22 +5182,6 @@ class AutonomousDatabase(pulumi.CustomResource):
5241
5182
  """
5242
5183
  return pulumi.get(self, "display_name")
5243
5184
 
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
-
5260
5185
  @property
5261
5186
  @pulumi.getter(name="failedDataRecoveryInSeconds")
5262
5187
  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 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.
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.
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
- 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.
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.
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 reserved across nodes to support node failover. Allowed values are 0%, 25%, and 50%, with 50% being the default option.
676
+ The percentage of CPUs to reserve for a single node Autonomous Database, in increments of 25.
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, 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):
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):
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,12 +148,6 @@ 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)
157
151
  if failed_data_recovery_in_seconds and not isinstance(failed_data_recovery_in_seconds, int):
158
152
  raise TypeError("Expected argument 'failed_data_recovery_in_seconds' to be a int")
159
153
  pulumi.set(__self__, "failed_data_recovery_in_seconds", failed_data_recovery_in_seconds)
@@ -761,22 +755,6 @@ class GetAutonomousDatabaseResult:
761
755
  """
762
756
  return pulumi.get(self, "display_name")
763
757
 
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
-
780
758
  @property
781
759
  @pulumi.getter(name="failedDataRecoveryInSeconds")
782
760
  def failed_data_recovery_in_seconds(self) -> int:
@@ -1583,8 +1561,6 @@ class AwaitableGetAutonomousDatabaseResult(GetAutonomousDatabaseResult):
1583
1561
  disaster_recovery_region_type=self.disaster_recovery_region_type,
1584
1562
  disaster_recovery_type=self.disaster_recovery_type,
1585
1563
  display_name=self.display_name,
1586
- encryption_key_history_entries=self.encryption_key_history_entries,
1587
- encryption_keys=self.encryption_keys,
1588
1564
  failed_data_recovery_in_seconds=self.failed_data_recovery_in_seconds,
1589
1565
  freeform_tags=self.freeform_tags,
1590
1566
  id=self.id,
@@ -1751,8 +1727,6 @@ def get_autonomous_database(autonomous_database_id: Optional[str] = None,
1751
1727
  disaster_recovery_region_type=pulumi.get(__ret__, 'disaster_recovery_region_type'),
1752
1728
  disaster_recovery_type=pulumi.get(__ret__, 'disaster_recovery_type'),
1753
1729
  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'),
1756
1730
  failed_data_recovery_in_seconds=pulumi.get(__ret__, 'failed_data_recovery_in_seconds'),
1757
1731
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
1758
1732
  id=pulumi.get(__ret__, 'id'),
@@ -1916,8 +1890,6 @@ def get_autonomous_database_output(autonomous_database_id: Optional[pulumi.Input
1916
1890
  disaster_recovery_region_type=pulumi.get(__response__, 'disaster_recovery_region_type'),
1917
1891
  disaster_recovery_type=pulumi.get(__response__, 'disaster_recovery_type'),
1918
1892
  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'),
1921
1893
  failed_data_recovery_in_seconds=pulumi.get(__response__, 'failed_data_recovery_in_seconds'),
1922
1894
  freeform_tags=pulumi.get(__response__, 'freeform_tags'),
1923
1895
  id=pulumi.get(__response__, 'id'),
@@ -279,17 +279,20 @@ 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 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.
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.
293
296
  """
294
297
  __args__ = dict()
295
298
  __args__['autonomousContainerDatabaseId'] = autonomous_container_database_id
@@ -382,17 +385,20 @@ def get_autonomous_databases_output(autonomous_container_database_id: Optional[p
382
385
 
383
386
 
384
387
  :param str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
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.
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.
396
402
  """
397
403
  __args__ = dict()
398
404
  __args__['autonomousContainerDatabaseId'] = autonomous_container_database_id