pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__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 (170) hide show
  1. pulumi_oci/__init__.py +145 -0
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/core/_inputs.py +648 -159
  6. pulumi_oci/core/cluster_network.py +7 -7
  7. pulumi_oci/core/get_instance.py +29 -1
  8. pulumi_oci/core/get_vcn.py +15 -1
  9. pulumi_oci/core/get_vnic.py +15 -1
  10. pulumi_oci/core/instance.py +87 -0
  11. pulumi_oci/core/instance_configuration.py +12 -0
  12. pulumi_oci/core/ipsec.py +183 -23
  13. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  14. pulumi_oci/core/outputs.py +709 -107
  15. pulumi_oci/core/service_gateway.py +13 -7
  16. pulumi_oci/core/vcn.py +65 -23
  17. pulumi_oci/core/virtual_network.py +35 -1
  18. pulumi_oci/core/vnic_attachment.py +2 -0
  19. pulumi_oci/database/_inputs.py +905 -27
  20. pulumi_oci/database/autonomous_database.py +48 -28
  21. pulumi_oci/database/autonomous_database_backup.py +12 -12
  22. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  23. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  24. pulumi_oci/database/backup.py +12 -12
  25. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  26. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  27. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  28. pulumi_oci/database/database.py +15 -15
  29. pulumi_oci/database/database_upgrade.py +12 -12
  30. pulumi_oci/database/db_system.py +9 -9
  31. pulumi_oci/database/exadata_infrastructure.py +2 -0
  32. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  33. pulumi_oci/database/get_autonomous_database.py +18 -4
  34. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  35. pulumi_oci/database/get_autonomous_databases.py +88 -5
  36. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  37. pulumi_oci/database/get_database.py +3 -3
  38. pulumi_oci/database/get_pluggable_database.py +12 -1
  39. pulumi_oci/database/get_vm_cluster.py +15 -1
  40. pulumi_oci/database/outputs.py +1431 -74
  41. pulumi_oci/database/pluggable_database.py +34 -0
  42. pulumi_oci/database/vm_cluster.py +71 -0
  43. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  44. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  45. pulumi_oci/datasafe/__init__.py +12 -0
  46. pulumi_oci/datasafe/_inputs.py +441 -0
  47. pulumi_oci/datasafe/get_reports.py +23 -1
  48. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  49. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  50. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  51. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  52. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  53. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  54. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  55. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  56. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  57. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  58. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  59. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  60. pulumi_oci/datasafe/outputs.py +1808 -2
  61. pulumi_oci/desktops/_inputs.py +223 -7
  62. pulumi_oci/desktops/desktop_pool.py +186 -21
  63. pulumi_oci/desktops/get_desktop_pool.py +47 -5
  64. pulumi_oci/desktops/outputs.py +480 -19
  65. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  66. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  67. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  68. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  69. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  70. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  71. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  72. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  73. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  74. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  75. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  76. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  77. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  78. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  79. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  80. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  81. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  82. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  83. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  84. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  85. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  86. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  87. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  88. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  89. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  90. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  91. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  92. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  93. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  94. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  95. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  96. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  97. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  98. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  99. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  100. pulumi_oci/fleetappsmanagement/property.py +697 -0
  101. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  102. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  103. pulumi_oci/functions/outputs.py +11 -0
  104. pulumi_oci/fusionapps/_inputs.py +21 -20
  105. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  106. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  107. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  108. pulumi_oci/fusionapps/outputs.py +11 -10
  109. pulumi_oci/integration/__init__.py +1 -0
  110. pulumi_oci/integration/_inputs.py +289 -2
  111. pulumi_oci/integration/get_integration_instance.py +65 -1
  112. pulumi_oci/integration/integration_instance.py +172 -0
  113. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  114. pulumi_oci/integration/outputs.py +587 -19
  115. pulumi_oci/loadbalancer/_inputs.py +20 -0
  116. pulumi_oci/loadbalancer/listener.py +4 -2
  117. pulumi_oci/loadbalancer/outputs.py +16 -2
  118. pulumi_oci/monitoring/_inputs.py +137 -16
  119. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  120. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  121. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  122. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  123. pulumi_oci/monitoring/outputs.py +291 -18
  124. pulumi_oci/mysql/mysql_db_system.py +7 -7
  125. pulumi_oci/objectstorage/__init__.py +3 -0
  126. pulumi_oci/objectstorage/_inputs.py +97 -0
  127. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  128. pulumi_oci/objectstorage/get_objects.py +6 -6
  129. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  130. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  131. pulumi_oci/objectstorage/outputs.py +258 -0
  132. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  133. pulumi_oci/objectstorage/storage_object.py +7 -7
  134. pulumi_oci/opsi/_inputs.py +268 -114
  135. pulumi_oci/opsi/database_insight.py +162 -21
  136. pulumi_oci/opsi/exadata_insight.py +44 -0
  137. pulumi_oci/opsi/get_database_insight.py +40 -1
  138. pulumi_oci/opsi/get_host_insights.py +2 -2
  139. pulumi_oci/opsi/host_insight.py +0 -48
  140. pulumi_oci/opsi/outputs.py +405 -109
  141. pulumi_oci/pulumi-plugin.json +1 -1
  142. pulumi_oci/securityattribute/__init__.py +15 -0
  143. pulumi_oci/securityattribute/_inputs.py +209 -0
  144. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  145. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  146. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  147. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  148. pulumi_oci/securityattribute/outputs.py +466 -0
  149. pulumi_oci/securityattribute/security_attribute.py +588 -0
  150. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  151. pulumi_oci/stackmonitoring/__init__.py +5 -0
  152. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  153. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  154. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  155. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  156. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  157. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  158. pulumi_oci/stackmonitoring/outputs.py +603 -0
  159. pulumi_oci/zpr/__init__.py +14 -0
  160. pulumi_oci/zpr/_inputs.py +79 -0
  161. pulumi_oci/zpr/configuration.py +516 -0
  162. pulumi_oci/zpr/get_configuration.py +230 -0
  163. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  164. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  165. pulumi_oci/zpr/outputs.py +203 -0
  166. pulumi_oci/zpr/zpr_policy.py +614 -0
  167. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
  168. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
  169. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
  170. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -31,6 +31,7 @@ class CloudVmClusterArgs:
