pulumi-oci 2.8.0a1724220787__py3-none-any.whl → 2.8.0a1724316519__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 (33) hide show
  1. pulumi_oci/analytics/_inputs.py +4 -4
  2. pulumi_oci/analytics/analytics_instance.py +199 -25
  3. pulumi_oci/analytics/get_analytics_instance.py +51 -2
  4. pulumi_oci/analytics/get_analytics_instances.py +1 -1
  5. pulumi_oci/analytics/outputs.py +52 -12
  6. pulumi_oci/database/get_maintenance_run.py +14 -1
  7. pulumi_oci/database/maintenance_run.py +56 -7
  8. pulumi_oci/database/outputs.py +33 -0
  9. pulumi_oci/disasterrecovery/_inputs.py +66 -2
  10. pulumi_oci/disasterrecovery/dr_protection_group.py +8 -0
  11. pulumi_oci/disasterrecovery/get_dr_plan_executions.py +24 -0
  12. pulumi_oci/disasterrecovery/outputs.py +150 -10
  13. pulumi_oci/integration/get_integration_instance.py +25 -2
  14. pulumi_oci/integration/integration_instance.py +88 -0
  15. pulumi_oci/integration/outputs.py +24 -6
  16. pulumi_oci/mysql/_inputs.py +202 -2
  17. pulumi_oci/mysql/get_mysql_backup.py +1 -1
  18. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  19. pulumi_oci/mysql/mysql_backup.py +4 -4
  20. pulumi_oci/mysql/mysql_db_system.py +55 -0
  21. pulumi_oci/mysql/outputs.py +503 -10
  22. pulumi_oci/pulumi-plugin.json +1 -1
  23. pulumi_oci/redis/__init__.py +1 -0
  24. pulumi_oci/redis/_inputs.py +40 -0
  25. pulumi_oci/redis/get_redis_cluster.py +47 -21
  26. pulumi_oci/redis/get_redis_cluster_nodes.py +156 -0
  27. pulumi_oci/redis/get_redis_clusters.py +8 -8
  28. pulumi_oci/redis/outputs.py +160 -28
  29. pulumi_oci/redis/redis_cluster.py +177 -79
  30. {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/METADATA +1 -1
  31. {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/RECORD +33 -32
  32. {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/WHEEL +0 -0
  33. {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/top_level.txt +0 -0
@@ -140,7 +140,7 @@ class GetMysqlBackupResult:
140
140
  @pulumi.getter(name="dataStorageSizeInGb")
141
141
  def data_storage_size_in_gb(self) -> int:
142
142
  """
143
- Initial size of the data volume in GiBs that will be created and attached.
143
+ DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
144
144
  """
145
145
  return pulumi.get(self, "data_storage_size_in_gb")
146
146
 
@@ -22,7 +22,7 @@ class GetMysqlDbSystemResult:
22
22
  """
23
23
  A collection of values returned by getMysqlDbSystem.
24
24
  """
25
- def __init__(__self__, admin_password=None, admin_username=None, availability_domain=None, backup_policies=None, channels=None, compartment_id=None, configuration_id=None, crash_recovery=None, current_placements=None, data_storage_size_in_gb=None, database_management=None, db_system_id=None, defined_tags=None, deletion_policies=None, description=None, display_name=None, endpoints=None, fault_domain=None, freeform_tags=None, heat_wave_clusters=None, hostname_label=None, id=None, ip_address=None, is_heat_wave_cluster_attached=None, is_highly_available=None, lifecycle_details=None, maintenances=None, mysql_version=None, point_in_time_recovery_details=None, port=None, port_x=None, secure_connections=None, shape_name=None, shutdown_type=None, sources=None, state=None, subnet_id=None, time_created=None, time_updated=None):
25
+ def __init__(__self__, admin_password=None, admin_username=None, availability_domain=None, backup_policies=None, channels=None, compartment_id=None, configuration_id=None, crash_recovery=None, current_placements=None, data_storage_size_in_gb=None, data_storages=None, database_management=None, db_system_id=None, defined_tags=None, deletion_policies=None, description=None, display_name=None, endpoints=None, fault_domain=None, freeform_tags=None, heat_wave_clusters=None, hostname_label=None, id=None, ip_address=None, is_heat_wave_cluster_attached=None, is_highly_available=None, lifecycle_details=None, maintenances=None, mysql_version=None, point_in_time_recovery_details=None, port=None, port_x=None, secure_connections=None, shape_name=None, shutdown_type=None, sources=None, state=None, subnet_id=None, time_created=None, time_updated=None):
26
26
  if admin_password and not isinstance(admin_password, str):
27
27
  raise TypeError("Expected argument 'admin_password' to be a str")
28
28
  pulumi.set(__self__, "admin_password", admin_password)
@@ -53,6 +53,9 @@ class GetMysqlDbSystemResult:
53
53
  if data_storage_size_in_gb and not isinstance(data_storage_size_in_gb, int):
54
54
  raise TypeError("Expected argument 'data_storage_size_in_gb' to be a int")
55
55
  pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
56
+ if data_storages and not isinstance(data_storages, list):
57
+ raise TypeError("Expected argument 'data_storages' to be a list")
58
+ pulumi.set(__self__, "data_storages", data_storages)
56
59
  if database_management and not isinstance(database_management, str):
57
60
  raise TypeError("Expected argument 'database_management' to be a str")
58
61
  pulumi.set(__self__, "database_management", database_management)
@@ -211,10 +214,18 @@ class GetMysqlDbSystemResult:
211
214
  @pulumi.getter(name="dataStorageSizeInGb")
212
215
  def data_storage_size_in_gb(self) -> int:
213
216
  """
214
- Initial size of the data volume in GiBs that will be created and attached.
217
+ DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
215
218
  """
216
219
  return pulumi.get(self, "data_storage_size_in_gb")
217
220
 
221
+ @property
222
+ @pulumi.getter(name="dataStorages")
223
+ def data_storages(self) -> Sequence['outputs.GetMysqlDbSystemDataStorageResult']:
224
+ """
225
+ Data Storage information.
226
+ """
227
+ return pulumi.get(self, "data_storages")
228
+
218
229
  @property
219
230
  @pulumi.getter(name="databaseManagement")
220
231
  def database_management(self) -> str:
@@ -461,6 +472,7 @@ class AwaitableGetMysqlDbSystemResult(GetMysqlDbSystemResult):
461
472
  crash_recovery=self.crash_recovery,
462
473
  current_placements=self.current_placements,
463
474
  data_storage_size_in_gb=self.data_storage_size_in_gb,
475
+ data_storages=self.data_storages,
464
476
  database_management=self.database_management,
465
477
  db_system_id=self.db_system_id,
466
478
  defined_tags=self.defined_tags,
@@ -527,6 +539,7 @@ def get_mysql_db_system(db_system_id: Optional[str] = None,
527
539
  crash_recovery=pulumi.get(__ret__, 'crash_recovery'),
528
540
  current_placements=pulumi.get(__ret__, 'current_placements'),
529
541
  data_storage_size_in_gb=pulumi.get(__ret__, 'data_storage_size_in_gb'),
542
+ data_storages=pulumi.get(__ret__, 'data_storages'),
530
543
  database_management=pulumi.get(__ret__, 'database_management'),
531
544
  db_system_id=pulumi.get(__ret__, 'db_system_id'),
532
545
  defined_tags=pulumi.get(__ret__, 'defined_tags'),
@@ -209,7 +209,7 @@ class _MysqlBackupState:
209
209
  :param pulumi.Input[str] backup_type: The type of backup.
210
210
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the backup exists in.
211
211
  :param pulumi.Input[str] creation_type: Indicates how the backup was created: manually, automatic, or by an Operator.
212
- :param pulumi.Input[int] data_storage_size_in_gb: Initial size of the data volume in GiBs that will be created and attached.
212
+ :param pulumi.Input[int] data_storage_size_in_gb: DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
213
213
  :param pulumi.Input[str] db_system_id: The OCID of the DB System the Backup is associated with.
214
214
  :param pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotArgs']]] db_system_snapshots: Snapshot of the DbSystem details at the time of the backup
215
215
  :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. Example: `{"foo-namespace.bar-key": "value"}`
@@ -327,7 +327,7 @@ class _MysqlBackupState:
327
327
  @pulumi.getter(name="dataStorageSizeInGb")
328
328
  def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
329
329
  """
330
- Initial size of the data volume in GiBs that will be created and attached.
330
+ DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
331
331
  """
332
332
  return pulumi.get(self, "data_storage_size_in_gb")
333
333
 
@@ -750,7 +750,7 @@ class MysqlBackup(pulumi.CustomResource):
750
750
  :param pulumi.Input[str] backup_type: The type of backup.
751
751
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the backup exists in.
752
752
  :param pulumi.Input[str] creation_type: Indicates how the backup was created: manually, automatic, or by an Operator.
753
- :param pulumi.Input[int] data_storage_size_in_gb: Initial size of the data volume in GiBs that will be created and attached.
753
+ :param pulumi.Input[int] data_storage_size_in_gb: DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
754
754
  :param pulumi.Input[str] db_system_id: The OCID of the DB System the Backup is associated with.
755
755
  :param pulumi.Input[Sequence[pulumi.Input[Union['MysqlBackupDbSystemSnapshotArgs', 'MysqlBackupDbSystemSnapshotArgsDict']]]] db_system_snapshots: Snapshot of the DbSystem details at the time of the backup
756
756
  :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. Example: `{"foo-namespace.bar-key": "value"}`
@@ -834,7 +834,7 @@ class MysqlBackup(pulumi.CustomResource):
834
834
  @pulumi.getter(name="dataStorageSizeInGb")
835
835
  def data_storage_size_in_gb(self) -> pulumi.Output[int]:
836
836
  """
837
- Initial size of the data volume in GiBs that will be created and attached.
837
+ DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
838
838
  """
839
839
  return pulumi.get(self, "data_storage_size_in_gb")
840
840
 
@@ -25,6 +25,7 @@ class MysqlDbSystemArgs:
25
25
  backup_policy: Optional[pulumi.Input['MysqlDbSystemBackupPolicyArgs']] = None,
26
26
  configuration_id: Optional[pulumi.Input[str]] = None,
27
27
  crash_recovery: Optional[pulumi.Input[str]] = None,
28
+ data_storage: Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']] = None,
28
29
  data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
29
30
  database_management: Optional[pulumi.Input[str]] = None,
30
31
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -60,6 +61,7 @@ class MysqlDbSystemArgs:
60
61
  :param pulumi.Input['MysqlDbSystemBackupPolicyArgs'] backup_policy: (Updatable) Backup policy as optionally used for DB System Creation.
61
62
  :param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
62
63
  :param pulumi.Input[str] crash_recovery: (Updatable) Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
64
+ :param pulumi.Input['MysqlDbSystemDataStorageArgs'] data_storage: (Updatable) Data Storage configuration properties.
63
65
  :param pulumi.Input[int] data_storage_size_in_gb: (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
64
66
  :param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
65
67
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
@@ -107,6 +109,8 @@ class MysqlDbSystemArgs:
107
109
  pulumi.set(__self__, "configuration_id", configuration_id)
108
110
  if crash_recovery is not None:
109
111
  pulumi.set(__self__, "crash_recovery", crash_recovery)
112
+ if data_storage is not None:
113
+ pulumi.set(__self__, "data_storage", data_storage)
110
114
  if data_storage_size_in_gb is not None:
111
115
  pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
112
116
  if database_management is not None:
@@ -259,6 +263,18 @@ class MysqlDbSystemArgs:
259
263
  def crash_recovery(self, value: Optional[pulumi.Input[str]]):
260
264
  pulumi.set(self, "crash_recovery", value)
261
265
 
266
+ @property
267
+ @pulumi.getter(name="dataStorage")
268
+ def data_storage(self) -> Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']]:
269
+ """
270
+ (Updatable) Data Storage configuration properties.
271
+ """
272
+ return pulumi.get(self, "data_storage")
273
+
274
+ @data_storage.setter
275
+ def data_storage(self, value: Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']]):
276
+ pulumi.set(self, "data_storage", value)
277
+
262
278
  @property
263
279
  @pulumi.getter(name="dataStorageSizeInGb")
264
280
  def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
@@ -513,6 +529,7 @@ class _MysqlDbSystemState:
513
529
  configuration_id: Optional[pulumi.Input[str]] = None,
514
530
  crash_recovery: Optional[pulumi.Input[str]] = None,
515
531
  current_placements: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCurrentPlacementArgs']]]] = None,
532
+ data_storage: Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']] = None,
516
533
  data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
517
534
  database_management: Optional[pulumi.Input[str]] = None,
518
535
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -556,6 +573,7 @@ class _MysqlDbSystemState:
556
573
  :param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
557
574
  :param pulumi.Input[str] crash_recovery: (Updatable) Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
558
575
  :param pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCurrentPlacementArgs']]] current_placements: The availability domain and fault domain a DB System is placed in.
576
+ :param pulumi.Input['MysqlDbSystemDataStorageArgs'] data_storage: (Updatable) Data Storage configuration properties.
559
577
  :param pulumi.Input[int] data_storage_size_in_gb: (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
560
578
  :param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
561
579
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
@@ -617,6 +635,8 @@ class _MysqlDbSystemState:
617
635
  pulumi.set(__self__, "crash_recovery", crash_recovery)
618
636
  if current_placements is not None:
619
637
  pulumi.set(__self__, "current_placements", current_placements)
638
+ if data_storage is not None:
639
+ pulumi.set(__self__, "data_storage", data_storage)
620
640
  if data_storage_size_in_gb is not None:
621
641
  pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
622
642
  if database_management is not None:
@@ -786,6 +806,18 @@ class _MysqlDbSystemState:
786
806
  def current_placements(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCurrentPlacementArgs']]]]):
787
807
  pulumi.set(self, "current_placements", value)
788
808
 
809
+ @property
810
+ @pulumi.getter(name="dataStorage")
811
+ def data_storage(self) -> Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']]:
812
+ """
813
+ (Updatable) Data Storage configuration properties.
814
+ """
815
+ return pulumi.get(self, "data_storage")
816
+
817
+ @data_storage.setter
818
+ def data_storage(self, value: Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']]):
819
+ pulumi.set(self, "data_storage", value)
820
+
789
821
  @property
790
822
  @pulumi.getter(name="dataStorageSizeInGb")
791
823
  def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
@@ -1149,6 +1181,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1149
1181
  compartment_id: Optional[pulumi.Input[str]] = None,
1150
1182
  configuration_id: Optional[pulumi.Input[str]] = None,
1151
1183
  crash_recovery: Optional[pulumi.Input[str]] = None,
1184
+ data_storage: Optional[pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']]] = None,
1152
1185
  data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
1153
1186
  database_management: Optional[pulumi.Input[str]] = None,
1154
1187
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -1205,6 +1238,10 @@ class MysqlDbSystem(pulumi.CustomResource):
1205
1238
  },
1206
1239
  configuration_id=test_configuration["id"],
1207
1240
  crash_recovery=mysql_db_system_crash_recovery,
1241
+ data_storage={
1242
+ "is_auto_expand_storage_enabled": mysql_db_system_data_storage_is_auto_expand_storage_enabled,
1243
+ "max_storage_size_in_gbs": mysql_db_system_data_storage_max_storage_size_in_gbs,
1244
+ },
1208
1245
  data_storage_size_in_gb=mysql_db_system_data_storage_size_in_gb,
1209
1246
  database_management=mysql_db_system_database_management,
1210
1247
  defined_tags={
@@ -1260,6 +1297,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1260
1297
  :param pulumi.Input[str] compartment_id: The OCID of the compartment.
1261
1298
  :param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
1262
1299
  :param pulumi.Input[str] crash_recovery: (Updatable) Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
1300
+ :param pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']] data_storage: (Updatable) Data Storage configuration properties.
1263
1301
  :param pulumi.Input[int] data_storage_size_in_gb: (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
1264
1302
  :param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
1265
1303
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
@@ -1336,6 +1374,10 @@ class MysqlDbSystem(pulumi.CustomResource):
1336
1374
  },
1337
1375
  configuration_id=test_configuration["id"],
1338
1376
  crash_recovery=mysql_db_system_crash_recovery,
1377
+ data_storage={
1378
+ "is_auto_expand_storage_enabled": mysql_db_system_data_storage_is_auto_expand_storage_enabled,
1379
+ "max_storage_size_in_gbs": mysql_db_system_data_storage_max_storage_size_in_gbs,
1380
+ },
1339
1381
  data_storage_size_in_gb=mysql_db_system_data_storage_size_in_gb,
1340
1382
  database_management=mysql_db_system_database_management,
1341
1383
  defined_tags={
@@ -1400,6 +1442,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1400
1442
  compartment_id: Optional[pulumi.Input[str]] = None,
1401
1443
  configuration_id: Optional[pulumi.Input[str]] = None,
1402
1444
  crash_recovery: Optional[pulumi.Input[str]] = None,
1445
+ data_storage: Optional[pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']]] = None,
1403
1446
  data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
1404
1447
  database_management: Optional[pulumi.Input[str]] = None,
1405
1448
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -1441,6 +1484,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1441
1484
  __props__.__dict__["compartment_id"] = compartment_id
1442
1485
  __props__.__dict__["configuration_id"] = configuration_id
1443
1486
  __props__.__dict__["crash_recovery"] = crash_recovery
1487
+ __props__.__dict__["data_storage"] = data_storage
1444
1488
  __props__.__dict__["data_storage_size_in_gb"] = data_storage_size_in_gb
1445
1489
  __props__.__dict__["database_management"] = database_management
1446
1490
  __props__.__dict__["defined_tags"] = defined_tags
@@ -1496,6 +1540,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1496
1540
  configuration_id: Optional[pulumi.Input[str]] = None,
1497
1541
  crash_recovery: Optional[pulumi.Input[str]] = None,
1498
1542
  current_placements: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCurrentPlacementArgs', 'MysqlDbSystemCurrentPlacementArgsDict']]]]] = None,
1543
+ data_storage: Optional[pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']]] = None,
1499
1544
  data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
1500
1545
  database_management: Optional[pulumi.Input[str]] = None,
1501
1546
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -1544,6 +1589,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1544
1589
  :param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
1545
1590
  :param pulumi.Input[str] crash_recovery: (Updatable) Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
1546
1591
  :param pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCurrentPlacementArgs', 'MysqlDbSystemCurrentPlacementArgsDict']]]] current_placements: The availability domain and fault domain a DB System is placed in.
1592
+ :param pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']] data_storage: (Updatable) Data Storage configuration properties.
1547
1593
  :param pulumi.Input[int] data_storage_size_in_gb: (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
1548
1594
  :param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
1549
1595
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
@@ -1600,6 +1646,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1600
1646
  __props__.__dict__["configuration_id"] = configuration_id
1601
1647
  __props__.__dict__["crash_recovery"] = crash_recovery
1602
1648
  __props__.__dict__["current_placements"] = current_placements
1649
+ __props__.__dict__["data_storage"] = data_storage
1603
1650
  __props__.__dict__["data_storage_size_in_gb"] = data_storage_size_in_gb
1604
1651
  __props__.__dict__["database_management"] = database_management
1605
1652
  __props__.__dict__["defined_tags"] = defined_tags
@@ -1706,6 +1753,14 @@ class MysqlDbSystem(pulumi.CustomResource):
1706
1753
  """
1707
1754
  return pulumi.get(self, "current_placements")
1708
1755
 
1756
+ @property
1757
+ @pulumi.getter(name="dataStorage")
1758
+ def data_storage(self) -> pulumi.Output['outputs.MysqlDbSystemDataStorage']:
1759
+ """
1760
+ (Updatable) Data Storage configuration properties.
1761
+ """
1762
+ return pulumi.get(self, "data_storage")
1763
+
1709
1764
  @property
1710
1765
  @pulumi.getter(name="dataStorageSizeInGb")
1711
1766
  def data_storage_size_in_gb(self) -> pulumi.Output[int]: