pulumi-oci 2.22.0a1737613119__py3-none-any.whl → 2.23.0a1737786272__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. pulumi_oci/__init__.py +8 -0
  2. pulumi_oci/bigdataservice/bds_instance_api_key.py +0 -14
  3. pulumi_oci/bigdataservice/get_bds_instance_api_key.py +0 -2
  4. pulumi_oci/bigdataservice/outputs.py +0 -4
  5. pulumi_oci/core/__init__.py +3 -0
  6. pulumi_oci/core/_inputs.py +143 -0
  7. pulumi_oci/core/byoasn.py +595 -0
  8. pulumi_oci/core/get_byoasn.py +268 -0
  9. pulumi_oci/core/get_byoasns.py +131 -0
  10. pulumi_oci/core/get_byoip_range.py +15 -1
  11. pulumi_oci/core/instance.py +7 -7
  12. pulumi_oci/core/outputs.py +457 -0
  13. pulumi_oci/database/_inputs.py +696 -89
  14. pulumi_oci/database/autonomous_database.py +98 -4
  15. pulumi_oci/database/autonomous_exadata_infrastructure.py +0 -2
  16. pulumi_oci/database/autonomous_vm_cluster.py +0 -2
  17. pulumi_oci/database/cloud_exadata_infrastructure.py +0 -2
  18. pulumi_oci/database/data_guard_association.py +75 -28
  19. pulumi_oci/database/database.py +147 -32
  20. pulumi_oci/database/database_upgrade.py +28 -0
  21. pulumi_oci/database/exadata_infrastructure.py +0 -2
  22. pulumi_oci/database/get_autonomous_database.py +30 -2
  23. pulumi_oci/database/get_data_guard_association.py +12 -1
  24. pulumi_oci/database/get_database.py +40 -1
  25. pulumi_oci/database/outputs.py +994 -114
  26. pulumi_oci/networkloadbalancer/__init__.py +1 -0
  27. pulumi_oci/networkloadbalancer/_inputs.py +6 -6
  28. pulumi_oci/networkloadbalancer/backend.py +7 -7
  29. pulumi_oci/networkloadbalancer/backend_set.py +105 -7
  30. pulumi_oci/networkloadbalancer/get_backend_set.py +30 -2
  31. pulumi_oci/networkloadbalancer/get_network_load_balancer_backend_set_backend_operational_status.py +165 -0
  32. pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -7
  33. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +105 -7
  34. pulumi_oci/networkloadbalancer/outputs.py +34 -12
  35. pulumi_oci/pulumi-plugin.json +1 -1
  36. {pulumi_oci-2.22.0a1737613119.dist-info → pulumi_oci-2.23.0a1737786272.dist-info}/METADATA +1 -1
  37. {pulumi_oci-2.22.0a1737613119.dist-info → pulumi_oci-2.23.0a1737786272.dist-info}/RECORD +39 -35
  38. {pulumi_oci-2.22.0a1737613119.dist-info → pulumi_oci-2.23.0a1737786272.dist-info}/WHEEL +0 -0
  39. {pulumi_oci-2.22.0a1737613119.dist-info → pulumi_oci-2.23.0a1737786272.dist-info}/top_level.txt +0 -0
