pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.26.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (218) hide show
  1. pulumi_oci/__init__.py +102 -0
  2. pulumi_oci/config/__init__.pyi +2 -0
  3. pulumi_oci/config/vars.py +4 -0
  4. pulumi_oci/containerengine/_inputs.py +74 -35
  5. pulumi_oci/containerengine/cluster.py +4 -0
  6. pulumi_oci/containerengine/container_instance.py +2 -4
  7. pulumi_oci/containerengine/outputs.py +180 -21
  8. pulumi_oci/containerinstances/outputs.py +0 -14
  9. pulumi_oci/core/_inputs.py +21 -33
  10. pulumi_oci/core/outputs.py +13 -21
  11. pulumi_oci/database/__init__.py +1 -0
  12. pulumi_oci/database/_inputs.py +1246 -57
  13. pulumi_oci/database/application_vip.py +59 -10
  14. pulumi_oci/database/autonomous_container_database.py +92 -0
  15. pulumi_oci/database/autonomous_database.py +90 -22
  16. pulumi_oci/database/backup.py +153 -5
  17. pulumi_oci/database/backup_destination.py +84 -0
  18. pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
  19. pulumi_oci/database/cloud_vm_cluster.py +163 -30
  20. pulumi_oci/database/data_guard_association.py +49 -0
  21. pulumi_oci/database/db_node.py +64 -8
  22. pulumi_oci/database/db_system.py +111 -8
  23. pulumi_oci/database/exadata_infrastructure.py +157 -3
  24. pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
  25. pulumi_oci/database/exadb_vm_cluster.py +84 -7
  26. pulumi_oci/database/exascale_db_storage_vault.py +147 -0
  27. pulumi_oci/database/external_container_database.py +4 -4
  28. pulumi_oci/database/external_non_container_database.py +4 -4
  29. pulumi_oci/database/external_pluggable_database.py +4 -4
  30. pulumi_oci/database/get_application_vip.py +16 -2
  31. pulumi_oci/database/get_autonomous_container_database.py +43 -1
  32. pulumi_oci/database/get_autonomous_database.py +29 -1
  33. pulumi_oci/database/get_autonomous_databases.py +0 -26
  34. pulumi_oci/database/get_backup_destination.py +43 -1
  35. pulumi_oci/database/get_backups.py +136 -10
  36. pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
  37. pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
  38. pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
  39. pulumi_oci/database/get_data_guard_association.py +12 -1
  40. pulumi_oci/database/get_database_software_images.py +20 -1
  41. pulumi_oci/database/get_db_node.py +31 -4
  42. pulumi_oci/database/get_db_server.py +15 -1
  43. pulumi_oci/database/get_exadata_infrastructure.py +57 -1
  44. pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
  45. pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
  48. pulumi_oci/database/get_external_container_database.py +1 -1
  49. pulumi_oci/database/get_external_non_container_database.py +1 -1
  50. pulumi_oci/database/get_external_pluggable_database.py +1 -1
  51. pulumi_oci/database/get_flex_components.py +28 -6
  52. pulumi_oci/database/get_maintenance_runs.py +20 -1
  53. pulumi_oci/database/get_vm_cluster.py +60 -4
  54. pulumi_oci/database/get_vm_clusters.py +25 -3
  55. pulumi_oci/database/outputs.py +2260 -87
  56. pulumi_oci/database/pluggable_database.py +13 -13
  57. pulumi_oci/database/vm_cluster.py +172 -18
  58. pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
  59. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
  60. pulumi_oci/datasafe/__init__.py +7 -0
  61. pulumi_oci/datasafe/_inputs.py +301 -0
  62. pulumi_oci/datasafe/discovery_mod.py +49 -0
  63. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  64. pulumi_oci/datasafe/get_masking_report.py +46 -4
  65. pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
  66. pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
  67. pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
  68. pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
  69. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  70. pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
  71. pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
  72. pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
  73. pulumi_oci/datasafe/outputs.py +676 -3
  74. pulumi_oci/datasafe/sensitive_data_model.py +49 -0
  75. pulumi_oci/datasafe/sensitive_type_group.py +563 -0
  76. pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
  77. pulumi_oci/datascience/__init__.py +4 -0
  78. pulumi_oci/datascience/_inputs.py +1160 -41
  79. pulumi_oci/datascience/get_model.py +29 -1
  80. pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
  81. pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
  82. pulumi_oci/datascience/get_model_version_set.py +15 -1
  83. pulumi_oci/datascience/get_model_version_sets.py +25 -3
  84. pulumi_oci/datascience/get_models.py +25 -3
  85. pulumi_oci/datascience/get_pipeline.py +15 -1
  86. pulumi_oci/datascience/model.py +64 -0
  87. pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
  88. pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
  89. pulumi_oci/datascience/model_version_set.py +28 -0
  90. pulumi_oci/datascience/outputs.py +4343 -2164
  91. pulumi_oci/datascience/pipeline.py +48 -141
  92. pulumi_oci/datascience/pipeline_run.py +32 -0
  93. pulumi_oci/dblm/__init__.py +17 -0
  94. pulumi_oci/dblm/_inputs.py +275 -0
  95. pulumi_oci/dblm/get_vulnerability.py +242 -0
  96. pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
  97. pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
  98. pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
  99. pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
  100. pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
  101. pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
  102. pulumi_oci/dblm/outputs.py +1294 -0
  103. pulumi_oci/dblm/vulnerability_scan.py +521 -0
  104. pulumi_oci/email/dkim.py +120 -20
  105. pulumi_oci/email/get_dkim.py +40 -1
  106. pulumi_oci/email/outputs.py +29 -0
  107. pulumi_oci/filestorage/__init__.py +3 -0
  108. pulumi_oci/filestorage/_inputs.py +49 -0
  109. pulumi_oci/filestorage/file_system.py +133 -0
  110. pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
  111. pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
  112. pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
  113. pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
  114. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
  115. pulumi_oci/filestorage/get_outbound_connector.py +15 -1
  116. pulumi_oci/filestorage/get_replication.py +15 -1
  117. pulumi_oci/filestorage/get_replication_target.py +15 -1
  118. pulumi_oci/filestorage/get_snapshot.py +15 -1
  119. pulumi_oci/filestorage/mount_target.py +28 -0
  120. pulumi_oci/filestorage/outbound_connector.py +28 -0
  121. pulumi_oci/filestorage/outputs.py +263 -0
  122. pulumi_oci/filestorage/replication.py +28 -0
  123. pulumi_oci/filestorage/snapshot.py +28 -0
  124. pulumi_oci/goldengate/connection.py +561 -162
  125. pulumi_oci/goldengate/database_registration.py +14 -14
  126. pulumi_oci/goldengate/get_connection.py +117 -6
  127. pulumi_oci/goldengate/outputs.py +96 -10
  128. pulumi_oci/jms/__init__.py +4 -0
  129. pulumi_oci/jms/_inputs.py +196 -0
  130. pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
  131. pulumi_oci/jms/get_fleet_errors.py +264 -0
  132. pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
  133. pulumi_oci/jms/get_jms_plugins.py +23 -1
  134. pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
  135. pulumi_oci/jms/get_plugin_errors.py +264 -0
  136. pulumi_oci/jms/outputs.py +566 -6
  137. pulumi_oci/mysql/_inputs.py +1239 -10
  138. pulumi_oci/mysql/channel.py +28 -0
  139. pulumi_oci/mysql/get_channel.py +15 -1
  140. pulumi_oci/mysql/get_mysql_backup.py +15 -1
  141. pulumi_oci/mysql/get_mysql_configuration.py +15 -1
  142. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  143. pulumi_oci/mysql/mysql_backup.py +28 -0
  144. pulumi_oci/mysql/mysql_configuration.py +106 -0
  145. pulumi_oci/mysql/mysql_db_system.py +36 -0
  146. pulumi_oci/mysql/outputs.py +2008 -35
  147. pulumi_oci/opensearch/__init__.py +3 -0
  148. pulumi_oci/opensearch/_inputs.py +101 -0
  149. pulumi_oci/opensearch/cluster.py +76 -29
  150. pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
  151. pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
  152. pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
  153. pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
  154. pulumi_oci/opensearch/outputs.py +425 -0
  155. pulumi_oci/provider.py +20 -0
  156. pulumi_oci/psql/_inputs.py +258 -0
  157. pulumi_oci/psql/backup.py +129 -28
  158. pulumi_oci/psql/db_system.py +10 -0
  159. pulumi_oci/psql/get_backup.py +47 -2
  160. pulumi_oci/psql/get_backups.py +3 -0
  161. pulumi_oci/psql/get_configurations.py +23 -1
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_db_systems.py +1 -1
  164. pulumi_oci/psql/outputs.py +541 -5
  165. pulumi_oci/pulumi-plugin.json +1 -1
  166. pulumi_oci/redis/redis_cluster.py +7 -7
  167. pulumi_oci/stackmonitoring/__init__.py +8 -0
  168. pulumi_oci/stackmonitoring/_inputs.py +372 -1
  169. pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
  170. pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
  171. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
  172. pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
  173. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
  174. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
  175. pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
  176. pulumi_oci/stackmonitoring/metric_extension.py +4 -4
  177. pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
  178. pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
  179. pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
  180. pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
  181. pulumi_oci/stackmonitoring/outputs.py +1305 -118
  182. pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
  183. pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
  184. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
  185. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
  186. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
  187. pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
  188. pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
  189. pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
  190. pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
  191. pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
  192. pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
  193. pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
  194. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
  195. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
  196. pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
  197. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
  198. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
  199. pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
  200. pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
  201. pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
  202. pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
  203. pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
  204. pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
  205. pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
  206. pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
  207. pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
  208. pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
  209. pulumi_oci/vault/__init__.py +1 -1
  210. pulumi_oci/vault/_inputs.py +92 -0
  211. pulumi_oci/vault/get_secret.py +40 -1
  212. pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
  213. pulumi_oci/vault/outputs.py +210 -0
  214. pulumi_oci/vault/secret.py +122 -0
  215. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/METADATA +1 -1
  216. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/RECORD +218 -150
  217. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/WHEEL +1 -1
  218. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/top_level.txt +0 -0
@@ -15,10 +15,14 @@ else:
15
15
  from .. import _utilities
16
16
 
