pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.13.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 (220) hide show
  1. pulumi_oci/__init__.py +169 -19
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/containerengine/_inputs.py +341 -0
  6. pulumi_oci/containerengine/cluster.py +64 -0
  7. pulumi_oci/containerengine/get_cluster.py +12 -1
  8. pulumi_oci/containerengine/outputs.py +582 -0
  9. pulumi_oci/core/_inputs.py +947 -196
  10. pulumi_oci/core/boot_volume.py +90 -5
  11. pulumi_oci/core/cluster_network.py +7 -7
  12. pulumi_oci/core/get_block_volume_replica.py +15 -1
  13. pulumi_oci/core/get_boot_volume.py +15 -4
  14. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  15. pulumi_oci/core/get_instance.py +29 -1
  16. pulumi_oci/core/get_vcn.py +15 -1
  17. pulumi_oci/core/get_vnic.py +15 -1
  18. pulumi_oci/core/get_volume.py +18 -4
  19. pulumi_oci/core/instance.py +87 -0
  20. pulumi_oci/core/instance_configuration.py +16 -0
  21. pulumi_oci/core/ipsec.py +183 -23
  22. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  23. pulumi_oci/core/outputs.py +1282 -153
  24. pulumi_oci/core/service_gateway.py +13 -7
  25. pulumi_oci/core/vcn.py +65 -23
  26. pulumi_oci/core/virtual_network.py +35 -1
  27. pulumi_oci/core/vnic_attachment.py +2 -0
  28. pulumi_oci/core/volume.py +110 -12
  29. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  30. pulumi_oci/core/volume_group.py +56 -5
  31. pulumi_oci/database/_inputs.py +905 -27
  32. pulumi_oci/database/autonomous_database.py +48 -28
  33. pulumi_oci/database/autonomous_database_backup.py +12 -12
  34. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  35. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  36. pulumi_oci/database/backup.py +12 -12
  37. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  38. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  39. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  40. pulumi_oci/database/database.py +15 -15
  41. pulumi_oci/database/database_upgrade.py +12 -12
  42. pulumi_oci/database/db_system.py +9 -9
  43. pulumi_oci/database/exadata_infrastructure.py +2 -0
  44. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  45. pulumi_oci/database/get_autonomous_database.py +18 -4
  46. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  47. pulumi_oci/database/get_autonomous_databases.py +88 -5
  48. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  49. pulumi_oci/database/get_database.py +3 -3
  50. pulumi_oci/database/get_pluggable_database.py +12 -1
  51. pulumi_oci/database/get_vm_cluster.py +15 -1
  52. pulumi_oci/database/outputs.py +1431 -74
  53. pulumi_oci/database/pluggable_database.py +34 -0
  54. pulumi_oci/database/vm_cluster.py +71 -0
  55. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  56. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  57. pulumi_oci/datasafe/__init__.py +13 -0
  58. pulumi_oci/datasafe/_inputs.py +441 -0
  59. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  60. pulumi_oci/datasafe/get_reports.py +23 -1
  61. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  62. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  63. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  64. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  65. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  66. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  67. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  68. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  69. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  70. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  71. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  72. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  73. pulumi_oci/datasafe/outputs.py +1808 -2
  74. pulumi_oci/desktops/_inputs.py +395 -17
  75. pulumi_oci/desktops/desktop_pool.py +253 -21
  76. pulumi_oci/desktops/get_desktop_pool.py +62 -5
  77. pulumi_oci/desktops/outputs.py +807 -25
  78. pulumi_oci/dns/__init__.py +2 -0
  79. pulumi_oci/dns/_inputs.py +1157 -12
  80. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  81. pulumi_oci/dns/get_records.py +45 -13
  82. pulumi_oci/dns/get_resolver.py +8 -6
  83. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  84. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  85. pulumi_oci/dns/get_resolvers.py +12 -12
  86. pulumi_oci/dns/get_rrset.py +16 -16
  87. pulumi_oci/dns/get_rrsets.py +12 -10
  88. pulumi_oci/dns/get_view.py +8 -4
  89. pulumi_oci/dns/get_views.py +12 -12
  90. pulumi_oci/dns/get_zones.py +33 -13
  91. pulumi_oci/dns/outputs.py +1388 -79
  92. pulumi_oci/dns/record.py +12 -12
  93. pulumi_oci/dns/resolver.py +7 -7
  94. pulumi_oci/dns/resolver_endpoint.py +2 -2
  95. pulumi_oci/dns/rrset.py +50 -41
  96. pulumi_oci/dns/zone.py +176 -17
  97. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  98. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  99. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  100. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  101. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  102. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  103. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  104. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  105. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  106. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  107. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  108. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  109. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  110. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  111. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  112. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  113. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  114. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  115. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  116. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  117. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  118. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  119. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  120. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  121. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  122. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  123. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  124. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  125. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  126. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  127. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  128. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  129. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  130. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  131. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  132. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  133. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  134. pulumi_oci/fleetappsmanagement/property.py +697 -0
  135. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  136. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  137. pulumi_oci/functions/outputs.py +11 -0
  138. pulumi_oci/fusionapps/_inputs.py +21 -20
  139. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  140. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  141. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  142. pulumi_oci/fusionapps/outputs.py +11 -10
  143. pulumi_oci/goldengate/__init__.py +1 -0
  144. pulumi_oci/goldengate/_inputs.py +165 -0
  145. pulumi_oci/goldengate/connection.py +49 -35
  146. pulumi_oci/goldengate/database_registration.py +7 -7
  147. pulumi_oci/goldengate/deployment.py +79 -4
  148. pulumi_oci/goldengate/get_deployment.py +30 -2
  149. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  150. pulumi_oci/goldengate/outputs.py +409 -2
  151. pulumi_oci/integration/__init__.py +1 -0
  152. pulumi_oci/integration/_inputs.py +289 -2
  153. pulumi_oci/integration/get_integration_instance.py +65 -1
  154. pulumi_oci/integration/integration_instance.py +172 -0
  155. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  156. pulumi_oci/integration/outputs.py +587 -19
  157. pulumi_oci/loadbalancer/_inputs.py +20 -0
  158. pulumi_oci/loadbalancer/listener.py +4 -2
  159. pulumi_oci/loadbalancer/outputs.py +16 -2
  160. pulumi_oci/monitoring/_inputs.py +137 -16
  161. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  162. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  163. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  164. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  165. pulumi_oci/monitoring/outputs.py +291 -18
  166. pulumi_oci/mysql/mysql_db_system.py +7 -7
  167. pulumi_oci/objectstorage/__init__.py +3 -0
  168. pulumi_oci/objectstorage/_inputs.py +97 -0
  169. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  170. pulumi_oci/objectstorage/get_objects.py +6 -6
  171. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  172. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  173. pulumi_oci/objectstorage/outputs.py +258 -0
  174. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  175. pulumi_oci/objectstorage/storage_object.py +7 -7
  176. pulumi_oci/opsi/_inputs.py +268 -114
  177. pulumi_oci/opsi/database_insight.py +162 -21
  178. pulumi_oci/opsi/exadata_insight.py +44 -0
  179. pulumi_oci/opsi/get_database_insight.py +40 -1
  180. pulumi_oci/opsi/get_host_insights.py +2 -2
  181. pulumi_oci/opsi/host_insight.py +0 -48
  182. pulumi_oci/opsi/outputs.py +405 -109
  183. pulumi_oci/pulumi-plugin.json +1 -1
  184. pulumi_oci/securityattribute/__init__.py +15 -0
  185. pulumi_oci/securityattribute/_inputs.py +209 -0
  186. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  187. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  188. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  189. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  190. pulumi_oci/securityattribute/outputs.py +466 -0
  191. pulumi_oci/securityattribute/security_attribute.py +588 -0
  192. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  193. pulumi_oci/stackmonitoring/__init__.py +5 -0
  194. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  195. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  196. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  197. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  198. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  199. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  200. pulumi_oci/stackmonitoring/outputs.py +603 -0
  201. pulumi_oci/{globallydistributeddatabase → zpr}/__init__.py +5 -6
  202. pulumi_oci/zpr/_inputs.py +79 -0
  203. pulumi_oci/zpr/configuration.py +516 -0
  204. pulumi_oci/zpr/get_configuration.py +230 -0
  205. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  206. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  207. pulumi_oci/zpr/outputs.py +203 -0
  208. pulumi_oci/zpr/zpr_policy.py +614 -0
  209. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/METADATA +1 -1
  210. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/RECORD +212 -142
  211. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/WHEEL +1 -1
  212. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  213. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  214. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  215. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  216. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  217. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  218. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  219. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  220. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/top_level.txt +0 -0
