pulumi-oci 2.8.0__py3-none-any.whl → 2.8.0a1724220787__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.
- pulumi_oci/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +25 -199
- pulumi_oci/analytics/get_analytics_instance.py +2 -51
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +12 -52
- pulumi_oci/database/get_maintenance_run.py +1 -14
- pulumi_oci/database/maintenance_run.py +7 -56
- pulumi_oci/database/outputs.py +0 -33
- pulumi_oci/disasterrecovery/_inputs.py +2 -66
- pulumi_oci/disasterrecovery/dr_protection_group.py +0 -8
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +0 -24
- pulumi_oci/disasterrecovery/outputs.py +10 -150
- pulumi_oci/integration/get_integration_instance.py +2 -25
- pulumi_oci/integration/integration_instance.py +0 -88
- pulumi_oci/integration/outputs.py +6 -24
- pulumi_oci/mysql/_inputs.py +2 -202
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +2 -15
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +0 -55
- pulumi_oci/mysql/outputs.py +10 -503
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +0 -1
- pulumi_oci/redis/_inputs.py +0 -40
- pulumi_oci/redis/get_redis_cluster.py +21 -47
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +28 -160
- pulumi_oci/redis/redis_cluster.py +79 -177
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/RECORD +32 -33
- pulumi_oci/redis/get_redis_cluster_nodes.py +0 -156
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.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
|
-
|
143
|
+
Initial size of the data volume in GiBs that will be created and attached.
|
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,
|
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):
|
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,9 +53,6 @@ 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)
|
59
56
|
if database_management and not isinstance(database_management, str):
|
60
57
|
raise TypeError("Expected argument 'database_management' to be a str")
|
61
58
|
pulumi.set(__self__, "database_management", database_management)
|
@@ -214,18 +211,10 @@ class GetMysqlDbSystemResult:
|
|
214
211
|
@pulumi.getter(name="dataStorageSizeInGb")
|
215
212
|
def data_storage_size_in_gb(self) -> int:
|
216
213
|
"""
|
217
|
-
|
214
|
+
Initial size of the data volume in GiBs that will be created and attached.
|
218
215
|
"""
|
219
216
|
return pulumi.get(self, "data_storage_size_in_gb")
|
220
217
|
|
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
|
-
|
229
218
|
@property
|
230
219
|
@pulumi.getter(name="databaseManagement")
|
231
220
|
def database_management(self) -> str:
|
@@ -472,7 +461,6 @@ class AwaitableGetMysqlDbSystemResult(GetMysqlDbSystemResult):
|
|
472
461
|
crash_recovery=self.crash_recovery,
|
473
462
|
current_placements=self.current_placements,
|
474
463
|
data_storage_size_in_gb=self.data_storage_size_in_gb,
|
475
|
-
data_storages=self.data_storages,
|
476
464
|
database_management=self.database_management,
|
477
465
|
db_system_id=self.db_system_id,
|
478
466
|
defined_tags=self.defined_tags,
|
@@ -539,7 +527,6 @@ def get_mysql_db_system(db_system_id: Optional[str] = None,
|
|
539
527
|
crash_recovery=pulumi.get(__ret__, 'crash_recovery'),
|
540
528
|
current_placements=pulumi.get(__ret__, 'current_placements'),
|
541
529
|
data_storage_size_in_gb=pulumi.get(__ret__, 'data_storage_size_in_gb'),
|
542
|
-
data_storages=pulumi.get(__ret__, 'data_storages'),
|
543
530
|
database_management=pulumi.get(__ret__, 'database_management'),
|
544
531
|
db_system_id=pulumi.get(__ret__, 'db_system_id'),
|
545
532
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
pulumi_oci/mysql/mysql_backup.py
CHANGED
@@ -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:
|
212
|
+
:param pulumi.Input[int] data_storage_size_in_gb: Initial size of the data volume in GiBs that will be created and attached.
|
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
|
-
|
330
|
+
Initial size of the data volume in GiBs that will be created and attached.
|
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:
|
753
|
+
:param pulumi.Input[int] data_storage_size_in_gb: Initial size of the data volume in GiBs that will be created and attached.
|
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
|
-
|
837
|
+
Initial size of the data volume in GiBs that will be created and attached.
|
838
838
|
"""
|
839
839
|
return pulumi.get(self, "data_storage_size_in_gb")
|
840
840
|
|
@@ -25,7 +25,6 @@ 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,
|
29
28
|
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
30
29
|
database_management: Optional[pulumi.Input[str]] = None,
|
31
30
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -61,7 +60,6 @@ class MysqlDbSystemArgs:
|
|
61
60
|
:param pulumi.Input['MysqlDbSystemBackupPolicyArgs'] backup_policy: (Updatable) Backup policy as optionally used for DB System Creation.
|
62
61
|
:param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
|
63
62
|
: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.
|
65
63
|
: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.
|
66
64
|
:param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
|
67
65
|
: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"}`
|
@@ -109,8 +107,6 @@ class MysqlDbSystemArgs:
|
|
109
107
|
pulumi.set(__self__, "configuration_id", configuration_id)
|
110
108
|
if crash_recovery is not None:
|
111
109
|
pulumi.set(__self__, "crash_recovery", crash_recovery)
|
112
|
-
if data_storage is not None:
|
113
|
-
pulumi.set(__self__, "data_storage", data_storage)
|
114
110
|
if data_storage_size_in_gb is not None:
|
115
111
|
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
116
112
|
if database_management is not None:
|
@@ -263,18 +259,6 @@ class MysqlDbSystemArgs:
|
|
263
259
|
def crash_recovery(self, value: Optional[pulumi.Input[str]]):
|
264
260
|
pulumi.set(self, "crash_recovery", value)
|
265
261
|
|
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
|
-
|
278
262
|
@property
|
279
263
|
@pulumi.getter(name="dataStorageSizeInGb")
|
280
264
|
def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
|
@@ -529,7 +513,6 @@ class _MysqlDbSystemState:
|
|
529
513
|
configuration_id: Optional[pulumi.Input[str]] = None,
|
530
514
|
crash_recovery: Optional[pulumi.Input[str]] = None,
|
531
515
|
current_placements: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCurrentPlacementArgs']]]] = None,
|
532
|
-
data_storage: Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']] = None,
|
533
516
|
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
534
517
|
database_management: Optional[pulumi.Input[str]] = None,
|
535
518
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -573,7 +556,6 @@ class _MysqlDbSystemState:
|
|
573
556
|
:param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
|
574
557
|
: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.
|
575
558
|
: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.
|
577
559
|
: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.
|
578
560
|
:param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
|
579
561
|
: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"}`
|
@@ -635,8 +617,6 @@ class _MysqlDbSystemState:
|
|
635
617
|
pulumi.set(__self__, "crash_recovery", crash_recovery)
|
636
618
|
if current_placements is not None:
|
637
619
|
pulumi.set(__self__, "current_placements", current_placements)
|
638
|
-
if data_storage is not None:
|
639
|
-
pulumi.set(__self__, "data_storage", data_storage)
|
640
620
|
if data_storage_size_in_gb is not None:
|
641
621
|
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
642
622
|
if database_management is not None:
|
@@ -806,18 +786,6 @@ class _MysqlDbSystemState:
|
|
806
786
|
def current_placements(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCurrentPlacementArgs']]]]):
|
807
787
|
pulumi.set(self, "current_placements", value)
|
808
788
|
|
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
|
-
|
821
789
|
@property
|
822
790
|
@pulumi.getter(name="dataStorageSizeInGb")
|
823
791
|
def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
|
@@ -1181,7 +1149,6 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1181
1149
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1182
1150
|
configuration_id: Optional[pulumi.Input[str]] = None,
|
1183
1151
|
crash_recovery: Optional[pulumi.Input[str]] = None,
|
1184
|
-
data_storage: Optional[pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']]] = None,
|
1185
1152
|
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
1186
1153
|
database_management: Optional[pulumi.Input[str]] = None,
|
1187
1154
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1238,10 +1205,6 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1238
1205
|
},
|
1239
1206
|
configuration_id=test_configuration["id"],
|
1240
1207
|
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
|
-
},
|
1245
1208
|
data_storage_size_in_gb=mysql_db_system_data_storage_size_in_gb,
|
1246
1209
|
database_management=mysql_db_system_database_management,
|
1247
1210
|
defined_tags={
|
@@ -1297,7 +1260,6 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1297
1260
|
:param pulumi.Input[str] compartment_id: The OCID of the compartment.
|
1298
1261
|
:param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
|
1299
1262
|
: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.
|
1301
1263
|
: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.
|
1302
1264
|
:param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
|
1303
1265
|
: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"}`
|
@@ -1374,10 +1336,6 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1374
1336
|
},
|
1375
1337
|
configuration_id=test_configuration["id"],
|
1376
1338
|
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
|
-
},
|
1381
1339
|
data_storage_size_in_gb=mysql_db_system_data_storage_size_in_gb,
|
1382
1340
|
database_management=mysql_db_system_database_management,
|
1383
1341
|
defined_tags={
|
@@ -1442,7 +1400,6 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1442
1400
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1443
1401
|
configuration_id: Optional[pulumi.Input[str]] = None,
|
1444
1402
|
crash_recovery: Optional[pulumi.Input[str]] = None,
|
1445
|
-
data_storage: Optional[pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']]] = None,
|
1446
1403
|
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
1447
1404
|
database_management: Optional[pulumi.Input[str]] = None,
|
1448
1405
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1484,7 +1441,6 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1484
1441
|
__props__.__dict__["compartment_id"] = compartment_id
|
1485
1442
|
__props__.__dict__["configuration_id"] = configuration_id
|
1486
1443
|
__props__.__dict__["crash_recovery"] = crash_recovery
|
1487
|
-
__props__.__dict__["data_storage"] = data_storage
|
1488
1444
|
__props__.__dict__["data_storage_size_in_gb"] = data_storage_size_in_gb
|
1489
1445
|
__props__.__dict__["database_management"] = database_management
|
1490
1446
|
__props__.__dict__["defined_tags"] = defined_tags
|
@@ -1540,7 +1496,6 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1540
1496
|
configuration_id: Optional[pulumi.Input[str]] = None,
|
1541
1497
|
crash_recovery: Optional[pulumi.Input[str]] = None,
|
1542
1498
|
current_placements: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCurrentPlacementArgs', 'MysqlDbSystemCurrentPlacementArgsDict']]]]] = None,
|
1543
|
-
data_storage: Optional[pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']]] = None,
|
1544
1499
|
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
1545
1500
|
database_management: Optional[pulumi.Input[str]] = None,
|
1546
1501
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1589,7 +1544,6 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1589
1544
|
:param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
|
1590
1545
|
: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.
|
1591
1546
|
: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.
|
1593
1547
|
: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.
|
1594
1548
|
:param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
|
1595
1549
|
: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"}`
|
@@ -1646,7 +1600,6 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1646
1600
|
__props__.__dict__["configuration_id"] = configuration_id
|
1647
1601
|
__props__.__dict__["crash_recovery"] = crash_recovery
|
1648
1602
|
__props__.__dict__["current_placements"] = current_placements
|
1649
|
-
__props__.__dict__["data_storage"] = data_storage
|
1650
1603
|
__props__.__dict__["data_storage_size_in_gb"] = data_storage_size_in_gb
|
1651
1604
|
__props__.__dict__["database_management"] = database_management
|
1652
1605
|
__props__.__dict__["defined_tags"] = defined_tags
|
@@ -1753,14 +1706,6 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1753
1706
|
"""
|
1754
1707
|
return pulumi.get(self, "current_placements")
|
1755
1708
|
|
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
|
-
|
1764
1709
|
@property
|
1765
1710
|
@pulumi.getter(name="dataStorageSizeInGb")
|
1766
1711
|
def data_storage_size_in_gb(self) -> pulumi.Output[int]:
|