17
17
  __all__ = [
18
+ 'AutonomousContainerDatabaseAssociatedBackupConfigurationDetailArgs',
19
+ 'AutonomousContainerDatabaseAssociatedBackupConfigurationDetailArgsDict',
18
20
  'AutonomousContainerDatabaseBackupConfigArgs',
19
21
  'AutonomousContainerDatabaseBackupConfigArgsDict',
20
22
  'AutonomousContainerDatabaseBackupConfigBackupDestinationDetailsArgs',
21
23
  'AutonomousContainerDatabaseBackupConfigBackupDestinationDetailsArgsDict',
24
+ 'AutonomousContainerDatabaseBackupDestinationPropertiesListArgs',
25
+ 'AutonomousContainerDatabaseBackupDestinationPropertiesListArgsDict',
22
26
  'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs',
23
27
  'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgsDict',
24
28
  'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs',
@@ -41,6 +45,8 @@ __all__ = [
41
45
  'AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigArgsDict',
42
46
  'AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs',
43
47
  'AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgsDict',
48
+ 'AutonomousContainerDatabaseRecoveryApplianceDetailArgs',
49
+ 'AutonomousContainerDatabaseRecoveryApplianceDetailArgsDict',
44
50
  'AutonomousDatabaseApexDetailArgs',
45
51
  'AutonomousDatabaseApexDetailArgsDict',
46
52
  'AutonomousDatabaseBackupBackupDestinationDetailsArgs',
@@ -247,10 +253,26 @@ __all__ = [
247
253
  'ExadataInfrastructureComputeMaintenanceWindowDaysOfWeekArgsDict',
248
254
  'ExadataInfrastructureComputeMaintenanceWindowMonthArgs',
249
255
  'ExadataInfrastructureComputeMaintenanceWindowMonthArgsDict',
256
+ 'ExadataInfrastructureConfigureExascaleManagementContactArgs',
257
+ 'ExadataInfrastructureConfigureExascaleManagementContactArgsDict',
258
+ 'ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs',
259
+ 'ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgsDict',
260
+ 'ExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs',
261
+ 'ExadataInfrastructureConfigureExascaleManagementExascaleConfigArgsDict',
262
+ 'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs',
263
+ 'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgsDict',
264
+ 'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs',
265
+ 'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgsDict',
266
+ 'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs',
267
+ 'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgsDict',
268
+ 'ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetailArgs',
269
+ 'ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetailArgsDict',
250
270
  'ExadataInfrastructureContactArgs',
251
271
  'ExadataInfrastructureContactArgsDict',
252
272
  'ExadataInfrastructureDefinedFileSystemConfigurationArgs',
253
273
  'ExadataInfrastructureDefinedFileSystemConfigurationArgsDict',
274
+ 'ExadataInfrastructureExascaleConfigArgs',
275
+ 'ExadataInfrastructureExascaleConfigArgsDict',
254
276
  'ExadataInfrastructureMaintenanceWindowArgs',
255
277
  'ExadataInfrastructureMaintenanceWindowArgsDict',
256
278
  'ExadataInfrastructureMaintenanceWindowDaysOfWeekArgs',
@@ -559,6 +581,218 @@ __all__ = [
559
581
 
560
582
  MYPY = False
561
583
 
584
+ if not MYPY:
585
+ class AutonomousContainerDatabaseAssociatedBackupConfigurationDetailArgsDict(TypedDict):
586
+ backup_destination_attach_histories: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
587
+ """
588
+ The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
589
+ """
590
+ dbrs_policy_id: NotRequired[pulumi.Input[str]]
591
+ """
592
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
593
+ """
594
+ id: NotRequired[pulumi.Input[str]]
595
+ """
596
+ The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
597
+ """
598
+ internet_proxy: NotRequired[pulumi.Input[str]]
599
+ """
600
+ Proxy URL to connect to object store.
601
+ """
602
+ recovery_window_in_days: NotRequired[pulumi.Input[int]]
603
+ """
604
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
605
+ """
606
+ space_utilized_in_gbs: NotRequired[pulumi.Input[int]]
607
+ """
608
+ The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
609
+ """
610
+ time_at_which_storage_details_are_updated: NotRequired[pulumi.Input[str]]
611
+ """
612
+ The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
613
+ """
614
+ type: NotRequired[pulumi.Input[str]]
615
+ """
616
+ Type of the database backup destination.
617
+ """
618
+ vpc_password: NotRequired[pulumi.Input[str]]
619
+ """
620
+ For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
621
+ """
622
+ vpc_user: NotRequired[pulumi.Input[str]]
623
+ """
624
+ For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
625
+ """
626
+ elif False:
627
+ AutonomousContainerDatabaseAssociatedBackupConfigurationDetailArgsDict: TypeAlias = Mapping[str, Any]
628
+
629
+ @pulumi.input_type
630
+ class AutonomousContainerDatabaseAssociatedBackupConfigurationDetailArgs:
631
+ def __init__(__self__, *,
632
+ backup_destination_attach_histories: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
633
+ dbrs_policy_id: Optional[pulumi.Input[str]] = None,
634
+ id: Optional[pulumi.Input[str]] = None,
635
+ internet_proxy: Optional[pulumi.Input[str]] = None,
636
+ recovery_window_in_days: Optional[pulumi.Input[int]] = None,
637
+ space_utilized_in_gbs: Optional[pulumi.Input[int]] = None,
638
+ time_at_which_storage_details_are_updated: Optional[pulumi.Input[str]] = None,
639
+ type: Optional[pulumi.Input[str]] = None,
640
+ vpc_password: Optional[pulumi.Input[str]] = None,
641
+ vpc_user: Optional[pulumi.Input[str]] = None):
642
+ """
643
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_destination_attach_histories: The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
644
+ :param pulumi.Input[str] dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
645
+ :param pulumi.Input[str] id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
646
+ :param pulumi.Input[str] internet_proxy: Proxy URL to connect to object store.
647
+ :param pulumi.Input[int] recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
648
+ :param pulumi.Input[int] space_utilized_in_gbs: The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
649
+ :param pulumi.Input[str] time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
650
+ :param pulumi.Input[str] type: Type of the database backup destination.
651
+ :param pulumi.Input[str] vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
652
+ :param pulumi.Input[str] vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
653
+ """
654
+ if backup_destination_attach_histories is not None:
655
+ pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
656
+ if dbrs_policy_id is not None:
657
+ pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
658
+ if id is not None:
659
+ pulumi.set(__self__, "id", id)
660
+ if internet_proxy is not None:
661
+ pulumi.set(__self__, "internet_proxy", internet_proxy)
662
+ if recovery_window_in_days is not None:
663
+ pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
664
+ if space_utilized_in_gbs is not None:
665
+ pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
666
+ if time_at_which_storage_details_are_updated is not None:
667
+ pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
668
+ if type is not None:
669
+ pulumi.set(__self__, "type", type)
670
+ if vpc_password is not None:
671
+ pulumi.set(__self__, "vpc_password", vpc_password)
672
+ if vpc_user is not None:
673
+ pulumi.set(__self__, "vpc_user", vpc_user)
674
+
675
+ @property
676
+ @pulumi.getter(name="backupDestinationAttachHistories")
677
+ def backup_destination_attach_histories(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
678
+ """
679
+ The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
680
+ """
681
+ return pulumi.get(self, "backup_destination_attach_histories")
682
+
683
+ @backup_destination_attach_histories.setter
684
+ def backup_destination_attach_histories(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
685
+ pulumi.set(self, "backup_destination_attach_histories", value)
686
+
687
+ @property
688
+ @pulumi.getter(name="dbrsPolicyId")
689
+ def dbrs_policy_id(self) -> Optional[pulumi.Input[str]]:
690
+ """
691
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
692
+ """
693
+ return pulumi.get(self, "dbrs_policy_id")
694
+
695
+ @dbrs_policy_id.setter
696
+ def dbrs_policy_id(self, value: Optional[pulumi.Input[str]]):
697
+ pulumi.set(self, "dbrs_policy_id", value)
698
+
699
+ @property
700
+ @pulumi.getter
701
+ def id(self) -> Optional[pulumi.Input[str]]:
702
+ """
703
+ The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
704
+ """
705
+ return pulumi.get(self, "id")
706
+
707
+ @id.setter
708
+ def id(self, value: Optional[pulumi.Input[str]]):
709
+ pulumi.set(self, "id", value)
710
+
711
+ @property
712
+ @pulumi.getter(name="internetProxy")
713
+ def internet_proxy(self) -> Optional[pulumi.Input[str]]:
714
+ """
715
+ Proxy URL to connect to object store.
716
+ """
717
+ return pulumi.get(self, "internet_proxy")
718
+
719
+ @internet_proxy.setter
720
+ def internet_proxy(self, value: Optional[pulumi.Input[str]]):
721
+ pulumi.set(self, "internet_proxy", value)
722
+
723
+ @property
724
+ @pulumi.getter(name="recoveryWindowInDays")
725
+ def recovery_window_in_days(self) -> Optional[pulumi.Input[int]]:
726
+ """
727
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
728
+ """
729
+ return pulumi.get(self, "recovery_window_in_days")
730
+
731
+ @recovery_window_in_days.setter
732
+ def recovery_window_in_days(self, value: Optional[pulumi.Input[int]]):
733
+ pulumi.set(self, "recovery_window_in_days", value)
734
+
735
+ @property
736
+ @pulumi.getter(name="spaceUtilizedInGbs")
737
+ def space_utilized_in_gbs(self) -> Optional[pulumi.Input[int]]:
738
+ """
739
+ The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
740
+ """
741
+ return pulumi.get(self, "space_utilized_in_gbs")
742
+
743
+ @space_utilized_in_gbs.setter
744
+ def space_utilized_in_gbs(self, value: Optional[pulumi.Input[int]]):
745
+ pulumi.set(self, "space_utilized_in_gbs", value)
746
+
747
+ @property
748
+ @pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
749
+ def time_at_which_storage_details_are_updated(self) -> Optional[pulumi.Input[str]]:
750
+ """
751
+ The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
752
+ """
753
+ return pulumi.get(self, "time_at_which_storage_details_are_updated")
754
+
755
+ @time_at_which_storage_details_are_updated.setter
756
+ def time_at_which_storage_details_are_updated(self, value: Optional[pulumi.Input[str]]):
757
+ pulumi.set(self, "time_at_which_storage_details_are_updated", value)
758
+
759
+ @property
760
+ @pulumi.getter
761
+ def type(self) -> Optional[pulumi.Input[str]]:
762
+ """
763
+ Type of the database backup destination.
764
+ """
765
+ return pulumi.get(self, "type")
766
+
767
+ @type.setter
768
+ def type(self, value: Optional[pulumi.Input[str]]):
769
+ pulumi.set(self, "type", value)
770
+
771
+ @property
772
+ @pulumi.getter(name="vpcPassword")
773
+ def vpc_password(self) -> Optional[pulumi.Input[str]]:
774
+ """
775
+ For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
776
+ """
777
+ return pulumi.get(self, "vpc_password")
778
+
779
+ @vpc_password.setter
780
+ def vpc_password(self, value: Optional[pulumi.Input[str]]):
781
+ pulumi.set(self, "vpc_password", value)
782
+
783
+ @property
784
+ @pulumi.getter(name="vpcUser")
785
+ def vpc_user(self) -> Optional[pulumi.Input[str]]:
786
+ """
787
+ For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
788
+ """
789
+ return pulumi.get(self, "vpc_user")
790
+
791
+ @vpc_user.setter
792
+ def vpc_user(self, value: Optional[pulumi.Input[str]]):
793
+ pulumi.set(self, "vpc_user", value)
794
+
795
+
562
796
  if not MYPY:
563
797
  class AutonomousContainerDatabaseBackupConfigArgsDict(TypedDict):
564
798
  backup_destination_details: NotRequired[pulumi.Input['AutonomousContainerDatabaseBackupConfigBackupDestinationDetailsArgsDict']]
@@ -722,6 +956,78 @@ class AutonomousContainerDatabaseBackupConfigBackupDestinationDetailsArgs:
722
956
  pulumi.set(self, "vpc_user", value)
723
957
 
724
958
 
959
+ if not MYPY:
960
+ class AutonomousContainerDatabaseBackupDestinationPropertiesListArgsDict(TypedDict):
961
+ backup_destination_attach_histories: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
962
+ """
963
+ The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
964
+ """
965
+ space_utilized_in_gbs: NotRequired[pulumi.Input[int]]
966
+ """
967
+ The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
968
+ """
969
+ time_at_which_storage_details_are_updated: NotRequired[pulumi.Input[str]]
970
+ """
971
+ The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
972
+ """
973
+ elif False:
974
+ AutonomousContainerDatabaseBackupDestinationPropertiesListArgsDict: TypeAlias = Mapping[str, Any]
975
+
976
+ @pulumi.input_type
977
+ class AutonomousContainerDatabaseBackupDestinationPropertiesListArgs:
978
+ def __init__(__self__, *,
979
+ backup_destination_attach_histories: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
980
+ space_utilized_in_gbs: Optional[pulumi.Input[int]] = None,
981
+ time_at_which_storage_details_are_updated: Optional[pulumi.Input[str]] = None):
982
+ """
983
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_destination_attach_histories: The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
984
+ :param pulumi.Input[int] space_utilized_in_gbs: The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
985
+ :param pulumi.Input[str] time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
986
+ """
987
+ if backup_destination_attach_histories is not None:
988
+ pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
989
+ if space_utilized_in_gbs is not None:
990
+ pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
991
+ if time_at_which_storage_details_are_updated is not None:
992
+ pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
993
+
994
+ @property
995
+ @pulumi.getter(name="backupDestinationAttachHistories")
996
+ def backup_destination_attach_histories(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
997
+ """
998
+ The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
999
+ """
1000
+ return pulumi.get(self, "backup_destination_attach_histories")
1001
+
1002
+ @backup_destination_attach_histories.setter
1003
+ def backup_destination_attach_histories(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1004
+ pulumi.set(self, "backup_destination_attach_histories", value)
1005
+
1006
+ @property
1007
+ @pulumi.getter(name="spaceUtilizedInGbs")
1008
+ def space_utilized_in_gbs(self) -> Optional[pulumi.Input[int]]:
1009
+ """
1010
+ The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
1011
+ """
1012
+ return pulumi.get(self, "space_utilized_in_gbs")
1013
+
1014
+ @space_utilized_in_gbs.setter
1015
+ def space_utilized_in_gbs(self, value: Optional[pulumi.Input[int]]):
1016
+ pulumi.set(self, "space_utilized_in_gbs", value)
1017
+
1018
+ @property
1019
+ @pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
1020
+ def time_at_which_storage_details_are_updated(self) -> Optional[pulumi.Input[str]]:
1021
+ """
1022
+ The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
1023
+ """
1024
+ return pulumi.get(self, "time_at_which_storage_details_are_updated")
1025
+
1026
+ @time_at_which_storage_details_are_updated.setter
1027
+ def time_at_which_storage_details_are_updated(self, value: Optional[pulumi.Input[str]]):
1028
+ pulumi.set(self, "time_at_which_storage_details_are_updated", value)
1029
+
1030
+
725
1031
  if not MYPY:
726
1032
  class AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgsDict(TypedDict):
727
1033
  backup_destination_details: NotRequired[pulumi.Input[Sequence[pulumi.Input['AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgsDict']]]]
@@ -1762,6 +2068,81 @@ class AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBack
1762
2068
  pulumi.set(self, "vpc_user", value)
1763
2069
 
1764
2070
 
2071
+ if not MYPY:
2072
+ class AutonomousContainerDatabaseRecoveryApplianceDetailArgsDict(TypedDict):
2073
+ allocated_storage_size_in_gbs: NotRequired[pulumi.Input[int]]
2074
+ """
2075
+ The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
2076
+ """
2077
+ recovery_window_in_days: NotRequired[pulumi.Input[int]]
2078
+ """
2079
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
2080
+ """
2081
+ time_recovery_appliance_details_updated: NotRequired[pulumi.Input[str]]
2082
+ """
2083
+ The time when the recovery appliance details are updated.
2084
+ =======
2085
+ """
2086
+ elif False:
2087
+ AutonomousContainerDatabaseRecoveryApplianceDetailArgsDict: TypeAlias = Mapping[str, Any]
2088
+
2089
+ @pulumi.input_type
2090
+ class AutonomousContainerDatabaseRecoveryApplianceDetailArgs:
2091
+ def __init__(__self__, *,
2092
+ allocated_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
2093
+ recovery_window_in_days: Optional[pulumi.Input[int]] = None,
2094
+ time_recovery_appliance_details_updated: Optional[pulumi.Input[str]] = None):
2095
+ """
2096
+ :param pulumi.Input[int] allocated_storage_size_in_gbs: The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
2097
+ :param pulumi.Input[int] recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
2098
+ :param pulumi.Input[str] time_recovery_appliance_details_updated: The time when the recovery appliance details are updated.
2099
+ =======
2100
+ """
2101
+ if allocated_storage_size_in_gbs is not None:
2102
+ pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
2103
+ if recovery_window_in_days is not None:
2104
+ pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
2105
+ if time_recovery_appliance_details_updated is not None:
2106
+ pulumi.set(__self__, "time_recovery_appliance_details_updated", time_recovery_appliance_details_updated)
2107
+
2108
+ @property
2109
+ @pulumi.getter(name="allocatedStorageSizeInGbs")
2110
+ def allocated_storage_size_in_gbs(self) -> Optional[pulumi.Input[int]]:
2111
+ """
2112
+ The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
2113
+ """
2114
+ return pulumi.get(self, "allocated_storage_size_in_gbs")
2115
+
2116
+ @allocated_storage_size_in_gbs.setter
2117
+ def allocated_storage_size_in_gbs(self, value: Optional[pulumi.Input[int]]):
2118
+ pulumi.set(self, "allocated_storage_size_in_gbs", value)
2119
+
2120
+ @property
2121
+ @pulumi.getter(name="recoveryWindowInDays")
2122
+ def recovery_window_in_days(self) -> Optional[pulumi.Input[int]]:
2123
+ """
2124
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
2125
+ """
2126
+ return pulumi.get(self, "recovery_window_in_days")
2127
+
2128
+ @recovery_window_in_days.setter
2129
+ def recovery_window_in_days(self, value: Optional[pulumi.Input[int]]):
2130
+ pulumi.set(self, "recovery_window_in_days", value)
2131
+
2132
+ @property
2133
+ @pulumi.getter(name="timeRecoveryApplianceDetailsUpdated")
2134
+ def time_recovery_appliance_details_updated(self) -> Optional[pulumi.Input[str]]:
2135
+ """
2136
+ The time when the recovery appliance details are updated.
2137
+ =======
2138
+ """
2139
+ return pulumi.get(self, "time_recovery_appliance_details_updated")
2140
+
2141
+ @time_recovery_appliance_details_updated.setter
2142
+ def time_recovery_appliance_details_updated(self, value: Optional[pulumi.Input[str]]):
2143
+ pulumi.set(self, "time_recovery_appliance_details_updated", value)
2144
+
2145
+
1765
2146
  if not MYPY:
1766
2147
  class AutonomousDatabaseApexDetailArgsDict(TypedDict):
1767
2148
  apex_version: NotRequired[pulumi.Input[str]]
@@ -3338,6 +3719,10 @@ if not MYPY:
3338
3719
  """
3339
3720
  Additional information about the current lifecycle state.
3340
3721
  """
3722
+ maintenance_target_component: NotRequired[pulumi.Input[str]]
3723
+ """
3724
+ The component chosen for maintenance.
3725
+ """
3341
3726
  state: NotRequired[pulumi.Input[str]]
3342
3727
  """
3343
3728
  The current state of the Autonomous Database.
@@ -3350,6 +3735,14 @@ if not MYPY:
3350
3735
  """
3351
3736
  The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
3352
3737
  """
3738
+ time_maintenance_begin: NotRequired[pulumi.Input[str]]
3739
+ """
3740
+ The date and time when maintenance will begin.
3741
+ """
3742
+ time_maintenance_end: NotRequired[pulumi.Input[str]]
3743
+ """
3744
+ The date and time when maintenance will end.
3745
+ """
3353
3746
  elif False:
3354
3747
  AutonomousDatabaseLocalStandbyDbArgsDict: TypeAlias = Mapping[str, Any]
3355
3748
 
@@ -3359,16 +3752,22 @@ class AutonomousDatabaseLocalStandbyDbArgs:
3359
3752
  availability_domain: Optional[pulumi.Input[str]] = None,
3360
3753
  lag_time_in_seconds: Optional[pulumi.Input[int]] = None,
3361
3754
  lifecycle_details: Optional[pulumi.Input[str]] = None,
3755
+ maintenance_target_component: Optional[pulumi.Input[str]] = None,
3362
3756
  state: Optional[pulumi.Input[str]] = None,
3363
3757
  time_data_guard_role_changed: Optional[pulumi.Input[str]] = None,
3364
- time_disaster_recovery_role_changed: Optional[pulumi.Input[str]] = None):
3758
+ time_disaster_recovery_role_changed: Optional[pulumi.Input[str]] = None,
3759
+ time_maintenance_begin: Optional[pulumi.Input[str]] = None,
3760
+ time_maintenance_end: Optional[pulumi.Input[str]] = None):
3365
3761
  """
3366
3762
  :param pulumi.Input[str] availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
3367
3763
  :param pulumi.Input[int] lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
3368
3764
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
3765
+ :param pulumi.Input[str] maintenance_target_component: The component chosen for maintenance.
3369
3766
  :param pulumi.Input[str] state: The current state of the Autonomous Database.
3370
3767
  :param pulumi.Input[str] time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
3371
3768
  :param pulumi.Input[str] time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
3769
+ :param pulumi.Input[str] time_maintenance_begin: The date and time when maintenance will begin.
3770
+ :param pulumi.Input[str] time_maintenance_end: The date and time when maintenance will end.
3372
3771
  """
3373
3772
  if availability_domain is not None:
3374
3773
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -3376,12 +3775,18 @@ class AutonomousDatabaseLocalStandbyDbArgs:
3376
3775
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
3377
3776
  if lifecycle_details is not None:
3378
3777
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
3778
+ if maintenance_target_component is not None:
3779
+ pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
3379
3780
  if state is not None:
3380
3781
  pulumi.set(__self__, "state", state)
3381
3782
  if time_data_guard_role_changed is not None:
3382
3783
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
3383
3784
  if time_disaster_recovery_role_changed is not None:
3384
3785
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
3786
+ if time_maintenance_begin is not None:
3787
+ pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
3788
+ if time_maintenance_end is not None:
3789
+ pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
3385
3790
 
3386
3791
  @property
3387
3792
  @pulumi.getter(name="availabilityDomain")
@@ -3419,6 +3824,18 @@ class AutonomousDatabaseLocalStandbyDbArgs:
3419
3824
  def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
3420
3825
  pulumi.set(self, "lifecycle_details", value)
3421
3826
 
3827
+ @property
3828
+ @pulumi.getter(name="maintenanceTargetComponent")
3829
+ def maintenance_target_component(self) -> Optional[pulumi.Input[str]]:
3830
+ """
3831
+ The component chosen for maintenance.
3832
+ """
3833
+ return pulumi.get(self, "maintenance_target_component")
3834
+
3835
+ @maintenance_target_component.setter
3836
+ def maintenance_target_component(self, value: Optional[pulumi.Input[str]]):
3837
+ pulumi.set(self, "maintenance_target_component", value)
3838
+
3422
3839
  @property
3423
3840
  @pulumi.getter
3424
3841
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -3455,14 +3872,38 @@ class AutonomousDatabaseLocalStandbyDbArgs:
3455
3872
  def time_disaster_recovery_role_changed(self, value: Optional[pulumi.Input[str]]):
3456
3873
  pulumi.set(self, "time_disaster_recovery_role_changed", value)
3457
3874
 
3458
-
3459
- if not MYPY:
3460
- class AutonomousDatabaseLongTermBackupScheduleArgsDict(TypedDict):
3461
- is_disabled: NotRequired[pulumi.Input[bool]]
3462
- """
3463
- Indicates if the long-term backup schedule should be deleted. The default value is `FALSE`.
3875
+ @property
3876
+ @pulumi.getter(name="timeMaintenanceBegin")
3877
+ def time_maintenance_begin(self) -> Optional[pulumi.Input[str]]:
3464
3878
  """
3465
- repeat_cadence: NotRequired[pulumi.Input[str]]
3879
+ The date and time when maintenance will begin.
3880
+ """
3881
+ return pulumi.get(self, "time_maintenance_begin")
3882
+
3883
+ @time_maintenance_begin.setter
3884
+ def time_maintenance_begin(self, value: Optional[pulumi.Input[str]]):
3885
+ pulumi.set(self, "time_maintenance_begin", value)
3886
+
3887
+ @property
3888
+ @pulumi.getter(name="timeMaintenanceEnd")
3889
+ def time_maintenance_end(self) -> Optional[pulumi.Input[str]]:
3890
+ """
3891
+ The date and time when maintenance will end.
3892
+ """
3893
+ return pulumi.get(self, "time_maintenance_end")
3894
+
3895
+ @time_maintenance_end.setter
3896
+ def time_maintenance_end(self, value: Optional[pulumi.Input[str]]):
3897
+ pulumi.set(self, "time_maintenance_end", value)
3898
+
3899
+
3900
+ if not MYPY:
3901
+ class AutonomousDatabaseLongTermBackupScheduleArgsDict(TypedDict):
3902
+ is_disabled: NotRequired[pulumi.Input[bool]]
3903
+ """
3904
+ Indicates if the long-term backup schedule should be deleted. The default value is `FALSE`.
3905
+ """
3906
+ repeat_cadence: NotRequired[pulumi.Input[str]]
3466
3907
  """
3467
3908
  The frequency of the long-term backup schedule
3468
3909
  """
@@ -3980,6 +4421,10 @@ if not MYPY:
3980
4421
  """
3981
4422
  Additional information about the current lifecycle state.
3982
4423
  """
4424
+ maintenance_target_component: NotRequired[pulumi.Input[str]]
4425
+ """
4426
+ The component chosen for maintenance.
4427
+ """
3983
4428
  state: NotRequired[pulumi.Input[str]]
3984
4429
  """
3985
4430
  The current state of the Autonomous Database.
@@ -3992,6 +4437,14 @@ if not MYPY:
3992
4437
  """
3993
4438
  The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
3994
4439
  """
4440
+ time_maintenance_begin: NotRequired[pulumi.Input[str]]
4441
+ """
4442
+ The date and time when maintenance will begin.
4443
+ """
4444
+ time_maintenance_end: NotRequired[pulumi.Input[str]]
4445
+ """
4446
+ The date and time when maintenance will end.
4447
+ """
3995
4448
  elif False:
3996
4449
  AutonomousDatabaseStandbyDbArgsDict: TypeAlias = Mapping[str, Any]
3997
4450
 
@@ -4001,16 +4454,22 @@ class AutonomousDatabaseStandbyDbArgs:
4001
4454
  availability_domain: Optional[pulumi.Input[str]] = None,
4002
4455
  lag_time_in_seconds: Optional[pulumi.Input[int]] = None,
4003
4456
  lifecycle_details: Optional[pulumi.Input[str]] = None,
4457
+ maintenance_target_component: Optional[pulumi.Input[str]] = None,
4004
4458
  state: Optional[pulumi.Input[str]] = None,
4005
4459
  time_data_guard_role_changed: Optional[pulumi.Input[str]] = None,
4006
- time_disaster_recovery_role_changed: Optional[pulumi.Input[str]] = None):
4460
+ time_disaster_recovery_role_changed: Optional[pulumi.Input[str]] = None,
4461
+ time_maintenance_begin: Optional[pulumi.Input[str]] = None,
4462
+ time_maintenance_end: Optional[pulumi.Input[str]] = None):
4007
4463
  """
4008
4464
  :param pulumi.Input[str] availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
4009
4465
  :param pulumi.Input[int] lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
4010
4466
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
4467
+ :param pulumi.Input[str] maintenance_target_component: The component chosen for maintenance.
4011
4468
  :param pulumi.Input[str] state: The current state of the Autonomous Database.
4012
4469
  :param pulumi.Input[str] time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
4013
4470
  :param pulumi.Input[str] time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
4471
+ :param pulumi.Input[str] time_maintenance_begin: The date and time when maintenance will begin.
4472
+ :param pulumi.Input[str] time_maintenance_end: The date and time when maintenance will end.
4014
4473
  """
4015
4474
  if availability_domain is not None:
4016
4475
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -4018,12 +4477,18 @@ class AutonomousDatabaseStandbyDbArgs:
4018
4477
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
4019
4478
  if lifecycle_details is not None:
4020
4479
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
4480
+ if maintenance_target_component is not None:
4481
+ pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
4021
4482
  if state is not None:
4022
4483
  pulumi.set(__self__, "state", state)
4023
4484
  if time_data_guard_role_changed is not None:
4024
4485
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
4025
4486
  if time_disaster_recovery_role_changed is not None:
4026
4487
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
4488
+ if time_maintenance_begin is not None:
4489
+ pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
4490
+ if time_maintenance_end is not None:
4491
+ pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
4027
4492
 
4028
4493
  @property
4029
4494
  @pulumi.getter(name="availabilityDomain")
@@ -4061,6 +4526,18 @@ class AutonomousDatabaseStandbyDbArgs:
4061
4526
  def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
4062
4527
  pulumi.set(self, "lifecycle_details", value)
4063
4528
 
4529
+ @property
4530
+ @pulumi.getter(name="maintenanceTargetComponent")
4531
+ def maintenance_target_component(self) -> Optional[pulumi.Input[str]]:
4532
+ """
4533
+ The component chosen for maintenance.
4534
+ """
4535
+ return pulumi.get(self, "maintenance_target_component")
4536
+
4537
+ @maintenance_target_component.setter
4538
+ def maintenance_target_component(self, value: Optional[pulumi.Input[str]]):
4539
+ pulumi.set(self, "maintenance_target_component", value)
4540
+
4064
4541
  @property
4065
4542
  @pulumi.getter
4066
4543
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -4097,6 +4574,30 @@ class AutonomousDatabaseStandbyDbArgs:
4097
4574
  def time_disaster_recovery_role_changed(self, value: Optional[pulumi.Input[str]]):
4098
4575
  pulumi.set(self, "time_disaster_recovery_role_changed", value)
4099
4576
 
4577
+ @property
4578
+ @pulumi.getter(name="timeMaintenanceBegin")
4579
+ def time_maintenance_begin(self) -> Optional[pulumi.Input[str]]:
4580
+ """
4581
+ The date and time when maintenance will begin.
4582
+ """
4583
+ return pulumi.get(self, "time_maintenance_begin")
4584
+
4585
+ @time_maintenance_begin.setter
4586
+ def time_maintenance_begin(self, value: Optional[pulumi.Input[str]]):
4587
+ pulumi.set(self, "time_maintenance_begin", value)
4588
+
4589
+ @property
4590
+ @pulumi.getter(name="timeMaintenanceEnd")
4591
+ def time_maintenance_end(self) -> Optional[pulumi.Input[str]]:
4592
+ """
4593
+ The date and time when maintenance will end.
4594
+ """
4595
+ return pulumi.get(self, "time_maintenance_end")
4596
+
4597
+ @time_maintenance_end.setter
4598
+ def time_maintenance_end(self, value: Optional[pulumi.Input[str]]):
4599
+ pulumi.set(self, "time_maintenance_end", value)
4600
+
4100
4601
 
4101
4602
  if not MYPY:
4102
4603
  class AutonomousExadataInfrastructureMaintenanceWindowArgsDict(TypedDict):
@@ -13166,106 +13667,109 @@ class ExadataInfrastructureComputeMaintenanceWindowMonthArgs:
13166
13667
 
13167
13668
 
13168
13669
  if not MYPY:
13169
- class ExadataInfrastructureContactArgsDict(TypedDict):
13170
- email: pulumi.Input[str]
13670
+ class ExadataInfrastructureConfigureExascaleManagementContactArgsDict(TypedDict):
13671
+ email: NotRequired[pulumi.Input[str]]
13171
13672
  """
13172
- (Updatable) The email for the Exadata Infrastructure contact.
13673
+ The email for the Exadata Infrastructure contact.
13173
13674
  """
13174
- is_primary: pulumi.Input[bool]
13675
+ is_contact_mos_validated: NotRequired[pulumi.Input[bool]]
13175
13676
  """
13176
- (Updatable) If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
13677
+ If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
13177
13678
  """
13178
- name: pulumi.Input[str]
13679
+ is_primary: NotRequired[pulumi.Input[bool]]
13179
13680
  """
13180
- (Updatable) The name of the Exadata Infrastructure contact.
13681
+ If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
13181
13682
  """
13182
- is_contact_mos_validated: NotRequired[pulumi.Input[bool]]
13683
+ name: NotRequired[pulumi.Input[str]]
13183
13684
  """
13184
- (Updatable) If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
13685
+ Name of the month of the year.
13185
13686
  """
13186
13687
  phone_number: NotRequired[pulumi.Input[str]]
13187
13688
  """
13188
- (Updatable) The phone number for the Exadata Infrastructure contact.
13689
+ The phone number for the Exadata Infrastructure contact.
13189
13690
  """
13190
13691
  elif False:
13191
- ExadataInfrastructureContactArgsDict: TypeAlias = Mapping[str, Any]
13692
+ ExadataInfrastructureConfigureExascaleManagementContactArgsDict: TypeAlias = Mapping[str, Any]
13192
13693
 
13193
13694
  @pulumi.input_type
13194
- class ExadataInfrastructureContactArgs:
13695
+ class ExadataInfrastructureConfigureExascaleManagementContactArgs:
13195
13696
  def __init__(__self__, *,
13196
- email: pulumi.Input[str],
13197
- is_primary: pulumi.Input[bool],
13198
- name: pulumi.Input[str],
13697
+ email: Optional[pulumi.Input[str]] = None,
13199
13698
  is_contact_mos_validated: Optional[pulumi.Input[bool]] = None,
13699
+ is_primary: Optional[pulumi.Input[bool]] = None,
13700
+ name: Optional[pulumi.Input[str]] = None,
13200
13701
  phone_number: Optional[pulumi.Input[str]] = None):
13201
13702
  """
13202
- :param pulumi.Input[str] email: (Updatable) The email for the Exadata Infrastructure contact.
13203
- :param pulumi.Input[bool] is_primary: (Updatable) If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
13204
- :param pulumi.Input[str] name: (Updatable) The name of the Exadata Infrastructure contact.
13205
- :param pulumi.Input[bool] is_contact_mos_validated: (Updatable) If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
13206
- :param pulumi.Input[str] phone_number: (Updatable) The phone number for the Exadata Infrastructure contact.
13703
+ :param pulumi.Input[str] email: The email for the Exadata Infrastructure contact.
13704
+ :param pulumi.Input[bool] is_contact_mos_validated: If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
13705
+ :param pulumi.Input[bool] is_primary: If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
13706
+ :param pulumi.Input[str] name: Name of the month of the year.
13707
+ :param pulumi.Input[str] phone_number: The phone number for the Exadata Infrastructure contact.
13207
13708
  """
13208
- pulumi.set(__self__, "email", email)
13209
- pulumi.set(__self__, "is_primary", is_primary)
13210
- pulumi.set(__self__, "name", name)
13709
+ if email is not None:
13710
+ pulumi.set(__self__, "email", email)
13211
13711
  if is_contact_mos_validated is not None:
13212
13712
  pulumi.set(__self__, "is_contact_mos_validated", is_contact_mos_validated)
13713
+ if is_primary is not None:
13714
+ pulumi.set(__self__, "is_primary", is_primary)
13715
+ if name is not None:
13716
+ pulumi.set(__self__, "name", name)
13213
13717
  if phone_number is not None:
13214
13718
  pulumi.set(__self__, "phone_number", phone_number)
13215
13719
 
13216
13720
  @property
13217
13721
  @pulumi.getter
13218
- def email(self) -> pulumi.Input[str]:
13722
+ def email(self) -> Optional[pulumi.Input[str]]:
13219
13723
  """
13220
- (Updatable) The email for the Exadata Infrastructure contact.
13724
+ The email for the Exadata Infrastructure contact.
13221
13725
  """
13222
13726
  return pulumi.get(self, "email")
13223
13727
 
13224
13728
  @email.setter
13225
- def email(self, value: pulumi.Input[str]):
13729
+ def email(self, value: Optional[pulumi.Input[str]]):
13226
13730
  pulumi.set(self, "email", value)
13227
13731
 
13732
+ @property
13733
+ @pulumi.getter(name="isContactMosValidated")
13734
+ def is_contact_mos_validated(self) -> Optional[pulumi.Input[bool]]:
13735
+ """
13736
+ If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
13737
+ """
13738
+ return pulumi.get(self, "is_contact_mos_validated")
13739
+
13740
+ @is_contact_mos_validated.setter
13741
+ def is_contact_mos_validated(self, value: Optional[pulumi.Input[bool]]):
13742
+ pulumi.set(self, "is_contact_mos_validated", value)
13743
+
13228
13744
  @property
13229
13745
  @pulumi.getter(name="isPrimary")
13230
- def is_primary(self) -> pulumi.Input[bool]:
13746
+ def is_primary(self) -> Optional[pulumi.Input[bool]]:
13231
13747
  """
13232
- (Updatable) If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
13748
+ If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
13233
13749
  """
13234
13750
  return pulumi.get(self, "is_primary")
13235
13751
 
13236
13752
  @is_primary.setter
13237
- def is_primary(self, value: pulumi.Input[bool]):
13753
+ def is_primary(self, value: Optional[pulumi.Input[bool]]):
13238
13754
  pulumi.set(self, "is_primary", value)
13239
13755
 
13240
13756
  @property
13241
13757
  @pulumi.getter
13242
- def name(self) -> pulumi.Input[str]:
13758
+ def name(self) -> Optional[pulumi.Input[str]]:
13243
13759
  """
13244
- (Updatable) The name of the Exadata Infrastructure contact.
13760
+ Name of the month of the year.
13245
13761
  """
13246
13762
  return pulumi.get(self, "name")
13247
13763
 
13248
13764
  @name.setter
13249
- def name(self, value: pulumi.Input[str]):
13765
+ def name(self, value: Optional[pulumi.Input[str]]):
13250
13766
  pulumi.set(self, "name", value)
13251
13767
 
13252
- @property
13253
- @pulumi.getter(name="isContactMosValidated")
13254
- def is_contact_mos_validated(self) -> Optional[pulumi.Input[bool]]:
13255
- """
13256
- (Updatable) If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
13257
- """
13258
- return pulumi.get(self, "is_contact_mos_validated")
13259
-
13260
- @is_contact_mos_validated.setter
13261
- def is_contact_mos_validated(self, value: Optional[pulumi.Input[bool]]):
13262
- pulumi.set(self, "is_contact_mos_validated", value)
13263
-
13264
13768
  @property
13265
13769
  @pulumi.getter(name="phoneNumber")
13266
13770
  def phone_number(self) -> Optional[pulumi.Input[str]]:
13267
13771
  """
13268
- (Updatable) The phone number for the Exadata Infrastructure contact.
13772
+ The phone number for the Exadata Infrastructure contact.
13269
13773
  """
13270
13774
  return pulumi.get(self, "phone_number")
13271
13775
 
@@ -13275,7 +13779,7 @@ class ExadataInfrastructureContactArgs:
13275
13779
 
13276
13780
 
13277
13781
  if not MYPY:
13278
- class ExadataInfrastructureDefinedFileSystemConfigurationArgsDict(TypedDict):
13782
+ class ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgsDict(TypedDict):
13279
13783
  is_backup_partition: NotRequired[pulumi.Input[bool]]
13280
13784
  """
13281
13785
  If true, the file system is used to create a backup prior to Exadata VM OS update.
@@ -13293,10 +13797,10 @@ if not MYPY:
13293
13797
  The mount point of file system.
13294
13798
  """
13295
13799
  elif False:
13296
- ExadataInfrastructureDefinedFileSystemConfigurationArgsDict: TypeAlias = Mapping[str, Any]
13800
+ ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgsDict: TypeAlias = Mapping[str, Any]
13297
13801
 
13298
13802
  @pulumi.input_type
13299
- class ExadataInfrastructureDefinedFileSystemConfigurationArgs:
13803
+ class ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs:
13300
13804
  def __init__(__self__, *,
13301
13805
  is_backup_partition: Optional[pulumi.Input[bool]] = None,
13302
13806
  is_resizable: Optional[pulumi.Input[bool]] = None,
@@ -13366,6 +13870,691 @@ class ExadataInfrastructureDefinedFileSystemConfigurationArgs:
13366
13870
  pulumi.set(self, "mount_point", value)
13367
13871
 
13368
13872
 
13873
+ if not MYPY:
13874
+ class ExadataInfrastructureConfigureExascaleManagementExascaleConfigArgsDict(TypedDict):
13875
+ available_storage_in_gbs: NotRequired[pulumi.Input[int]]
13876
+ """
13877
+ Available storage size for Exascale in GBs.
13878
+ """
13879
+ total_storage_in_gbs: NotRequired[pulumi.Input[int]]
13880
+ """
13881
+ Storage size needed for Exascale in GBs.
13882
+
13883
+
13884
+ ** IMPORTANT **
13885
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
13886
+ """
13887
+ elif False:
13888
+ ExadataInfrastructureConfigureExascaleManagementExascaleConfigArgsDict: TypeAlias = Mapping[str, Any]
13889
+
13890
+ @pulumi.input_type
13891
+ class ExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs:
13892
+ def __init__(__self__, *,
13893
+ available_storage_in_gbs: Optional[pulumi.Input[int]] = None,
13894
+ total_storage_in_gbs: Optional[pulumi.Input[int]] = None):
13895
+ """
13896
+ :param pulumi.Input[int] available_storage_in_gbs: Available storage size for Exascale in GBs.
13897
+ :param pulumi.Input[int] total_storage_in_gbs: Storage size needed for Exascale in GBs.
13898
+
13899
+
13900
+ ** IMPORTANT **
13901
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
13902
+ """
13903
+ if available_storage_in_gbs is not None:
13904
+ pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
13905
+ if total_storage_in_gbs is not None:
13906
+ pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
13907
+
13908
+ @property
13909
+ @pulumi.getter(name="availableStorageInGbs")
13910
+ def available_storage_in_gbs(self) -> Optional[pulumi.Input[int]]:
13911
+ """
13912
+ Available storage size for Exascale in GBs.
13913
+ """
13914
+ return pulumi.get(self, "available_storage_in_gbs")
13915
+
13916
+ @available_storage_in_gbs.setter
13917
+ def available_storage_in_gbs(self, value: Optional[pulumi.Input[int]]):
13918
+ pulumi.set(self, "available_storage_in_gbs", value)
13919
+
13920
+ @property
13921
+ @pulumi.getter(name="totalStorageInGbs")
13922
+ def total_storage_in_gbs(self) -> Optional[pulumi.Input[int]]:
13923
+ """
13924
+ Storage size needed for Exascale in GBs.
13925
+
13926
+
13927
+ ** IMPORTANT **
13928
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
13929
+ """
13930
+ return pulumi.get(self, "total_storage_in_gbs")
13931
+
13932
+ @total_storage_in_gbs.setter
13933
+ def total_storage_in_gbs(self, value: Optional[pulumi.Input[int]]):
13934
+ pulumi.set(self, "total_storage_in_gbs", value)
13935
+
13936
+
13937
+ if not MYPY:
13938
+ class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgsDict(TypedDict):
13939
+ custom_action_timeout_in_mins: NotRequired[pulumi.Input[int]]
13940
+ """
13941
+ Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
13942
+ """
13943
+ days_of_weeks: NotRequired[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgsDict']]]]
13944
+ """
13945
+ Days during the week when maintenance should be performed.
13946
+ """
13947
+ hours_of_days: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
13948
+ """
13949
+ The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
13950
+ """
13951
+ is_custom_action_timeout_enabled: NotRequired[pulumi.Input[bool]]
13952
+ """
13953
+ If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
13954
+ """
13955
+ is_monthly_patching_enabled: NotRequired[pulumi.Input[bool]]
13956
+ """
13957
+ If true, enables the monthly patching option.
13958
+ """
13959
+ lead_time_in_weeks: NotRequired[pulumi.Input[int]]
13960
+ """
13961
+ Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
13962
+ """
13963
+ months: NotRequired[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgsDict']]]]
13964
+ """
13965
+ Months during the year when maintenance should be performed.
13966
+ """
13967
+ patching_mode: NotRequired[pulumi.Input[str]]
13968
+ """
13969
+ Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
13970
+ """
13971
+ preference: NotRequired[pulumi.Input[str]]
13972
+ """
13973
+ The maintenance window scheduling preference.
13974
+ """
13975
+ skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
13976
+ """
13977
+ If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
13978
+ """
13979
+ weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
13980
+ """
13981
+ Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
13982
+ """
13983
+ elif False:
13984
+ ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgsDict: TypeAlias = Mapping[str, Any]
13985
+
13986
+ @pulumi.input_type
13987
+ class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs:
13988
+ def __init__(__self__, *,
13989
+ custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
13990
+ days_of_weeks: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs']]]] = None,
13991
+ hours_of_days: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
13992
+ is_custom_action_timeout_enabled: Optional[pulumi.Input[bool]] = None,
13993
+ is_monthly_patching_enabled: Optional[pulumi.Input[bool]] = None,
13994
+ lead_time_in_weeks: Optional[pulumi.Input[int]] = None,
13995
+ months: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs']]]] = None,
13996
+ patching_mode: Optional[pulumi.Input[str]] = None,
13997
+ preference: Optional[pulumi.Input[str]] = None,
13998
+ skip_rus: Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]] = None,
13999
+ weeks_of_months: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None):
14000
+ """
14001
+ :param pulumi.Input[int] custom_action_timeout_in_mins: Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
14002
+ :param pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs']]] days_of_weeks: Days during the week when maintenance should be performed.
14003
+ :param pulumi.Input[Sequence[pulumi.Input[int]]] hours_of_days: The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
14004
+ :param pulumi.Input[bool] is_custom_action_timeout_enabled: If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
14005
+ :param pulumi.Input[bool] is_monthly_patching_enabled: If true, enables the monthly patching option.
14006
+ :param pulumi.Input[int] lead_time_in_weeks: Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
14007
+ :param pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs']]] months: Months during the year when maintenance should be performed.
14008
+ :param pulumi.Input[str] patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
14009
+ :param pulumi.Input[str] preference: The maintenance window scheduling preference.
14010
+ :param pulumi.Input[Sequence[pulumi.Input[bool]]] skip_rus: If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
14011
+ :param pulumi.Input[Sequence[pulumi.Input[int]]] weeks_of_months: Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
14012
+ """
14013
+ if custom_action_timeout_in_mins is not None:
14014
+ pulumi.set(__self__, "custom_action_timeout_in_mins", custom_action_timeout_in_mins)
14015
+ if days_of_weeks is not None:
14016
+ pulumi.set(__self__, "days_of_weeks", days_of_weeks)
14017
+ if hours_of_days is not None:
14018
+ pulumi.set(__self__, "hours_of_days", hours_of_days)
14019
+ if is_custom_action_timeout_enabled is not None:
14020
+ pulumi.set(__self__, "is_custom_action_timeout_enabled", is_custom_action_timeout_enabled)
14021
+ if is_monthly_patching_enabled is not None:
14022
+ pulumi.set(__self__, "is_monthly_patching_enabled", is_monthly_patching_enabled)
14023
+ if lead_time_in_weeks is not None:
14024
+ pulumi.set(__self__, "lead_time_in_weeks", lead_time_in_weeks)
14025
+ if months is not None:
14026
+ pulumi.set(__self__, "months", months)
14027
+ if patching_mode is not None:
14028
+ pulumi.set(__self__, "patching_mode", patching_mode)
14029
+ if preference is not None:
14030
+ pulumi.set(__self__, "preference", preference)
14031
+ if skip_rus is not None:
14032
+ pulumi.set(__self__, "skip_rus", skip_rus)
14033
+ if weeks_of_months is not None:
14034
+ pulumi.set(__self__, "weeks_of_months", weeks_of_months)
14035
+
14036
+ @property
14037
+ @pulumi.getter(name="customActionTimeoutInMins")
14038
+ def custom_action_timeout_in_mins(self) -> Optional[pulumi.Input[int]]:
14039
+ """
14040
+ Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
14041
+ """
14042
+ return pulumi.get(self, "custom_action_timeout_in_mins")
14043
+
14044
+ @custom_action_timeout_in_mins.setter
14045
+ def custom_action_timeout_in_mins(self, value: Optional[pulumi.Input[int]]):
14046
+ pulumi.set(self, "custom_action_timeout_in_mins", value)
14047
+
14048
+ @property
14049
+ @pulumi.getter(name="daysOfWeeks")
14050
+ def days_of_weeks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs']]]]:
14051
+ """
14052
+ Days during the week when maintenance should be performed.
14053
+ """
14054
+ return pulumi.get(self, "days_of_weeks")
14055
+
14056
+ @days_of_weeks.setter
14057
+ def days_of_weeks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs']]]]):
14058
+ pulumi.set(self, "days_of_weeks", value)
14059
+
14060
+ @property
14061
+ @pulumi.getter(name="hoursOfDays")
14062
+ def hours_of_days(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]:
14063
+ """
14064
+ The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
14065
+ """
14066
+ return pulumi.get(self, "hours_of_days")
14067
+
14068
+ @hours_of_days.setter
14069
+ def hours_of_days(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]):
14070
+ pulumi.set(self, "hours_of_days", value)
14071
+
14072
+ @property
14073
+ @pulumi.getter(name="isCustomActionTimeoutEnabled")
14074
+ def is_custom_action_timeout_enabled(self) -> Optional[pulumi.Input[bool]]:
14075
+ """
14076
+ If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
14077
+ """
14078
+ return pulumi.get(self, "is_custom_action_timeout_enabled")
14079
+
14080
+ @is_custom_action_timeout_enabled.setter
14081
+ def is_custom_action_timeout_enabled(self, value: Optional[pulumi.Input[bool]]):
14082
+ pulumi.set(self, "is_custom_action_timeout_enabled", value)
14083
+
14084
+ @property
14085
+ @pulumi.getter(name="isMonthlyPatchingEnabled")
14086
+ def is_monthly_patching_enabled(self) -> Optional[pulumi.Input[bool]]:
14087
+ """
14088
+ If true, enables the monthly patching option.
14089
+ """
14090
+ return pulumi.get(self, "is_monthly_patching_enabled")
14091
+
14092
+ @is_monthly_patching_enabled.setter
14093
+ def is_monthly_patching_enabled(self, value: Optional[pulumi.Input[bool]]):
14094
+ pulumi.set(self, "is_monthly_patching_enabled", value)
14095
+
14096
+ @property
14097
+ @pulumi.getter(name="leadTimeInWeeks")
14098
+ def lead_time_in_weeks(self) -> Optional[pulumi.Input[int]]:
14099
+ """
14100
+ Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
14101
+ """
14102
+ return pulumi.get(self, "lead_time_in_weeks")
14103
+
14104
+ @lead_time_in_weeks.setter
14105
+ def lead_time_in_weeks(self, value: Optional[pulumi.Input[int]]):
14106
+ pulumi.set(self, "lead_time_in_weeks", value)
14107
+
14108
+ @property
14109
+ @pulumi.getter
14110
+ def months(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs']]]]:
14111
+ """
14112
+ Months during the year when maintenance should be performed.
14113
+ """
14114
+ return pulumi.get(self, "months")
14115
+
14116
+ @months.setter
14117
+ def months(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs']]]]):
14118
+ pulumi.set(self, "months", value)
14119
+
14120
+ @property
14121
+ @pulumi.getter(name="patchingMode")
14122
+ def patching_mode(self) -> Optional[pulumi.Input[str]]:
14123
+ """
14124
+ Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
14125
+ """
14126
+ return pulumi.get(self, "patching_mode")
14127
+
14128
+ @patching_mode.setter
14129
+ def patching_mode(self, value: Optional[pulumi.Input[str]]):
14130
+ pulumi.set(self, "patching_mode", value)
14131
+
14132
+ @property
14133
+ @pulumi.getter
14134
+ def preference(self) -> Optional[pulumi.Input[str]]:
14135
+ """
14136
+ The maintenance window scheduling preference.
14137
+ """
14138
+ return pulumi.get(self, "preference")
14139
+
14140
+ @preference.setter
14141
+ def preference(self, value: Optional[pulumi.Input[str]]):
14142
+ pulumi.set(self, "preference", value)
14143
+
14144
+ @property
14145
+ @pulumi.getter(name="skipRus")
14146
+ def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
14147
+ """
14148
+ If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
14149
+ """
14150
+ return pulumi.get(self, "skip_rus")
14151
+
14152
+ @skip_rus.setter
14153
+ def skip_rus(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]):
14154
+ pulumi.set(self, "skip_rus", value)
14155
+
14156
+ @property
14157
+ @pulumi.getter(name="weeksOfMonths")
14158
+ def weeks_of_months(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]:
14159
+ """
14160
+ Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
14161
+ """
14162
+ return pulumi.get(self, "weeks_of_months")
14163
+
14164
+ @weeks_of_months.setter
14165
+ def weeks_of_months(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]):
14166
+ pulumi.set(self, "weeks_of_months", value)
14167
+
14168
+
14169
+ if not MYPY:
14170
+ class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgsDict(TypedDict):
14171
+ name: NotRequired[pulumi.Input[str]]
14172
+ """
14173
+ Name of the month of the year.
14174
+ """
14175
+ elif False:
14176
+ ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgsDict: TypeAlias = Mapping[str, Any]
14177
+
14178
+ @pulumi.input_type
14179
+ class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs:
14180
+ def __init__(__self__, *,
14181
+ name: Optional[pulumi.Input[str]] = None):
14182
+ """
14183
+ :param pulumi.Input[str] name: Name of the month of the year.
14184
+ """
14185
+ if name is not None:
14186
+ pulumi.set(__self__, "name", name)
14187
+
14188
+ @property
14189
+ @pulumi.getter
14190
+ def name(self) -> Optional[pulumi.Input[str]]:
14191
+ """
14192
+ Name of the month of the year.
14193
+ """
14194
+ return pulumi.get(self, "name")
14195
+
14196
+ @name.setter
14197
+ def name(self, value: Optional[pulumi.Input[str]]):
14198
+ pulumi.set(self, "name", value)
14199
+
14200
+
14201
+ if not MYPY:
14202
+ class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgsDict(TypedDict):
14203
+ name: NotRequired[pulumi.Input[str]]
14204
+ """
14205
+ Name of the month of the year.
14206
+ """
14207
+ elif False:
14208
+ ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgsDict: TypeAlias = Mapping[str, Any]
14209
+
14210
+ @pulumi.input_type
14211
+ class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs:
14212
+ def __init__(__self__, *,
14213
+ name: Optional[pulumi.Input[str]] = None):
14214
+ """
14215
+ :param pulumi.Input[str] name: Name of the month of the year.
14216
+ """
14217
+ if name is not None:
14218
+ pulumi.set(__self__, "name", name)
14219
+
14220
+ @property
14221
+ @pulumi.getter
14222
+ def name(self) -> Optional[pulumi.Input[str]]:
14223
+ """
14224
+ Name of the month of the year.
14225
+ """
14226
+ return pulumi.get(self, "name")
14227
+
14228
+ @name.setter
14229
+ def name(self, value: Optional[pulumi.Input[str]]):
14230
+ pulumi.set(self, "name", value)
14231
+
14232
+
14233
+ if not MYPY:
14234
+ class ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetailArgsDict(TypedDict):
14235
+ backup_network_bonding_mode: NotRequired[pulumi.Input[str]]
14236
+ """
14237
+ The network bonding mode for the Exadata infrastructure.
14238
+ """
14239
+ client_network_bonding_mode: NotRequired[pulumi.Input[str]]
14240
+ """
14241
+ The network bonding mode for the Exadata infrastructure.
14242
+ """
14243
+ dr_network_bonding_mode: NotRequired[pulumi.Input[str]]
14244
+ """
14245
+ The network bonding mode for the Exadata infrastructure.
14246
+ """
14247
+ elif False:
14248
+ ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetailArgsDict: TypeAlias = Mapping[str, Any]
14249
+
14250
+ @pulumi.input_type
14251
+ class ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetailArgs:
14252
+ def __init__(__self__, *,
14253
+ backup_network_bonding_mode: Optional[pulumi.Input[str]] = None,
14254
+ client_network_bonding_mode: Optional[pulumi.Input[str]] = None,
14255
+ dr_network_bonding_mode: Optional[pulumi.Input[str]] = None):
14256
+ """
14257
+ :param pulumi.Input[str] backup_network_bonding_mode: The network bonding mode for the Exadata infrastructure.
14258
+ :param pulumi.Input[str] client_network_bonding_mode: The network bonding mode for the Exadata infrastructure.
14259
+ :param pulumi.Input[str] dr_network_bonding_mode: The network bonding mode for the Exadata infrastructure.
14260
+ """
14261
+ if backup_network_bonding_mode is not None:
14262
+ pulumi.set(__self__, "backup_network_bonding_mode", backup_network_bonding_mode)
14263
+ if client_network_bonding_mode is not None:
14264
+ pulumi.set(__self__, "client_network_bonding_mode", client_network_bonding_mode)
14265
+ if dr_network_bonding_mode is not None:
14266
+ pulumi.set(__self__, "dr_network_bonding_mode", dr_network_bonding_mode)
14267
+
14268
+ @property
14269
+ @pulumi.getter(name="backupNetworkBondingMode")
14270
+ def backup_network_bonding_mode(self) -> Optional[pulumi.Input[str]]:
14271
+ """
14272
+ The network bonding mode for the Exadata infrastructure.
14273
+ """
14274
+ return pulumi.get(self, "backup_network_bonding_mode")
14275
+
14276
+ @backup_network_bonding_mode.setter
14277
+ def backup_network_bonding_mode(self, value: Optional[pulumi.Input[str]]):
14278
+ pulumi.set(self, "backup_network_bonding_mode", value)
14279
+
14280
+ @property
14281
+ @pulumi.getter(name="clientNetworkBondingMode")
14282
+ def client_network_bonding_mode(self) -> Optional[pulumi.Input[str]]:
14283
+ """
14284
+ The network bonding mode for the Exadata infrastructure.
14285
+ """
14286
+ return pulumi.get(self, "client_network_bonding_mode")
14287
+
14288
+ @client_network_bonding_mode.setter
14289
+ def client_network_bonding_mode(self, value: Optional[pulumi.Input[str]]):
14290
+ pulumi.set(self, "client_network_bonding_mode", value)
14291
+
14292
+ @property
14293
+ @pulumi.getter(name="drNetworkBondingMode")
14294
+ def dr_network_bonding_mode(self) -> Optional[pulumi.Input[str]]:
14295
+ """
14296
+ The network bonding mode for the Exadata infrastructure.
14297
+ """
14298
+ return pulumi.get(self, "dr_network_bonding_mode")
14299
+
14300
+ @dr_network_bonding_mode.setter
14301
+ def dr_network_bonding_mode(self, value: Optional[pulumi.Input[str]]):
14302
+ pulumi.set(self, "dr_network_bonding_mode", value)
14303
+
14304
+
14305
+ if not MYPY:
14306
+ class ExadataInfrastructureContactArgsDict(TypedDict):
14307
+ email: pulumi.Input[str]
14308
+ """
14309
+ (Updatable) The email for the Exadata Infrastructure contact.
14310
+ """
14311
+ is_primary: pulumi.Input[bool]
14312
+ """
14313
+ (Updatable) If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
14314
+ """
14315
+ name: pulumi.Input[str]
14316
+ """
14317
+ (Updatable) The name of the Exadata Infrastructure contact.
14318
+ """
14319
+ is_contact_mos_validated: NotRequired[pulumi.Input[bool]]
14320
+ """
14321
+ (Updatable) If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
14322
+ """
14323
+ phone_number: NotRequired[pulumi.Input[str]]
14324
+ """
14325
+ (Updatable) The phone number for the Exadata Infrastructure contact.
14326
+ """
14327
+ elif False:
14328
+ ExadataInfrastructureContactArgsDict: TypeAlias = Mapping[str, Any]
14329
+
14330
+ @pulumi.input_type
14331
+ class ExadataInfrastructureContactArgs:
14332
+ def __init__(__self__, *,
14333
+ email: pulumi.Input[str],
14334
+ is_primary: pulumi.Input[bool],
14335
+ name: pulumi.Input[str],
14336
+ is_contact_mos_validated: Optional[pulumi.Input[bool]] = None,
14337
+ phone_number: Optional[pulumi.Input[str]] = None):
14338
+ """
14339
+ :param pulumi.Input[str] email: (Updatable) The email for the Exadata Infrastructure contact.
14340
+ :param pulumi.Input[bool] is_primary: (Updatable) If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
14341
+ :param pulumi.Input[str] name: (Updatable) The name of the Exadata Infrastructure contact.
14342
+ :param pulumi.Input[bool] is_contact_mos_validated: (Updatable) If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
14343
+ :param pulumi.Input[str] phone_number: (Updatable) The phone number for the Exadata Infrastructure contact.
14344
+ """
14345
+ pulumi.set(__self__, "email", email)
14346
+ pulumi.set(__self__, "is_primary", is_primary)
14347
+ pulumi.set(__self__, "name", name)
14348
+ if is_contact_mos_validated is not None:
14349
+ pulumi.set(__self__, "is_contact_mos_validated", is_contact_mos_validated)
14350
+ if phone_number is not None:
14351
+ pulumi.set(__self__, "phone_number", phone_number)
14352
+
14353
+ @property
14354
+ @pulumi.getter
14355
+ def email(self) -> pulumi.Input[str]:
14356
+ """
14357
+ (Updatable) The email for the Exadata Infrastructure contact.
14358
+ """
14359
+ return pulumi.get(self, "email")
14360
+
14361
+ @email.setter
14362
+ def email(self, value: pulumi.Input[str]):
14363
+ pulumi.set(self, "email", value)
14364
+
14365
+ @property
14366
+ @pulumi.getter(name="isPrimary")
14367
+ def is_primary(self) -> pulumi.Input[bool]:
14368
+ """
14369
+ (Updatable) If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
14370
+ """
14371
+ return pulumi.get(self, "is_primary")
14372
+
14373
+ @is_primary.setter
14374
+ def is_primary(self, value: pulumi.Input[bool]):
14375
+ pulumi.set(self, "is_primary", value)
14376
+
14377
+ @property
14378
+ @pulumi.getter
14379
+ def name(self) -> pulumi.Input[str]:
14380
+ """
14381
+ (Updatable) The name of the Exadata Infrastructure contact.
14382
+ """
14383
+ return pulumi.get(self, "name")
14384
+
14385
+ @name.setter
14386
+ def name(self, value: pulumi.Input[str]):
14387
+ pulumi.set(self, "name", value)
14388
+
14389
+ @property
14390
+ @pulumi.getter(name="isContactMosValidated")
14391
+ def is_contact_mos_validated(self) -> Optional[pulumi.Input[bool]]:
14392
+ """
14393
+ (Updatable) If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
14394
+ """
14395
+ return pulumi.get(self, "is_contact_mos_validated")
14396
+
14397
+ @is_contact_mos_validated.setter
14398
+ def is_contact_mos_validated(self, value: Optional[pulumi.Input[bool]]):
14399
+ pulumi.set(self, "is_contact_mos_validated", value)
14400
+
14401
+ @property
14402
+ @pulumi.getter(name="phoneNumber")
14403
+ def phone_number(self) -> Optional[pulumi.Input[str]]:
14404
+ """
14405
+ (Updatable) The phone number for the Exadata Infrastructure contact.
14406
+ """
14407
+ return pulumi.get(self, "phone_number")
14408
+
14409
+ @phone_number.setter
14410
+ def phone_number(self, value: Optional[pulumi.Input[str]]):
14411
+ pulumi.set(self, "phone_number", value)
14412
+
14413
+
14414
+ if not MYPY:
14415
+ class ExadataInfrastructureDefinedFileSystemConfigurationArgsDict(TypedDict):
14416
+ is_backup_partition: NotRequired[pulumi.Input[bool]]
14417
+ """
14418
+ If true, the file system is used to create a backup prior to Exadata VM OS update.
14419
+ """
14420
+ is_resizable: NotRequired[pulumi.Input[bool]]
14421
+ """
14422
+ If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
14423
+ """
14424
+ min_size_gb: NotRequired[pulumi.Input[int]]
14425
+ """
14426
+ The minimum size of file system.
14427
+ """
14428
+ mount_point: NotRequired[pulumi.Input[str]]
14429
+ """
14430
+ The mount point of file system.
14431
+ """
14432
+ elif False:
14433
+ ExadataInfrastructureDefinedFileSystemConfigurationArgsDict: TypeAlias = Mapping[str, Any]
14434
+
14435
+ @pulumi.input_type
14436
+ class ExadataInfrastructureDefinedFileSystemConfigurationArgs:
14437
+ def __init__(__self__, *,
14438
+ is_backup_partition: Optional[pulumi.Input[bool]] = None,
14439
+ is_resizable: Optional[pulumi.Input[bool]] = None,
14440
+ min_size_gb: Optional[pulumi.Input[int]] = None,
14441
+ mount_point: Optional[pulumi.Input[str]] = None):
14442
+ """
14443
+ :param pulumi.Input[bool] is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
14444
+ :param pulumi.Input[bool] is_resizable: If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
14445
+ :param pulumi.Input[int] min_size_gb: The minimum size of file system.
14446
+ :param pulumi.Input[str] mount_point: The mount point of file system.
14447
+ """
14448
+ if is_backup_partition is not None:
14449
+ pulumi.set(__self__, "is_backup_partition", is_backup_partition)
14450
+ if is_resizable is not None:
14451
+ pulumi.set(__self__, "is_resizable", is_resizable)
14452
+ if min_size_gb is not None:
14453
+ pulumi.set(__self__, "min_size_gb", min_size_gb)
14454
+ if mount_point is not None:
14455
+ pulumi.set(__self__, "mount_point", mount_point)
14456
+
14457
+ @property
14458
+ @pulumi.getter(name="isBackupPartition")
14459
+ def is_backup_partition(self) -> Optional[pulumi.Input[bool]]:
14460
+ """
14461
+ If true, the file system is used to create a backup prior to Exadata VM OS update.
14462
+ """
14463
+ return pulumi.get(self, "is_backup_partition")
14464
+
14465
+ @is_backup_partition.setter
14466
+ def is_backup_partition(self, value: Optional[pulumi.Input[bool]]):
14467
+ pulumi.set(self, "is_backup_partition", value)
14468
+
14469
+ @property
14470
+ @pulumi.getter(name="isResizable")
14471
+ def is_resizable(self) -> Optional[pulumi.Input[bool]]:
14472
+ """
14473
+ If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
14474
+ """
14475
+ return pulumi.get(self, "is_resizable")
14476
+
14477
+ @is_resizable.setter
14478
+ def is_resizable(self, value: Optional[pulumi.Input[bool]]):
14479
+ pulumi.set(self, "is_resizable", value)
14480
+
14481
+ @property
14482
+ @pulumi.getter(name="minSizeGb")
14483
+ def min_size_gb(self) -> Optional[pulumi.Input[int]]:
14484
+ """
14485
+ The minimum size of file system.
14486
+ """
14487
+ return pulumi.get(self, "min_size_gb")
14488
+
14489
+ @min_size_gb.setter
14490
+ def min_size_gb(self, value: Optional[pulumi.Input[int]]):
14491
+ pulumi.set(self, "min_size_gb", value)
14492
+
14493
+ @property
14494
+ @pulumi.getter(name="mountPoint")
14495
+ def mount_point(self) -> Optional[pulumi.Input[str]]:
14496
+ """
14497
+ The mount point of file system.
14498
+ """
14499
+ return pulumi.get(self, "mount_point")
14500
+
14501
+ @mount_point.setter
14502
+ def mount_point(self, value: Optional[pulumi.Input[str]]):
14503
+ pulumi.set(self, "mount_point", value)
14504
+
14505
+
14506
+ if not MYPY:
14507
+ class ExadataInfrastructureExascaleConfigArgsDict(TypedDict):
14508
+ available_storage_in_gbs: NotRequired[pulumi.Input[int]]
14509
+ """
14510
+ Available storage size for Exascale in GBs.
14511
+ """
14512
+ total_storage_in_gbs: NotRequired[pulumi.Input[int]]
14513
+ """
14514
+ Storage size needed for Exascale in GBs.
14515
+ """
14516
+ elif False:
14517
+ ExadataInfrastructureExascaleConfigArgsDict: TypeAlias = Mapping[str, Any]
14518
+
14519
+ @pulumi.input_type
14520
+ class ExadataInfrastructureExascaleConfigArgs:
14521
+ def __init__(__self__, *,
14522
+ available_storage_in_gbs: Optional[pulumi.Input[int]] = None,
14523
+ total_storage_in_gbs: Optional[pulumi.Input[int]] = None):
14524
+ """
14525
+ :param pulumi.Input[int] available_storage_in_gbs: Available storage size for Exascale in GBs.
14526
+ :param pulumi.Input[int] total_storage_in_gbs: Storage size needed for Exascale in GBs.
14527
+ """
14528
+ if available_storage_in_gbs is not None:
14529
+ pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
14530
+ if total_storage_in_gbs is not None:
14531
+ pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
14532
+
14533
+ @property
14534
+ @pulumi.getter(name="availableStorageInGbs")
14535
+ def available_storage_in_gbs(self) -> Optional[pulumi.Input[int]]:
14536
+ """
14537
+ Available storage size for Exascale in GBs.
14538
+ """
14539
+ return pulumi.get(self, "available_storage_in_gbs")
14540
+
14541
+ @available_storage_in_gbs.setter
14542
+ def available_storage_in_gbs(self, value: Optional[pulumi.Input[int]]):
14543
+ pulumi.set(self, "available_storage_in_gbs", value)
14544
+
14545
+ @property
14546
+ @pulumi.getter(name="totalStorageInGbs")
14547
+ def total_storage_in_gbs(self) -> Optional[pulumi.Input[int]]:
14548
+ """
14549
+ Storage size needed for Exascale in GBs.
14550
+ """
14551
+ return pulumi.get(self, "total_storage_in_gbs")
14552
+
14553
+ @total_storage_in_gbs.setter
14554
+ def total_storage_in_gbs(self, value: Optional[pulumi.Input[int]]):
14555
+ pulumi.set(self, "total_storage_in_gbs", value)
14556
+
14557
+
13369
14558
  if not MYPY:
13370
14559
  class ExadataInfrastructureMaintenanceWindowArgsDict(TypedDict):
13371
14560
  custom_action_timeout_in_mins: NotRequired[pulumi.Input[int]]