@@ -127,6 +127,12 @@ __all__ = [
127
127
  'CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgsDict',
128
128
  'CloudExadataInfrastructureMaintenanceWindowMonthArgs',
129
129
  'CloudExadataInfrastructureMaintenanceWindowMonthArgsDict',
130
+ 'CloudVmClusterCloudAutomationUpdateDetailsArgs',
131
+ 'CloudVmClusterCloudAutomationUpdateDetailsArgsDict',
132
+ 'CloudVmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs',
133
+ 'CloudVmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgsDict',
134
+ 'CloudVmClusterCloudAutomationUpdateDetailsFreezePeriodArgs',
135
+ 'CloudVmClusterCloudAutomationUpdateDetailsFreezePeriodArgsDict',
130
136
  'CloudVmClusterDataCollectionOptionsArgs',
131
137
  'CloudVmClusterDataCollectionOptionsArgsDict',
132
138
  'CloudVmClusterFileSystemConfigurationDetailArgs',
@@ -313,12 +319,24 @@ __all__ = [
313
319
  'PluggableDatabasesRemoteClonePluggableDatabaseManagementConfigArgsDict',
314
320
  'PluggableDatabasesRemoteCloneRefreshableCloneConfigArgs',
315
321
  'PluggableDatabasesRemoteCloneRefreshableCloneConfigArgsDict',
322
+ 'VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgs',
323
+ 'VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgsDict',
324
+ 'VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs',
325
+ 'VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgsDict',
326
+ 'VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriodArgs',
327
+ 'VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriodArgsDict',
316
328
  'VmClusterAddVirtualNetworkDataCollectionOptionArgs',
317
329
  'VmClusterAddVirtualNetworkDataCollectionOptionArgsDict',
318
330
  'VmClusterAddVirtualNetworkDbServerArgs',
319
331
  'VmClusterAddVirtualNetworkDbServerArgsDict',
320
332
  'VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgs',
321
333
  'VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgsDict',
334
+ 'VmClusterCloudAutomationUpdateDetailsArgs',
335
+ 'VmClusterCloudAutomationUpdateDetailsArgsDict',
336
+ 'VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs',
337
+ 'VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgsDict',
338
+ 'VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs',
339
+ 'VmClusterCloudAutomationUpdateDetailsFreezePeriodArgsDict',
322
340
  'VmClusterDataCollectionOptionsArgs',
323
341
  'VmClusterDataCollectionOptionsArgsDict',
324
342
  'VmClusterFileSystemConfigurationDetailArgs',
@@ -331,6 +349,12 @@ __all__ = [
331
349
  'VmClusterNetworkVmNetworkArgsDict',
332
350
  'VmClusterNetworkVmNetworkNodeArgs',
333
351
  'VmClusterNetworkVmNetworkNodeArgsDict',
352
+ 'VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailArgs',
353
+ 'VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailArgsDict',
354
+ 'VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs',
355
+ 'VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgsDict',
356
+ 'VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailFreezePeriodArgs',
357
+ 'VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailFreezePeriodArgsDict',
334
358
  'VmClusterRemoveVirtualMachineDataCollectionOptionArgs',
335
359
  'VmClusterRemoveVirtualMachineDataCollectionOptionArgsDict',
336
360
  'VmClusterRemoveVirtualMachineDbServerArgs',
@@ -839,7 +863,7 @@ if not MYPY:
839
863
  """
840
864
  kms_key_version_id: NotRequired[pulumi.Input[str]]
841
865
  """
842
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
866
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
843
867
  """
844
868
  time_activated: NotRequired[pulumi.Input[str]]
845
869
  """
@@ -861,7 +885,7 @@ class AutonomousContainerDatabaseKeyHistoryEntryArgs:
861
885
  vault_id: Optional[pulumi.Input[str]] = None):
862
886
  """
863
887
  :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.
864
- :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
888
+ :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
865
889
  :param pulumi.Input[str] time_activated: The date and time the kms key activated.
866
890
  :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
867
891
  """
@@ -890,7 +914,7 @@ class AutonomousContainerDatabaseKeyHistoryEntryArgs:
890
914
  @pulumi.getter(name="kmsKeyVersionId")
891
915
  def kms_key_version_id(self) -> Optional[pulumi.Input[str]]:
892
916
  """
893
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
917
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
894
918
  """
895
919
  return pulumi.get(self, "kms_key_version_id")
896
920
 
@@ -964,7 +988,7 @@ if not MYPY:
964
988
  """
965
989
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
966
990
  """
967
- (Updatable) 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.
991
+ 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.
968
992
  """
969
993
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
970
994
  """
@@ -998,7 +1022,7 @@ class AutonomousContainerDatabaseMaintenanceWindowArgs:
998
1022
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousContainerDatabaseMaintenanceWindowMonthArgs']]] months: Months during the year when maintenance should be performed.
999
1023
  :param pulumi.Input[str] patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
1000
1024
  :param pulumi.Input[str] preference: The maintenance window scheduling preference.
1001
- :param pulumi.Input[Sequence[pulumi.Input[bool]]] skip_rus: (Updatable) 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.
1025
+ :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.
1002
1026
  :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.
1003
1027
  """
1004
1028
  if custom_action_timeout_in_mins is not None:
@@ -1137,7 +1161,7 @@ class AutonomousContainerDatabaseMaintenanceWindowArgs:
1137
1161
  @pulumi.getter(name="skipRus")
1138
1162
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
1139
1163
  """
1140
- (Updatable) 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.
1164
+ 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.
1141
1165
  """
1142
1166
  return pulumi.get(self, "skip_rus")
1143
1167
 
@@ -3428,6 +3452,9 @@ if not MYPY:
3428
3452
  The maintenance window scheduling preference.
3429
3453
  """
3430
3454
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
3455
+ """
3456
+ 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.
3457
+ """
3431
3458
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
3432
3459
  """
3433
3460
  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.
@@ -3460,6 +3487,7 @@ class AutonomousExadataInfrastructureMaintenanceWindowArgs:
3460
3487
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousExadataInfrastructureMaintenanceWindowMonthArgs']]] months: Months during the year when maintenance should be performed.
3461
3488
  :param pulumi.Input[str] patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
3462
3489
  :param pulumi.Input[str] preference: The maintenance window scheduling preference.
3490
+ :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.
3463
3491
  :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.
3464
3492
  """
3465
3493
  if custom_action_timeout_in_mins is not None:
@@ -3597,6 +3625,9 @@ class AutonomousExadataInfrastructureMaintenanceWindowArgs:
3597
3625
  @property
3598
3626
  @pulumi.getter(name="skipRus")
3599
3627
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
3628
+ """
3629
+ 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.
3630
+ """
3600
3631
  return pulumi.get(self, "skip_rus")
3601
3632
 
3602
3633
  @skip_rus.setter
@@ -3690,6 +3721,9 @@ if not MYPY:
3690
3721
  (Updatable) The maintenance window scheduling preference.
3691
3722
  """
3692
3723
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
3724
+ """
3725
+ (Updatable) 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.
3726
+ """
3693
3727
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
3694
3728
  """
3695
3729
  (Updatable) 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.
@@ -3724,6 +3758,7 @@ class AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs:
3724
3758
 
3725
3759
  *IMPORTANT*: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
3726
3760
  :param pulumi.Input[str] preference: (Updatable) The maintenance window scheduling preference.
3761
+ :param pulumi.Input[Sequence[pulumi.Input[bool]]] skip_rus: (Updatable) 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.
3727
3762
  :param pulumi.Input[Sequence[pulumi.Input[int]]] weeks_of_months: (Updatable) 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.
3728
3763
  """
3729
3764
  if custom_action_timeout_in_mins is not None:
@@ -3863,6 +3898,9 @@ class AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs:
3863
3898
  @property
3864
3899
  @pulumi.getter(name="skipRus")
3865
3900
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
3901
+ """
3902
+ (Updatable) 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.
3903
+ """
3866
3904
  return pulumi.get(self, "skip_rus")
3867
3905
 
3868
3906
  @skip_rus.setter
@@ -4009,6 +4047,9 @@ if not MYPY:
4009
4047
  The maintenance window scheduling preference.
4010
4048
  """
4011
4049
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
4050
+ """
4051
+ 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.
4052
+ """
4012
4053
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
4013
4054
  """
4014
4055
  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.
@@ -4040,6 +4081,7 @@ class AutonomousVmClusterMaintenanceWindowArgs:
4040
4081
 
4041
4082
  *IMPORTANT*: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
4042
4083
  :param pulumi.Input[str] preference: The maintenance window scheduling preference.
4084
+ :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.
4043
4085
  :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.
4044
4086
  """
4045
4087
  if custom_action_timeout_in_mins is not None:
@@ -4170,6 +4212,9 @@ class AutonomousVmClusterMaintenanceWindowArgs:
4170
4212
  @property
4171
4213
  @pulumi.getter(name="skipRus")
4172
4214
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
4215
+ """
4216
+ 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.
4217
+ """
4173
4218
  return pulumi.get(self, "skip_rus")
4174
4219
 
4175
4220
  @skip_rus.setter
@@ -4254,6 +4299,9 @@ if not MYPY:
4254
4299
  (Updatable) The maintenance window scheduling preference.
4255
4300
  """
4256
4301
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
4302
+ """
4303
+ (Updatable) 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.
4304
+ """
4257
4305
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
4258
4306
  """
4259
4307
  (Updatable) 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.
@@ -4285,6 +4333,7 @@ class AutonomousVmClusterMaintenanceWindowDetailArgs:
4285
4333
 
4286
4334
  *IMPORTANT*: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
4287
4335
  :param pulumi.Input[str] preference: (Updatable) The maintenance window scheduling preference.
4336
+ :param pulumi.Input[Sequence[pulumi.Input[bool]]] skip_rus: (Updatable) 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.
4288
4337
  :param pulumi.Input[Sequence[pulumi.Input[int]]] weeks_of_months: (Updatable) 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.
4289
4338
  """
4290
4339
  if custom_action_timeout_in_mins is not None:
@@ -4415,6 +4464,9 @@ class AutonomousVmClusterMaintenanceWindowDetailArgs:
4415
4464
  @property
4416
4465
  @pulumi.getter(name="skipRus")
4417
4466
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
4467
+ """
4468
+ (Updatable) 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.
4469
+ """
4418
4470
  return pulumi.get(self, "skip_rus")
4419
4471
 
4420
4472
  @skip_rus.setter
@@ -4711,6 +4763,9 @@ if not MYPY:
4711
4763
  The maintenance window scheduling preference.
4712
4764
  """
4713
4765
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
4766
+ """
4767
+ 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.
4768
+ """
4714
4769
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
4715
4770
  """
4716
4771
  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.
@@ -4743,6 +4798,7 @@ class CloudAutonomousVmClusterMaintenanceWindowArgs:
4743
4798
  :param pulumi.Input[Sequence[pulumi.Input['CloudAutonomousVmClusterMaintenanceWindowMonthArgs']]] months: Months during the year when maintenance should be performed.
4744
4799
  :param pulumi.Input[str] patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
4745
4800
  :param pulumi.Input[str] preference: The maintenance window scheduling preference.
4801
+ :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.
4746
4802
  :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.
4747
4803
  """
4748
4804
  if custom_action_timeout_in_mins is not None:
@@ -4880,6 +4936,9 @@ class CloudAutonomousVmClusterMaintenanceWindowArgs:
4880
4936
  @property
4881
4937
  @pulumi.getter(name="skipRus")
4882
4938
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
4939
+ """
4940
+ 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.
4941
+ """
4883
4942
  return pulumi.get(self, "skip_rus")
4884
4943
 
4885
4944
  @skip_rus.setter
@@ -4973,6 +5032,9 @@ if not MYPY:
4973
5032
  (Updatable) The maintenance window scheduling preference.
4974
5033
  """
4975
5034
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
5035
+ """
5036
+ (Updatable) 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.
5037
+ """
4976
5038
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
4977
5039
  """
4978
5040
  (Updatable) 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.
@@ -5007,6 +5069,7 @@ class CloudAutonomousVmClusterMaintenanceWindowDetailsArgs:
5007
5069
 
5008
5070
  *IMPORTANT*: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
5009
5071
  :param pulumi.Input[str] preference: (Updatable) The maintenance window scheduling preference.
5072
+ :param pulumi.Input[Sequence[pulumi.Input[bool]]] skip_rus: (Updatable) 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.
5010
5073
  :param pulumi.Input[Sequence[pulumi.Input[int]]] weeks_of_months: (Updatable) 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.
5011
5074
  """
5012
5075
  if custom_action_timeout_in_mins is not None:
@@ -5146,6 +5209,9 @@ class CloudAutonomousVmClusterMaintenanceWindowDetailsArgs:
5146
5209
  @property
5147
5210
  @pulumi.getter(name="skipRus")
5148
5211
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
5212
+ """
5213
+ (Updatable) 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.
5214
+ """
5149
5215
  return pulumi.get(self, "skip_rus")
5150
5216
 
5151
5217
  @skip_rus.setter
@@ -5475,6 +5541,9 @@ if not MYPY:
5475
5541
  (Updatable) The maintenance window scheduling preference.
5476
5542
  """
5477
5543
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
5544
+ """
5545
+ (Updatable) 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.
5546
+ """
5478
5547
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
5479
5548
  """
5480
5549
  (Updatable) 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.
@@ -5509,6 +5578,7 @@ class CloudExadataInfrastructureMaintenanceWindowArgs:
5509
5578
 
5510
5579
  *IMPORTANT*: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
5511
5580
  :param pulumi.Input[str] preference: (Updatable) The maintenance window scheduling preference.
5581
+ :param pulumi.Input[Sequence[pulumi.Input[bool]]] skip_rus: (Updatable) 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.
5512
5582
  :param pulumi.Input[Sequence[pulumi.Input[int]]] weeks_of_months: (Updatable) 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.
5513
5583
  """
5514
5584
  if custom_action_timeout_in_mins is not None:
@@ -5648,6 +5718,9 @@ class CloudExadataInfrastructureMaintenanceWindowArgs:
5648
5718
  @property
5649
5719
  @pulumi.getter(name="skipRus")
5650
5720
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
5721
+ """
5722
+ (Updatable) 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.
5723
+ """
5651
5724
  return pulumi.get(self, "skip_rus")
5652
5725
 
5653
5726
  @skip_rus.setter
@@ -5729,6 +5802,202 @@ class CloudExadataInfrastructureMaintenanceWindowMonthArgs:
5729
5802
  pulumi.set(self, "name", value)
5730
5803
 
5731
5804
 
5805
+ if not MYPY:
5806
+ class CloudVmClusterCloudAutomationUpdateDetailsArgsDict(TypedDict):
5807
+ apply_update_time_preference: NotRequired[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgsDict']]
5808
+ """
5809
+ (Updatable) Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
5810
+ """
5811
+ freeze_period: NotRequired[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsFreezePeriodArgsDict']]
5812
+ """
5813
+ (Updatable) Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
5814
+ """
5815
+ is_early_adoption_enabled: NotRequired[pulumi.Input[bool]]
5816
+ """
5817
+ (Updatable) Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
5818
+ """
5819
+ is_freeze_period_enabled: NotRequired[pulumi.Input[bool]]
5820
+ """
5821
+ (Updatable) Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
5822
+ """
5823
+ elif False:
5824
+ CloudVmClusterCloudAutomationUpdateDetailsArgsDict: TypeAlias = Mapping[str, Any]
5825
+
5826
+ @pulumi.input_type
5827
+ class CloudVmClusterCloudAutomationUpdateDetailsArgs:
5828
+ def __init__(__self__, *,
5829
+ apply_update_time_preference: Optional[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs']] = None,
5830
+ freeze_period: Optional[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsFreezePeriodArgs']] = None,
5831
+ is_early_adoption_enabled: Optional[pulumi.Input[bool]] = None,
5832
+ is_freeze_period_enabled: Optional[pulumi.Input[bool]] = None):
5833
+ """
5834
+ :param pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs'] apply_update_time_preference: (Updatable) Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
5835
+ :param pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsFreezePeriodArgs'] freeze_period: (Updatable) Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
5836
+ :param pulumi.Input[bool] is_early_adoption_enabled: (Updatable) Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
5837
+ :param pulumi.Input[bool] is_freeze_period_enabled: (Updatable) Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
5838
+ """
5839
+ if apply_update_time_preference is not None:
5840
+ pulumi.set(__self__, "apply_update_time_preference", apply_update_time_preference)
5841
+ if freeze_period is not None:
5842
+ pulumi.set(__self__, "freeze_period", freeze_period)
5843
+ if is_early_adoption_enabled is not None:
5844
+ pulumi.set(__self__, "is_early_adoption_enabled", is_early_adoption_enabled)
5845
+ if is_freeze_period_enabled is not None:
5846
+ pulumi.set(__self__, "is_freeze_period_enabled", is_freeze_period_enabled)
5847
+
5848
+ @property
5849
+ @pulumi.getter(name="applyUpdateTimePreference")
5850
+ def apply_update_time_preference(self) -> Optional[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs']]:
5851
+ """
5852
+ (Updatable) Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
5853
+ """
5854
+ return pulumi.get(self, "apply_update_time_preference")
5855
+
5856
+ @apply_update_time_preference.setter
5857
+ def apply_update_time_preference(self, value: Optional[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs']]):
5858
+ pulumi.set(self, "apply_update_time_preference", value)
5859
+
5860
+ @property
5861
+ @pulumi.getter(name="freezePeriod")
5862
+ def freeze_period(self) -> Optional[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsFreezePeriodArgs']]:
5863
+ """
5864
+ (Updatable) Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
5865
+ """
5866
+ return pulumi.get(self, "freeze_period")
5867
+
5868
+ @freeze_period.setter
5869
+ def freeze_period(self, value: Optional[pulumi.Input['CloudVmClusterCloudAutomationUpdateDetailsFreezePeriodArgs']]):
5870
+ pulumi.set(self, "freeze_period", value)
5871
+
5872
+ @property
5873
+ @pulumi.getter(name="isEarlyAdoptionEnabled")
5874
+ def is_early_adoption_enabled(self) -> Optional[pulumi.Input[bool]]:
5875
+ """
5876
+ (Updatable) Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
5877
+ """
5878
+ return pulumi.get(self, "is_early_adoption_enabled")
5879
+
5880
+ @is_early_adoption_enabled.setter
5881
+ def is_early_adoption_enabled(self, value: Optional[pulumi.Input[bool]]):
5882
+ pulumi.set(self, "is_early_adoption_enabled", value)
5883
+
5884
+ @property
5885
+ @pulumi.getter(name="isFreezePeriodEnabled")
5886
+ def is_freeze_period_enabled(self) -> Optional[pulumi.Input[bool]]:
5887
+ """
5888
+ (Updatable) Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
5889
+ """
5890
+ return pulumi.get(self, "is_freeze_period_enabled")
5891
+
5892
+ @is_freeze_period_enabled.setter
5893
+ def is_freeze_period_enabled(self, value: Optional[pulumi.Input[bool]]):
5894
+ pulumi.set(self, "is_freeze_period_enabled", value)
5895
+
5896
+
5897
+ if not MYPY:
5898
+ class CloudVmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgsDict(TypedDict):
5899
+ apply_update_preferred_end_time: NotRequired[pulumi.Input[str]]
5900
+ """
5901
+ (Updatable) End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
5902
+ """
5903
+ apply_update_preferred_start_time: NotRequired[pulumi.Input[str]]
5904
+ """
5905
+ (Updatable) Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
5906
+ """
5907
+ elif False:
5908
+ CloudVmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgsDict: TypeAlias = Mapping[str, Any]
5909
+
5910
+ @pulumi.input_type
5911
+ class CloudVmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs:
5912
+ def __init__(__self__, *,
5913
+ apply_update_preferred_end_time: Optional[pulumi.Input[str]] = None,
5914
+ apply_update_preferred_start_time: Optional[pulumi.Input[str]] = None):
5915
+ """
5916
+ :param pulumi.Input[str] apply_update_preferred_end_time: (Updatable) End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
5917
+ :param pulumi.Input[str] apply_update_preferred_start_time: (Updatable) Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
5918
+ """
5919
+ if apply_update_preferred_end_time is not None:
5920
+ pulumi.set(__self__, "apply_update_preferred_end_time", apply_update_preferred_end_time)
5921
+ if apply_update_preferred_start_time is not None:
5922
+ pulumi.set(__self__, "apply_update_preferred_start_time", apply_update_preferred_start_time)
5923
+
5924
+ @property
5925
+ @pulumi.getter(name="applyUpdatePreferredEndTime")
5926
+ def apply_update_preferred_end_time(self) -> Optional[pulumi.Input[str]]:
5927
+ """
5928
+ (Updatable) End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
5929
+ """
5930
+ return pulumi.get(self, "apply_update_preferred_end_time")
5931
+
5932
+ @apply_update_preferred_end_time.setter
5933
+ def apply_update_preferred_end_time(self, value: Optional[pulumi.Input[str]]):
5934
+ pulumi.set(self, "apply_update_preferred_end_time", value)
5935
+
5936
+ @property
5937
+ @pulumi.getter(name="applyUpdatePreferredStartTime")
5938
+ def apply_update_preferred_start_time(self) -> Optional[pulumi.Input[str]]:
5939
+ """
5940
+ (Updatable) Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
5941
+ """
5942
+ return pulumi.get(self, "apply_update_preferred_start_time")
5943
+
5944
+ @apply_update_preferred_start_time.setter
5945
+ def apply_update_preferred_start_time(self, value: Optional[pulumi.Input[str]]):
5946
+ pulumi.set(self, "apply_update_preferred_start_time", value)
5947
+
5948
+
5949
+ if not MYPY:
5950
+ class CloudVmClusterCloudAutomationUpdateDetailsFreezePeriodArgsDict(TypedDict):
5951
+ freeze_period_end_time: NotRequired[pulumi.Input[str]]
5952
+ """
5953
+ (Updatable) End time of the freeze period cycle.
5954
+ """
5955
+ freeze_period_start_time: NotRequired[pulumi.Input[str]]
5956
+ """
5957
+ (Updatable) Start time of the freeze period cycle.
5958
+ """
5959
+ elif False:
5960
+ CloudVmClusterCloudAutomationUpdateDetailsFreezePeriodArgsDict: TypeAlias = Mapping[str, Any]
5961
+
5962
+ @pulumi.input_type
5963
+ class CloudVmClusterCloudAutomationUpdateDetailsFreezePeriodArgs:
5964
+ def __init__(__self__, *,
5965
+ freeze_period_end_time: Optional[pulumi.Input[str]] = None,
5966
+ freeze_period_start_time: Optional[pulumi.Input[str]] = None):
5967
+ """
5968
+ :param pulumi.Input[str] freeze_period_end_time: (Updatable) End time of the freeze period cycle.
5969
+ :param pulumi.Input[str] freeze_period_start_time: (Updatable) Start time of the freeze period cycle.
5970
+ """
5971
+ if freeze_period_end_time is not None:
5972
+ pulumi.set(__self__, "freeze_period_end_time", freeze_period_end_time)
5973
+ if freeze_period_start_time is not None:
5974
+ pulumi.set(__self__, "freeze_period_start_time", freeze_period_start_time)
5975
+
5976
+ @property
5977
+ @pulumi.getter(name="freezePeriodEndTime")
5978
+ def freeze_period_end_time(self) -> Optional[pulumi.Input[str]]:
5979
+ """
5980
+ (Updatable) End time of the freeze period cycle.
5981
+ """
5982
+ return pulumi.get(self, "freeze_period_end_time")
5983
+
5984
+ @freeze_period_end_time.setter
5985
+ def freeze_period_end_time(self, value: Optional[pulumi.Input[str]]):
5986
+ pulumi.set(self, "freeze_period_end_time", value)
5987
+
5988
+ @property
5989
+ @pulumi.getter(name="freezePeriodStartTime")
5990
+ def freeze_period_start_time(self) -> Optional[pulumi.Input[str]]:
5991
+ """
5992
+ (Updatable) Start time of the freeze period cycle.
5993
+ """
5994
+ return pulumi.get(self, "freeze_period_start_time")
5995
+
5996
+ @freeze_period_start_time.setter
5997
+ def freeze_period_start_time(self, value: Optional[pulumi.Input[str]]):
5998
+ pulumi.set(self, "freeze_period_start_time", value)
5999
+
6000
+
5732
6001
  if not MYPY:
5733
6002
  class CloudVmClusterDataCollectionOptionsArgsDict(TypedDict):
5734
6003
  is_diagnostics_events_enabled: NotRequired[pulumi.Input[bool]]
@@ -6287,7 +6556,7 @@ if not MYPY:
6287
6556
  """
6288
6557
  kms_key_version_id: NotRequired[pulumi.Input[str]]
6289
6558
  """
6290
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
6559
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
6291
6560
  """
6292
6561
  ncharacter_set: NotRequired[pulumi.Input[str]]
6293
6562
  """
@@ -6311,7 +6580,7 @@ if not MYPY:
6311
6580
  """
6312
6581
  vault_id: NotRequired[pulumi.Input[str]]
6313
6582
  """
6314
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
6583
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
6315
6584
  """
6316
6585
  elif False:
6317
6586
  DatabaseDatabaseArgsDict: TypeAlias = Mapping[str, Any]
@@ -6355,13 +6624,13 @@ class DatabaseDatabaseArgs:
6355
6624
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
6356
6625
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
6357
6626
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
6358
- :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
6627
+ :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
6359
6628
  :param pulumi.Input[str] ncharacter_set: The national character set for the database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
6360
6629
  :param pulumi.Input[str] pdb_name: The name of the pluggable database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. Pluggable database should not be same as database name.
6361
6630
  :param pulumi.Input[Sequence[pulumi.Input[str]]] pluggable_databases: The list of pluggable databases that needs to be restored into new database.
6362
6631
  :param pulumi.Input[str] sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
6363
6632
  :param pulumi.Input[str] tde_wallet_password: The optional password to open the TDE wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numeric, and two special characters. The special characters must be _, \\#, or -.
6364
- :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
6633
+ :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
6365
6634
  """
6366
6635
  pulumi.set(__self__, "admin_password", admin_password)
6367
6636
  pulumi.set(__self__, "db_name", db_name)
@@ -6552,7 +6821,7 @@ class DatabaseDatabaseArgs:
6552
6821
  @pulumi.getter(name="kmsKeyVersionId")
6553
6822
  def kms_key_version_id(self) -> Optional[pulumi.Input[str]]:
6554
6823
  """
6555
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
6824
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
6556
6825
  """
6557
6826
  return pulumi.get(self, "kms_key_version_id")
6558
6827
 
@@ -6624,7 +6893,7 @@ class DatabaseDatabaseArgs:
6624
6893
  @pulumi.getter(name="vaultId")
6625
6894
  def vault_id(self) -> Optional[pulumi.Input[str]]:
6626
6895
  """
6627
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
6896
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
6628
6897
  """
6629
6898
  return pulumi.get(self, "vault_id")
6630
6899
 
@@ -7757,7 +8026,7 @@ if not MYPY:
7757
8026
  """
7758
8027
  kms_key_version_id: NotRequired[pulumi.Input[str]]
7759
8028
  """
7760
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
8029
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
7761
8030
  """
7762
8031
  lifecycle_details: NotRequired[pulumi.Input[str]]
7763
8032
  """
@@ -7801,7 +8070,7 @@ if not MYPY:
7801
8070
  """
7802
8071
  vault_id: NotRequired[pulumi.Input[str]]
7803
8072
  """
7804
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
8073
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
7805
8074
  """
7806
8075
  elif False:
7807
8076
  DbHomeDatabaseArgsDict: TypeAlias = Mapping[str, Any]
@@ -7856,7 +8125,7 @@ class DbHomeDatabaseArgs:
7856
8125
  :param pulumi.Input[str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Home.
7857
8126
  :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
7858
8127
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
7859
- :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
8128
+ :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
7860
8129
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
7861
8130
  :param pulumi.Input[str] ncharacter_set: The national character set for the database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
7862
8131
  :param pulumi.Input[Sequence[pulumi.Input[str]]] one_off_patches: List of one-off patches for Database Homes.
@@ -7867,7 +8136,7 @@ class DbHomeDatabaseArgs:
7867
8136
  :param pulumi.Input[str] tde_wallet_password: The optional password to open the TDE wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numeric, and two special characters. The special characters must be _, \\#, or -.
7868
8137
  :param pulumi.Input[str] time_created: The date and time the Database Home was created.
7869
8138
  :param pulumi.Input[str] time_stamp_for_point_in_time_recovery: The point in time of the original database from which the new database is created. If not specifed, the latest backup is used to create the database.
7870
- :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
8139
+ :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
7871
8140
  """
7872
8141
  pulumi.set(__self__, "admin_password", admin_password)
7873
8142
  if backup_id is not None:
@@ -8119,7 +8388,7 @@ class DbHomeDatabaseArgs:
8119
8388
  @pulumi.getter(name="kmsKeyVersionId")
8120
8389
  def kms_key_version_id(self) -> Optional[pulumi.Input[str]]:
8121
8390
  """
8122
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
8391
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
8123
8392
  """
8124
8393
  return pulumi.get(self, "kms_key_version_id")
8125
8394
 
@@ -8251,7 +8520,7 @@ class DbHomeDatabaseArgs:
8251
8520
  @pulumi.getter(name="vaultId")
8252
8521
  def vault_id(self) -> Optional[pulumi.Input[str]]:
8253
8522
  """
8254
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
8523
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
8255
8524
  """
8256
8525
  return pulumi.get(self, "vault_id")
8257
8526
 
@@ -8963,7 +9232,7 @@ if not MYPY:
8963
9232
  """
8964
9233
  kms_key_version_id: NotRequired[pulumi.Input[str]]
8965
9234
  """
8966
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
9235
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
8967
9236
  """
8968
9237
  lifecycle_details: NotRequired[pulumi.Input[str]]
8969
9238
  """
@@ -8999,7 +9268,7 @@ if not MYPY:
8999
9268
  """
9000
9269
  vault_id: NotRequired[pulumi.Input[str]]
9001
9270
  """
9002
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
9271
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
9003
9272
  """
9004
9273
  elif False:
9005
9274
  DbSystemDbHomeDatabaseArgsDict: TypeAlias = Mapping[str, Any]
@@ -9053,7 +9322,7 @@ class DbSystemDbHomeDatabaseArgs:
9053
9322
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
9054
9323
  :param pulumi.Input[str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
9055
9324
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
9056
- :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
9325
+ :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
9057
9326
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
9058
9327
  :param pulumi.Input[str] ncharacter_set: The national character set for the database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
9059
9328
  :param pulumi.Input[str] pdb_name: The name of the pluggable database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. Pluggable database should not be same as database name.
@@ -9062,7 +9331,7 @@ class DbSystemDbHomeDatabaseArgs:
9062
9331
  :param pulumi.Input[str] tde_wallet_password: The optional password to open the TDE wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numeric, and two special characters. The special characters must be _, \\#, or -.
9063
9332
  :param pulumi.Input[str] time_created: The date and time the DB system was created.
9064
9333
  :param pulumi.Input[str] time_stamp_for_point_in_time_recovery: The point in time of the original database from which the new database is created. If not specifed, the latest backup is used to create the database.
9065
- :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
9334
+ :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
9066
9335
  """
9067
9336
  pulumi.set(__self__, "admin_password", admin_password)
9068
9337
  if backup_id is not None:
@@ -9313,7 +9582,7 @@ class DbSystemDbHomeDatabaseArgs:
9313
9582
  @pulumi.getter(name="kmsKeyVersionId")
9314
9583
  def kms_key_version_id(self) -> Optional[pulumi.Input[str]]:
9315
9584
  """
9316
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
9585
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
9317
9586
  """
9318
9587
  return pulumi.get(self, "kms_key_version_id")
9319
9588
 
@@ -9421,7 +9690,7 @@ class DbSystemDbHomeDatabaseArgs:
9421
9690
  @pulumi.getter(name="vaultId")
9422
9691
  def vault_id(self) -> Optional[pulumi.Input[str]]:
9423
9692
  """
9424
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
9693
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
9425
9694
  """
9426
9695
  return pulumi.get(self, "vault_id")
9427
9696
 
@@ -9972,6 +10241,9 @@ if not MYPY:
9972
10241
  The maintenance window scheduling preference.
9973
10242
  """
9974
10243
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
10244
+ """
10245
+ 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.
10246
+ """
9975
10247
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
9976
10248
  """
9977
10249
  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.
@@ -10004,6 +10276,7 @@ class DbSystemMaintenanceWindowArgs:
10004
10276
  :param pulumi.Input[Sequence[pulumi.Input['DbSystemMaintenanceWindowMonthArgs']]] months: Months during the year when maintenance should be performed.
10005
10277
  :param pulumi.Input[str] patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
10006
10278
  :param pulumi.Input[str] preference: The maintenance window scheduling preference.
10279
+ :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.
10007
10280
  :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.
10008
10281
  """
10009
10282
  if custom_action_timeout_in_mins is not None:
@@ -10141,6 +10414,9 @@ class DbSystemMaintenanceWindowArgs:
10141
10414
  @property
10142
10415
  @pulumi.getter(name="skipRus")
10143
10416
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
10417
+ """
10418
+ 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.
10419
+ """
10144
10420
  return pulumi.get(self, "skip_rus")
10145
10421
 
10146
10422
  @skip_rus.setter
@@ -10234,6 +10510,9 @@ if not MYPY:
10234
10510
  (Updatable) The maintenance window scheduling preference.
10235
10511
  """
10236
10512
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
10513
+ """
10514
+ (Updatable) 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.
10515
+ """
10237
10516
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
10238
10517
  """
10239
10518
  (Updatable) 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.
@@ -10268,6 +10547,7 @@ class DbSystemMaintenanceWindowDetailsArgs:
10268
10547
 
10269
10548
  *IMPORTANT*: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
10270
10549
  :param pulumi.Input[str] preference: (Updatable) The maintenance window scheduling preference.
10550
+ :param pulumi.Input[Sequence[pulumi.Input[bool]]] skip_rus: (Updatable) 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.
10271
10551
  :param pulumi.Input[Sequence[pulumi.Input[int]]] weeks_of_months: (Updatable) 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.
10272
10552
  """
10273
10553
  if custom_action_timeout_in_mins is not None:
@@ -10407,6 +10687,9 @@ class DbSystemMaintenanceWindowDetailsArgs:
10407
10687
  @property
10408
10688
  @pulumi.getter(name="skipRus")
10409
10689
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
10690
+ """
10691
+ (Updatable) 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.
10692
+ """
10410
10693
  return pulumi.get(self, "skip_rus")
10411
10694
 
10412
10695
  @skip_rus.setter
@@ -11551,6 +11834,9 @@ if not MYPY:
11551
11834
  (Updatable) The maintenance window scheduling preference.
11552
11835
  """
11553
11836
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
11837
+ """
11838
+ (Updatable) 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.
11839
+ """
11554
11840
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
11555
11841
  """
11556
11842
  (Updatable) 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.
@@ -11585,6 +11871,7 @@ class ExadataInfrastructureMaintenanceWindowArgs:
11585
11871
 
11586
11872
  *IMPORTANT*: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
11587
11873
  :param pulumi.Input[str] preference: (Updatable) The maintenance window scheduling preference.
11874
+ :param pulumi.Input[Sequence[pulumi.Input[bool]]] skip_rus: (Updatable) 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.
11588
11875
  :param pulumi.Input[Sequence[pulumi.Input[int]]] weeks_of_months: (Updatable) 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.
11589
11876
  """
11590
11877
  if custom_action_timeout_in_mins is not None:
@@ -11724,6 +12011,9 @@ class ExadataInfrastructureMaintenanceWindowArgs:
11724
12011
  @property
11725
12012
  @pulumi.getter(name="skipRus")
11726
12013
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
12014
+ """
12015
+ (Updatable) 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.
12016
+ """
11727
12017
  return pulumi.get(self, "skip_rus")
11728
12018
 
11729
12019
  @skip_rus.setter
@@ -13424,7 +13714,7 @@ if not MYPY:
13424
13714
  """
13425
13715
  vault_id: pulumi.Input[str]
13426
13716
  """
13427
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
13717
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
13428
13718
 
13429
13719
 
13430
13720
  ** IMPORTANT **
@@ -13446,7 +13736,7 @@ class KeyStoreTypeDetailsArgs:
13446
13736
  :param pulumi.Input[Sequence[pulumi.Input[str]]] connection_ips: (Updatable) The list of Oracle Key Vault connection IP addresses.
13447
13737
  :param pulumi.Input[str] secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [secret](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
13448
13738
  :param pulumi.Input[str] type: (Updatable) The type of key store.
13449
- :param pulumi.Input[str] vault_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
13739
+ :param pulumi.Input[str] vault_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
13450
13740
 
13451
13741
 
13452
13742
  ** IMPORTANT **
@@ -13510,7 +13800,7 @@ class KeyStoreTypeDetailsArgs:
13510
13800
  @pulumi.getter(name="vaultId")
13511
13801
  def vault_id(self) -> pulumi.Input[str]:
13512
13802
  """
13513
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
13803
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
13514
13804
 
13515
13805
 
13516
13806
  ** IMPORTANT **
@@ -14577,6 +14867,202 @@ class PluggableDatabasesRemoteCloneRefreshableCloneConfigArgs:
14577
14867
  pulumi.set(self, "is_refreshable_clone", value)
14578
14868
 
14579
14869
 
14870
+ if not MYPY:
14871
+ class VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgsDict(TypedDict):
14872
+ apply_update_time_preferences: NotRequired[pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgsDict']]]]
14873
+ """
14874
+ Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
14875
+ """
14876
+ freeze_periods: NotRequired[pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriodArgsDict']]]]
14877
+ """
14878
+ Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
14879
+ """
14880
+ is_early_adoption_enabled: NotRequired[pulumi.Input[bool]]
14881
+ """
14882
+ Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
14883
+ """
14884
+ is_freeze_period_enabled: NotRequired[pulumi.Input[bool]]
14885
+ """
14886
+ Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
14887
+ """
14888
+ elif False:
14889
+ VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgsDict: TypeAlias = Mapping[str, Any]
14890
+
14891
+ @pulumi.input_type
14892
+ class VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgs:
14893
+ def __init__(__self__, *,
14894
+ apply_update_time_preferences: Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs']]]] = None,
14895
+ freeze_periods: Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriodArgs']]]] = None,
14896
+ is_early_adoption_enabled: Optional[pulumi.Input[bool]] = None,
14897
+ is_freeze_period_enabled: Optional[pulumi.Input[bool]] = None):
14898
+ """
14899
+ :param pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs']]] apply_update_time_preferences: Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
14900
+ :param pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriodArgs']]] freeze_periods: Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
14901
+ :param pulumi.Input[bool] is_early_adoption_enabled: Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
14902
+ :param pulumi.Input[bool] is_freeze_period_enabled: Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
14903
+ """
14904
+ if apply_update_time_preferences is not None:
14905
+ pulumi.set(__self__, "apply_update_time_preferences", apply_update_time_preferences)
14906
+ if freeze_periods is not None:
14907
+ pulumi.set(__self__, "freeze_periods", freeze_periods)
14908
+ if is_early_adoption_enabled is not None:
14909
+ pulumi.set(__self__, "is_early_adoption_enabled", is_early_adoption_enabled)
14910
+ if is_freeze_period_enabled is not None:
14911
+ pulumi.set(__self__, "is_freeze_period_enabled", is_freeze_period_enabled)
14912
+
14913
+ @property
14914
+ @pulumi.getter(name="applyUpdateTimePreferences")
14915
+ def apply_update_time_preferences(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs']]]]:
14916
+ """
14917
+ Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
14918
+ """
14919
+ return pulumi.get(self, "apply_update_time_preferences")
14920
+
14921
+ @apply_update_time_preferences.setter
14922
+ def apply_update_time_preferences(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs']]]]):
14923
+ pulumi.set(self, "apply_update_time_preferences", value)
14924
+
14925
+ @property
14926
+ @pulumi.getter(name="freezePeriods")
14927
+ def freeze_periods(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriodArgs']]]]:
14928
+ """
14929
+ Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
14930
+ """
14931
+ return pulumi.get(self, "freeze_periods")
14932
+
14933
+ @freeze_periods.setter
14934
+ def freeze_periods(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriodArgs']]]]):
14935
+ pulumi.set(self, "freeze_periods", value)
14936
+
14937
+ @property
14938
+ @pulumi.getter(name="isEarlyAdoptionEnabled")
14939
+ def is_early_adoption_enabled(self) -> Optional[pulumi.Input[bool]]:
14940
+ """
14941
+ Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
14942
+ """
14943
+ return pulumi.get(self, "is_early_adoption_enabled")
14944
+
14945
+ @is_early_adoption_enabled.setter
14946
+ def is_early_adoption_enabled(self, value: Optional[pulumi.Input[bool]]):
14947
+ pulumi.set(self, "is_early_adoption_enabled", value)
14948
+
14949
+ @property
14950
+ @pulumi.getter(name="isFreezePeriodEnabled")
14951
+ def is_freeze_period_enabled(self) -> Optional[pulumi.Input[bool]]:
14952
+ """
14953
+ Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
14954
+ """
14955
+ return pulumi.get(self, "is_freeze_period_enabled")
14956
+
14957
+ @is_freeze_period_enabled.setter
14958
+ def is_freeze_period_enabled(self, value: Optional[pulumi.Input[bool]]):
14959
+ pulumi.set(self, "is_freeze_period_enabled", value)
14960
+
14961
+
14962
+ if not MYPY:
14963
+ class VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgsDict(TypedDict):
14964
+ apply_update_preferred_end_time: NotRequired[pulumi.Input[str]]
14965
+ """
14966
+ End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
14967
+ """
14968
+ apply_update_preferred_start_time: NotRequired[pulumi.Input[str]]
14969
+ """
14970
+ Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
14971
+ """
14972
+ elif False:
14973
+ VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgsDict: TypeAlias = Mapping[str, Any]
14974
+
14975
+ @pulumi.input_type
14976
+ class VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs:
14977
+ def __init__(__self__, *,
14978
+ apply_update_preferred_end_time: Optional[pulumi.Input[str]] = None,
14979
+ apply_update_preferred_start_time: Optional[pulumi.Input[str]] = None):
14980
+ """
14981
+ :param pulumi.Input[str] apply_update_preferred_end_time: End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
14982
+ :param pulumi.Input[str] apply_update_preferred_start_time: Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
14983
+ """
14984
+ if apply_update_preferred_end_time is not None:
14985
+ pulumi.set(__self__, "apply_update_preferred_end_time", apply_update_preferred_end_time)
14986
+ if apply_update_preferred_start_time is not None:
14987
+ pulumi.set(__self__, "apply_update_preferred_start_time", apply_update_preferred_start_time)
14988
+
14989
+ @property
14990
+ @pulumi.getter(name="applyUpdatePreferredEndTime")
14991
+ def apply_update_preferred_end_time(self) -> Optional[pulumi.Input[str]]:
14992
+ """
14993
+ End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
14994
+ """
14995
+ return pulumi.get(self, "apply_update_preferred_end_time")
14996
+
14997
+ @apply_update_preferred_end_time.setter
14998
+ def apply_update_preferred_end_time(self, value: Optional[pulumi.Input[str]]):
14999
+ pulumi.set(self, "apply_update_preferred_end_time", value)
15000
+
15001
+ @property
15002
+ @pulumi.getter(name="applyUpdatePreferredStartTime")
15003
+ def apply_update_preferred_start_time(self) -> Optional[pulumi.Input[str]]:
15004
+ """
15005
+ Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
15006
+ """
15007
+ return pulumi.get(self, "apply_update_preferred_start_time")
15008
+
15009
+ @apply_update_preferred_start_time.setter
15010
+ def apply_update_preferred_start_time(self, value: Optional[pulumi.Input[str]]):
15011
+ pulumi.set(self, "apply_update_preferred_start_time", value)
15012
+
15013
+
15014
+ if not MYPY:
15015
+ class VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriodArgsDict(TypedDict):
15016
+ freeze_period_end_time: NotRequired[pulumi.Input[str]]
15017
+ """
15018
+ End time of the freeze period cycle.
15019
+ """
15020
+ freeze_period_start_time: NotRequired[pulumi.Input[str]]
15021
+ """
15022
+ Start time of the freeze period cycle.
15023
+ """
15024
+ elif False:
15025
+ VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriodArgsDict: TypeAlias = Mapping[str, Any]
15026
+
15027
+ @pulumi.input_type
15028
+ class VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriodArgs:
15029
+ def __init__(__self__, *,
15030
+ freeze_period_end_time: Optional[pulumi.Input[str]] = None,
15031
+ freeze_period_start_time: Optional[pulumi.Input[str]] = None):
15032
+ """
15033
+ :param pulumi.Input[str] freeze_period_end_time: End time of the freeze period cycle.
15034
+ :param pulumi.Input[str] freeze_period_start_time: Start time of the freeze period cycle.
15035
+ """
15036
+ if freeze_period_end_time is not None:
15037
+ pulumi.set(__self__, "freeze_period_end_time", freeze_period_end_time)
15038
+ if freeze_period_start_time is not None:
15039
+ pulumi.set(__self__, "freeze_period_start_time", freeze_period_start_time)
15040
+
15041
+ @property
15042
+ @pulumi.getter(name="freezePeriodEndTime")
15043
+ def freeze_period_end_time(self) -> Optional[pulumi.Input[str]]:
15044
+ """
15045
+ End time of the freeze period cycle.
15046
+ """
15047
+ return pulumi.get(self, "freeze_period_end_time")
15048
+
15049
+ @freeze_period_end_time.setter
15050
+ def freeze_period_end_time(self, value: Optional[pulumi.Input[str]]):
15051
+ pulumi.set(self, "freeze_period_end_time", value)
15052
+
15053
+ @property
15054
+ @pulumi.getter(name="freezePeriodStartTime")
15055
+ def freeze_period_start_time(self) -> Optional[pulumi.Input[str]]:
15056
+ """
15057
+ Start time of the freeze period cycle.
15058
+ """
15059
+ return pulumi.get(self, "freeze_period_start_time")
15060
+
15061
+ @freeze_period_start_time.setter
15062
+ def freeze_period_start_time(self, value: Optional[pulumi.Input[str]]):
15063
+ pulumi.set(self, "freeze_period_start_time", value)
15064
+
15065
+
14580
15066
  if not MYPY:
14581
15067
  class VmClusterAddVirtualNetworkDataCollectionOptionArgsDict(TypedDict):
14582
15068
  is_diagnostics_events_enabled: NotRequired[pulumi.Input[bool]]
@@ -14732,6 +15218,202 @@ class VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgs:
14732
15218
  pulumi.set(self, "mount_point", value)
14733
15219
 
14734
15220
 
15221
+ if not MYPY:
15222
+ class VmClusterCloudAutomationUpdateDetailsArgsDict(TypedDict):
15223
+ apply_update_time_preference: NotRequired[pulumi.Input['VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgsDict']]
15224
+ """
15225
+ (Updatable) Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
15226
+ """
15227
+ freeze_period: NotRequired[pulumi.Input['VmClusterCloudAutomationUpdateDetailsFreezePeriodArgsDict']]
15228
+ """
15229
+ (Updatable) Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
15230
+ """
15231
+ is_early_adoption_enabled: NotRequired[pulumi.Input[bool]]
15232
+ """
15233
+ (Updatable) Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
15234
+ """
15235
+ is_freeze_period_enabled: NotRequired[pulumi.Input[bool]]
15236
+ """
15237
+ (Updatable) Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
15238
+ """
15239
+ elif False:
15240
+ VmClusterCloudAutomationUpdateDetailsArgsDict: TypeAlias = Mapping[str, Any]
15241
+
15242
+ @pulumi.input_type
15243
+ class VmClusterCloudAutomationUpdateDetailsArgs:
15244
+ def __init__(__self__, *,
15245
+ apply_update_time_preference: Optional[pulumi.Input['VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs']] = None,
15246
+ freeze_period: Optional[pulumi.Input['VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs']] = None,
15247
+ is_early_adoption_enabled: Optional[pulumi.Input[bool]] = None,
15248
+ is_freeze_period_enabled: Optional[pulumi.Input[bool]] = None):
15249
+ """
15250
+ :param pulumi.Input['VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs'] apply_update_time_preference: (Updatable) Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
15251
+ :param pulumi.Input['VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs'] freeze_period: (Updatable) Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
15252
+ :param pulumi.Input[bool] is_early_adoption_enabled: (Updatable) Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
15253
+ :param pulumi.Input[bool] is_freeze_period_enabled: (Updatable) Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
15254
+ """
15255
+ if apply_update_time_preference is not None:
15256
+ pulumi.set(__self__, "apply_update_time_preference", apply_update_time_preference)
15257
+ if freeze_period is not None:
15258
+ pulumi.set(__self__, "freeze_period", freeze_period)
15259
+ if is_early_adoption_enabled is not None:
15260
+ pulumi.set(__self__, "is_early_adoption_enabled", is_early_adoption_enabled)
15261
+ if is_freeze_period_enabled is not None:
15262
+ pulumi.set(__self__, "is_freeze_period_enabled", is_freeze_period_enabled)
15263
+
15264
+ @property
15265
+ @pulumi.getter(name="applyUpdateTimePreference")
15266
+ def apply_update_time_preference(self) -> Optional[pulumi.Input['VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs']]:
15267
+ """
15268
+ (Updatable) Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
15269
+ """
15270
+ return pulumi.get(self, "apply_update_time_preference")
15271
+
15272
+ @apply_update_time_preference.setter
15273
+ def apply_update_time_preference(self, value: Optional[pulumi.Input['VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs']]):
15274
+ pulumi.set(self, "apply_update_time_preference", value)
15275
+
15276
+ @property
15277
+ @pulumi.getter(name="freezePeriod")
15278
+ def freeze_period(self) -> Optional[pulumi.Input['VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs']]:
15279
+ """
15280
+ (Updatable) Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
15281
+ """
15282
+ return pulumi.get(self, "freeze_period")
15283
+
15284
+ @freeze_period.setter
15285
+ def freeze_period(self, value: Optional[pulumi.Input['VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs']]):
15286
+ pulumi.set(self, "freeze_period", value)
15287
+
15288
+ @property
15289
+ @pulumi.getter(name="isEarlyAdoptionEnabled")
15290
+ def is_early_adoption_enabled(self) -> Optional[pulumi.Input[bool]]:
15291
+ """
15292
+ (Updatable) Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
15293
+ """
15294
+ return pulumi.get(self, "is_early_adoption_enabled")
15295
+
15296
+ @is_early_adoption_enabled.setter
15297
+ def is_early_adoption_enabled(self, value: Optional[pulumi.Input[bool]]):
15298
+ pulumi.set(self, "is_early_adoption_enabled", value)
15299
+
15300
+ @property
15301
+ @pulumi.getter(name="isFreezePeriodEnabled")
15302
+ def is_freeze_period_enabled(self) -> Optional[pulumi.Input[bool]]:
15303
+ """
15304
+ (Updatable) Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
15305
+ """
15306
+ return pulumi.get(self, "is_freeze_period_enabled")
15307
+
15308
+ @is_freeze_period_enabled.setter
15309
+ def is_freeze_period_enabled(self, value: Optional[pulumi.Input[bool]]):
15310
+ pulumi.set(self, "is_freeze_period_enabled", value)
15311
+
15312
+
15313
+ if not MYPY:
15314
+ class VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgsDict(TypedDict):
15315
+ apply_update_preferred_end_time: NotRequired[pulumi.Input[str]]
15316
+ """
15317
+ (Updatable) End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
15318
+ """
15319
+ apply_update_preferred_start_time: NotRequired[pulumi.Input[str]]
15320
+ """
15321
+ (Updatable) Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
15322
+ """
15323
+ elif False:
15324
+ VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgsDict: TypeAlias = Mapping[str, Any]
15325
+
15326
+ @pulumi.input_type
15327
+ class VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs:
15328
+ def __init__(__self__, *,
15329
+ apply_update_preferred_end_time: Optional[pulumi.Input[str]] = None,
15330
+ apply_update_preferred_start_time: Optional[pulumi.Input[str]] = None):
15331
+ """
15332
+ :param pulumi.Input[str] apply_update_preferred_end_time: (Updatable) End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
15333
+ :param pulumi.Input[str] apply_update_preferred_start_time: (Updatable) Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
15334
+ """
15335
+ if apply_update_preferred_end_time is not None:
15336
+ pulumi.set(__self__, "apply_update_preferred_end_time", apply_update_preferred_end_time)
15337
+ if apply_update_preferred_start_time is not None:
15338
+ pulumi.set(__self__, "apply_update_preferred_start_time", apply_update_preferred_start_time)
15339
+
15340
+ @property
15341
+ @pulumi.getter(name="applyUpdatePreferredEndTime")
15342
+ def apply_update_preferred_end_time(self) -> Optional[pulumi.Input[str]]:
15343
+ """
15344
+ (Updatable) End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
15345
+ """
15346
+ return pulumi.get(self, "apply_update_preferred_end_time")
15347
+
15348
+ @apply_update_preferred_end_time.setter
15349
+ def apply_update_preferred_end_time(self, value: Optional[pulumi.Input[str]]):
15350
+ pulumi.set(self, "apply_update_preferred_end_time", value)
15351
+
15352
+ @property
15353
+ @pulumi.getter(name="applyUpdatePreferredStartTime")
15354
+ def apply_update_preferred_start_time(self) -> Optional[pulumi.Input[str]]:
15355
+ """
15356
+ (Updatable) Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
15357
+ """
15358
+ return pulumi.get(self, "apply_update_preferred_start_time")
15359
+
15360
+ @apply_update_preferred_start_time.setter
15361
+ def apply_update_preferred_start_time(self, value: Optional[pulumi.Input[str]]):
15362
+ pulumi.set(self, "apply_update_preferred_start_time", value)
15363
+
15364
+
15365
+ if not MYPY:
15366
+ class VmClusterCloudAutomationUpdateDetailsFreezePeriodArgsDict(TypedDict):
15367
+ freeze_period_end_time: NotRequired[pulumi.Input[str]]
15368
+ """
15369
+ (Updatable) End time of the freeze period cycle.
15370
+ """
15371
+ freeze_period_start_time: NotRequired[pulumi.Input[str]]
15372
+ """
15373
+ (Updatable) Start time of the freeze period cycle.
15374
+ """
15375
+ elif False:
15376
+ VmClusterCloudAutomationUpdateDetailsFreezePeriodArgsDict: TypeAlias = Mapping[str, Any]
15377
+
15378
+ @pulumi.input_type
15379
+ class VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs:
15380
+ def __init__(__self__, *,
15381
+ freeze_period_end_time: Optional[pulumi.Input[str]] = None,
15382
+ freeze_period_start_time: Optional[pulumi.Input[str]] = None):
15383
+ """
15384
+ :param pulumi.Input[str] freeze_period_end_time: (Updatable) End time of the freeze period cycle.
15385
+ :param pulumi.Input[str] freeze_period_start_time: (Updatable) Start time of the freeze period cycle.
15386
+ """
15387
+ if freeze_period_end_time is not None:
15388
+ pulumi.set(__self__, "freeze_period_end_time", freeze_period_end_time)
15389
+ if freeze_period_start_time is not None:
15390
+ pulumi.set(__self__, "freeze_period_start_time", freeze_period_start_time)
15391
+
15392
+ @property
15393
+ @pulumi.getter(name="freezePeriodEndTime")
15394
+ def freeze_period_end_time(self) -> Optional[pulumi.Input[str]]:
15395
+ """
15396
+ (Updatable) End time of the freeze period cycle.
15397
+ """
15398
+ return pulumi.get(self, "freeze_period_end_time")
15399
+
15400
+ @freeze_period_end_time.setter
15401
+ def freeze_period_end_time(self, value: Optional[pulumi.Input[str]]):
15402
+ pulumi.set(self, "freeze_period_end_time", value)
15403
+
15404
+ @property
15405
+ @pulumi.getter(name="freezePeriodStartTime")
15406
+ def freeze_period_start_time(self) -> Optional[pulumi.Input[str]]:
15407
+ """
15408
+ (Updatable) Start time of the freeze period cycle.
15409
+ """
15410
+ return pulumi.get(self, "freeze_period_start_time")
15411
+
15412
+ @freeze_period_start_time.setter
15413
+ def freeze_period_start_time(self, value: Optional[pulumi.Input[str]]):
15414
+ pulumi.set(self, "freeze_period_start_time", value)
15415
+
15416
+
14735
15417
  if not MYPY:
14736
15418
  class VmClusterDataCollectionOptionsArgsDict(TypedDict):
14737
15419
  is_diagnostics_events_enabled: NotRequired[pulumi.Input[bool]]
@@ -15307,6 +15989,202 @@ class VmClusterNetworkVmNetworkNodeArgs:
15307
15989
  pulumi.set(self, "vip_hostname", value)
15308
15990
 
15309
15991
 
15992
+ if not MYPY:
15993
+ class VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailArgsDict(TypedDict):
15994
+ apply_update_time_preferences: NotRequired[pulumi.Input[Sequence[pulumi.Input['VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgsDict']]]]
15995
+ """
15996
+ Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
15997
+ """
15998
+ freeze_periods: NotRequired[pulumi.Input[Sequence[pulumi.Input['VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailFreezePeriodArgsDict']]]]
15999
+ """
16000
+ Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
16001
+ """
16002
+ is_early_adoption_enabled: NotRequired[pulumi.Input[bool]]
16003
+ """
16004
+ Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
16005
+ """
16006
+ is_freeze_period_enabled: NotRequired[pulumi.Input[bool]]
16007
+ """
16008
+ Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
16009
+ """
16010
+ elif False:
16011
+ VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailArgsDict: TypeAlias = Mapping[str, Any]
16012
+
16013
+ @pulumi.input_type
16014
+ class VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailArgs:
16015
+ def __init__(__self__, *,
16016
+ apply_update_time_preferences: Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs']]]] = None,
16017
+ freeze_periods: Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailFreezePeriodArgs']]]] = None,
16018
+ is_early_adoption_enabled: Optional[pulumi.Input[bool]] = None,
16019
+ is_freeze_period_enabled: Optional[pulumi.Input[bool]] = None):
16020
+ """
16021
+ :param pulumi.Input[Sequence[pulumi.Input['VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs']]] apply_update_time_preferences: Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
16022
+ :param pulumi.Input[Sequence[pulumi.Input['VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailFreezePeriodArgs']]] freeze_periods: Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
16023
+ :param pulumi.Input[bool] is_early_adoption_enabled: Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
16024
+ :param pulumi.Input[bool] is_freeze_period_enabled: Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
16025
+ """
16026
+ if apply_update_time_preferences is not None:
16027
+ pulumi.set(__self__, "apply_update_time_preferences", apply_update_time_preferences)
16028
+ if freeze_periods is not None:
16029
+ pulumi.set(__self__, "freeze_periods", freeze_periods)
16030
+ if is_early_adoption_enabled is not None:
16031
+ pulumi.set(__self__, "is_early_adoption_enabled", is_early_adoption_enabled)
16032
+ if is_freeze_period_enabled is not None:
16033
+ pulumi.set(__self__, "is_freeze_period_enabled", is_freeze_period_enabled)
16034
+
16035
+ @property
16036
+ @pulumi.getter(name="applyUpdateTimePreferences")
16037
+ def apply_update_time_preferences(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs']]]]:
16038
+ """
16039
+ Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
16040
+ """
16041
+ return pulumi.get(self, "apply_update_time_preferences")
16042
+
16043
+ @apply_update_time_preferences.setter
16044
+ def apply_update_time_preferences(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs']]]]):
16045
+ pulumi.set(self, "apply_update_time_preferences", value)
16046
+
16047
+ @property
16048
+ @pulumi.getter(name="freezePeriods")
16049
+ def freeze_periods(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailFreezePeriodArgs']]]]:
16050
+ """
16051
+ Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
16052
+ """
16053
+ return pulumi.get(self, "freeze_periods")
16054
+
16055
+ @freeze_periods.setter
16056
+ def freeze_periods(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailFreezePeriodArgs']]]]):
16057
+ pulumi.set(self, "freeze_periods", value)
16058
+
16059
+ @property
16060
+ @pulumi.getter(name="isEarlyAdoptionEnabled")
16061
+ def is_early_adoption_enabled(self) -> Optional[pulumi.Input[bool]]:
16062
+ """
16063
+ Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
16064
+ """
16065
+ return pulumi.get(self, "is_early_adoption_enabled")
16066
+
16067
+ @is_early_adoption_enabled.setter
16068
+ def is_early_adoption_enabled(self, value: Optional[pulumi.Input[bool]]):
16069
+ pulumi.set(self, "is_early_adoption_enabled", value)
16070
+
16071
+ @property
16072
+ @pulumi.getter(name="isFreezePeriodEnabled")
16073
+ def is_freeze_period_enabled(self) -> Optional[pulumi.Input[bool]]:
16074
+ """
16075
+ Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
16076
+ """
16077
+ return pulumi.get(self, "is_freeze_period_enabled")
16078
+
16079
+ @is_freeze_period_enabled.setter
16080
+ def is_freeze_period_enabled(self, value: Optional[pulumi.Input[bool]]):
16081
+ pulumi.set(self, "is_freeze_period_enabled", value)
16082
+
16083
+
16084
+ if not MYPY:
16085
+ class VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgsDict(TypedDict):
16086
+ apply_update_preferred_end_time: NotRequired[pulumi.Input[str]]
16087
+ """
16088
+ End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
16089
+ """
16090
+ apply_update_preferred_start_time: NotRequired[pulumi.Input[str]]
16091
+ """
16092
+ Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
16093
+ """
16094
+ elif False:
16095
+ VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgsDict: TypeAlias = Mapping[str, Any]
16096
+
16097
+ @pulumi.input_type
16098
+ class VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs:
16099
+ def __init__(__self__, *,
16100
+ apply_update_preferred_end_time: Optional[pulumi.Input[str]] = None,
16101
+ apply_update_preferred_start_time: Optional[pulumi.Input[str]] = None):
16102
+ """
16103
+ :param pulumi.Input[str] apply_update_preferred_end_time: End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
16104
+ :param pulumi.Input[str] apply_update_preferred_start_time: Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
16105
+ """
16106
+ if apply_update_preferred_end_time is not None:
16107
+ pulumi.set(__self__, "apply_update_preferred_end_time", apply_update_preferred_end_time)
16108
+ if apply_update_preferred_start_time is not None:
16109
+ pulumi.set(__self__, "apply_update_preferred_start_time", apply_update_preferred_start_time)
16110
+
16111
+ @property
16112
+ @pulumi.getter(name="applyUpdatePreferredEndTime")
16113
+ def apply_update_preferred_end_time(self) -> Optional[pulumi.Input[str]]:
16114
+ """
16115
+ End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
16116
+ """
16117
+ return pulumi.get(self, "apply_update_preferred_end_time")
16118
+
16119
+ @apply_update_preferred_end_time.setter
16120
+ def apply_update_preferred_end_time(self, value: Optional[pulumi.Input[str]]):
16121
+ pulumi.set(self, "apply_update_preferred_end_time", value)
16122
+
16123
+ @property
16124
+ @pulumi.getter(name="applyUpdatePreferredStartTime")
16125
+ def apply_update_preferred_start_time(self) -> Optional[pulumi.Input[str]]:
16126
+ """
16127
+ Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
16128
+ """
16129
+ return pulumi.get(self, "apply_update_preferred_start_time")
16130
+
16131
+ @apply_update_preferred_start_time.setter
16132
+ def apply_update_preferred_start_time(self, value: Optional[pulumi.Input[str]]):
16133
+ pulumi.set(self, "apply_update_preferred_start_time", value)
16134
+
16135
+
16136
+ if not MYPY:
16137
+ class VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailFreezePeriodArgsDict(TypedDict):
16138
+ freeze_period_end_time: NotRequired[pulumi.Input[str]]
16139
+ """
16140
+ End time of the freeze period cycle.
16141
+ """
16142
+ freeze_period_start_time: NotRequired[pulumi.Input[str]]
16143
+ """
16144
+ Start time of the freeze period cycle.
16145
+ """
16146
+ elif False:
16147
+ VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailFreezePeriodArgsDict: TypeAlias = Mapping[str, Any]
16148
+
16149
+ @pulumi.input_type
16150
+ class VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailFreezePeriodArgs:
16151
+ def __init__(__self__, *,
16152
+ freeze_period_end_time: Optional[pulumi.Input[str]] = None,
16153
+ freeze_period_start_time: Optional[pulumi.Input[str]] = None):
16154
+ """
16155
+ :param pulumi.Input[str] freeze_period_end_time: End time of the freeze period cycle.
16156
+ :param pulumi.Input[str] freeze_period_start_time: Start time of the freeze period cycle.
16157
+ """
16158
+ if freeze_period_end_time is not None:
16159
+ pulumi.set(__self__, "freeze_period_end_time", freeze_period_end_time)
16160
+ if freeze_period_start_time is not None:
16161
+ pulumi.set(__self__, "freeze_period_start_time", freeze_period_start_time)
16162
+
16163
+ @property
16164
+ @pulumi.getter(name="freezePeriodEndTime")
16165
+ def freeze_period_end_time(self) -> Optional[pulumi.Input[str]]:
16166
+ """
16167
+ End time of the freeze period cycle.
16168
+ """
16169
+ return pulumi.get(self, "freeze_period_end_time")
16170
+
16171
+ @freeze_period_end_time.setter
16172
+ def freeze_period_end_time(self, value: Optional[pulumi.Input[str]]):
16173
+ pulumi.set(self, "freeze_period_end_time", value)
16174
+
16175
+ @property
16176
+ @pulumi.getter(name="freezePeriodStartTime")
16177
+ def freeze_period_start_time(self) -> Optional[pulumi.Input[str]]:
16178
+ """
16179
+ Start time of the freeze period cycle.
16180
+ """
16181
+ return pulumi.get(self, "freeze_period_start_time")
16182
+
16183
+ @freeze_period_start_time.setter
16184
+ def freeze_period_start_time(self, value: Optional[pulumi.Input[str]]):
16185
+ pulumi.set(self, "freeze_period_start_time", value)
16186
+
16187
+
15310
16188
  if not MYPY:
15311
16189
  class VmClusterRemoveVirtualMachineDataCollectionOptionArgsDict(TypedDict):
15312
16190
  is_diagnostics_events_enabled: NotRequired[pulumi.Input[bool]]