pulumi-oci 1.42.0a1719642398__py3-none-any.whl → 2.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +8 -16
- pulumi_oci/core/_inputs.py +4 -4
- pulumi_oci/core/ipsec_connection_tunnel_management.py +62 -62
- pulumi_oci/core/outputs.py +10 -10
- pulumi_oci/databasemigration/__init__.py +0 -6
- pulumi_oci/databasemigration/_inputs.py +10 -2359
- pulumi_oci/databasemigration/outputs.py +74 -6309
- pulumi_oci/datascience/pipeline.py +26 -26
- pulumi_oci/jms/__init__.py +1 -0
- pulumi_oci/jms/_inputs.py +672 -0
- pulumi_oci/jms/fleet_advanced_feature_configuration.py +704 -0
- pulumi_oci/jms/get_fleet_advanced_feature_configuration.py +0 -3
- pulumi_oci/jms/outputs.py +770 -0
- pulumi_oci/mysql/_inputs.py +125 -8
- pulumi_oci/mysql/get_mysql_backup.py +60 -1
- pulumi_oci/mysql/mysql_backup.py +183 -47
- pulumi_oci/mysql/outputs.py +366 -8
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-1.42.0a1719642398.dist-info → pulumi_oci-2.0.0.dist-info}/METADATA +2 -2
- {pulumi_oci-1.42.0a1719642398.dist-info → pulumi_oci-2.0.0.dist-info}/RECORD +22 -27
- {pulumi_oci-1.42.0a1719642398.dist-info → pulumi_oci-2.0.0.dist-info}/WHEEL +1 -1
- pulumi_oci/databasemigration/connection.py +0 -1199
- pulumi_oci/databasemigration/get_connection.py +0 -399
- pulumi_oci/databasemigration/get_connections.py +0 -176
- pulumi_oci/databasemigration/get_migration.py +0 -480
- pulumi_oci/databasemigration/get_migrations.py +0 -196
- pulumi_oci/databasemigration/migration.py +0 -1630
- {pulumi_oci-1.42.0a1719642398.dist-info → pulumi_oci-2.0.0.dist-info}/top_level.txt +0 -0
pulumi_oci/mysql/_inputs.py
CHANGED
@@ -23,6 +23,8 @@ __all__ = [
|
|
23
23
|
'MysqlBackupDbSystemSnapshotEndpointArgs',
|
24
24
|
'MysqlBackupDbSystemSnapshotMaintenanceArgs',
|
25
25
|
'MysqlBackupDbSystemSnapshotSecureConnectionArgs',
|
26
|
+
'MysqlBackupDbSystemSnapshotSummaryArgs',
|
27
|
+
'MysqlBackupSourceDetailsArgs',
|
26
28
|
'MysqlConfigurationInitVariablesArgs',
|
27
29
|
'MysqlConfigurationVariablesArgs',
|
28
30
|
'MysqlDbSystemBackupPolicyArgs',
|
@@ -558,6 +560,7 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
558
560
|
mysql_version: Optional[pulumi.Input[str]] = None,
|
559
561
|
port: Optional[pulumi.Input[int]] = None,
|
560
562
|
port_x: Optional[pulumi.Input[int]] = None,
|
563
|
+
region: Optional[pulumi.Input[str]] = None,
|
561
564
|
secure_connections: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotSecureConnectionArgs']]]] = None,
|
562
565
|
shape_name: Optional[pulumi.Input[str]] = None,
|
563
566
|
subnet_id: Optional[pulumi.Input[str]] = None):
|
@@ -585,6 +588,7 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
585
588
|
:param pulumi.Input[str] mysql_version: The MySQL server version of the DB System used for backup.
|
586
589
|
:param pulumi.Input[int] port: The port for primary endpoint of the DB System to listen on.
|
587
590
|
:param pulumi.Input[int] port_x: The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
|
591
|
+
:param pulumi.Input[str] region: The region identifier of the region where the DB system exists. For more information, please see [Regions and Availability Domains](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm).
|
588
592
|
:param pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotSecureConnectionArgs']]] secure_connections: Secure connection configuration details.
|
589
593
|
:param pulumi.Input[str] shape_name: The shape of the DB System instance used for backup.
|
590
594
|
:param pulumi.Input[str] subnet_id: The OCID of the subnet the DB System is associated with.
|
@@ -635,6 +639,8 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
635
639
|
pulumi.set(__self__, "port", port)
|
636
640
|
if port_x is not None:
|
637
641
|
pulumi.set(__self__, "port_x", port_x)
|
642
|
+
if region is not None:
|
643
|
+
pulumi.set(__self__, "region", region)
|
638
644
|
if secure_connections is not None:
|
639
645
|
pulumi.set(__self__, "secure_connections", secure_connections)
|
640
646
|
if shape_name is not None:
|
@@ -918,6 +924,18 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
918
924
|
def port_x(self, value: Optional[pulumi.Input[int]]):
|
919
925
|
pulumi.set(self, "port_x", value)
|
920
926
|
|
927
|
+
@property
|
928
|
+
@pulumi.getter
|
929
|
+
def region(self) -> Optional[pulumi.Input[str]]:
|
930
|
+
"""
|
931
|
+
The region identifier of the region where the DB system exists. For more information, please see [Regions and Availability Domains](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm).
|
932
|
+
"""
|
933
|
+
return pulumi.get(self, "region")
|
934
|
+
|
935
|
+
@region.setter
|
936
|
+
def region(self, value: Optional[pulumi.Input[str]]):
|
937
|
+
pulumi.set(self, "region", value)
|
938
|
+
|
921
939
|
@property
|
922
940
|
@pulumi.getter(name="secureConnections")
|
923
941
|
def secure_connections(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotSecureConnectionArgs']]]]:
|
@@ -970,10 +988,6 @@ class MysqlBackupDbSystemSnapshotBackupPolicyArgs:
|
|
970
988
|
:param pulumi.Input[bool] is_enabled: Specifies if PITR is enabled or disabled.
|
971
989
|
:param pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyArgs']]] pitr_policies: The PITR policy for the DB System.
|
972
990
|
:param pulumi.Input[int] retention_in_days: (Updatable) Number of days to retain this backup.
|
973
|
-
|
974
|
-
|
975
|
-
** IMPORTANT **
|
976
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
977
991
|
:param pulumi.Input[str] window_start_time: The start time of the maintenance window.
|
978
992
|
"""
|
979
993
|
if defined_tags is not None:
|
@@ -1042,10 +1056,6 @@ class MysqlBackupDbSystemSnapshotBackupPolicyArgs:
|
|
1042
1056
|
def retention_in_days(self) -> Optional[pulumi.Input[int]]:
|
1043
1057
|
"""
|
1044
1058
|
(Updatable) Number of days to retain this backup.
|
1045
|
-
|
1046
|
-
|
1047
|
-
** IMPORTANT **
|
1048
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1049
1059
|
"""
|
1050
1060
|
return pulumi.get(self, "retention_in_days")
|
1051
1061
|
|
@@ -1357,6 +1367,113 @@ class MysqlBackupDbSystemSnapshotSecureConnectionArgs:
|
|
1357
1367
|
pulumi.set(self, "certificate_id", value)
|
1358
1368
|
|
1359
1369
|
|
1370
|
+
@pulumi.input_type
|
1371
|
+
class MysqlBackupDbSystemSnapshotSummaryArgs:
|
1372
|
+
def __init__(__self__, *,
|
1373
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
1374
|
+
id: Optional[pulumi.Input[str]] = None,
|
1375
|
+
region: Optional[pulumi.Input[str]] = None):
|
1376
|
+
"""
|
1377
|
+
:param pulumi.Input[str] display_name: (Updatable) A user-supplied display name for the backup.
|
1378
|
+
:param pulumi.Input[str] id: OCID of the backup itself
|
1379
|
+
:param pulumi.Input[str] region: The region identifier of the region where the DB system exists. For more information, please see [Regions and Availability Domains](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm).
|
1380
|
+
"""
|
1381
|
+
if display_name is not None:
|
1382
|
+
pulumi.set(__self__, "display_name", display_name)
|
1383
|
+
if id is not None:
|
1384
|
+
pulumi.set(__self__, "id", id)
|
1385
|
+
if region is not None:
|
1386
|
+
pulumi.set(__self__, "region", region)
|
1387
|
+
|
1388
|
+
@property
|
1389
|
+
@pulumi.getter(name="displayName")
|
1390
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
1391
|
+
"""
|
1392
|
+
(Updatable) A user-supplied display name for the backup.
|
1393
|
+
"""
|
1394
|
+
return pulumi.get(self, "display_name")
|
1395
|
+
|
1396
|
+
@display_name.setter
|
1397
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
1398
|
+
pulumi.set(self, "display_name", value)
|
1399
|
+
|
1400
|
+
@property
|
1401
|
+
@pulumi.getter
|
1402
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
1403
|
+
"""
|
1404
|
+
OCID of the backup itself
|
1405
|
+
"""
|
1406
|
+
return pulumi.get(self, "id")
|
1407
|
+
|
1408
|
+
@id.setter
|
1409
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
1410
|
+
pulumi.set(self, "id", value)
|
1411
|
+
|
1412
|
+
@property
|
1413
|
+
@pulumi.getter
|
1414
|
+
def region(self) -> Optional[pulumi.Input[str]]:
|
1415
|
+
"""
|
1416
|
+
The region identifier of the region where the DB system exists. For more information, please see [Regions and Availability Domains](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm).
|
1417
|
+
"""
|
1418
|
+
return pulumi.get(self, "region")
|
1419
|
+
|
1420
|
+
@region.setter
|
1421
|
+
def region(self, value: Optional[pulumi.Input[str]]):
|
1422
|
+
pulumi.set(self, "region", value)
|
1423
|
+
|
1424
|
+
|
1425
|
+
@pulumi.input_type
|
1426
|
+
class MysqlBackupSourceDetailsArgs:
|
1427
|
+
def __init__(__self__, *,
|
1428
|
+
backup_id: pulumi.Input[str],
|
1429
|
+
compartment_id: pulumi.Input[str],
|
1430
|
+
region: pulumi.Input[str]):
|
1431
|
+
"""
|
1432
|
+
:param pulumi.Input[str] backup_id: The OCID of the source backup.
|
1433
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the backup exists in.
|
1434
|
+
:param pulumi.Input[str] region: The region of the backup source.
|
1435
|
+
"""
|
1436
|
+
pulumi.set(__self__, "backup_id", backup_id)
|
1437
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
1438
|
+
pulumi.set(__self__, "region", region)
|
1439
|
+
|
1440
|
+
@property
|
1441
|
+
@pulumi.getter(name="backupId")
|
1442
|
+
def backup_id(self) -> pulumi.Input[str]:
|
1443
|
+
"""
|
1444
|
+
The OCID of the source backup.
|
1445
|
+
"""
|
1446
|
+
return pulumi.get(self, "backup_id")
|
1447
|
+
|
1448
|
+
@backup_id.setter
|
1449
|
+
def backup_id(self, value: pulumi.Input[str]):
|
1450
|
+
pulumi.set(self, "backup_id", value)
|
1451
|
+
|
1452
|
+
@property
|
1453
|
+
@pulumi.getter(name="compartmentId")
|
1454
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
1455
|
+
"""
|
1456
|
+
(Updatable) The OCID of the compartment the backup exists in.
|
1457
|
+
"""
|
1458
|
+
return pulumi.get(self, "compartment_id")
|
1459
|
+
|
1460
|
+
@compartment_id.setter
|
1461
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
1462
|
+
pulumi.set(self, "compartment_id", value)
|
1463
|
+
|
1464
|
+
@property
|
1465
|
+
@pulumi.getter
|
1466
|
+
def region(self) -> pulumi.Input[str]:
|
1467
|
+
"""
|
1468
|
+
The region of the backup source.
|
1469
|
+
"""
|
1470
|
+
return pulumi.get(self, "region")
|
1471
|
+
|
1472
|
+
@region.setter
|
1473
|
+
def region(self, value: pulumi.Input[str]):
|
1474
|
+
pulumi.set(self, "region", value)
|
1475
|
+
|
1476
|
+
|
1360
1477
|
@pulumi.input_type
|
1361
1478
|
class MysqlConfigurationInitVariablesArgs:
|
1362
1479
|
def __init__(__self__, *,
|
@@ -22,7 +22,7 @@ class GetMysqlBackupResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getMysqlBackup.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, backup_id=None, backup_size_in_gbs=None, backup_type=None, compartment_id=None, creation_type=None, data_storage_size_in_gb=None, db_system_id=None, db_system_snapshots=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, mysql_version=None, retention_in_days=None, shape_name=None, state=None, time_created=None, time_updated=None):
|
25
|
+
def __init__(__self__, backup_id=None, backup_size_in_gbs=None, backup_type=None, compartment_id=None, creation_type=None, data_storage_size_in_gb=None, db_system_id=None, db_system_snapshot_summaries=None, db_system_snapshots=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, immediate_source_backup_id=None, lifecycle_details=None, mysql_version=None, original_source_backup_id=None, retention_in_days=None, shape_name=None, source_details=None, state=None, time_copy_created=None, time_created=None, time_updated=None):
|
26
26
|
if backup_id and not isinstance(backup_id, str):
|
27
27
|
raise TypeError("Expected argument 'backup_id' to be a str")
|
28
28
|
pulumi.set(__self__, "backup_id", backup_id)
|
@@ -44,6 +44,9 @@ class GetMysqlBackupResult:
|
|
44
44
|
if db_system_id and not isinstance(db_system_id, str):
|
45
45
|
raise TypeError("Expected argument 'db_system_id' to be a str")
|
46
46
|
pulumi.set(__self__, "db_system_id", db_system_id)
|
47
|
+
if db_system_snapshot_summaries and not isinstance(db_system_snapshot_summaries, list):
|
48
|
+
raise TypeError("Expected argument 'db_system_snapshot_summaries' to be a list")
|
49
|
+
pulumi.set(__self__, "db_system_snapshot_summaries", db_system_snapshot_summaries)
|
47
50
|
if db_system_snapshots and not isinstance(db_system_snapshots, list):
|
48
51
|
raise TypeError("Expected argument 'db_system_snapshots' to be a list")
|
49
52
|
pulumi.set(__self__, "db_system_snapshots", db_system_snapshots)
|
@@ -62,21 +65,33 @@ class GetMysqlBackupResult:
|
|
62
65
|
if id and not isinstance(id, str):
|
63
66
|
raise TypeError("Expected argument 'id' to be a str")
|
64
67
|
pulumi.set(__self__, "id", id)
|
68
|
+
if immediate_source_backup_id and not isinstance(immediate_source_backup_id, str):
|
69
|
+
raise TypeError("Expected argument 'immediate_source_backup_id' to be a str")
|
70
|
+
pulumi.set(__self__, "immediate_source_backup_id", immediate_source_backup_id)
|
65
71
|
if lifecycle_details and not isinstance(lifecycle_details, str):
|
66
72
|
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
67
73
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
68
74
|
if mysql_version and not isinstance(mysql_version, str):
|
69
75
|
raise TypeError("Expected argument 'mysql_version' to be a str")
|
70
76
|
pulumi.set(__self__, "mysql_version", mysql_version)
|
77
|
+
if original_source_backup_id and not isinstance(original_source_backup_id, str):
|
78
|
+
raise TypeError("Expected argument 'original_source_backup_id' to be a str")
|
79
|
+
pulumi.set(__self__, "original_source_backup_id", original_source_backup_id)
|
71
80
|
if retention_in_days and not isinstance(retention_in_days, int):
|
72
81
|
raise TypeError("Expected argument 'retention_in_days' to be a int")
|
73
82
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
74
83
|
if shape_name and not isinstance(shape_name, str):
|
75
84
|
raise TypeError("Expected argument 'shape_name' to be a str")
|
76
85
|
pulumi.set(__self__, "shape_name", shape_name)
|
86
|
+
if source_details and not isinstance(source_details, list):
|
87
|
+
raise TypeError("Expected argument 'source_details' to be a list")
|
88
|
+
pulumi.set(__self__, "source_details", source_details)
|
77
89
|
if state and not isinstance(state, str):
|
78
90
|
raise TypeError("Expected argument 'state' to be a str")
|
79
91
|
pulumi.set(__self__, "state", state)
|
92
|
+
if time_copy_created and not isinstance(time_copy_created, str):
|
93
|
+
raise TypeError("Expected argument 'time_copy_created' to be a str")
|
94
|
+
pulumi.set(__self__, "time_copy_created", time_copy_created)
|
80
95
|
if time_created and not isinstance(time_created, str):
|
81
96
|
raise TypeError("Expected argument 'time_created' to be a str")
|
82
97
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -137,6 +152,11 @@ class GetMysqlBackupResult:
|
|
137
152
|
"""
|
138
153
|
return pulumi.get(self, "db_system_id")
|
139
154
|
|
155
|
+
@property
|
156
|
+
@pulumi.getter(name="dbSystemSnapshotSummaries")
|
157
|
+
def db_system_snapshot_summaries(self) -> Sequence['outputs.GetMysqlBackupDbSystemSnapshotSummaryResult']:
|
158
|
+
return pulumi.get(self, "db_system_snapshot_summaries")
|
159
|
+
|
140
160
|
@property
|
141
161
|
@pulumi.getter(name="dbSystemSnapshots")
|
142
162
|
def db_system_snapshots(self) -> Sequence['outputs.GetMysqlBackupDbSystemSnapshotResult']:
|
@@ -185,6 +205,14 @@ class GetMysqlBackupResult:
|
|
185
205
|
"""
|
186
206
|
return pulumi.get(self, "id")
|
187
207
|
|
208
|
+
@property
|
209
|
+
@pulumi.getter(name="immediateSourceBackupId")
|
210
|
+
def immediate_source_backup_id(self) -> str:
|
211
|
+
"""
|
212
|
+
The OCID of the immediate source DB system backup from which this DB system backup was copied.
|
213
|
+
"""
|
214
|
+
return pulumi.get(self, "immediate_source_backup_id")
|
215
|
+
|
188
216
|
@property
|
189
217
|
@pulumi.getter(name="lifecycleDetails")
|
190
218
|
def lifecycle_details(self) -> str:
|
@@ -201,6 +229,14 @@ class GetMysqlBackupResult:
|
|
201
229
|
"""
|
202
230
|
return pulumi.get(self, "mysql_version")
|
203
231
|
|
232
|
+
@property
|
233
|
+
@pulumi.getter(name="originalSourceBackupId")
|
234
|
+
def original_source_backup_id(self) -> str:
|
235
|
+
"""
|
236
|
+
The OCID of the original source DB system backup from which this DB system backup was copied.
|
237
|
+
"""
|
238
|
+
return pulumi.get(self, "original_source_backup_id")
|
239
|
+
|
204
240
|
@property
|
205
241
|
@pulumi.getter(name="retentionInDays")
|
206
242
|
def retention_in_days(self) -> int:
|
@@ -217,6 +253,11 @@ class GetMysqlBackupResult:
|
|
217
253
|
"""
|
218
254
|
return pulumi.get(self, "shape_name")
|
219
255
|
|
256
|
+
@property
|
257
|
+
@pulumi.getter(name="sourceDetails")
|
258
|
+
def source_details(self) -> Sequence['outputs.GetMysqlBackupSourceDetailResult']:
|
259
|
+
return pulumi.get(self, "source_details")
|
260
|
+
|
220
261
|
@property
|
221
262
|
@pulumi.getter
|
222
263
|
def state(self) -> str:
|
@@ -225,6 +266,14 @@ class GetMysqlBackupResult:
|
|
225
266
|
"""
|
226
267
|
return pulumi.get(self, "state")
|
227
268
|
|
269
|
+
@property
|
270
|
+
@pulumi.getter(name="timeCopyCreated")
|
271
|
+
def time_copy_created(self) -> str:
|
272
|
+
"""
|
273
|
+
The date and time the DB system backup copy was created, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "time_copy_created")
|
276
|
+
|
228
277
|
@property
|
229
278
|
@pulumi.getter(name="timeCreated")
|
230
279
|
def time_created(self) -> str:
|
@@ -255,17 +304,22 @@ class AwaitableGetMysqlBackupResult(GetMysqlBackupResult):
|
|
255
304
|
creation_type=self.creation_type,
|
256
305
|
data_storage_size_in_gb=self.data_storage_size_in_gb,
|
257
306
|
db_system_id=self.db_system_id,
|
307
|
+
db_system_snapshot_summaries=self.db_system_snapshot_summaries,
|
258
308
|
db_system_snapshots=self.db_system_snapshots,
|
259
309
|
defined_tags=self.defined_tags,
|
260
310
|
description=self.description,
|
261
311
|
display_name=self.display_name,
|
262
312
|
freeform_tags=self.freeform_tags,
|
263
313
|
id=self.id,
|
314
|
+
immediate_source_backup_id=self.immediate_source_backup_id,
|
264
315
|
lifecycle_details=self.lifecycle_details,
|
265
316
|
mysql_version=self.mysql_version,
|
317
|
+
original_source_backup_id=self.original_source_backup_id,
|
266
318
|
retention_in_days=self.retention_in_days,
|
267
319
|
shape_name=self.shape_name,
|
320
|
+
source_details=self.source_details,
|
268
321
|
state=self.state,
|
322
|
+
time_copy_created=self.time_copy_created,
|
269
323
|
time_created=self.time_created,
|
270
324
|
time_updated=self.time_updated)
|
271
325
|
|
@@ -302,17 +356,22 @@ def get_mysql_backup(backup_id: Optional[str] = None,
|
|
302
356
|
creation_type=pulumi.get(__ret__, 'creation_type'),
|
303
357
|
data_storage_size_in_gb=pulumi.get(__ret__, 'data_storage_size_in_gb'),
|
304
358
|
db_system_id=pulumi.get(__ret__, 'db_system_id'),
|
359
|
+
db_system_snapshot_summaries=pulumi.get(__ret__, 'db_system_snapshot_summaries'),
|
305
360
|
db_system_snapshots=pulumi.get(__ret__, 'db_system_snapshots'),
|
306
361
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
307
362
|
description=pulumi.get(__ret__, 'description'),
|
308
363
|
display_name=pulumi.get(__ret__, 'display_name'),
|
309
364
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
310
365
|
id=pulumi.get(__ret__, 'id'),
|
366
|
+
immediate_source_backup_id=pulumi.get(__ret__, 'immediate_source_backup_id'),
|
311
367
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
312
368
|
mysql_version=pulumi.get(__ret__, 'mysql_version'),
|
369
|
+
original_source_backup_id=pulumi.get(__ret__, 'original_source_backup_id'),
|
313
370
|
retention_in_days=pulumi.get(__ret__, 'retention_in_days'),
|
314
371
|
shape_name=pulumi.get(__ret__, 'shape_name'),
|
372
|
+
source_details=pulumi.get(__ret__, 'source_details'),
|
315
373
|
state=pulumi.get(__ret__, 'state'),
|
374
|
+
time_copy_created=pulumi.get(__ret__, 'time_copy_created'),
|
316
375
|
time_created=pulumi.get(__ret__, 'time_created'),
|
317
376
|
time_updated=pulumi.get(__ret__, 'time_updated'))
|
318
377
|
|