@@ -153,6 +153,10 @@ __all__ = [
153
153
  'DataGuardAssociationDataCollectionOptionsArgsDict',
154
154
  'DatabaseConnectionStringArgs',
155
155
  'DatabaseConnectionStringArgsDict',
156
+ 'DatabaseDataGuardGroupArgs',
157
+ 'DatabaseDataGuardGroupArgsDict',
158
+ 'DatabaseDataGuardGroupMemberArgs',
159
+ 'DatabaseDataGuardGroupMemberArgsDict',
156
160
  'DatabaseDatabaseArgs',
157
161
  'DatabaseDatabaseArgsDict',
158
162
  'DatabaseDatabaseDbBackupConfigArgs',
@@ -167,6 +171,10 @@ __all__ = [
167
171
  'DatabaseDbBackupConfigBackupDestinationDetailArgsDict',
168
172
  'DatabaseUpgradeConnectionStringArgs',
169
173
  'DatabaseUpgradeConnectionStringArgsDict',
174
+ 'DatabaseUpgradeDataGuardGroupArgs',
175
+ 'DatabaseUpgradeDataGuardGroupArgsDict',
176
+ 'DatabaseUpgradeDataGuardGroupMemberArgs',
177
+ 'DatabaseUpgradeDataGuardGroupMemberArgsDict',
170
178
  'DatabaseUpgradeDatabaseUpgradeSourceDetailsArgs',
171
179
  'DatabaseUpgradeDatabaseUpgradeSourceDetailsArgsDict',
172
180
  'DatabaseUpgradeDbBackupConfigArgs',
@@ -994,7 +1002,7 @@ if not MYPY:
994
1002
  """
995
1003
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
996
1004
  """
997
- 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.
1005
+ (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.
998
1006
  """
999
1007
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
1000
1008
  """
@@ -1028,7 +1036,7 @@ class AutonomousContainerDatabaseMaintenanceWindowArgs:
1028
1036
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousContainerDatabaseMaintenanceWindowMonthArgs']]] months: Months during the year when maintenance should be performed.
1029
1037
  :param pulumi.Input[str] patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
1030
1038
  :param pulumi.Input[str] preference: The maintenance window scheduling preference.
1031
- :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.
1039
+ :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.
1032
1040
  :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.
1033
1041
  """
1034
1042
  if custom_action_timeout_in_mins is not None:
@@ -1167,7 +1175,7 @@ class AutonomousContainerDatabaseMaintenanceWindowArgs:
1167
1175
  @pulumi.getter(name="skipRus")
1168
1176
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
1169
1177
  """
1170
- 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.
1178
+ (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.
1171
1179
  """
1172
1180
  return pulumi.get(self, "skip_rus")
1173
1181
 
@@ -1267,7 +1275,7 @@ if not MYPY:
1267
1275
  """
1268
1276
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
1269
1277
  """
1270
- (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.
1278
+ 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.
1271
1279
  """
1272
1280
  elif False:
1273
1281
  AutonomousContainerDatabaseMaintenanceWindowDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -1300,7 +1308,7 @@ class AutonomousContainerDatabaseMaintenanceWindowDetailsArgs:
1300
1308
  *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.
1301
1309
  :param pulumi.Input[str] preference: (Updatable) The maintenance window scheduling preference.
1302
1310
  :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.
1303
- :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.
1311
+ :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.
1304
1312
  """
1305
1313
  if custom_action_timeout_in_mins is not None:
1306
1314
  pulumi.set(__self__, "custom_action_timeout_in_mins", custom_action_timeout_in_mins)
@@ -1452,7 +1460,7 @@ class AutonomousContainerDatabaseMaintenanceWindowDetailsArgs:
1452
1460
  @pulumi.getter(name="weeksOfMonths")
1453
1461
  def weeks_of_months(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]:
1454
1462
  """
1455
- (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.
1463
+ 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.
1456
1464
  """
1457
1465
  return pulumi.get(self, "weeks_of_months")
1458
1466
 
@@ -4094,9 +4102,6 @@ if not MYPY:
4094
4102
  The maintenance window scheduling preference.
4095
4103
  """
4096
4104
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
4097
- """
4098
- 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.
4099
- """
4100
4105
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
4101
4106
  """
4102
4107
  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.
@@ -4129,7 +4134,6 @@ class AutonomousExadataInfrastructureMaintenanceWindowArgs:
4129
4134
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousExadataInfrastructureMaintenanceWindowMonthArgs']]] months: Months during the year when maintenance should be performed.
4130
4135
  :param pulumi.Input[str] patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
4131
4136
  :param pulumi.Input[str] preference: The maintenance window scheduling preference.
4132
- :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.
4133
4137
  :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.
4134
4138
  """
4135
4139
  if custom_action_timeout_in_mins is not None:
@@ -4267,9 +4271,6 @@ class AutonomousExadataInfrastructureMaintenanceWindowArgs:
4267
4271
  @property
4268
4272
  @pulumi.getter(name="skipRus")
4269
4273
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
4270
- """
4271
- 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.
4272
- """
4273
4274
  return pulumi.get(self, "skip_rus")
4274
4275
 
4275
4276
  @skip_rus.setter
@@ -4363,9 +4364,6 @@ if not MYPY:
4363
4364
  (Updatable) The maintenance window scheduling preference.
4364
4365
  """
4365
4366
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
4366
- """
4367
- (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.
4368
- """
4369
4367
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
4370
4368
  """
4371
4369
  (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.
@@ -4400,7 +4398,6 @@ class AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs:
4400
4398
 
4401
4399
  *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.
4402
4400
  :param pulumi.Input[str] preference: (Updatable) The maintenance window scheduling preference.
4403
- :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.
4404
4401
  :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.
4405
4402
  """
4406
4403
  if custom_action_timeout_in_mins is not None:
@@ -4540,9 +4537,6 @@ class AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs:
4540
4537
  @property
4541
4538
  @pulumi.getter(name="skipRus")
4542
4539
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
4543
- """
4544
- (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.
4545
- """
4546
4540
  return pulumi.get(self, "skip_rus")
4547
4541
 
4548
4542
  @skip_rus.setter
@@ -4689,9 +4683,6 @@ if not MYPY:
4689
4683
  The maintenance window scheduling preference.
4690
4684
  """
4691
4685
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
4692
- """
4693
- 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.
4694
- """
4695
4686
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
4696
4687
  """
4697
4688
  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.
@@ -4723,7 +4714,6 @@ class AutonomousVmClusterMaintenanceWindowArgs:
4723
4714
 
4724
4715
  *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.
4725
4716
  :param pulumi.Input[str] preference: The maintenance window scheduling preference.
4726
- :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.
4727
4717
  :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.
4728
4718
  """
4729
4719
  if custom_action_timeout_in_mins is not None:
@@ -4854,9 +4844,6 @@ class AutonomousVmClusterMaintenanceWindowArgs:
4854
4844
  @property
4855
4845
  @pulumi.getter(name="skipRus")
4856
4846
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
4857
- """
4858
- 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.
4859
- """
4860
4847
  return pulumi.get(self, "skip_rus")
4861
4848
 
4862
4849
  @skip_rus.setter
@@ -4941,9 +4928,6 @@ if not MYPY:
4941
4928
  (Updatable) The maintenance window scheduling preference.
4942
4929
  """
4943
4930
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
4944
- """
4945
- (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.
4946
- """
4947
4931
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
4948
4932
  """
4949
4933
  (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.
@@ -4975,7 +4959,6 @@ class AutonomousVmClusterMaintenanceWindowDetailArgs:
4975
4959
 
4976
4960
  *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.
4977
4961
  :param pulumi.Input[str] preference: (Updatable) The maintenance window scheduling preference.
4978
- :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.
4979
4962
  :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.
4980
4963
  """
4981
4964
  if custom_action_timeout_in_mins is not None:
@@ -5106,9 +5089,6 @@ class AutonomousVmClusterMaintenanceWindowDetailArgs:
5106
5089
  @property
5107
5090
  @pulumi.getter(name="skipRus")
5108
5091
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
5109
- """
5110
- (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.
5111
- """
5112
5092
  return pulumi.get(self, "skip_rus")
5113
5093
 
5114
5094
  @skip_rus.setter
@@ -6183,9 +6163,6 @@ if not MYPY:
6183
6163
  (Updatable) The maintenance window scheduling preference.
6184
6164
  """
6185
6165
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
6186
- """
6187
- (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.
6188
- """
6189
6166
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
6190
6167
  """
6191
6168
  (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.
@@ -6220,7 +6197,6 @@ class CloudExadataInfrastructureMaintenanceWindowArgs:
6220
6197
 
6221
6198
  *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.
6222
6199
  :param pulumi.Input[str] preference: (Updatable) The maintenance window scheduling preference.
6223
- :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.
6224
6200
  :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.
6225
6201
  """
6226
6202
  if custom_action_timeout_in_mins is not None:
@@ -6360,9 +6336,6 @@ class CloudExadataInfrastructureMaintenanceWindowArgs:
6360
6336
  @property
6361
6337
  @pulumi.getter(name="skipRus")
6362
6338
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
6363
- """
6364
- (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.
6365
- """
6366
6339
  return pulumi.get(self, "skip_rus")
6367
6340
 
6368
6341
  @skip_rus.setter
@@ -7143,14 +7116,263 @@ class DatabaseConnectionStringArgs:
7143
7116
 
7144
7117
 
7145
7118
  if not MYPY:
7146
- class DatabaseDatabaseArgsDict(TypedDict):
7147
- admin_password: pulumi.Input[str]
7119
+ class DatabaseDataGuardGroupArgsDict(TypedDict):
7120
+ members: NotRequired[pulumi.Input[Sequence[pulumi.Input['DatabaseDataGuardGroupMemberArgsDict']]]]
7148
7121
  """
7149
- A strong password for SYS, SYSTEM, PDB Admin and TDE Wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \\#, or -.
7122
+ List of Data Guard members, representing each database that is part of Data Guard.
7150
7123
  """
7151
- db_name: pulumi.Input[str]
7124
+ protection_mode: NotRequired[pulumi.Input[str]]
7152
7125
  """
7153
- The display name of the database to be created from the backup. It must begin with an alphabetic character and can contain a maximum of eight alphanumeric characters. Special characters are not permitted.
7126
+ The protection mode of this Data Guard. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
7127
+ """
7128
+ elif False:
7129
+ DatabaseDataGuardGroupArgsDict: TypeAlias = Mapping[str, Any]
7130
+
7131
+ @pulumi.input_type
7132
+ class DatabaseDataGuardGroupArgs:
7133
+ def __init__(__self__, *,
7134
+ members: Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseDataGuardGroupMemberArgs']]]] = None,
7135
+ protection_mode: Optional[pulumi.Input[str]] = None):
7136
+ """
7137
+ :param pulumi.Input[Sequence[pulumi.Input['DatabaseDataGuardGroupMemberArgs']]] members: List of Data Guard members, representing each database that is part of Data Guard.
7138
+ :param pulumi.Input[str] protection_mode: The protection mode of this Data Guard. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
7139
+ """
7140
+ if members is not None:
7141
+ pulumi.set(__self__, "members", members)
7142
+ if protection_mode is not None:
7143
+ pulumi.set(__self__, "protection_mode", protection_mode)
7144
+
7145
+ @property
7146
+ @pulumi.getter
7147
+ def members(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseDataGuardGroupMemberArgs']]]]:
7148
+ """
7149
+ List of Data Guard members, representing each database that is part of Data Guard.
7150
+ """
7151
+ return pulumi.get(self, "members")
7152
+
7153
+ @members.setter
7154
+ def members(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseDataGuardGroupMemberArgs']]]]):
7155
+ pulumi.set(self, "members", value)
7156
+
7157
+ @property
7158
+ @pulumi.getter(name="protectionMode")
7159
+ def protection_mode(self) -> Optional[pulumi.Input[str]]:
7160
+ """
7161
+ The protection mode of this Data Guard. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
7162
+ """
7163
+ return pulumi.get(self, "protection_mode")
7164
+
7165
+ @protection_mode.setter
7166
+ def protection_mode(self, value: Optional[pulumi.Input[str]]):
7167
+ pulumi.set(self, "protection_mode", value)
7168
+
7169
+
7170
+ if not MYPY:
7171
+ class DatabaseDataGuardGroupMemberArgsDict(TypedDict):
7172
+ apply_lag: NotRequired[pulumi.Input[str]]
7173
+ """
7174
+ The lag time between updates to the primary database and application of the redo data on the standby database, as computed by the reporting database. Example: `1 second`
7175
+ """
7176
+ apply_rate: NotRequired[pulumi.Input[str]]
7177
+ """
7178
+ The rate at which redo logs are synced between the associated databases. Example: `102.96 MByte/s`
7179
+ """
7180
+ database_id: NotRequired[pulumi.Input[str]]
7181
+ """
7182
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database.
7183
+ """
7184
+ db_system_id: NotRequired[pulumi.Input[str]]
7185
+ """
7186
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
7187
+ """
7188
+ is_active_data_guard_enabled: NotRequired[pulumi.Input[bool]]
7189
+ """
7190
+ True if active Data Guard is enabled.
7191
+ """
7192
+ role: NotRequired[pulumi.Input[str]]
7193
+ """
7194
+ The role of the reporting database in this Data Guard association.
7195
+ """
7196
+ transport_lag: NotRequired[pulumi.Input[str]]
7197
+ """
7198
+ The rate at which redo logs are transported between the associated databases. Example: `1 second`
7199
+ """
7200
+ transport_lag_refresh: NotRequired[pulumi.Input[str]]
7201
+ """
7202
+ The date and time when last redo transport has been done.
7203
+ """
7204
+ transport_type: NotRequired[pulumi.Input[str]]
7205
+ """
7206
+ The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
7207
+ * MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
7208
+ * MAXIMUM_PERFORMANCE - ASYNC
7209
+ * MAXIMUM_PROTECTION - SYNC
7210
+ """
7211
+ elif False:
7212
+ DatabaseDataGuardGroupMemberArgsDict: TypeAlias = Mapping[str, Any]
7213
+
7214
+ @pulumi.input_type
7215
+ class DatabaseDataGuardGroupMemberArgs:
7216
+ def __init__(__self__, *,
7217
+ apply_lag: Optional[pulumi.Input[str]] = None,
7218
+ apply_rate: Optional[pulumi.Input[str]] = None,
7219
+ database_id: Optional[pulumi.Input[str]] = None,
7220
+ db_system_id: Optional[pulumi.Input[str]] = None,
7221
+ is_active_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
7222
+ role: Optional[pulumi.Input[str]] = None,
7223
+ transport_lag: Optional[pulumi.Input[str]] = None,
7224
+ transport_lag_refresh: Optional[pulumi.Input[str]] = None,
7225
+ transport_type: Optional[pulumi.Input[str]] = None):
7226
+ """
7227
+ :param pulumi.Input[str] apply_lag: The lag time between updates to the primary database and application of the redo data on the standby database, as computed by the reporting database. Example: `1 second`
7228
+ :param pulumi.Input[str] apply_rate: The rate at which redo logs are synced between the associated databases. Example: `102.96 MByte/s`
7229
+ :param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database.
7230
+ :param pulumi.Input[str] db_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
7231
+ :param pulumi.Input[bool] is_active_data_guard_enabled: True if active Data Guard is enabled.
7232
+ :param pulumi.Input[str] role: The role of the reporting database in this Data Guard association.
7233
+ :param pulumi.Input[str] transport_lag: The rate at which redo logs are transported between the associated databases. Example: `1 second`
7234
+ :param pulumi.Input[str] transport_lag_refresh: The date and time when last redo transport has been done.
7235
+ :param pulumi.Input[str] transport_type: The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
7236
+ * MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
7237
+ * MAXIMUM_PERFORMANCE - ASYNC
7238
+ * MAXIMUM_PROTECTION - SYNC
7239
+ """
7240
+ if apply_lag is not None:
7241
+ pulumi.set(__self__, "apply_lag", apply_lag)
7242
+ if apply_rate is not None:
7243
+ pulumi.set(__self__, "apply_rate", apply_rate)
7244
+ if database_id is not None:
7245
+ pulumi.set(__self__, "database_id", database_id)
7246
+ if db_system_id is not None:
7247
+ pulumi.set(__self__, "db_system_id", db_system_id)
7248
+ if is_active_data_guard_enabled is not None:
7249
+ pulumi.set(__self__, "is_active_data_guard_enabled", is_active_data_guard_enabled)
7250
+ if role is not None:
7251
+ pulumi.set(__self__, "role", role)
7252
+ if transport_lag is not None:
7253
+ pulumi.set(__self__, "transport_lag", transport_lag)
7254
+ if transport_lag_refresh is not None:
7255
+ pulumi.set(__self__, "transport_lag_refresh", transport_lag_refresh)
7256
+ if transport_type is not None:
7257
+ pulumi.set(__self__, "transport_type", transport_type)
7258
+
7259
+ @property
7260
+ @pulumi.getter(name="applyLag")
7261
+ def apply_lag(self) -> Optional[pulumi.Input[str]]:
7262
+ """
7263
+ The lag time between updates to the primary database and application of the redo data on the standby database, as computed by the reporting database. Example: `1 second`
7264
+ """
7265
+ return pulumi.get(self, "apply_lag")
7266
+
7267
+ @apply_lag.setter
7268
+ def apply_lag(self, value: Optional[pulumi.Input[str]]):
7269
+ pulumi.set(self, "apply_lag", value)
7270
+
7271
+ @property
7272
+ @pulumi.getter(name="applyRate")
7273
+ def apply_rate(self) -> Optional[pulumi.Input[str]]:
7274
+ """
7275
+ The rate at which redo logs are synced between the associated databases. Example: `102.96 MByte/s`
7276
+ """
7277
+ return pulumi.get(self, "apply_rate")
7278
+
7279
+ @apply_rate.setter
7280
+ def apply_rate(self, value: Optional[pulumi.Input[str]]):
7281
+ pulumi.set(self, "apply_rate", value)
7282
+
7283
+ @property
7284
+ @pulumi.getter(name="databaseId")
7285
+ def database_id(self) -> Optional[pulumi.Input[str]]:
7286
+ """
7287
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database.
7288
+ """
7289
+ return pulumi.get(self, "database_id")
7290
+
7291
+ @database_id.setter
7292
+ def database_id(self, value: Optional[pulumi.Input[str]]):
7293
+ pulumi.set(self, "database_id", value)
7294
+
7295
+ @property
7296
+ @pulumi.getter(name="dbSystemId")
7297
+ def db_system_id(self) -> Optional[pulumi.Input[str]]:
7298
+ """
7299
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
7300
+ """
7301
+ return pulumi.get(self, "db_system_id")
7302
+
7303
+ @db_system_id.setter
7304
+ def db_system_id(self, value: Optional[pulumi.Input[str]]):
7305
+ pulumi.set(self, "db_system_id", value)
7306
+
7307
+ @property
7308
+ @pulumi.getter(name="isActiveDataGuardEnabled")
7309
+ def is_active_data_guard_enabled(self) -> Optional[pulumi.Input[bool]]:
7310
+ """
7311
+ True if active Data Guard is enabled.
7312
+ """
7313
+ return pulumi.get(self, "is_active_data_guard_enabled")
7314
+
7315
+ @is_active_data_guard_enabled.setter
7316
+ def is_active_data_guard_enabled(self, value: Optional[pulumi.Input[bool]]):
7317
+ pulumi.set(self, "is_active_data_guard_enabled", value)
7318
+
7319
+ @property
7320
+ @pulumi.getter
7321
+ def role(self) -> Optional[pulumi.Input[str]]:
7322
+ """
7323
+ The role of the reporting database in this Data Guard association.
7324
+ """
7325
+ return pulumi.get(self, "role")
7326
+
7327
+ @role.setter
7328
+ def role(self, value: Optional[pulumi.Input[str]]):
7329
+ pulumi.set(self, "role", value)
7330
+
7331
+ @property
7332
+ @pulumi.getter(name="transportLag")
7333
+ def transport_lag(self) -> Optional[pulumi.Input[str]]:
7334
+ """
7335
+ The rate at which redo logs are transported between the associated databases. Example: `1 second`
7336
+ """
7337
+ return pulumi.get(self, "transport_lag")
7338
+
7339
+ @transport_lag.setter
7340
+ def transport_lag(self, value: Optional[pulumi.Input[str]]):
7341
+ pulumi.set(self, "transport_lag", value)
7342
+
7343
+ @property
7344
+ @pulumi.getter(name="transportLagRefresh")
7345
+ def transport_lag_refresh(self) -> Optional[pulumi.Input[str]]:
7346
+ """
7347
+ The date and time when last redo transport has been done.
7348
+ """
7349
+ return pulumi.get(self, "transport_lag_refresh")
7350
+
7351
+ @transport_lag_refresh.setter
7352
+ def transport_lag_refresh(self, value: Optional[pulumi.Input[str]]):
7353
+ pulumi.set(self, "transport_lag_refresh", value)
7354
+
7355
+ @property
7356
+ @pulumi.getter(name="transportType")
7357
+ def transport_type(self) -> Optional[pulumi.Input[str]]:
7358
+ """
7359
+ The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
7360
+ * MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
7361
+ * MAXIMUM_PERFORMANCE - ASYNC
7362
+ * MAXIMUM_PROTECTION - SYNC
7363
+ """
7364
+ return pulumi.get(self, "transport_type")
7365
+
7366
+ @transport_type.setter
7367
+ def transport_type(self, value: Optional[pulumi.Input[str]]):
7368
+ pulumi.set(self, "transport_type", value)
7369
+
7370
+
7371
+ if not MYPY:
7372
+ class DatabaseDatabaseArgsDict(TypedDict):
7373
+ admin_password: NotRequired[pulumi.Input[str]]
7374
+ """
7375
+ A strong password for SYS, SYSTEM, PDB Admin and TDE Wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \\#, or -.
7154
7376
  """
7155
7377
  backup_id: NotRequired[pulumi.Input[str]]
7156
7378
  """
@@ -7166,6 +7388,12 @@ if not MYPY:
7166
7388
 
7167
7389
  AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
7168
7390
  """
7391
+ database_admin_password: NotRequired[pulumi.Input[str]]
7392
+ """
7393
+ The administrator password of the primary database in this Data Guard association.
7394
+
7395
+ **The password MUST be the same as the primary admin password.**
7396
+ """
7169
7397
  database_software_image_id: NotRequired[pulumi.Input[str]]
7170
7398
  """
7171
7399
  The database software image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
@@ -7174,9 +7402,13 @@ if not MYPY:
7174
7402
  """
7175
7403
  (Updatable) Backup Options To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see [Getting Started with Policies](https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/policygetstarted.htm).
7176
7404
  """
7405
+ db_name: NotRequired[pulumi.Input[str]]
7406
+ """
7407
+ The display name of the database to be created from the backup. It must begin with an alphabetic character and can contain a maximum of eight alphanumeric characters. Special characters are not permitted.
7408
+ """
7177
7409
  db_unique_name: NotRequired[pulumi.Input[str]]
7178
7410
  """
7179
- The `DB_UNIQUE_NAME` of the Oracle Database being backed up.
7411
+ Specifies the `DB_UNIQUE_NAME` of the peer database to be created.
7180
7412
  """
7181
7413
  db_workload: NotRequired[pulumi.Input[str]]
7182
7414
  """
@@ -7192,6 +7424,10 @@ if not MYPY:
7192
7424
  """
7193
7425
  (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"}`
7194
7426
  """
7427
+ is_active_data_guard_enabled: NotRequired[pulumi.Input[bool]]
7428
+ """
7429
+ True if active Data Guard is enabled.
7430
+ """
7195
7431
  kms_key_id: NotRequired[pulumi.Input[str]]
7196
7432
  """
7197
7433
  The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
@@ -7212,14 +7448,37 @@ if not MYPY:
7212
7448
  """
7213
7449
  The list of pluggable databases that needs to be restored into new database.
7214
7450
  """
7451
+ protection_mode: NotRequired[pulumi.Input[str]]
7452
+ """
7453
+ The protection mode of this Data Guard. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
7454
+ """
7215
7455
  sid_prefix: NotRequired[pulumi.Input[str]]
7216
7456
  """
7217
7457
  Specifies a prefix for the `Oracle SID` of the database to be created.
7218
7458
  """
7459
+ source_database_id: NotRequired[pulumi.Input[str]]
7460
+ """
7461
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source database.
7462
+ """
7463
+ source_tde_wallet_password: NotRequired[pulumi.Input[str]]
7464
+ """
7465
+ The TDE wallet password of the source database specified by 'sourceDatabaseId'.
7466
+ """
7219
7467
  tde_wallet_password: NotRequired[pulumi.Input[str]]
7220
7468
  """
7221
7469
  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 -.
7222
7470
  """
7471
+ transport_type: NotRequired[pulumi.Input[str]]
7472
+ """
7473
+ The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
7474
+ * MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
7475
+ * MAXIMUM_PERFORMANCE - ASYNC
7476
+ * MAXIMUM_PROTECTION - SYNC
7477
+
7478
+ For more information, see [Redo Transport Services](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-redo-transport-services.htm#SBYDB00400) in the Oracle Data Guard documentation.
7479
+
7480
+ **IMPORTANT** - The only transport type currently supported by the Database service is ASYNC.
7481
+ """
7223
7482
  vault_id: NotRequired[pulumi.Input[str]]
7224
7483
  """
7225
7484
  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.
@@ -7230,62 +7489,87 @@ elif False:
7230
7489
  @pulumi.input_type
7231
7490
  class DatabaseDatabaseArgs:
7232
7491
  def __init__(__self__, *,
7233
- admin_password: pulumi.Input[str],
7234
- db_name: pulumi.Input[str],
7492
+ admin_password: Optional[pulumi.Input[str]] = None,
7235
7493
  backup_id: Optional[pulumi.Input[str]] = None,
7236
7494
  backup_tde_password: Optional[pulumi.Input[str]] = None,
7237
7495
  character_set: Optional[pulumi.Input[str]] = None,
7496
+ database_admin_password: Optional[pulumi.Input[str]] = None,
7238
7497
  database_software_image_id: Optional[pulumi.Input[str]] = None,
7239
7498
  db_backup_config: Optional[pulumi.Input['DatabaseDatabaseDbBackupConfigArgs']] = None,
7499
+ db_name: Optional[pulumi.Input[str]] = None,
7240
7500
  db_unique_name: Optional[pulumi.Input[str]] = None,
7241
7501
  db_workload: Optional[pulumi.Input[str]] = None,
7242
7502
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
7243
7503
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
7504
+ is_active_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
7244
7505
  kms_key_id: Optional[pulumi.Input[str]] = None,
7245
7506
  kms_key_version_id: Optional[pulumi.Input[str]] = None,
7246
7507
  ncharacter_set: Optional[pulumi.Input[str]] = None,
7247
7508
  pdb_name: Optional[pulumi.Input[str]] = None,
7248
7509
  pluggable_databases: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
7510
+ protection_mode: Optional[pulumi.Input[str]] = None,
7249
7511
  sid_prefix: Optional[pulumi.Input[str]] = None,
7512
+ source_database_id: Optional[pulumi.Input[str]] = None,
7513
+ source_tde_wallet_password: Optional[pulumi.Input[str]] = None,
7250
7514
  tde_wallet_password: Optional[pulumi.Input[str]] = None,
7515
+ transport_type: Optional[pulumi.Input[str]] = None,
7251
7516
  vault_id: Optional[pulumi.Input[str]] = None):
7252
7517
  """
7253
7518
  :param pulumi.Input[str] admin_password: A strong password for SYS, SYSTEM, PDB Admin and TDE Wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \\#, or -.
7254
- :param pulumi.Input[str] db_name: The display name of the database to be created from the backup. It must begin with an alphabetic character and can contain a maximum of eight alphanumeric characters. Special characters are not permitted.
7255
7519
  :param pulumi.Input[str] backup_id: The backup [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
7256
7520
  :param pulumi.Input[str] backup_tde_password: The password to open the TDE wallet.
7257
7521
  :param pulumi.Input[str] character_set: The character set for the database. The default is AL32UTF8. Allowed values are:
7258
7522
 
7259
7523
  AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
7524
+ :param pulumi.Input[str] database_admin_password: The administrator password of the primary database in this Data Guard association.
7525
+
7526
+ **The password MUST be the same as the primary admin password.**
7260
7527
  :param pulumi.Input[str] database_software_image_id: The database software image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
7261
7528
  :param pulumi.Input['DatabaseDatabaseDbBackupConfigArgs'] db_backup_config: (Updatable) Backup Options To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see [Getting Started with Policies](https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/policygetstarted.htm).
7262
- :param pulumi.Input[str] db_unique_name: The `DB_UNIQUE_NAME` of the Oracle Database being backed up.
7529
+ :param pulumi.Input[str] db_name: The display name of the database to be created from the backup. It must begin with an alphabetic character and can contain a maximum of eight alphanumeric characters. Special characters are not permitted.
7530
+ :param pulumi.Input[str] db_unique_name: Specifies the `DB_UNIQUE_NAME` of the peer database to be created.
7263
7531
  :param pulumi.Input[str] db_workload: **Deprecated.** The dbWorkload field has been deprecated for Exadata Database Service on Dedicated Infrastructure, Exadata Database Service on Cloud@Customer, and Base Database Service. Support for this attribute will end in November 2023. You may choose to update your custom scripts to exclude the dbWorkload attribute. After November 2023 if you pass a value to the dbWorkload attribute, it will be ignored.
7264
7532
 
7265
7533
  The database workload type.
7266
7534
  :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).
7267
7535
  :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"}`
7536
+ :param pulumi.Input[bool] is_active_data_guard_enabled: True if active Data Guard is enabled.
7268
7537
  :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.
7269
7538
  :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.
7270
7539
  :param pulumi.Input[str] ncharacter_set: The national character set for the database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
7271
7540
  :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.
7272
7541
  :param pulumi.Input[Sequence[pulumi.Input[str]]] pluggable_databases: The list of pluggable databases that needs to be restored into new database.
7542
+ :param pulumi.Input[str] protection_mode: The protection mode of this Data Guard. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
7273
7543
  :param pulumi.Input[str] sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
7544
+ :param pulumi.Input[str] source_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source database.
7545
+ :param pulumi.Input[str] source_tde_wallet_password: The TDE wallet password of the source database specified by 'sourceDatabaseId'.
7274
7546
  :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 -.
7547
+ :param pulumi.Input[str] transport_type: The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
7548
+ * MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
7549
+ * MAXIMUM_PERFORMANCE - ASYNC
7550
+ * MAXIMUM_PROTECTION - SYNC
7551
+
7552
+ For more information, see [Redo Transport Services](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-redo-transport-services.htm#SBYDB00400) in the Oracle Data Guard documentation.
7553
+
7554
+ **IMPORTANT** - The only transport type currently supported by the Database service is ASYNC.
7275
7555
  :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.
7276
7556
  """
7277
- pulumi.set(__self__, "admin_password", admin_password)
7278
- pulumi.set(__self__, "db_name", db_name)
7557
+ if admin_password is not None:
7558
+ pulumi.set(__self__, "admin_password", admin_password)
7279
7559
  if backup_id is not None:
7280
7560
  pulumi.set(__self__, "backup_id", backup_id)
7281
7561
  if backup_tde_password is not None:
7282
7562
  pulumi.set(__self__, "backup_tde_password", backup_tde_password)
7283
7563
  if character_set is not None:
7284
7564
  pulumi.set(__self__, "character_set", character_set)
7565
+ if database_admin_password is not None:
7566
+ pulumi.set(__self__, "database_admin_password", database_admin_password)
7285
7567
  if database_software_image_id is not None:
7286
7568
  pulumi.set(__self__, "database_software_image_id", database_software_image_id)
7287
7569
  if db_backup_config is not None:
7288
7570
  pulumi.set(__self__, "db_backup_config", db_backup_config)
7571
+ if db_name is not None:
7572
+ pulumi.set(__self__, "db_name", db_name)
7289
7573
  if db_unique_name is not None:
7290
7574
  pulumi.set(__self__, "db_unique_name", db_unique_name)
7291
7575
  if db_workload is not None:
@@ -7294,6 +7578,8 @@ class DatabaseDatabaseArgs:
7294
7578
  pulumi.set(__self__, "defined_tags", defined_tags)
7295
7579
  if freeform_tags is not None:
7296
7580
  pulumi.set(__self__, "freeform_tags", freeform_tags)
7581
+ if is_active_data_guard_enabled is not None:
7582
+ pulumi.set(__self__, "is_active_data_guard_enabled", is_active_data_guard_enabled)
7297
7583
  if kms_key_id is not None:
7298
7584
  pulumi.set(__self__, "kms_key_id", kms_key_id)
7299
7585
  if kms_key_version_id is not None:
@@ -7304,37 +7590,33 @@ class DatabaseDatabaseArgs:
7304
7590
  pulumi.set(__self__, "pdb_name", pdb_name)
7305
7591
  if pluggable_databases is not None:
7306
7592
  pulumi.set(__self__, "pluggable_databases", pluggable_databases)
7593
+ if protection_mode is not None:
7594
+ pulumi.set(__self__, "protection_mode", protection_mode)
7307
7595
  if sid_prefix is not None:
7308
7596
  pulumi.set(__self__, "sid_prefix", sid_prefix)
7597
+ if source_database_id is not None:
7598
+ pulumi.set(__self__, "source_database_id", source_database_id)
7599
+ if source_tde_wallet_password is not None:
7600
+ pulumi.set(__self__, "source_tde_wallet_password", source_tde_wallet_password)
7309
7601
  if tde_wallet_password is not None:
7310
7602
  pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
7603
+ if transport_type is not None:
7604
+ pulumi.set(__self__, "transport_type", transport_type)
7311
7605
  if vault_id is not None:
7312
7606
  pulumi.set(__self__, "vault_id", vault_id)
7313
7607
 
7314
7608
  @property
7315
7609
  @pulumi.getter(name="adminPassword")
7316
- def admin_password(self) -> pulumi.Input[str]:
7610
+ def admin_password(self) -> Optional[pulumi.Input[str]]:
7317
7611
  """
7318
7612
  A strong password for SYS, SYSTEM, PDB Admin and TDE Wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \\#, or -.
7319
7613
  """
7320
7614
  return pulumi.get(self, "admin_password")
7321
7615
 
7322
7616
  @admin_password.setter
7323
- def admin_password(self, value: pulumi.Input[str]):
7617
+ def admin_password(self, value: Optional[pulumi.Input[str]]):
7324
7618
  pulumi.set(self, "admin_password", value)
7325
7619
 
7326
- @property
7327
- @pulumi.getter(name="dbName")
7328
- def db_name(self) -> pulumi.Input[str]:
7329
- """
7330
- The display name of the database to be created from the backup. It must begin with an alphabetic character and can contain a maximum of eight alphanumeric characters. Special characters are not permitted.
7331
- """
7332
- return pulumi.get(self, "db_name")
7333
-
7334
- @db_name.setter
7335
- def db_name(self, value: pulumi.Input[str]):
7336
- pulumi.set(self, "db_name", value)
7337
-
7338
7620
  @property
7339
7621
  @pulumi.getter(name="backupId")
7340
7622
  def backup_id(self) -> Optional[pulumi.Input[str]]:
@@ -7373,6 +7655,20 @@ class DatabaseDatabaseArgs:
7373
7655
  def character_set(self, value: Optional[pulumi.Input[str]]):
7374
7656
  pulumi.set(self, "character_set", value)
7375
7657
 
7658
+ @property
7659
+ @pulumi.getter(name="databaseAdminPassword")
7660
+ def database_admin_password(self) -> Optional[pulumi.Input[str]]:
7661
+ """
7662
+ The administrator password of the primary database in this Data Guard association.
7663
+
7664
+ **The password MUST be the same as the primary admin password.**
7665
+ """
7666
+ return pulumi.get(self, "database_admin_password")
7667
+
7668
+ @database_admin_password.setter
7669
+ def database_admin_password(self, value: Optional[pulumi.Input[str]]):
7670
+ pulumi.set(self, "database_admin_password", value)
7671
+
7376
7672
  @property
7377
7673
  @pulumi.getter(name="databaseSoftwareImageId")
7378
7674
  def database_software_image_id(self) -> Optional[pulumi.Input[str]]:
@@ -7397,11 +7693,23 @@ class DatabaseDatabaseArgs:
7397
7693
  def db_backup_config(self, value: Optional[pulumi.Input['DatabaseDatabaseDbBackupConfigArgs']]):
7398
7694
  pulumi.set(self, "db_backup_config", value)
7399
7695
 
7696
+ @property
7697
+ @pulumi.getter(name="dbName")
7698
+ def db_name(self) -> Optional[pulumi.Input[str]]:
7699
+ """
7700
+ The display name of the database to be created from the backup. It must begin with an alphabetic character and can contain a maximum of eight alphanumeric characters. Special characters are not permitted.
7701
+ """
7702
+ return pulumi.get(self, "db_name")
7703
+
7704
+ @db_name.setter
7705
+ def db_name(self, value: Optional[pulumi.Input[str]]):
7706
+ pulumi.set(self, "db_name", value)
7707
+
7400
7708
  @property
7401
7709
  @pulumi.getter(name="dbUniqueName")
7402
7710
  def db_unique_name(self) -> Optional[pulumi.Input[str]]:
7403
7711
  """
7404
- The `DB_UNIQUE_NAME` of the Oracle Database being backed up.
7712
+ Specifies the `DB_UNIQUE_NAME` of the peer database to be created.
7405
7713
  """
7406
7714
  return pulumi.get(self, "db_unique_name")
7407
7715
 
@@ -7447,6 +7755,18 @@ class DatabaseDatabaseArgs:
7447
7755
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
7448
7756
  pulumi.set(self, "freeform_tags", value)
7449
7757
 
7758
+ @property
7759
+ @pulumi.getter(name="isActiveDataGuardEnabled")
7760
+ def is_active_data_guard_enabled(self) -> Optional[pulumi.Input[bool]]:
7761
+ """
7762
+ True if active Data Guard is enabled.
7763
+ """
7764
+ return pulumi.get(self, "is_active_data_guard_enabled")
7765
+
7766
+ @is_active_data_guard_enabled.setter
7767
+ def is_active_data_guard_enabled(self, value: Optional[pulumi.Input[bool]]):
7768
+ pulumi.set(self, "is_active_data_guard_enabled", value)
7769
+
7450
7770
  @property
7451
7771
  @pulumi.getter(name="kmsKeyId")
7452
7772
  def kms_key_id(self) -> Optional[pulumi.Input[str]]:
@@ -7507,6 +7827,18 @@ class DatabaseDatabaseArgs:
7507
7827
  def pluggable_databases(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
7508
7828
  pulumi.set(self, "pluggable_databases", value)
7509
7829
 
7830
+ @property
7831
+ @pulumi.getter(name="protectionMode")
7832
+ def protection_mode(self) -> Optional[pulumi.Input[str]]:
7833
+ """
7834
+ The protection mode of this Data Guard. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
7835
+ """
7836
+ return pulumi.get(self, "protection_mode")
7837
+
7838
+ @protection_mode.setter
7839
+ def protection_mode(self, value: Optional[pulumi.Input[str]]):
7840
+ pulumi.set(self, "protection_mode", value)
7841
+
7510
7842
  @property
7511
7843
  @pulumi.getter(name="sidPrefix")
7512
7844
  def sid_prefix(self) -> Optional[pulumi.Input[str]]:
@@ -7519,6 +7851,30 @@ class DatabaseDatabaseArgs:
7519
7851
  def sid_prefix(self, value: Optional[pulumi.Input[str]]):
7520
7852
  pulumi.set(self, "sid_prefix", value)
7521
7853
 
7854
+ @property
7855
+ @pulumi.getter(name="sourceDatabaseId")
7856
+ def source_database_id(self) -> Optional[pulumi.Input[str]]:
7857
+ """
7858
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source database.
7859
+ """
7860
+ return pulumi.get(self, "source_database_id")
7861
+
7862
+ @source_database_id.setter
7863
+ def source_database_id(self, value: Optional[pulumi.Input[str]]):
7864
+ pulumi.set(self, "source_database_id", value)
7865
+
7866
+ @property
7867
+ @pulumi.getter(name="sourceTdeWalletPassword")
7868
+ def source_tde_wallet_password(self) -> Optional[pulumi.Input[str]]:
7869
+ """
7870
+ The TDE wallet password of the source database specified by 'sourceDatabaseId'.
7871
+ """
7872
+ return pulumi.get(self, "source_tde_wallet_password")
7873
+
7874
+ @source_tde_wallet_password.setter
7875
+ def source_tde_wallet_password(self, value: Optional[pulumi.Input[str]]):
7876
+ pulumi.set(self, "source_tde_wallet_password", value)
7877
+
7522
7878
  @property
7523
7879
  @pulumi.getter(name="tdeWalletPassword")
7524
7880
  def tde_wallet_password(self) -> Optional[pulumi.Input[str]]:
@@ -7531,6 +7887,25 @@ class DatabaseDatabaseArgs:
7531
7887
  def tde_wallet_password(self, value: Optional[pulumi.Input[str]]):
7532
7888
  pulumi.set(self, "tde_wallet_password", value)
7533
7889
 
7890
+ @property
7891
+ @pulumi.getter(name="transportType")
7892
+ def transport_type(self) -> Optional[pulumi.Input[str]]:
7893
+ """
7894
+ The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
7895
+ * MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
7896
+ * MAXIMUM_PERFORMANCE - ASYNC
7897
+ * MAXIMUM_PROTECTION - SYNC
7898
+
7899
+ For more information, see [Redo Transport Services](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-redo-transport-services.htm#SBYDB00400) in the Oracle Data Guard documentation.
7900
+
7901
+ **IMPORTANT** - The only transport type currently supported by the Database service is ASYNC.
7902
+ """
7903
+ return pulumi.get(self, "transport_type")
7904
+
7905
+ @transport_type.setter
7906
+ def transport_type(self, value: Optional[pulumi.Input[str]]):
7907
+ pulumi.set(self, "transport_type", value)
7908
+
7534
7909
  @property
7535
7910
  @pulumi.getter(name="vaultId")
7536
7911
  def vault_id(self) -> Optional[pulumi.Input[str]]:
@@ -8182,6 +8557,259 @@ class DatabaseUpgradeConnectionStringArgs:
8182
8557
  pulumi.set(self, "cdb_ip_default", value)
8183
8558
 
8184
8559
 
8560
+ if not MYPY:
8561
+ class DatabaseUpgradeDataGuardGroupArgsDict(TypedDict):
8562
+ members: NotRequired[pulumi.Input[Sequence[pulumi.Input['DatabaseUpgradeDataGuardGroupMemberArgsDict']]]]
8563
+ """
8564
+ List of Data Guard members, representing each database that is part of Data Guard.
8565
+ """
8566
+ protection_mode: NotRequired[pulumi.Input[str]]
8567
+ """
8568
+ The protection mode of this Data Guard. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
8569
+ """
8570
+ elif False:
8571
+ DatabaseUpgradeDataGuardGroupArgsDict: TypeAlias = Mapping[str, Any]
8572
+
8573
+ @pulumi.input_type
8574
+ class DatabaseUpgradeDataGuardGroupArgs:
8575
+ def __init__(__self__, *,
8576
+ members: Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseUpgradeDataGuardGroupMemberArgs']]]] = None,
8577
+ protection_mode: Optional[pulumi.Input[str]] = None):
8578
+ """
8579
+ :param pulumi.Input[Sequence[pulumi.Input['DatabaseUpgradeDataGuardGroupMemberArgs']]] members: List of Data Guard members, representing each database that is part of Data Guard.
8580
+ :param pulumi.Input[str] protection_mode: The protection mode of this Data Guard. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
8581
+ """
8582
+ if members is not None:
8583
+ pulumi.set(__self__, "members", members)
8584
+ if protection_mode is not None:
8585
+ pulumi.set(__self__, "protection_mode", protection_mode)
8586
+
8587
+ @property
8588
+ @pulumi.getter
8589
+ def members(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseUpgradeDataGuardGroupMemberArgs']]]]:
8590
+ """
8591
+ List of Data Guard members, representing each database that is part of Data Guard.
8592
+ """
8593
+ return pulumi.get(self, "members")
8594
+
8595
+ @members.setter
8596
+ def members(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseUpgradeDataGuardGroupMemberArgs']]]]):
8597
+ pulumi.set(self, "members", value)
8598
+
8599
+ @property
8600
+ @pulumi.getter(name="protectionMode")
8601
+ def protection_mode(self) -> Optional[pulumi.Input[str]]:
8602
+ """
8603
+ The protection mode of this Data Guard. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
8604
+ """
8605
+ return pulumi.get(self, "protection_mode")
8606
+
8607
+ @protection_mode.setter
8608
+ def protection_mode(self, value: Optional[pulumi.Input[str]]):
8609
+ pulumi.set(self, "protection_mode", value)
8610
+
8611
+
8612
+ if not MYPY:
8613
+ class DatabaseUpgradeDataGuardGroupMemberArgsDict(TypedDict):
8614
+ apply_lag: NotRequired[pulumi.Input[str]]
8615
+ """
8616
+ The lag time between updates to the primary database and application of the redo data on the standby database, as computed by the reporting database. Example: `1 second`
8617
+ """
8618
+ apply_rate: NotRequired[pulumi.Input[str]]
8619
+ """
8620
+ The rate at which redo logs are synced between the associated databases. Example: `102.96 MByte/s`
8621
+ """
8622
+ database_id: NotRequired[pulumi.Input[str]]
8623
+ """
8624
+ The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
8625
+ """
8626
+ db_system_id: NotRequired[pulumi.Input[str]]
8627
+ """
8628
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
8629
+ """
8630
+ is_active_data_guard_enabled: NotRequired[pulumi.Input[bool]]
8631
+ """
8632
+ True if active Data Guard is enabled.
8633
+ """
8634
+ role: NotRequired[pulumi.Input[str]]
8635
+ """
8636
+ The role of the reporting database in this Data Guard association.
8637
+ """
8638
+ transport_lag: NotRequired[pulumi.Input[str]]
8639
+ """
8640
+ The rate at which redo logs are transported between the associated databases. Example: `1 second`
8641
+ """
8642
+ transport_lag_refresh: NotRequired[pulumi.Input[str]]
8643
+ """
8644
+ The date and time when last redo transport has been done.
8645
+ """
8646
+ transport_type: NotRequired[pulumi.Input[str]]
8647
+ """
8648
+ The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
8649
+ * MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
8650
+ * MAXIMUM_PERFORMANCE - ASYNC
8651
+ * MAXIMUM_PROTECTION - SYNC
8652
+ """
8653
+ elif False:
8654
+ DatabaseUpgradeDataGuardGroupMemberArgsDict: TypeAlias = Mapping[str, Any]
8655
+
8656
+ @pulumi.input_type
8657
+ class DatabaseUpgradeDataGuardGroupMemberArgs:
8658
+ def __init__(__self__, *,
8659
+ apply_lag: Optional[pulumi.Input[str]] = None,
8660
+ apply_rate: Optional[pulumi.Input[str]] = None,
8661
+ database_id: Optional[pulumi.Input[str]] = None,
8662
+ db_system_id: Optional[pulumi.Input[str]] = None,
8663
+ is_active_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
8664
+ role: Optional[pulumi.Input[str]] = None,
8665
+ transport_lag: Optional[pulumi.Input[str]] = None,
8666
+ transport_lag_refresh: Optional[pulumi.Input[str]] = None,
8667
+ transport_type: Optional[pulumi.Input[str]] = None):
8668
+ """
8669
+ :param pulumi.Input[str] apply_lag: The lag time between updates to the primary database and application of the redo data on the standby database, as computed by the reporting database. Example: `1 second`
8670
+ :param pulumi.Input[str] apply_rate: The rate at which redo logs are synced between the associated databases. Example: `102.96 MByte/s`
8671
+ :param pulumi.Input[str] database_id: The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
8672
+ :param pulumi.Input[str] db_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
8673
+ :param pulumi.Input[bool] is_active_data_guard_enabled: True if active Data Guard is enabled.
8674
+ :param pulumi.Input[str] role: The role of the reporting database in this Data Guard association.
8675
+ :param pulumi.Input[str] transport_lag: The rate at which redo logs are transported between the associated databases. Example: `1 second`
8676
+ :param pulumi.Input[str] transport_lag_refresh: The date and time when last redo transport has been done.
8677
+ :param pulumi.Input[str] transport_type: The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
8678
+ * MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
8679
+ * MAXIMUM_PERFORMANCE - ASYNC
8680
+ * MAXIMUM_PROTECTION - SYNC
8681
+ """
8682
+ if apply_lag is not None:
8683
+ pulumi.set(__self__, "apply_lag", apply_lag)
8684
+ if apply_rate is not None:
8685
+ pulumi.set(__self__, "apply_rate", apply_rate)
8686
+ if database_id is not None:
8687
+ pulumi.set(__self__, "database_id", database_id)
8688
+ if db_system_id is not None:
8689
+ pulumi.set(__self__, "db_system_id", db_system_id)
8690
+ if is_active_data_guard_enabled is not None:
8691
+ pulumi.set(__self__, "is_active_data_guard_enabled", is_active_data_guard_enabled)
8692
+ if role is not None:
8693
+ pulumi.set(__self__, "role", role)
8694
+ if transport_lag is not None:
8695
+ pulumi.set(__self__, "transport_lag", transport_lag)
8696
+ if transport_lag_refresh is not None:
8697
+ pulumi.set(__self__, "transport_lag_refresh", transport_lag_refresh)
8698
+ if transport_type is not None:
8699
+ pulumi.set(__self__, "transport_type", transport_type)
8700
+
8701
+ @property
8702
+ @pulumi.getter(name="applyLag")
8703
+ def apply_lag(self) -> Optional[pulumi.Input[str]]:
8704
+ """
8705
+ The lag time between updates to the primary database and application of the redo data on the standby database, as computed by the reporting database. Example: `1 second`
8706
+ """
8707
+ return pulumi.get(self, "apply_lag")
8708
+
8709
+ @apply_lag.setter
8710
+ def apply_lag(self, value: Optional[pulumi.Input[str]]):
8711
+ pulumi.set(self, "apply_lag", value)
8712
+
8713
+ @property
8714
+ @pulumi.getter(name="applyRate")
8715
+ def apply_rate(self) -> Optional[pulumi.Input[str]]:
8716
+ """
8717
+ The rate at which redo logs are synced between the associated databases. Example: `102.96 MByte/s`
8718
+ """
8719
+ return pulumi.get(self, "apply_rate")
8720
+
8721
+ @apply_rate.setter
8722
+ def apply_rate(self, value: Optional[pulumi.Input[str]]):
8723
+ pulumi.set(self, "apply_rate", value)
8724
+
8725
+ @property
8726
+ @pulumi.getter(name="databaseId")
8727
+ def database_id(self) -> Optional[pulumi.Input[str]]:
8728
+ """
8729
+ The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
8730
+ """
8731
+ return pulumi.get(self, "database_id")
8732
+
8733
+ @database_id.setter
8734
+ def database_id(self, value: Optional[pulumi.Input[str]]):
8735
+ pulumi.set(self, "database_id", value)
8736
+
8737
+ @property
8738
+ @pulumi.getter(name="dbSystemId")
8739
+ def db_system_id(self) -> Optional[pulumi.Input[str]]:
8740
+ """
8741
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
8742
+ """
8743
+ return pulumi.get(self, "db_system_id")
8744
+
8745
+ @db_system_id.setter
8746
+ def db_system_id(self, value: Optional[pulumi.Input[str]]):
8747
+ pulumi.set(self, "db_system_id", value)
8748
+
8749
+ @property
8750
+ @pulumi.getter(name="isActiveDataGuardEnabled")
8751
+ def is_active_data_guard_enabled(self) -> Optional[pulumi.Input[bool]]:
8752
+ """
8753
+ True if active Data Guard is enabled.
8754
+ """
8755
+ return pulumi.get(self, "is_active_data_guard_enabled")
8756
+
8757
+ @is_active_data_guard_enabled.setter
8758
+ def is_active_data_guard_enabled(self, value: Optional[pulumi.Input[bool]]):
8759
+ pulumi.set(self, "is_active_data_guard_enabled", value)
8760
+
8761
+ @property
8762
+ @pulumi.getter
8763
+ def role(self) -> Optional[pulumi.Input[str]]:
8764
+ """
8765
+ The role of the reporting database in this Data Guard association.
8766
+ """
8767
+ return pulumi.get(self, "role")
8768
+
8769
+ @role.setter
8770
+ def role(self, value: Optional[pulumi.Input[str]]):
8771
+ pulumi.set(self, "role", value)
8772
+
8773
+ @property
8774
+ @pulumi.getter(name="transportLag")
8775
+ def transport_lag(self) -> Optional[pulumi.Input[str]]:
8776
+ """
8777
+ The rate at which redo logs are transported between the associated databases. Example: `1 second`
8778
+ """
8779
+ return pulumi.get(self, "transport_lag")
8780
+
8781
+ @transport_lag.setter
8782
+ def transport_lag(self, value: Optional[pulumi.Input[str]]):
8783
+ pulumi.set(self, "transport_lag", value)
8784
+
8785
+ @property
8786
+ @pulumi.getter(name="transportLagRefresh")
8787
+ def transport_lag_refresh(self) -> Optional[pulumi.Input[str]]:
8788
+ """
8789
+ The date and time when last redo transport has been done.
8790
+ """
8791
+ return pulumi.get(self, "transport_lag_refresh")
8792
+
8793
+ @transport_lag_refresh.setter
8794
+ def transport_lag_refresh(self, value: Optional[pulumi.Input[str]]):
8795
+ pulumi.set(self, "transport_lag_refresh", value)
8796
+
8797
+ @property
8798
+ @pulumi.getter(name="transportType")
8799
+ def transport_type(self) -> Optional[pulumi.Input[str]]:
8800
+ """
8801
+ The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
8802
+ * MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
8803
+ * MAXIMUM_PERFORMANCE - ASYNC
8804
+ * MAXIMUM_PROTECTION - SYNC
8805
+ """
8806
+ return pulumi.get(self, "transport_type")
8807
+
8808
+ @transport_type.setter
8809
+ def transport_type(self, value: Optional[pulumi.Input[str]]):
8810
+ pulumi.set(self, "transport_type", value)
8811
+
8812
+
8185
8813
  if not MYPY:
8186
8814
  class DatabaseUpgradeDatabaseUpgradeSourceDetailsArgsDict(TypedDict):
8187
8815
  database_software_image_id: NotRequired[pulumi.Input[str]]
@@ -10903,9 +11531,6 @@ if not MYPY:
10903
11531
  The maintenance window scheduling preference.
10904
11532
  """
10905
11533
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
10906
- """
10907
- 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.
10908
- """
10909
11534
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
10910
11535
  """
10911
11536
  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.
@@ -10938,7 +11563,6 @@ class DbSystemMaintenanceWindowArgs:
10938
11563
  :param pulumi.Input[Sequence[pulumi.Input['DbSystemMaintenanceWindowMonthArgs']]] months: Months during the year when maintenance should be performed.
10939
11564
  :param pulumi.Input[str] patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
10940
11565
  :param pulumi.Input[str] preference: The maintenance window scheduling preference.
10941
- :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.
10942
11566
  :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.
10943
11567
  """
10944
11568
  if custom_action_timeout_in_mins is not None:
@@ -11076,9 +11700,6 @@ class DbSystemMaintenanceWindowArgs:
11076
11700
  @property
11077
11701
  @pulumi.getter(name="skipRus")
11078
11702
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
11079
- """
11080
- 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.
11081
- """
11082
11703
  return pulumi.get(self, "skip_rus")
11083
11704
 
11084
11705
  @skip_rus.setter
@@ -11172,9 +11793,6 @@ if not MYPY:
11172
11793
  (Updatable) The maintenance window scheduling preference.
11173
11794
  """
11174
11795
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
11175
- """
11176
- (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.
11177
- """
11178
11796
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
11179
11797
  """
11180
11798
  (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.
@@ -11209,7 +11827,6 @@ class DbSystemMaintenanceWindowDetailsArgs:
11209
11827
 
11210
11828
  *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.
11211
11829
  :param pulumi.Input[str] preference: (Updatable) The maintenance window scheduling preference.
11212
- :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.
11213
11830
  :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.
11214
11831
  """
11215
11832
  if custom_action_timeout_in_mins is not None:
@@ -11349,9 +11966,6 @@ class DbSystemMaintenanceWindowDetailsArgs:
11349
11966
  @property
11350
11967
  @pulumi.getter(name="skipRus")
11351
11968
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
11352
- """
11353
- (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.
11354
- """
11355
11969
  return pulumi.get(self, "skip_rus")
11356
11970
 
11357
11971
  @skip_rus.setter
@@ -12496,9 +13110,6 @@ if not MYPY:
12496
13110
  (Updatable) The maintenance window scheduling preference.
12497
13111
  """
12498
13112
  skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
12499
- """
12500
- (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.
12501
- """
12502
13113
  weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
12503
13114
  """
12504
13115
  (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.
@@ -12533,7 +13144,6 @@ class ExadataInfrastructureMaintenanceWindowArgs:
12533
13144
 
12534
13145
  *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.
12535
13146
  :param pulumi.Input[str] preference: (Updatable) The maintenance window scheduling preference.
12536
- :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.
12537
13147
  :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.
12538
13148
  """
12539
13149
  if custom_action_timeout_in_mins is not None:
@@ -12673,9 +13283,6 @@ class ExadataInfrastructureMaintenanceWindowArgs:
12673
13283
  @property
12674
13284
  @pulumi.getter(name="skipRus")
12675
13285
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
12676
- """
12677
- (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.
12678
- """
12679
13286
  return pulumi.get(self, "skip_rus")
12680
13287
 
12681
13288
  @skip_rus.setter