pulumi-oci 1.42.0a1719642398__py3-none-any.whl → 2.0.0a1719867547__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.0a1719867547.dist-info}/METADATA +2 -2
- {pulumi_oci-1.42.0a1719642398.dist-info → pulumi_oci-2.0.0a1719867547.dist-info}/RECORD +22 -27
- {pulumi_oci-1.42.0a1719642398.dist-info → pulumi_oci-2.0.0a1719867547.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.0a1719867547.dist-info}/top_level.txt +0 -0
pulumi_oci/mysql/outputs.py
CHANGED
@@ -24,6 +24,8 @@ __all__ = [
|
|
24
24
|
'MysqlBackupDbSystemSnapshotEndpoint',
|
25
25
|
'MysqlBackupDbSystemSnapshotMaintenance',
|
26
26
|
'MysqlBackupDbSystemSnapshotSecureConnection',
|
27
|
+
'MysqlBackupDbSystemSnapshotSummary',
|
28
|
+
'MysqlBackupSourceDetails',
|
27
29
|
'MysqlConfigurationInitVariables',
|
28
30
|
'MysqlConfigurationVariables',
|
29
31
|
'MysqlDbSystemBackupPolicy',
|
@@ -64,6 +66,8 @@ __all__ = [
|
|
64
66
|
'GetMysqlBackupDbSystemSnapshotEndpointResult',
|
65
67
|
'GetMysqlBackupDbSystemSnapshotMaintenanceResult',
|
66
68
|
'GetMysqlBackupDbSystemSnapshotSecureConnectionResult',
|
69
|
+
'GetMysqlBackupDbSystemSnapshotSummaryResult',
|
70
|
+
'GetMysqlBackupSourceDetailResult',
|
67
71
|
'GetMysqlBackupsBackupResult',
|
68
72
|
'GetMysqlBackupsBackupDbSystemSnapshotResult',
|
69
73
|
'GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyResult',
|
@@ -72,6 +76,8 @@ __all__ = [
|
|
72
76
|
'GetMysqlBackupsBackupDbSystemSnapshotEndpointResult',
|
73
77
|
'GetMysqlBackupsBackupDbSystemSnapshotMaintenanceResult',
|
74
78
|
'GetMysqlBackupsBackupDbSystemSnapshotSecureConnectionResult',
|
79
|
+
'GetMysqlBackupsBackupDbSystemSnapshotSummaryResult',
|
80
|
+
'GetMysqlBackupsBackupSourceDetailResult',
|
75
81
|
'GetMysqlBackupsFilterResult',
|
76
82
|
'GetMysqlConfigurationInitVariableResult',
|
77
83
|
'GetMysqlConfigurationVariableResult',
|
@@ -688,6 +694,7 @@ class MysqlBackupDbSystemSnapshot(dict):
|
|
688
694
|
mysql_version: Optional[str] = None,
|
689
695
|
port: Optional[int] = None,
|
690
696
|
port_x: Optional[int] = None,
|
697
|
+
region: Optional[str] = None,
|
691
698
|
secure_connections: Optional[Sequence['outputs.MysqlBackupDbSystemSnapshotSecureConnection']] = None,
|
692
699
|
shape_name: Optional[str] = None,
|
693
700
|
subnet_id: Optional[str] = None):
|
@@ -715,6 +722,7 @@ class MysqlBackupDbSystemSnapshot(dict):
|
|
715
722
|
:param str mysql_version: The MySQL server version of the DB System used for backup.
|
716
723
|
:param int port: The port for primary endpoint of the DB System to listen on.
|
717
724
|
:param int port_x: The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
|
725
|
+
:param 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).
|
718
726
|
:param Sequence['MysqlBackupDbSystemSnapshotSecureConnectionArgs'] secure_connections: Secure connection configuration details.
|
719
727
|
:param str shape_name: The shape of the DB System instance used for backup.
|
720
728
|
:param str subnet_id: The OCID of the subnet the DB System is associated with.
|
@@ -765,6 +773,8 @@ class MysqlBackupDbSystemSnapshot(dict):
|
|
765
773
|
pulumi.set(__self__, "port", port)
|
766
774
|
if port_x is not None:
|
767
775
|
pulumi.set(__self__, "port_x", port_x)
|
776
|
+
if region is not None:
|
777
|
+
pulumi.set(__self__, "region", region)
|
768
778
|
if secure_connections is not None:
|
769
779
|
pulumi.set(__self__, "secure_connections", secure_connections)
|
770
780
|
if shape_name is not None:
|
@@ -956,6 +966,14 @@ class MysqlBackupDbSystemSnapshot(dict):
|
|
956
966
|
"""
|
957
967
|
return pulumi.get(self, "port_x")
|
958
968
|
|
969
|
+
@property
|
970
|
+
@pulumi.getter
|
971
|
+
def region(self) -> Optional[str]:
|
972
|
+
"""
|
973
|
+
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).
|
974
|
+
"""
|
975
|
+
return pulumi.get(self, "region")
|
976
|
+
|
959
977
|
@property
|
960
978
|
@pulumi.getter(name="secureConnections")
|
961
979
|
def secure_connections(self) -> Optional[Sequence['outputs.MysqlBackupDbSystemSnapshotSecureConnection']]:
|
@@ -1023,10 +1041,6 @@ class MysqlBackupDbSystemSnapshotBackupPolicy(dict):
|
|
1023
1041
|
:param bool is_enabled: Specifies if PITR is enabled or disabled.
|
1024
1042
|
:param Sequence['MysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyArgs'] pitr_policies: The PITR policy for the DB System.
|
1025
1043
|
:param int retention_in_days: (Updatable) Number of days to retain this backup.
|
1026
|
-
|
1027
|
-
|
1028
|
-
** IMPORTANT **
|
1029
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1030
1044
|
:param str window_start_time: The start time of the maintenance window.
|
1031
1045
|
"""
|
1032
1046
|
if defined_tags is not None:
|
@@ -1079,10 +1093,6 @@ class MysqlBackupDbSystemSnapshotBackupPolicy(dict):
|
|
1079
1093
|
def retention_in_days(self) -> Optional[int]:
|
1080
1094
|
"""
|
1081
1095
|
(Updatable) Number of days to retain this backup.
|
1082
|
-
|
1083
|
-
|
1084
|
-
** IMPORTANT **
|
1085
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1086
1096
|
"""
|
1087
1097
|
return pulumi.get(self, "retention_in_days")
|
1088
1098
|
|
@@ -1421,6 +1431,125 @@ class MysqlBackupDbSystemSnapshotSecureConnection(dict):
|
|
1421
1431
|
return pulumi.get(self, "certificate_id")
|
1422
1432
|
|
1423
1433
|
|
1434
|
+
@pulumi.output_type
|
1435
|
+
class MysqlBackupDbSystemSnapshotSummary(dict):
|
1436
|
+
@staticmethod
|
1437
|
+
def __key_warning(key: str):
|
1438
|
+
suggest = None
|
1439
|
+
if key == "displayName":
|
1440
|
+
suggest = "display_name"
|
1441
|
+
|
1442
|
+
if suggest:
|
1443
|
+
pulumi.log.warn(f"Key '{key}' not found in MysqlBackupDbSystemSnapshotSummary. Access the value via the '{suggest}' property getter instead.")
|
1444
|
+
|
1445
|
+
def __getitem__(self, key: str) -> Any:
|
1446
|
+
MysqlBackupDbSystemSnapshotSummary.__key_warning(key)
|
1447
|
+
return super().__getitem__(key)
|
1448
|
+
|
1449
|
+
def get(self, key: str, default = None) -> Any:
|
1450
|
+
MysqlBackupDbSystemSnapshotSummary.__key_warning(key)
|
1451
|
+
return super().get(key, default)
|
1452
|
+
|
1453
|
+
def __init__(__self__, *,
|
1454
|
+
display_name: Optional[str] = None,
|
1455
|
+
id: Optional[str] = None,
|
1456
|
+
region: Optional[str] = None):
|
1457
|
+
"""
|
1458
|
+
:param str display_name: (Updatable) A user-supplied display name for the backup.
|
1459
|
+
:param str id: OCID of the backup itself
|
1460
|
+
:param 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).
|
1461
|
+
"""
|
1462
|
+
if display_name is not None:
|
1463
|
+
pulumi.set(__self__, "display_name", display_name)
|
1464
|
+
if id is not None:
|
1465
|
+
pulumi.set(__self__, "id", id)
|
1466
|
+
if region is not None:
|
1467
|
+
pulumi.set(__self__, "region", region)
|
1468
|
+
|
1469
|
+
@property
|
1470
|
+
@pulumi.getter(name="displayName")
|
1471
|
+
def display_name(self) -> Optional[str]:
|
1472
|
+
"""
|
1473
|
+
(Updatable) A user-supplied display name for the backup.
|
1474
|
+
"""
|
1475
|
+
return pulumi.get(self, "display_name")
|
1476
|
+
|
1477
|
+
@property
|
1478
|
+
@pulumi.getter
|
1479
|
+
def id(self) -> Optional[str]:
|
1480
|
+
"""
|
1481
|
+
OCID of the backup itself
|
1482
|
+
"""
|
1483
|
+
return pulumi.get(self, "id")
|
1484
|
+
|
1485
|
+
@property
|
1486
|
+
@pulumi.getter
|
1487
|
+
def region(self) -> Optional[str]:
|
1488
|
+
"""
|
1489
|
+
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).
|
1490
|
+
"""
|
1491
|
+
return pulumi.get(self, "region")
|
1492
|
+
|
1493
|
+
|
1494
|
+
@pulumi.output_type
|
1495
|
+
class MysqlBackupSourceDetails(dict):
|
1496
|
+
@staticmethod
|
1497
|
+
def __key_warning(key: str):
|
1498
|
+
suggest = None
|
1499
|
+
if key == "backupId":
|
1500
|
+
suggest = "backup_id"
|
1501
|
+
elif key == "compartmentId":
|
1502
|
+
suggest = "compartment_id"
|
1503
|
+
|
1504
|
+
if suggest:
|
1505
|
+
pulumi.log.warn(f"Key '{key}' not found in MysqlBackupSourceDetails. Access the value via the '{suggest}' property getter instead.")
|
1506
|
+
|
1507
|
+
def __getitem__(self, key: str) -> Any:
|
1508
|
+
MysqlBackupSourceDetails.__key_warning(key)
|
1509
|
+
return super().__getitem__(key)
|
1510
|
+
|
1511
|
+
def get(self, key: str, default = None) -> Any:
|
1512
|
+
MysqlBackupSourceDetails.__key_warning(key)
|
1513
|
+
return super().get(key, default)
|
1514
|
+
|
1515
|
+
def __init__(__self__, *,
|
1516
|
+
backup_id: str,
|
1517
|
+
compartment_id: str,
|
1518
|
+
region: str):
|
1519
|
+
"""
|
1520
|
+
:param str backup_id: The OCID of the source backup.
|
1521
|
+
:param str compartment_id: (Updatable) The OCID of the compartment the backup exists in.
|
1522
|
+
:param str region: The region of the backup source.
|
1523
|
+
"""
|
1524
|
+
pulumi.set(__self__, "backup_id", backup_id)
|
1525
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
1526
|
+
pulumi.set(__self__, "region", region)
|
1527
|
+
|
1528
|
+
@property
|
1529
|
+
@pulumi.getter(name="backupId")
|
1530
|
+
def backup_id(self) -> str:
|
1531
|
+
"""
|
1532
|
+
The OCID of the source backup.
|
1533
|
+
"""
|
1534
|
+
return pulumi.get(self, "backup_id")
|
1535
|
+
|
1536
|
+
@property
|
1537
|
+
@pulumi.getter(name="compartmentId")
|
1538
|
+
def compartment_id(self) -> str:
|
1539
|
+
"""
|
1540
|
+
(Updatable) The OCID of the compartment the backup exists in.
|
1541
|
+
"""
|
1542
|
+
return pulumi.get(self, "compartment_id")
|
1543
|
+
|
1544
|
+
@property
|
1545
|
+
@pulumi.getter
|
1546
|
+
def region(self) -> str:
|
1547
|
+
"""
|
1548
|
+
The region of the backup source.
|
1549
|
+
"""
|
1550
|
+
return pulumi.get(self, "region")
|
1551
|
+
|
1552
|
+
|
1424
1553
|
@pulumi.output_type
|
1425
1554
|
class MysqlConfigurationInitVariables(dict):
|
1426
1555
|
@staticmethod
|
@@ -5080,6 +5209,7 @@ class GetMysqlBackupDbSystemSnapshotResult(dict):
|
|
5080
5209
|
mysql_version: str,
|
5081
5210
|
port: int,
|
5082
5211
|
port_x: int,
|
5212
|
+
region: str,
|
5083
5213
|
secure_connections: Sequence['outputs.GetMysqlBackupDbSystemSnapshotSecureConnectionResult'],
|
5084
5214
|
shape_name: str,
|
5085
5215
|
subnet_id: str):
|
@@ -5107,6 +5237,7 @@ class GetMysqlBackupDbSystemSnapshotResult(dict):
|
|
5107
5237
|
:param str mysql_version: The MySQL server version of the DB System used for backup.
|
5108
5238
|
:param int port: The port for primary endpoint of the DB System to listen on.
|
5109
5239
|
:param int port_x: The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
|
5240
|
+
:param 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).
|
5110
5241
|
:param Sequence['GetMysqlBackupDbSystemSnapshotSecureConnectionArgs'] secure_connections: Secure connection configuration details.
|
5111
5242
|
:param str shape_name: The shape of the DB System instance used for backup.
|
5112
5243
|
:param str subnet_id: The OCID of the subnet the DB System is associated with.
|
@@ -5134,6 +5265,7 @@ class GetMysqlBackupDbSystemSnapshotResult(dict):
|
|
5134
5265
|
pulumi.set(__self__, "mysql_version", mysql_version)
|
5135
5266
|
pulumi.set(__self__, "port", port)
|
5136
5267
|
pulumi.set(__self__, "port_x", port_x)
|
5268
|
+
pulumi.set(__self__, "region", region)
|
5137
5269
|
pulumi.set(__self__, "secure_connections", secure_connections)
|
5138
5270
|
pulumi.set(__self__, "shape_name", shape_name)
|
5139
5271
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
@@ -5322,6 +5454,14 @@ class GetMysqlBackupDbSystemSnapshotResult(dict):
|
|
5322
5454
|
"""
|
5323
5455
|
return pulumi.get(self, "port_x")
|
5324
5456
|
|
5457
|
+
@property
|
5458
|
+
@pulumi.getter
|
5459
|
+
def region(self) -> str:
|
5460
|
+
"""
|
5461
|
+
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).
|
5462
|
+
"""
|
5463
|
+
return pulumi.get(self, "region")
|
5464
|
+
|
5325
5465
|
@property
|
5326
5466
|
@pulumi.getter(name="secureConnections")
|
5327
5467
|
def secure_connections(self) -> Sequence['outputs.GetMysqlBackupDbSystemSnapshotSecureConnectionResult']:
|
@@ -5631,6 +5771,86 @@ class GetMysqlBackupDbSystemSnapshotSecureConnectionResult(dict):
|
|
5631
5771
|
return pulumi.get(self, "certificate_id")
|
5632
5772
|
|
5633
5773
|
|
5774
|
+
@pulumi.output_type
|
5775
|
+
class GetMysqlBackupDbSystemSnapshotSummaryResult(dict):
|
5776
|
+
def __init__(__self__, *,
|
5777
|
+
display_name: str,
|
5778
|
+
id: str,
|
5779
|
+
region: str):
|
5780
|
+
"""
|
5781
|
+
:param str display_name: A user-supplied display name for the backup.
|
5782
|
+
:param str id: OCID of the backup itself
|
5783
|
+
:param 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).
|
5784
|
+
"""
|
5785
|
+
pulumi.set(__self__, "display_name", display_name)
|
5786
|
+
pulumi.set(__self__, "id", id)
|
5787
|
+
pulumi.set(__self__, "region", region)
|
5788
|
+
|
5789
|
+
@property
|
5790
|
+
@pulumi.getter(name="displayName")
|
5791
|
+
def display_name(self) -> str:
|
5792
|
+
"""
|
5793
|
+
A user-supplied display name for the backup.
|
5794
|
+
"""
|
5795
|
+
return pulumi.get(self, "display_name")
|
5796
|
+
|
5797
|
+
@property
|
5798
|
+
@pulumi.getter
|
5799
|
+
def id(self) -> str:
|
5800
|
+
"""
|
5801
|
+
OCID of the backup itself
|
5802
|
+
"""
|
5803
|
+
return pulumi.get(self, "id")
|
5804
|
+
|
5805
|
+
@property
|
5806
|
+
@pulumi.getter
|
5807
|
+
def region(self) -> str:
|
5808
|
+
"""
|
5809
|
+
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).
|
5810
|
+
"""
|
5811
|
+
return pulumi.get(self, "region")
|
5812
|
+
|
5813
|
+
|
5814
|
+
@pulumi.output_type
|
5815
|
+
class GetMysqlBackupSourceDetailResult(dict):
|
5816
|
+
def __init__(__self__, *,
|
5817
|
+
backup_id: str,
|
5818
|
+
compartment_id: str,
|
5819
|
+
region: str):
|
5820
|
+
"""
|
5821
|
+
:param str backup_id: The OCID of the Backup
|
5822
|
+
:param str compartment_id: The OCID of the compartment the DB System belongs in.
|
5823
|
+
:param 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).
|
5824
|
+
"""
|
5825
|
+
pulumi.set(__self__, "backup_id", backup_id)
|
5826
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
5827
|
+
pulumi.set(__self__, "region", region)
|
5828
|
+
|
5829
|
+
@property
|
5830
|
+
@pulumi.getter(name="backupId")
|
5831
|
+
def backup_id(self) -> str:
|
5832
|
+
"""
|
5833
|
+
The OCID of the Backup
|
5834
|
+
"""
|
5835
|
+
return pulumi.get(self, "backup_id")
|
5836
|
+
|
5837
|
+
@property
|
5838
|
+
@pulumi.getter(name="compartmentId")
|
5839
|
+
def compartment_id(self) -> str:
|
5840
|
+
"""
|
5841
|
+
The OCID of the compartment the DB System belongs in.
|
5842
|
+
"""
|
5843
|
+
return pulumi.get(self, "compartment_id")
|
5844
|
+
|
5845
|
+
@property
|
5846
|
+
@pulumi.getter
|
5847
|
+
def region(self) -> str:
|
5848
|
+
"""
|
5849
|
+
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).
|
5850
|
+
"""
|
5851
|
+
return pulumi.get(self, "region")
|
5852
|
+
|
5853
|
+
|
5634
5854
|
@pulumi.output_type
|
5635
5855
|
class GetMysqlBackupsBackupResult(dict):
|
5636
5856
|
def __init__(__self__, *,
|
@@ -5640,17 +5860,22 @@ class GetMysqlBackupsBackupResult(dict):
|
|
5640
5860
|
creation_type: str,
|
5641
5861
|
data_storage_size_in_gb: int,
|
5642
5862
|
db_system_id: str,
|
5863
|
+
db_system_snapshot_summaries: Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotSummaryResult'],
|
5643
5864
|
db_system_snapshots: Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotResult'],
|
5644
5865
|
defined_tags: Mapping[str, Any],
|
5645
5866
|
description: str,
|
5646
5867
|
display_name: str,
|
5647
5868
|
freeform_tags: Mapping[str, Any],
|
5648
5869
|
id: str,
|
5870
|
+
immediate_source_backup_id: str,
|
5649
5871
|
lifecycle_details: str,
|
5650
5872
|
mysql_version: str,
|
5873
|
+
original_source_backup_id: str,
|
5651
5874
|
retention_in_days: int,
|
5652
5875
|
shape_name: str,
|
5876
|
+
source_details: Sequence['outputs.GetMysqlBackupsBackupSourceDetailResult'],
|
5653
5877
|
state: str,
|
5878
|
+
time_copy_created: str,
|
5654
5879
|
time_created: str,
|
5655
5880
|
time_updated: str):
|
5656
5881
|
"""
|
@@ -5666,11 +5891,14 @@ class GetMysqlBackupsBackupResult(dict):
|
|
5666
5891
|
:param str display_name: A filter to return only the resource matching the given display name exactly.
|
5667
5892
|
:param Mapping[str, Any] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
5668
5893
|
:param str id: OCID of the backup itself
|
5894
|
+
:param str immediate_source_backup_id: The OCID of the immediate source DB system backup from which this DB system backup was copied.
|
5669
5895
|
:param str lifecycle_details: Additional information about the current lifecycleState.
|
5670
5896
|
:param str mysql_version: The MySQL server version of the DB System used for backup.
|
5897
|
+
:param str original_source_backup_id: The OCID of the original source DB system backup from which this DB system backup was copied.
|
5671
5898
|
:param int retention_in_days: Number of days to retain this backup.
|
5672
5899
|
:param str shape_name: The shape of the DB System instance used for backup.
|
5673
5900
|
:param str state: Backup Lifecycle State
|
5901
|
+
:param str time_copy_created: The date and time the DB system backup copy was created, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
5674
5902
|
:param str time_created: The time the backup record was created.
|
5675
5903
|
:param str time_updated: The time at which the backup was updated.
|
5676
5904
|
"""
|
@@ -5680,17 +5908,22 @@ class GetMysqlBackupsBackupResult(dict):
|
|
5680
5908
|
pulumi.set(__self__, "creation_type", creation_type)
|
5681
5909
|
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
5682
5910
|
pulumi.set(__self__, "db_system_id", db_system_id)
|
5911
|
+
pulumi.set(__self__, "db_system_snapshot_summaries", db_system_snapshot_summaries)
|
5683
5912
|
pulumi.set(__self__, "db_system_snapshots", db_system_snapshots)
|
5684
5913
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
5685
5914
|
pulumi.set(__self__, "description", description)
|
5686
5915
|
pulumi.set(__self__, "display_name", display_name)
|
5687
5916
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
5688
5917
|
pulumi.set(__self__, "id", id)
|
5918
|
+
pulumi.set(__self__, "immediate_source_backup_id", immediate_source_backup_id)
|
5689
5919
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
5690
5920
|
pulumi.set(__self__, "mysql_version", mysql_version)
|
5921
|
+
pulumi.set(__self__, "original_source_backup_id", original_source_backup_id)
|
5691
5922
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
5692
5923
|
pulumi.set(__self__, "shape_name", shape_name)
|
5924
|
+
pulumi.set(__self__, "source_details", source_details)
|
5693
5925
|
pulumi.set(__self__, "state", state)
|
5926
|
+
pulumi.set(__self__, "time_copy_created", time_copy_created)
|
5694
5927
|
pulumi.set(__self__, "time_created", time_created)
|
5695
5928
|
pulumi.set(__self__, "time_updated", time_updated)
|
5696
5929
|
|
@@ -5742,6 +5975,11 @@ class GetMysqlBackupsBackupResult(dict):
|
|
5742
5975
|
"""
|
5743
5976
|
return pulumi.get(self, "db_system_id")
|
5744
5977
|
|
5978
|
+
@property
|
5979
|
+
@pulumi.getter(name="dbSystemSnapshotSummaries")
|
5980
|
+
def db_system_snapshot_summaries(self) -> Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotSummaryResult']:
|
5981
|
+
return pulumi.get(self, "db_system_snapshot_summaries")
|
5982
|
+
|
5745
5983
|
@property
|
5746
5984
|
@pulumi.getter(name="dbSystemSnapshots")
|
5747
5985
|
def db_system_snapshots(self) -> Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotResult']:
|
@@ -5790,6 +6028,14 @@ class GetMysqlBackupsBackupResult(dict):
|
|
5790
6028
|
"""
|
5791
6029
|
return pulumi.get(self, "id")
|
5792
6030
|
|
6031
|
+
@property
|
6032
|
+
@pulumi.getter(name="immediateSourceBackupId")
|
6033
|
+
def immediate_source_backup_id(self) -> str:
|
6034
|
+
"""
|
6035
|
+
The OCID of the immediate source DB system backup from which this DB system backup was copied.
|
6036
|
+
"""
|
6037
|
+
return pulumi.get(self, "immediate_source_backup_id")
|
6038
|
+
|
5793
6039
|
@property
|
5794
6040
|
@pulumi.getter(name="lifecycleDetails")
|
5795
6041
|
def lifecycle_details(self) -> str:
|
@@ -5806,6 +6052,14 @@ class GetMysqlBackupsBackupResult(dict):
|
|
5806
6052
|
"""
|
5807
6053
|
return pulumi.get(self, "mysql_version")
|
5808
6054
|
|
6055
|
+
@property
|
6056
|
+
@pulumi.getter(name="originalSourceBackupId")
|
6057
|
+
def original_source_backup_id(self) -> str:
|
6058
|
+
"""
|
6059
|
+
The OCID of the original source DB system backup from which this DB system backup was copied.
|
6060
|
+
"""
|
6061
|
+
return pulumi.get(self, "original_source_backup_id")
|
6062
|
+
|
5809
6063
|
@property
|
5810
6064
|
@pulumi.getter(name="retentionInDays")
|
5811
6065
|
def retention_in_days(self) -> int:
|
@@ -5822,6 +6076,11 @@ class GetMysqlBackupsBackupResult(dict):
|
|
5822
6076
|
"""
|
5823
6077
|
return pulumi.get(self, "shape_name")
|
5824
6078
|
|
6079
|
+
@property
|
6080
|
+
@pulumi.getter(name="sourceDetails")
|
6081
|
+
def source_details(self) -> Sequence['outputs.GetMysqlBackupsBackupSourceDetailResult']:
|
6082
|
+
return pulumi.get(self, "source_details")
|
6083
|
+
|
5825
6084
|
@property
|
5826
6085
|
@pulumi.getter
|
5827
6086
|
def state(self) -> str:
|
@@ -5830,6 +6089,14 @@ class GetMysqlBackupsBackupResult(dict):
|
|
5830
6089
|
"""
|
5831
6090
|
return pulumi.get(self, "state")
|
5832
6091
|
|
6092
|
+
@property
|
6093
|
+
@pulumi.getter(name="timeCopyCreated")
|
6094
|
+
def time_copy_created(self) -> str:
|
6095
|
+
"""
|
6096
|
+
The date and time the DB system backup copy was created, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
6097
|
+
"""
|
6098
|
+
return pulumi.get(self, "time_copy_created")
|
6099
|
+
|
5833
6100
|
@property
|
5834
6101
|
@pulumi.getter(name="timeCreated")
|
5835
6102
|
def time_created(self) -> str:
|
@@ -5873,6 +6140,7 @@ class GetMysqlBackupsBackupDbSystemSnapshotResult(dict):
|
|
5873
6140
|
mysql_version: str,
|
5874
6141
|
port: int,
|
5875
6142
|
port_x: int,
|
6143
|
+
region: str,
|
5876
6144
|
secure_connections: Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotSecureConnectionResult'],
|
5877
6145
|
shape_name: str,
|
5878
6146
|
subnet_id: str):
|
@@ -5900,6 +6168,7 @@ class GetMysqlBackupsBackupDbSystemSnapshotResult(dict):
|
|
5900
6168
|
:param str mysql_version: The MySQL server version of the DB System used for backup.
|
5901
6169
|
:param int port: The port for primary endpoint of the DB System to listen on.
|
5902
6170
|
:param int port_x: The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
|
6171
|
+
:param 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).
|
5903
6172
|
:param Sequence['GetMysqlBackupsBackupDbSystemSnapshotSecureConnectionArgs'] secure_connections: Secure connection configuration details.
|
5904
6173
|
:param str shape_name: The shape of the DB System instance used for backup.
|
5905
6174
|
:param str subnet_id: The OCID of the subnet the DB System is associated with.
|
@@ -5927,6 +6196,7 @@ class GetMysqlBackupsBackupDbSystemSnapshotResult(dict):
|
|
5927
6196
|
pulumi.set(__self__, "mysql_version", mysql_version)
|
5928
6197
|
pulumi.set(__self__, "port", port)
|
5929
6198
|
pulumi.set(__self__, "port_x", port_x)
|
6199
|
+
pulumi.set(__self__, "region", region)
|
5930
6200
|
pulumi.set(__self__, "secure_connections", secure_connections)
|
5931
6201
|
pulumi.set(__self__, "shape_name", shape_name)
|
5932
6202
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
@@ -6115,6 +6385,14 @@ class GetMysqlBackupsBackupDbSystemSnapshotResult(dict):
|
|
6115
6385
|
"""
|
6116
6386
|
return pulumi.get(self, "port_x")
|
6117
6387
|
|
6388
|
+
@property
|
6389
|
+
@pulumi.getter
|
6390
|
+
def region(self) -> str:
|
6391
|
+
"""
|
6392
|
+
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).
|
6393
|
+
"""
|
6394
|
+
return pulumi.get(self, "region")
|
6395
|
+
|
6118
6396
|
@property
|
6119
6397
|
@pulumi.getter(name="secureConnections")
|
6120
6398
|
def secure_connections(self) -> Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotSecureConnectionResult']:
|
@@ -6424,6 +6702,86 @@ class GetMysqlBackupsBackupDbSystemSnapshotSecureConnectionResult(dict):
|
|
6424
6702
|
return pulumi.get(self, "certificate_id")
|
6425
6703
|
|
6426
6704
|
|
6705
|
+
@pulumi.output_type
|
6706
|
+
class GetMysqlBackupsBackupDbSystemSnapshotSummaryResult(dict):
|
6707
|
+
def __init__(__self__, *,
|
6708
|
+
display_name: str,
|
6709
|
+
id: str,
|
6710
|
+
region: str):
|
6711
|
+
"""
|
6712
|
+
:param str display_name: A filter to return only the resource matching the given display name exactly.
|
6713
|
+
:param str id: OCID of the backup itself
|
6714
|
+
:param 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).
|
6715
|
+
"""
|
6716
|
+
pulumi.set(__self__, "display_name", display_name)
|
6717
|
+
pulumi.set(__self__, "id", id)
|
6718
|
+
pulumi.set(__self__, "region", region)
|
6719
|
+
|
6720
|
+
@property
|
6721
|
+
@pulumi.getter(name="displayName")
|
6722
|
+
def display_name(self) -> str:
|
6723
|
+
"""
|
6724
|
+
A filter to return only the resource matching the given display name exactly.
|
6725
|
+
"""
|
6726
|
+
return pulumi.get(self, "display_name")
|
6727
|
+
|
6728
|
+
@property
|
6729
|
+
@pulumi.getter
|
6730
|
+
def id(self) -> str:
|
6731
|
+
"""
|
6732
|
+
OCID of the backup itself
|
6733
|
+
"""
|
6734
|
+
return pulumi.get(self, "id")
|
6735
|
+
|
6736
|
+
@property
|
6737
|
+
@pulumi.getter
|
6738
|
+
def region(self) -> str:
|
6739
|
+
"""
|
6740
|
+
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).
|
6741
|
+
"""
|
6742
|
+
return pulumi.get(self, "region")
|
6743
|
+
|
6744
|
+
|
6745
|
+
@pulumi.output_type
|
6746
|
+
class GetMysqlBackupsBackupSourceDetailResult(dict):
|
6747
|
+
def __init__(__self__, *,
|
6748
|
+
backup_id: str,
|
6749
|
+
compartment_id: str,
|
6750
|
+
region: str):
|
6751
|
+
"""
|
6752
|
+
:param str backup_id: Backup OCID
|
6753
|
+
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
6754
|
+
:param 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).
|
6755
|
+
"""
|
6756
|
+
pulumi.set(__self__, "backup_id", backup_id)
|
6757
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
6758
|
+
pulumi.set(__self__, "region", region)
|
6759
|
+
|
6760
|
+
@property
|
6761
|
+
@pulumi.getter(name="backupId")
|
6762
|
+
def backup_id(self) -> str:
|
6763
|
+
"""
|
6764
|
+
Backup OCID
|
6765
|
+
"""
|
6766
|
+
return pulumi.get(self, "backup_id")
|
6767
|
+
|
6768
|
+
@property
|
6769
|
+
@pulumi.getter(name="compartmentId")
|
6770
|
+
def compartment_id(self) -> str:
|
6771
|
+
"""
|
6772
|
+
The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
6773
|
+
"""
|
6774
|
+
return pulumi.get(self, "compartment_id")
|
6775
|
+
|
6776
|
+
@property
|
6777
|
+
@pulumi.getter
|
6778
|
+
def region(self) -> str:
|
6779
|
+
"""
|
6780
|
+
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).
|
6781
|
+
"""
|
6782
|
+
return pulumi.get(self, "region")
|
6783
|
+
|
6784
|
+
|
6427
6785
|
@pulumi.output_type
|
6428
6786
|
class GetMysqlBackupsFilterResult(dict):
|
6429
6787
|
def __init__(__self__, *,
|
pulumi_oci/pulumi-plugin.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pulumi_oci
|
3
|
-
Version:
|
3
|
+
Version: 2.0.0a1719867547
|
4
4
|
Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://www.pulumi.com
|
@@ -47,7 +47,7 @@ python3 -m pip install pulumi_oci
|
|
47
47
|
To use with Go, use `go get` to grab the latest version of the library:
|
48
48
|
|
49
49
|
```bash
|
50
|
-
go get github.com/pulumi/pulumi-oci/sdk/...
|
50
|
+
go get github.com/pulumi/pulumi-oci/sdk/v2/...
|
51
51
|
```
|
52
52
|
|
53
53
|
### .NET
|