31
31
  ssh_public_keys: pulumi.Input[Sequence[pulumi.Input[str]]],
32
32
  subnet_id: pulumi.Input[str],
33
33
  backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
34
+ cloud_automation_update_details: Optional[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsArgs']] = None,
34
35
  cluster_name: Optional[pulumi.Input[str]] = None,
35
36
  create_async: Optional[pulumi.Input[bool]] = None,
36
37
  data_collection_options: Optional[pulumi.Input['CloudVmClusterDataCollectionOptionsArgs']] = None,
@@ -77,6 +78,7 @@ class CloudVmClusterArgs:
77
78
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
78
79
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the cloud VM cluster.
79
80
  :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_network_nsg_ids: (Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
81
+ :param pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsArgs'] cloud_automation_update_details: (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
80
82
  :param pulumi.Input[str] cluster_name: The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
81
83
  :param pulumi.Input['CloudVmClusterDataCollectionOptionsArgs'] data_collection_options: (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
82
84
  :param pulumi.Input[int] data_storage_percentage: The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See [Storage Configuration](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage.
@@ -116,6 +118,8 @@ class CloudVmClusterArgs:
116
118
  pulumi.set(__self__, "subnet_id", subnet_id)
117
119
  if backup_network_nsg_ids is not None:
118
120
  pulumi.set(__self__, "backup_network_nsg_ids", backup_network_nsg_ids)
121
+ if cloud_automation_update_details is not None:
122
+ pulumi.set(__self__, "cloud_automation_update_details", cloud_automation_update_details)
119
123
  if cluster_name is not None:
120
124
  pulumi.set(__self__, "cluster_name", cluster_name)
121
125
  if create_async is not None:
@@ -294,6 +298,18 @@ class CloudVmClusterArgs:
294
298
  def backup_network_nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
295
299
  pulumi.set(self, "backup_network_nsg_ids", value)
296
300
 
301
+ @property
302
+ @pulumi.getter(name="cloudAutomationUpdateDetails")
303
+ def cloud_automation_update_details(self) -> Optional[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsArgs']]:
304
+ """
305
+ (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
306
+ """
307
+ return pulumi.get(self, "cloud_automation_update_details")
308
+
309
+ @cloud_automation_update_details.setter
310
+ def cloud_automation_update_details(self, value: Optional[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsArgs']]):
311
+ pulumi.set(self, "cloud_automation_update_details", value)
312
+
297
313
  @property
298
314
  @pulumi.getter(name="clusterName")
299
315
  def cluster_name(self) -> Optional[pulumi.Input[str]]:
@@ -579,6 +595,7 @@ class _CloudVmClusterState:
579
595
  availability_domain: Optional[pulumi.Input[str]] = None,
580
596
  backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
581
597
  backup_subnet_id: Optional[pulumi.Input[str]] = None,
598
+ cloud_automation_update_details: Optional[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsArgs']] = None,
582
599
  cloud_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
583
600
  cluster_name: Optional[pulumi.Input[str]] = None,
584
601
  compartment_id: Optional[pulumi.Input[str]] = None,
@@ -631,6 +648,7 @@ class _CloudVmClusterState:
631
648
  :param pulumi.Input[str] availability_domain: The name of the availability domain that the cloud Exadata infrastructure resource is located in.
632
649
  :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_network_nsg_ids: (Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
633
650
  :param pulumi.Input[str] backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the cloud VM cluster.
651
+ :param pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsArgs'] cloud_automation_update_details: (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
634
652
  :param pulumi.Input[str] cloud_exadata_infrastructure_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Exadata infrastructure resource.
635
653
  :param pulumi.Input[str] cluster_name: The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
636
654
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
@@ -700,6 +718,8 @@ class _CloudVmClusterState:
700
718
  pulumi.set(__self__, "backup_network_nsg_ids", backup_network_nsg_ids)
701
719
  if backup_subnet_id is not None:
702
720
  pulumi.set(__self__, "backup_subnet_id", backup_subnet_id)
721
+ if cloud_automation_update_details is not None:
722
+ pulumi.set(__self__, "cloud_automation_update_details", cloud_automation_update_details)
703
723
  if cloud_exadata_infrastructure_id is not None:
704
724
  pulumi.set(__self__, "cloud_exadata_infrastructure_id", cloud_exadata_infrastructure_id)
705
725
  if cluster_name is not None:
@@ -831,6 +851,18 @@ class _CloudVmClusterState:
831
851
  def backup_subnet_id(self, value: Optional[pulumi.Input[str]]):
832
852
  pulumi.set(self, "backup_subnet_id", value)
833
853
 
854
+ @property
855
+ @pulumi.getter(name="cloudAutomationUpdateDetails")
856
+ def cloud_automation_update_details(self) -> Optional[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsArgs']]:
857
+ """
858
+ (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
859
+ """
860
+ return pulumi.get(self, "cloud_automation_update_details")
861
+
862
+ @cloud_automation_update_details.setter
863
+ def cloud_automation_update_details(self, value: Optional[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsArgs']]):
864
+ pulumi.set(self, "cloud_automation_update_details", value)
865
+
834
866
  @property
835
867
  @pulumi.getter(name="cloudExadataInfrastructureId")
836
868
  def cloud_exadata_infrastructure_id(self) -> Optional[pulumi.Input[str]]:
@@ -1416,6 +1448,7 @@ class CloudVmCluster(pulumi.CustomResource):
1416
1448
  opts: Optional[pulumi.ResourceOptions] = None,
1417
1449
  backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1418
1450
  backup_subnet_id: Optional[pulumi.Input[str]] = None,
1451
+ cloud_automation_update_details: Optional[pulumi.Input[Union['CloudVmClusterCloudAutomationUpdateDetailsArgs', 'CloudVmClusterCloudAutomationUpdateDetailsArgsDict']]] = None,
1419
1452
  cloud_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
1420
1453
  cluster_name: Optional[pulumi.Input[str]] = None,
1421
1454
  compartment_id: Optional[pulumi.Input[str]] = None,
@@ -1470,6 +1503,18 @@ class CloudVmCluster(pulumi.CustomResource):
1470
1503
  ssh_public_keys=cloud_vm_cluster_ssh_public_keys,
1471
1504
  subnet_id=test_subnet["id"],
1472
1505
  backup_network_nsg_ids=cloud_vm_cluster_backup_network_nsg_ids,
1506
+ cloud_automation_update_details={
1507
+ "apply_update_time_preference": {
1508
+ "apply_update_preferred_end_time": cloud_vm_cluster_cloud_automation_update_details_apply_update_time_preference_apply_update_preferred_end_time,
1509
+ "apply_update_preferred_start_time": cloud_vm_cluster_cloud_automation_update_details_apply_update_time_preference_apply_update_preferred_start_time,
1510
+ },
1511
+ "freeze_period": {
1512
+ "freeze_period_end_time": cloud_vm_cluster_cloud_automation_update_details_freeze_period_freeze_period_end_time,
1513
+ "freeze_period_start_time": cloud_vm_cluster_cloud_automation_update_details_freeze_period_freeze_period_start_time,
1514
+ },
1515
+ "is_early_adoption_enabled": cloud_vm_cluster_cloud_automation_update_details_is_early_adoption_enabled,
1516
+ "is_freeze_period_enabled": cloud_vm_cluster_cloud_automation_update_details_is_freeze_period_enabled,
1517
+ },
1473
1518
  cluster_name=cloud_vm_cluster_cluster_name,
1474
1519
  data_collection_options={
1475
1520
  "is_diagnostics_events_enabled": cloud_vm_cluster_data_collection_options_is_diagnostics_events_enabled,
@@ -1515,6 +1560,7 @@ class CloudVmCluster(pulumi.CustomResource):
1515
1560
  :param pulumi.ResourceOptions opts: Options for the resource.
1516
1561
  :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_network_nsg_ids: (Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
1517
1562
  :param pulumi.Input[str] backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the cloud VM cluster.
1563
+ :param pulumi.Input[Union['CloudVmClusterCloudAutomationUpdateDetailsArgs', 'CloudVmClusterCloudAutomationUpdateDetailsArgsDict']] cloud_automation_update_details: (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
1518
1564
  :param pulumi.Input[str] cloud_exadata_infrastructure_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Exadata infrastructure resource.
1519
1565
  :param pulumi.Input[str] cluster_name: The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
1520
1566
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
@@ -1590,6 +1636,18 @@ class CloudVmCluster(pulumi.CustomResource):
1590
1636
  ssh_public_keys=cloud_vm_cluster_ssh_public_keys,
1591
1637
  subnet_id=test_subnet["id"],
1592
1638
  backup_network_nsg_ids=cloud_vm_cluster_backup_network_nsg_ids,
1639
+ cloud_automation_update_details={
1640
+ "apply_update_time_preference": {
1641
+ "apply_update_preferred_end_time": cloud_vm_cluster_cloud_automation_update_details_apply_update_time_preference_apply_update_preferred_end_time,
1642
+ "apply_update_preferred_start_time": cloud_vm_cluster_cloud_automation_update_details_apply_update_time_preference_apply_update_preferred_start_time,
1643
+ },
1644
+ "freeze_period": {
1645
+ "freeze_period_end_time": cloud_vm_cluster_cloud_automation_update_details_freeze_period_freeze_period_end_time,
1646
+ "freeze_period_start_time": cloud_vm_cluster_cloud_automation_update_details_freeze_period_freeze_period_start_time,
1647
+ },
1648
+ "is_early_adoption_enabled": cloud_vm_cluster_cloud_automation_update_details_is_early_adoption_enabled,
1649
+ "is_freeze_period_enabled": cloud_vm_cluster_cloud_automation_update_details_is_freeze_period_enabled,
1650
+ },
1593
1651
  cluster_name=cloud_vm_cluster_cluster_name,
1594
1652
  data_collection_options={
1595
1653
  "is_diagnostics_events_enabled": cloud_vm_cluster_data_collection_options_is_diagnostics_events_enabled,
@@ -1648,6 +1706,7 @@ class CloudVmCluster(pulumi.CustomResource):
1648
1706
  opts: Optional[pulumi.ResourceOptions] = None,
1649
1707
  backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1650
1708
  backup_subnet_id: Optional[pulumi.Input[str]] = None,
1709
+ cloud_automation_update_details: Optional[pulumi.Input[Union['CloudVmClusterCloudAutomationUpdateDetailsArgs', 'CloudVmClusterCloudAutomationUpdateDetailsArgsDict']]] = None,
1651
1710
  cloud_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
1652
1711
  cluster_name: Optional[pulumi.Input[str]] = None,
1653
1712
  compartment_id: Optional[pulumi.Input[str]] = None,
@@ -1692,6 +1751,7 @@ class CloudVmCluster(pulumi.CustomResource):
1692
1751
  if backup_subnet_id is None and not opts.urn:
1693
1752
  raise TypeError("Missing required property 'backup_subnet_id'")
1694
1753
  __props__.__dict__["backup_subnet_id"] = backup_subnet_id
1754
+ __props__.__dict__["cloud_automation_update_details"] = cloud_automation_update_details
1695
1755
  if cloud_exadata_infrastructure_id is None and not opts.urn:
1696
1756
  raise TypeError("Missing required property 'cloud_exadata_infrastructure_id'")
1697
1757
  __props__.__dict__["cloud_exadata_infrastructure_id"] = cloud_exadata_infrastructure_id
@@ -1769,6 +1829,7 @@ class CloudVmCluster(pulumi.CustomResource):
1769
1829
  availability_domain: Optional[pulumi.Input[str]] = None,
1770
1830
  backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1771
1831
  backup_subnet_id: Optional[pulumi.Input[str]] = None,
1832
+ cloud_automation_update_details: Optional[pulumi.Input[Union['CloudVmClusterCloudAutomationUpdateDetailsArgs', 'CloudVmClusterCloudAutomationUpdateDetailsArgsDict']]] = None,
1772
1833
  cloud_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
1773
1834
  cluster_name: Optional[pulumi.Input[str]] = None,
1774
1835
  compartment_id: Optional[pulumi.Input[str]] = None,
@@ -1826,6 +1887,7 @@ class CloudVmCluster(pulumi.CustomResource):
1826
1887
  :param pulumi.Input[str] availability_domain: The name of the availability domain that the cloud Exadata infrastructure resource is located in.
1827
1888
  :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_network_nsg_ids: (Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
1828
1889
  :param pulumi.Input[str] backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the cloud VM cluster.
1890
+ :param pulumi.Input[Union['CloudVmClusterCloudAutomationUpdateDetailsArgs', 'CloudVmClusterCloudAutomationUpdateDetailsArgsDict']] cloud_automation_update_details: (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
1829
1891
  :param pulumi.Input[str] cloud_exadata_infrastructure_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Exadata infrastructure resource.
1830
1892
  :param pulumi.Input[str] cluster_name: The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
1831
1893
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
@@ -1896,6 +1958,7 @@ class CloudVmCluster(pulumi.CustomResource):
1896
1958
  __props__.__dict__["availability_domain"] = availability_domain
1897
1959
  __props__.__dict__["backup_network_nsg_ids"] = backup_network_nsg_ids
1898
1960
  __props__.__dict__["backup_subnet_id"] = backup_subnet_id
1961
+ __props__.__dict__["cloud_automation_update_details"] = cloud_automation_update_details
1899
1962
  __props__.__dict__["cloud_exadata_infrastructure_id"] = cloud_exadata_infrastructure_id
1900
1963
  __props__.__dict__["cluster_name"] = cluster_name
1901
1964
  __props__.__dict__["compartment_id"] = compartment_id
@@ -1969,6 +2032,14 @@ class CloudVmCluster(pulumi.CustomResource):
1969
2032
  """
1970
2033
  return pulumi.get(self, "backup_subnet_id")
1971
2034
 
2035
+ @property
2036
+ @pulumi.getter(name="cloudAutomationUpdateDetails")
2037
+ def cloud_automation_update_details(self) -> pulumi.Output['outputs.CloudVmClusterCloudAutomationUpdateDetails']:
2038
+ """
2039
+ (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
2040
+ """
2041
+ return pulumi.get(self, "cloud_automation_update_details")
2042
+
1972
2043
  @property
1973
2044
  @pulumi.getter(name="cloudExadataInfrastructureId")
1974
2045
  def cloud_exadata_infrastructure_id(self) -> pulumi.Output[str]:
@@ -45,12 +45,12 @@ class DatabaseArgs:
45
45
  :param pulumi.Input[str] db_version: A valid Oracle Database version. For a list of supported versions, use the ListDbVersions operation.
46
46
 
47
47
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
48
- :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
48
+ :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
49
49
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
50
50
  :param pulumi.Input[bool] kms_key_migration: The value to migrate to the kms version from none. Can only use once by setting value to true. You can not switch back to non-kms once you created or migrated.(https://www.oracle.com/security/cloud-security/key-management/faq/)
51
51
  :param pulumi.Input[int] kms_key_rotation: The value to rotate the key version of current kms_key. Just change this value will trigger the rotation.
52
52
  :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
53
- :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
53
+ :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
54
54
  """
55
55
  pulumi.set(__self__, "database", database)
56
56
  pulumi.set(__self__, "db_home_id", db_home_id)
@@ -130,7 +130,7 @@ class DatabaseArgs:
130
130
  @pulumi.getter(name="keyStoreId")
131
131
  def key_store_id(self) -> Optional[pulumi.Input[str]]:
132
132
  """
133
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
133
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
134
134
  """
135
135
  return pulumi.get(self, "key_store_id")
136
136
 
@@ -190,7 +190,7 @@ class DatabaseArgs:
190
190
  @pulumi.getter(name="vaultId")
191
191
  def vault_id(self) -> Optional[pulumi.Input[str]]:
192
192
  """
193
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
193
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
194
194
  """
195
195
  return pulumi.get(self, "vault_id")
196
196
 
@@ -259,7 +259,7 @@ class _DatabaseState:
259
259
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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).
260
260
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: 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"}`
261
261
  :param pulumi.Input[bool] is_cdb: True if the database is a container database.
262
- :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
262
+ :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
263
263
  :param pulumi.Input[str] key_store_wallet_name: The wallet name for Oracle Key Vault.
264
264
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
265
265
  :param pulumi.Input[bool] kms_key_migration: The value to migrate to the kms version from none. Can only use once by setting value to true. You can not switch back to non-kms once you created or migrated.(https://www.oracle.com/security/cloud-security/key-management/faq/)
@@ -280,7 +280,7 @@ class _DatabaseState:
280
280
  :param pulumi.Input[str] source_database_point_in_time_recovery_timestamp: Point in time recovery timeStamp of the source database at which cloned database system is cloned from the source database system, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339)
281
281
  :param pulumi.Input[str] state: The current state of the database.
282
282
  :param pulumi.Input[str] time_created: The date and time the database was created.
283
- :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
283
+ :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
284
284
  :param pulumi.Input[str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
285
285
  """
286
286
  if character_set is not None:
@@ -554,7 +554,7 @@ class _DatabaseState:
554
554
  @pulumi.getter(name="keyStoreId")
555
555
  def key_store_id(self) -> Optional[pulumi.Input[str]]:
556
556
  """
557
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
557
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
558
558
  """
559
559
  return pulumi.get(self, "key_store_id")
560
560
 
@@ -762,7 +762,7 @@ class _DatabaseState:
762
762
  @pulumi.getter(name="vaultId")
763
763
  def vault_id(self) -> Optional[pulumi.Input[str]]:
764
764
  """
765
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
765
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
766
766
  """
767
767
  return pulumi.get(self, "vault_id")
768
768
 
@@ -823,7 +823,7 @@ class Database(pulumi.CustomResource):
823
823
  :param pulumi.Input[str] db_version: A valid Oracle Database version. For a list of supported versions, use the ListDbVersions operation.
824
824
 
825
825
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
826
- :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
826
+ :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
827
827
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
828
828
  :param pulumi.Input[bool] kms_key_migration: The value to migrate to the kms version from none. Can only use once by setting value to true. You can not switch back to non-kms once you created or migrated.(https://www.oracle.com/security/cloud-security/key-management/faq/)
829
829
  :param pulumi.Input[int] kms_key_rotation: The value to rotate the key version of current kms_key. Just change this value will trigger the rotation.
@@ -833,7 +833,7 @@ class Database(pulumi.CustomResource):
833
833
 
834
834
  ** IMPORTANT **
835
835
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
836
- :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
836
+ :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
837
837
  """
838
838
  ...
839
839
  @overload
@@ -1003,7 +1003,7 @@ class Database(pulumi.CustomResource):
1003
1003
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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).
1004
1004
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: 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"}`
1005
1005
  :param pulumi.Input[bool] is_cdb: True if the database is a container database.
1006
- :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
1006
+ :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
1007
1007
  :param pulumi.Input[str] key_store_wallet_name: The wallet name for Oracle Key Vault.
1008
1008
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
1009
1009
  :param pulumi.Input[bool] kms_key_migration: The value to migrate to the kms version from none. Can only use once by setting value to true. You can not switch back to non-kms once you created or migrated.(https://www.oracle.com/security/cloud-security/key-management/faq/)
@@ -1024,7 +1024,7 @@ class Database(pulumi.CustomResource):
1024
1024
  :param pulumi.Input[str] source_database_point_in_time_recovery_timestamp: Point in time recovery timeStamp of the source database at which cloned database system is cloned from the source database system, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339)
1025
1025
  :param pulumi.Input[str] state: The current state of the database.
1026
1026
  :param pulumi.Input[str] time_created: The date and time the database was created.
1027
- :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
1027
+ :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
1028
1028
  :param pulumi.Input[str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
1029
1029
  """
1030
1030
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -1204,7 +1204,7 @@ class Database(pulumi.CustomResource):
1204
1204
  @pulumi.getter(name="keyStoreId")
1205
1205
  def key_store_id(self) -> pulumi.Output[str]:
1206
1206
  """
1207
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
1207
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
1208
1208
  """
1209
1209
  return pulumi.get(self, "key_store_id")
1210
1210
 
@@ -1242,7 +1242,7 @@ class Database(pulumi.CustomResource):
1242
1242
 
1243
1243
  @property
1244
1244
  @pulumi.getter(name="kmsKeyVersionId")
1245
- def kms_key_version_id(self) -> pulumi.Output[str]:
1245
+ def kms_key_version_id(self) -> pulumi.Output[Optional[str]]:
1246
1246
  """
1247
1247
  The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
1248
1248
  """
@@ -1344,7 +1344,7 @@ class Database(pulumi.CustomResource):
1344
1344
  @pulumi.getter(name="vaultId")
1345
1345
  def vault_id(self) -> pulumi.Output[str]:
1346
1346
  """
1347
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
1347
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
1348
1348
  """
1349
1349
  return pulumi.get(self, "vault_id")
1350
1350
 
@@ -125,10 +125,10 @@ class _DatabaseUpgradeState:
125
125
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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).
126
126
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: 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"}`
127
127
  :param pulumi.Input[bool] is_cdb: True if the database is a container database.
128
- :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
128
+ :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
129
129
  :param pulumi.Input[str] key_store_wallet_name: The wallet name for Oracle Key Vault.
130
130
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
131
- :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
131
+ :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
132
132
  :param pulumi.Input[int] last_backup_duration_in_seconds: The duration when the latest database backup created.
133
133
  :param pulumi.Input[str] last_backup_timestamp: The date and time when the latest database backup was created.
134
134
  :param pulumi.Input[str] last_failed_backup_timestamp: The date and time when the latest database backup failed.
@@ -139,7 +139,7 @@ class _DatabaseUpgradeState:
139
139
  :param pulumi.Input[str] source_database_point_in_time_recovery_timestamp: Point in time recovery timeStamp of the source database at which cloned database system is cloned from the source database system, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339)
140
140
  :param pulumi.Input[str] state: The current state of the database.
141
141
  :param pulumi.Input[str] time_created: The date and time the database was created.
142
- :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
142
+ :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
143
143
  :param pulumi.Input[str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
144
144
  """
145
145
  if action is not None:
@@ -403,7 +403,7 @@ class _DatabaseUpgradeState:
403
403
  @pulumi.getter(name="keyStoreId")
404
404
  def key_store_id(self) -> Optional[pulumi.Input[str]]:
405
405
  """
406
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
406
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
407
407
  """
408
408
  return pulumi.get(self, "key_store_id")
409
409
 
@@ -439,7 +439,7 @@ class _DatabaseUpgradeState:
439
439
  @pulumi.getter(name="kmsKeyVersionId")
440
440
  def kms_key_version_id(self) -> Optional[pulumi.Input[str]]:
441
441
  """
442
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
442
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
443
443
  """
444
444
  return pulumi.get(self, "kms_key_version_id")
445
445
 
@@ -571,7 +571,7 @@ class _DatabaseUpgradeState:
571
571
  @pulumi.getter(name="vaultId")
572
572
  def vault_id(self) -> Optional[pulumi.Input[str]]:
573
573
  """
574
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
574
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
575
575
  """
576
576
  return pulumi.get(self, "vault_id")
577
577
 
@@ -771,10 +771,10 @@ class DatabaseUpgrade(pulumi.CustomResource):
771
771
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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).
772
772
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: 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"}`
773
773
  :param pulumi.Input[bool] is_cdb: True if the database is a container database.
774
- :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
774
+ :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
775
775
  :param pulumi.Input[str] key_store_wallet_name: The wallet name for Oracle Key Vault.
776
776
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
777
- :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
777
+ :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
778
778
  :param pulumi.Input[int] last_backup_duration_in_seconds: The duration when the latest database backup created.
779
779
  :param pulumi.Input[str] last_backup_timestamp: The date and time when the latest database backup was created.
780
780
  :param pulumi.Input[str] last_failed_backup_timestamp: The date and time when the latest database backup failed.
@@ -785,7 +785,7 @@ class DatabaseUpgrade(pulumi.CustomResource):
785
785
  :param pulumi.Input[str] source_database_point_in_time_recovery_timestamp: Point in time recovery timeStamp of the source database at which cloned database system is cloned from the source database system, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339)
786
786
  :param pulumi.Input[str] state: The current state of the database.
787
787
  :param pulumi.Input[str] time_created: The date and time the database was created.
788
- :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
788
+ :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
789
789
  :param pulumi.Input[str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
790
790
  """
791
791
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -958,7 +958,7 @@ class DatabaseUpgrade(pulumi.CustomResource):
958
958
  @pulumi.getter(name="keyStoreId")
959
959
  def key_store_id(self) -> pulumi.Output[str]:
960
960
  """
961
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
961
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
962
962
  """
963
963
  return pulumi.get(self, "key_store_id")
964
964
 
@@ -982,7 +982,7 @@ class DatabaseUpgrade(pulumi.CustomResource):
982
982
  @pulumi.getter(name="kmsKeyVersionId")
983
983
  def kms_key_version_id(self) -> pulumi.Output[str]:
984
984
  """
985
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
985
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
986
986
  """
987
987
  return pulumi.get(self, "kms_key_version_id")
988
988
 
@@ -1070,7 +1070,7 @@ class DatabaseUpgrade(pulumi.CustomResource):
1070
1070
  @pulumi.getter(name="vaultId")
1071
1071
  def vault_id(self) -> pulumi.Output[str]:
1072
1072
  """
1073
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
1073
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
1074
1074
  """
1075
1075
  return pulumi.get(self, "vault_id")
1076
1076
 
@@ -119,7 +119,7 @@ class DbSystemArgs:
119
119
  Example: `FAULT-DOMAIN-1`
120
120
  :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"}`
121
121
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
122
- :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
122
+ :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
123
123
  :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
124
124
  :param pulumi.Input['DbSystemMaintenanceWindowDetailsArgs'] maintenance_window_details: (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
125
125
  :param pulumi.Input[int] node_count: The number of nodes to launch for a 2-node RAC virtual machine DB system. Specify either 1 or 2.
@@ -519,7 +519,7 @@ class DbSystemArgs:
519
519
  @pulumi.getter(name="kmsKeyVersionId")
520
520
  def kms_key_version_id(self) -> Optional[pulumi.Input[str]]:
521
521
  """
522
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
522
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
523
523
  """
524
524
  return pulumi.get(self, "kms_key_version_id")
525
525
 
@@ -772,7 +772,7 @@ class _DbSystemState:
772
772
  **Note:** The hostname must be unique within the subnet. If it is not unique, the DB system will fail to provision.
773
773
  :param pulumi.Input[Sequence[pulumi.Input['DbSystemIormConfigCachArgs']]] iorm_config_caches: The IORM settings of the Exadata DB system.
774
774
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
775
- :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
775
+ :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
776
776
  :param pulumi.Input[str] last_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run.
777
777
  :param pulumi.Input[str] last_patch_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch history. This value is updated as soon as a patch operation starts.
778
778
  :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
@@ -1211,7 +1211,7 @@ class _DbSystemState:
1211
1211
  @pulumi.getter(name="kmsKeyVersionId")
1212
1212
  def kms_key_version_id(self) -> Optional[pulumi.Input[str]]:
1213
1213
  """
1214
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
1214
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
1215
1215
  """
1216
1216
  return pulumi.get(self, "kms_key_version_id")
1217
1217
 
@@ -1751,7 +1751,7 @@ class DbSystem(pulumi.CustomResource):
1751
1751
 
1752
1752
  **Note:** The hostname must be unique within the subnet. If it is not unique, the DB system will fail to provision.
1753
1753
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
1754
- :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
1754
+ :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
1755
1755
  :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
1756
1756
  :param pulumi.Input[Union['DbSystemMaintenanceWindowDetailsArgs', 'DbSystemMaintenanceWindowDetailsArgsDict']] maintenance_window_details: (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
1757
1757
  :param pulumi.Input[int] node_count: The number of nodes to launch for a 2-node RAC virtual machine DB system. Specify either 1 or 2.
@@ -2086,7 +2086,7 @@ class DbSystem(pulumi.CustomResource):
2086
2086
  **Note:** The hostname must be unique within the subnet. If it is not unique, the DB system will fail to provision.
2087
2087
  :param pulumi.Input[Sequence[pulumi.Input[Union['DbSystemIormConfigCachArgs', 'DbSystemIormConfigCachArgsDict']]]] iorm_config_caches: The IORM settings of the Exadata DB system.
2088
2088
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
2089
- :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
2089
+ :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
2090
2090
  :param pulumi.Input[str] last_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run.
2091
2091
  :param pulumi.Input[str] last_patch_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch history. This value is updated as soon as a patch operation starts.
2092
2092
  :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
@@ -2383,7 +2383,7 @@ class DbSystem(pulumi.CustomResource):
2383
2383
 
2384
2384
  @property
2385
2385
  @pulumi.getter(name="kmsKeyId")
2386
- def kms_key_id(self) -> pulumi.Output[str]:
2386
+ def kms_key_id(self) -> pulumi.Output[Optional[str]]:
2387
2387
  """
2388
2388
  The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
2389
2389
  """
@@ -2391,9 +2391,9 @@ class DbSystem(pulumi.CustomResource):
2391
2391
 
2392
2392
  @property
2393
2393
  @pulumi.getter(name="kmsKeyVersionId")
2394
- def kms_key_version_id(self) -> pulumi.Output[str]:
2394
+ def kms_key_version_id(self) -> pulumi.Output[Optional[str]]:
2395
2395
  """
2396
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
2396
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
2397
2397
  """
2398
2398
  return pulumi.get(self, "kms_key_version_id")
2399
2399
 
@@ -1297,6 +1297,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
1297
1297
  }],
1298
1298
  "patching_mode": exadata_infrastructure_maintenance_window_patching_mode,
1299
1299
  "preference": exadata_infrastructure_maintenance_window_preference,
1300
+ "skip_rus": exadata_infrastructure_maintenance_window_skip_ru,
1300
1301
  "weeks_of_months": exadata_infrastructure_maintenance_window_weeks_of_month,
1301
1302
  },
1302
1303
  multi_rack_configuration_file=exadata_infrastructure_multi_rack_configuration_file,
@@ -1408,6 +1409,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
1408
1409
  }],
1409
1410
  "patching_mode": exadata_infrastructure_maintenance_window_patching_mode,
1410
1411
  "preference": exadata_infrastructure_maintenance_window_preference,
1412
+ "skip_rus": exadata_infrastructure_maintenance_window_skip_ru,
1411
1413
  "weeks_of_months": exadata_infrastructure_maintenance_window_weeks_of_month,
1412
1414
  },
1413
1415
  multi_rack_configuration_file=exadata_infrastructure_multi_rack_configuration_file,
@@ -407,7 +407,7 @@ class GetAutonomousContainerDatabaseResult:
407
407
  @pulumi.getter(name="keyStoreId")
408
408
  def key_store_id(self) -> str:
409
409
  """
410
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
410
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
411
411
  """
412
412
  return pulumi.get(self, "key_store_id")
413
413