pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.0a1742000109__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 +67 -0
- pulumi_oci/containerengine/_inputs.py +34 -35
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +110 -21
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/_inputs.py +21 -33
- pulumi_oci/core/outputs.py +13 -21
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +704 -0
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/outputs.py +1084 -42
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/top_level.txt +0 -0
pulumi_oci/psql/backup.py
CHANGED
@@ -22,37 +22,43 @@ __all__ = ['BackupArgs', 'Backup']
|
|
22
22
|
class BackupArgs:
|
23
23
|
def __init__(__self__, *,
|
24
24
|
compartment_id: pulumi.Input[str],
|
25
|
-
db_system_id: pulumi.Input[str],
|
26
|
-
display_name: pulumi.Input[str],
|
25
|
+
db_system_id: Optional[pulumi.Input[str]] = None,
|
27
26
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
28
27
|
description: Optional[pulumi.Input[str]] = None,
|
28
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
29
29
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
30
|
-
retention_period: Optional[pulumi.Input[int]] = None
|
30
|
+
retention_period: Optional[pulumi.Input[int]] = None,
|
31
|
+
source_backup_details: Optional[pulumi.Input['BackupSourceBackupDetailsArgs']] = None):
|
31
32
|
"""
|
32
33
|
The set of arguments for constructing a Backup resource.
|
33
34
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the backup.
|
34
35
|
:param pulumi.Input[str] db_system_id: The ID of the database system.
|
35
|
-
:param pulumi.Input[str] display_name: (Updatable) A user-friendly display name for the backup. Avoid entering confidential information.
|
36
36
|
: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"}`
|
37
37
|
:param pulumi.Input[str] description: (Updatable) A description for the backup.
|
38
|
+
:param pulumi.Input[str] display_name: (Updatable) A user-friendly display name for the backup. Avoid entering confidential information.
|
38
39
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
39
40
|
:param pulumi.Input[int] retention_period: (Updatable) Backup retention period in days.
|
40
41
|
|
41
42
|
|
42
43
|
** IMPORTANT **
|
43
44
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
45
|
+
:param pulumi.Input['BackupSourceBackupDetailsArgs'] source_backup_details: Information about the Source Backup associated with a backup.
|
44
46
|
"""
|
45
47
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
46
|
-
|
47
|
-
|
48
|
+
if db_system_id is not None:
|
49
|
+
pulumi.set(__self__, "db_system_id", db_system_id)
|
48
50
|
if defined_tags is not None:
|
49
51
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
50
52
|
if description is not None:
|
51
53
|
pulumi.set(__self__, "description", description)
|
54
|
+
if display_name is not None:
|
55
|
+
pulumi.set(__self__, "display_name", display_name)
|
52
56
|
if freeform_tags is not None:
|
53
57
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
54
58
|
if retention_period is not None:
|
55
59
|
pulumi.set(__self__, "retention_period", retention_period)
|
60
|
+
if source_backup_details is not None:
|
61
|
+
pulumi.set(__self__, "source_backup_details", source_backup_details)
|
56
62
|
|
57
63
|
@property
|
58
64
|
@pulumi.getter(name="compartmentId")
|
@@ -68,28 +74,16 @@ class BackupArgs:
|
|
68
74
|
|
69
75
|
@property
|
70
76
|
@pulumi.getter(name="dbSystemId")
|
71
|
-
def db_system_id(self) -> pulumi.Input[str]:
|
77
|
+
def db_system_id(self) -> Optional[pulumi.Input[str]]:
|
72
78
|
"""
|
73
79
|
The ID of the database system.
|
74
80
|
"""
|
75
81
|
return pulumi.get(self, "db_system_id")
|
76
82
|
|
77
83
|
@db_system_id.setter
|
78
|
-
def db_system_id(self, value: pulumi.Input[str]):
|
84
|
+
def db_system_id(self, value: Optional[pulumi.Input[str]]):
|
79
85
|
pulumi.set(self, "db_system_id", value)
|
80
86
|
|
81
|
-
@property
|
82
|
-
@pulumi.getter(name="displayName")
|
83
|
-
def display_name(self) -> pulumi.Input[str]:
|
84
|
-
"""
|
85
|
-
(Updatable) A user-friendly display name for the backup. Avoid entering confidential information.
|
86
|
-
"""
|
87
|
-
return pulumi.get(self, "display_name")
|
88
|
-
|
89
|
-
@display_name.setter
|
90
|
-
def display_name(self, value: pulumi.Input[str]):
|
91
|
-
pulumi.set(self, "display_name", value)
|
92
|
-
|
93
87
|
@property
|
94
88
|
@pulumi.getter(name="definedTags")
|
95
89
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -114,6 +108,18 @@ class BackupArgs:
|
|
114
108
|
def description(self, value: Optional[pulumi.Input[str]]):
|
115
109
|
pulumi.set(self, "description", value)
|
116
110
|
|
111
|
+
@property
|
112
|
+
@pulumi.getter(name="displayName")
|
113
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
114
|
+
"""
|
115
|
+
(Updatable) A user-friendly display name for the backup. Avoid entering confidential information.
|
116
|
+
"""
|
117
|
+
return pulumi.get(self, "display_name")
|
118
|
+
|
119
|
+
@display_name.setter
|
120
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
121
|
+
pulumi.set(self, "display_name", value)
|
122
|
+
|
117
123
|
@property
|
118
124
|
@pulumi.getter(name="freeformTags")
|
119
125
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -142,12 +148,25 @@ class BackupArgs:
|
|
142
148
|
def retention_period(self, value: Optional[pulumi.Input[int]]):
|
143
149
|
pulumi.set(self, "retention_period", value)
|
144
150
|
|
151
|
+
@property
|
152
|
+
@pulumi.getter(name="sourceBackupDetails")
|
153
|
+
def source_backup_details(self) -> Optional[pulumi.Input['BackupSourceBackupDetailsArgs']]:
|
154
|
+
"""
|
155
|
+
Information about the Source Backup associated with a backup.
|
156
|
+
"""
|
157
|
+
return pulumi.get(self, "source_backup_details")
|
158
|
+
|
159
|
+
@source_backup_details.setter
|
160
|
+
def source_backup_details(self, value: Optional[pulumi.Input['BackupSourceBackupDetailsArgs']]):
|
161
|
+
pulumi.set(self, "source_backup_details", value)
|
162
|
+
|
145
163
|
|
146
164
|
@pulumi.input_type
|
147
165
|
class _BackupState:
|
148
166
|
def __init__(__self__, *,
|
149
167
|
backup_size: Optional[pulumi.Input[int]] = None,
|
150
168
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
169
|
+
copy_statuses: Optional[pulumi.Input[Sequence[pulumi.Input['BackupCopyStatusArgs']]]] = None,
|
151
170
|
db_system_details: Optional[pulumi.Input[Sequence[pulumi.Input['BackupDbSystemDetailArgs']]]] = None,
|
152
171
|
db_system_id: Optional[pulumi.Input[str]] = None,
|
153
172
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -158,15 +177,18 @@ class _BackupState:
|
|
158
177
|
last_completed_request_token: Optional[pulumi.Input[str]] = None,
|
159
178
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
160
179
|
retention_period: Optional[pulumi.Input[int]] = None,
|
180
|
+
source_backup_details: Optional[pulumi.Input['BackupSourceBackupDetailsArgs']] = None,
|
161
181
|
source_type: Optional[pulumi.Input[str]] = None,
|
162
182
|
state: Optional[pulumi.Input[str]] = None,
|
163
183
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
164
184
|
time_created: Optional[pulumi.Input[str]] = None,
|
185
|
+
time_created_precise: Optional[pulumi.Input[str]] = None,
|
165
186
|
time_updated: Optional[pulumi.Input[str]] = None):
|
166
187
|
"""
|
167
188
|
Input properties used for looking up and filtering Backup resources.
|
168
189
|
:param pulumi.Input[int] backup_size: The size of the backup, in gigabytes.
|
169
190
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the backup.
|
191
|
+
:param pulumi.Input[Sequence[pulumi.Input['BackupCopyStatusArgs']]] copy_statuses: List of status for Backup Copy
|
170
192
|
:param pulumi.Input[Sequence[pulumi.Input['BackupDbSystemDetailArgs']]] db_system_details: Information about the database system associated with a backup.
|
171
193
|
:param pulumi.Input[str] db_system_id: The ID of the database system.
|
172
194
|
: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"}`
|
@@ -181,16 +203,20 @@ class _BackupState:
|
|
181
203
|
|
182
204
|
** IMPORTANT **
|
183
205
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
184
|
-
:param pulumi.Input[
|
206
|
+
:param pulumi.Input['BackupSourceBackupDetailsArgs'] source_backup_details: Information about the Source Backup associated with a backup.
|
207
|
+
:param pulumi.Input[str] source_type: Specifies whether the backup was created manually, taken on schedule defined in the a backup policy, or copied from the remote location.
|
185
208
|
:param pulumi.Input[str] state: The current state of the backup.
|
186
209
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
187
210
|
:param pulumi.Input[str] time_created: The date and time the backup request was received, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
211
|
+
:param pulumi.Input[str] time_created_precise: The date and time the backup was created. This is the time the actual point-in-time data snapshot was taken, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
188
212
|
:param pulumi.Input[str] time_updated: The date and time the backup was updated, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
189
213
|
"""
|
190
214
|
if backup_size is not None:
|
191
215
|
pulumi.set(__self__, "backup_size", backup_size)
|
192
216
|
if compartment_id is not None:
|
193
217
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
218
|
+
if copy_statuses is not None:
|
219
|
+
pulumi.set(__self__, "copy_statuses", copy_statuses)
|
194
220
|
if db_system_details is not None:
|
195
221
|
pulumi.set(__self__, "db_system_details", db_system_details)
|
196
222
|
if db_system_id is not None:
|
@@ -211,6 +237,8 @@ class _BackupState:
|
|
211
237
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
212
238
|
if retention_period is not None:
|
213
239
|
pulumi.set(__self__, "retention_period", retention_period)
|
240
|
+
if source_backup_details is not None:
|
241
|
+
pulumi.set(__self__, "source_backup_details", source_backup_details)
|
214
242
|
if source_type is not None:
|
215
243
|
pulumi.set(__self__, "source_type", source_type)
|
216
244
|
if state is not None:
|
@@ -219,6 +247,8 @@ class _BackupState:
|
|
219
247
|
pulumi.set(__self__, "system_tags", system_tags)
|
220
248
|
if time_created is not None:
|
221
249
|
pulumi.set(__self__, "time_created", time_created)
|
250
|
+
if time_created_precise is not None:
|
251
|
+
pulumi.set(__self__, "time_created_precise", time_created_precise)
|
222
252
|
if time_updated is not None:
|
223
253
|
pulumi.set(__self__, "time_updated", time_updated)
|
224
254
|
|
@@ -246,6 +276,18 @@ class _BackupState:
|
|
246
276
|
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
247
277
|
pulumi.set(self, "compartment_id", value)
|
248
278
|
|
279
|
+
@property
|
280
|
+
@pulumi.getter(name="copyStatuses")
|
281
|
+
def copy_statuses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BackupCopyStatusArgs']]]]:
|
282
|
+
"""
|
283
|
+
List of status for Backup Copy
|
284
|
+
"""
|
285
|
+
return pulumi.get(self, "copy_statuses")
|
286
|
+
|
287
|
+
@copy_statuses.setter
|
288
|
+
def copy_statuses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['BackupCopyStatusArgs']]]]):
|
289
|
+
pulumi.set(self, "copy_statuses", value)
|
290
|
+
|
249
291
|
@property
|
250
292
|
@pulumi.getter(name="dbSystemDetails")
|
251
293
|
def db_system_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BackupDbSystemDetailArgs']]]]:
|
@@ -370,11 +412,23 @@ class _BackupState:
|
|
370
412
|
def retention_period(self, value: Optional[pulumi.Input[int]]):
|
371
413
|
pulumi.set(self, "retention_period", value)
|
372
414
|
|
415
|
+
@property
|
416
|
+
@pulumi.getter(name="sourceBackupDetails")
|
417
|
+
def source_backup_details(self) -> Optional[pulumi.Input['BackupSourceBackupDetailsArgs']]:
|
418
|
+
"""
|
419
|
+
Information about the Source Backup associated with a backup.
|
420
|
+
"""
|
421
|
+
return pulumi.get(self, "source_backup_details")
|
422
|
+
|
423
|
+
@source_backup_details.setter
|
424
|
+
def source_backup_details(self, value: Optional[pulumi.Input['BackupSourceBackupDetailsArgs']]):
|
425
|
+
pulumi.set(self, "source_backup_details", value)
|
426
|
+
|
373
427
|
@property
|
374
428
|
@pulumi.getter(name="sourceType")
|
375
429
|
def source_type(self) -> Optional[pulumi.Input[str]]:
|
376
430
|
"""
|
377
|
-
Specifies whether the backup was created manually,
|
431
|
+
Specifies whether the backup was created manually, taken on schedule defined in the a backup policy, or copied from the remote location.
|
378
432
|
"""
|
379
433
|
return pulumi.get(self, "source_type")
|
380
434
|
|
@@ -418,6 +472,18 @@ class _BackupState:
|
|
418
472
|
def time_created(self, value: Optional[pulumi.Input[str]]):
|
419
473
|
pulumi.set(self, "time_created", value)
|
420
474
|
|
475
|
+
@property
|
476
|
+
@pulumi.getter(name="timeCreatedPrecise")
|
477
|
+
def time_created_precise(self) -> Optional[pulumi.Input[str]]:
|
478
|
+
"""
|
479
|
+
The date and time the backup was created. This is the time the actual point-in-time data snapshot was taken, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
480
|
+
"""
|
481
|
+
return pulumi.get(self, "time_created_precise")
|
482
|
+
|
483
|
+
@time_created_precise.setter
|
484
|
+
def time_created_precise(self, value: Optional[pulumi.Input[str]]):
|
485
|
+
pulumi.set(self, "time_created_precise", value)
|
486
|
+
|
421
487
|
@property
|
422
488
|
@pulumi.getter(name="timeUpdated")
|
423
489
|
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
@@ -443,6 +509,7 @@ class Backup(pulumi.CustomResource):
|
|
443
509
|
display_name: Optional[pulumi.Input[str]] = None,
|
444
510
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
445
511
|
retention_period: Optional[pulumi.Input[int]] = None,
|
512
|
+
source_backup_details: Optional[pulumi.Input[Union['BackupSourceBackupDetailsArgs', 'BackupSourceBackupDetailsArgsDict']]] = None,
|
446
513
|
__props__=None):
|
447
514
|
"""
|
448
515
|
This resource provides the Backup resource in Oracle Cloud Infrastructure Psql service.
|
@@ -490,6 +557,7 @@ class Backup(pulumi.CustomResource):
|
|
490
557
|
|
491
558
|
** IMPORTANT **
|
492
559
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
560
|
+
:param pulumi.Input[Union['BackupSourceBackupDetailsArgs', 'BackupSourceBackupDetailsArgsDict']] source_backup_details: Information about the Source Backup associated with a backup.
|
493
561
|
"""
|
494
562
|
...
|
495
563
|
@overload
|
@@ -552,6 +620,7 @@ class Backup(pulumi.CustomResource):
|
|
552
620
|
display_name: Optional[pulumi.Input[str]] = None,
|
553
621
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
554
622
|
retention_period: Optional[pulumi.Input[int]] = None,
|
623
|
+
source_backup_details: Optional[pulumi.Input[Union['BackupSourceBackupDetailsArgs', 'BackupSourceBackupDetailsArgsDict']]] = None,
|
555
624
|
__props__=None):
|
556
625
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
557
626
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -564,17 +633,15 @@ class Backup(pulumi.CustomResource):
|
|
564
633
|
if compartment_id is None and not opts.urn:
|
565
634
|
raise TypeError("Missing required property 'compartment_id'")
|
566
635
|
__props__.__dict__["compartment_id"] = compartment_id
|
567
|
-
if db_system_id is None and not opts.urn:
|
568
|
-
raise TypeError("Missing required property 'db_system_id'")
|
569
636
|
__props__.__dict__["db_system_id"] = db_system_id
|
570
637
|
__props__.__dict__["defined_tags"] = defined_tags
|
571
638
|
__props__.__dict__["description"] = description
|
572
|
-
if display_name is None and not opts.urn:
|
573
|
-
raise TypeError("Missing required property 'display_name'")
|
574
639
|
__props__.__dict__["display_name"] = display_name
|
575
640
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
576
641
|
__props__.__dict__["retention_period"] = retention_period
|
642
|
+
__props__.__dict__["source_backup_details"] = source_backup_details
|
577
643
|
__props__.__dict__["backup_size"] = None
|
644
|
+
__props__.__dict__["copy_statuses"] = None
|
578
645
|
__props__.__dict__["db_system_details"] = None
|
579
646
|
__props__.__dict__["last_accepted_request_token"] = None
|
580
647
|
__props__.__dict__["last_completed_request_token"] = None
|
@@ -583,6 +650,7 @@ class Backup(pulumi.CustomResource):
|
|
583
650
|
__props__.__dict__["state"] = None
|
584
651
|
__props__.__dict__["system_tags"] = None
|
585
652
|
__props__.__dict__["time_created"] = None
|
653
|
+
__props__.__dict__["time_created_precise"] = None
|
586
654
|
__props__.__dict__["time_updated"] = None
|
587
655
|
super(Backup, __self__).__init__(
|
588
656
|
'oci:Psql/backup:Backup',
|
@@ -596,6 +664,7 @@ class Backup(pulumi.CustomResource):
|
|
596
664
|
opts: Optional[pulumi.ResourceOptions] = None,
|
597
665
|
backup_size: Optional[pulumi.Input[int]] = None,
|
598
666
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
667
|
+
copy_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BackupCopyStatusArgs', 'BackupCopyStatusArgsDict']]]]] = None,
|
599
668
|
db_system_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BackupDbSystemDetailArgs', 'BackupDbSystemDetailArgsDict']]]]] = None,
|
600
669
|
db_system_id: Optional[pulumi.Input[str]] = None,
|
601
670
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -606,10 +675,12 @@ class Backup(pulumi.CustomResource):
|
|
606
675
|
last_completed_request_token: Optional[pulumi.Input[str]] = None,
|
607
676
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
608
677
|
retention_period: Optional[pulumi.Input[int]] = None,
|
678
|
+
source_backup_details: Optional[pulumi.Input[Union['BackupSourceBackupDetailsArgs', 'BackupSourceBackupDetailsArgsDict']]] = None,
|
609
679
|
source_type: Optional[pulumi.Input[str]] = None,
|
610
680
|
state: Optional[pulumi.Input[str]] = None,
|
611
681
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
612
682
|
time_created: Optional[pulumi.Input[str]] = None,
|
683
|
+
time_created_precise: Optional[pulumi.Input[str]] = None,
|
613
684
|
time_updated: Optional[pulumi.Input[str]] = None) -> 'Backup':
|
614
685
|
"""
|
615
686
|
Get an existing Backup resource's state with the given name, id, and optional extra
|
@@ -620,6 +691,7 @@ class Backup(pulumi.CustomResource):
|
|
620
691
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
621
692
|
:param pulumi.Input[int] backup_size: The size of the backup, in gigabytes.
|
622
693
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the backup.
|
694
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['BackupCopyStatusArgs', 'BackupCopyStatusArgsDict']]]] copy_statuses: List of status for Backup Copy
|
623
695
|
:param pulumi.Input[Sequence[pulumi.Input[Union['BackupDbSystemDetailArgs', 'BackupDbSystemDetailArgsDict']]]] db_system_details: Information about the database system associated with a backup.
|
624
696
|
:param pulumi.Input[str] db_system_id: The ID of the database system.
|
625
697
|
: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"}`
|
@@ -634,10 +706,12 @@ class Backup(pulumi.CustomResource):
|
|
634
706
|
|
635
707
|
** IMPORTANT **
|
636
708
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
637
|
-
:param pulumi.Input[
|
709
|
+
:param pulumi.Input[Union['BackupSourceBackupDetailsArgs', 'BackupSourceBackupDetailsArgsDict']] source_backup_details: Information about the Source Backup associated with a backup.
|
710
|
+
:param pulumi.Input[str] source_type: Specifies whether the backup was created manually, taken on schedule defined in the a backup policy, or copied from the remote location.
|
638
711
|
:param pulumi.Input[str] state: The current state of the backup.
|
639
712
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
640
713
|
:param pulumi.Input[str] time_created: The date and time the backup request was received, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
714
|
+
:param pulumi.Input[str] time_created_precise: The date and time the backup was created. This is the time the actual point-in-time data snapshot was taken, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
641
715
|
:param pulumi.Input[str] time_updated: The date and time the backup was updated, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
642
716
|
"""
|
643
717
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -646,6 +720,7 @@ class Backup(pulumi.CustomResource):
|
|
646
720
|
|
647
721
|
__props__.__dict__["backup_size"] = backup_size
|
648
722
|
__props__.__dict__["compartment_id"] = compartment_id
|
723
|
+
__props__.__dict__["copy_statuses"] = copy_statuses
|
649
724
|
__props__.__dict__["db_system_details"] = db_system_details
|
650
725
|
__props__.__dict__["db_system_id"] = db_system_id
|
651
726
|
__props__.__dict__["defined_tags"] = defined_tags
|
@@ -656,10 +731,12 @@ class Backup(pulumi.CustomResource):
|
|
656
731
|
__props__.__dict__["last_completed_request_token"] = last_completed_request_token
|
657
732
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
658
733
|
__props__.__dict__["retention_period"] = retention_period
|
734
|
+
__props__.__dict__["source_backup_details"] = source_backup_details
|
659
735
|
__props__.__dict__["source_type"] = source_type
|
660
736
|
__props__.__dict__["state"] = state
|
661
737
|
__props__.__dict__["system_tags"] = system_tags
|
662
738
|
__props__.__dict__["time_created"] = time_created
|
739
|
+
__props__.__dict__["time_created_precise"] = time_created_precise
|
663
740
|
__props__.__dict__["time_updated"] = time_updated
|
664
741
|
return Backup(resource_name, opts=opts, __props__=__props__)
|
665
742
|
|
@@ -679,6 +756,14 @@ class Backup(pulumi.CustomResource):
|
|
679
756
|
"""
|
680
757
|
return pulumi.get(self, "compartment_id")
|
681
758
|
|
759
|
+
@property
|
760
|
+
@pulumi.getter(name="copyStatuses")
|
761
|
+
def copy_statuses(self) -> pulumi.Output[Sequence['outputs.BackupCopyStatus']]:
|
762
|
+
"""
|
763
|
+
List of status for Backup Copy
|
764
|
+
"""
|
765
|
+
return pulumi.get(self, "copy_statuses")
|
766
|
+
|
682
767
|
@property
|
683
768
|
@pulumi.getter(name="dbSystemDetails")
|
684
769
|
def db_system_details(self) -> pulumi.Output[Sequence['outputs.BackupDbSystemDetail']]:
|
@@ -763,11 +848,19 @@ class Backup(pulumi.CustomResource):
|
|
763
848
|
"""
|
764
849
|
return pulumi.get(self, "retention_period")
|
765
850
|
|
851
|
+
@property
|
852
|
+
@pulumi.getter(name="sourceBackupDetails")
|
853
|
+
def source_backup_details(self) -> pulumi.Output[Optional['outputs.BackupSourceBackupDetails']]:
|
854
|
+
"""
|
855
|
+
Information about the Source Backup associated with a backup.
|
856
|
+
"""
|
857
|
+
return pulumi.get(self, "source_backup_details")
|
858
|
+
|
766
859
|
@property
|
767
860
|
@pulumi.getter(name="sourceType")
|
768
861
|
def source_type(self) -> pulumi.Output[str]:
|
769
862
|
"""
|
770
|
-
Specifies whether the backup was created manually,
|
863
|
+
Specifies whether the backup was created manually, taken on schedule defined in the a backup policy, or copied from the remote location.
|
771
864
|
"""
|
772
865
|
return pulumi.get(self, "source_type")
|
773
866
|
|
@@ -795,6 +888,14 @@ class Backup(pulumi.CustomResource):
|
|
795
888
|
"""
|
796
889
|
return pulumi.get(self, "time_created")
|
797
890
|
|
891
|
+
@property
|
892
|
+
@pulumi.getter(name="timeCreatedPrecise")
|
893
|
+
def time_created_precise(self) -> pulumi.Output[str]:
|
894
|
+
"""
|
895
|
+
The date and time the backup was created. This is the time the actual point-in-time data snapshot was taken, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
896
|
+
"""
|
897
|
+
return pulumi.get(self, "time_created_precise")
|
898
|
+
|
798
899
|
@property
|
799
900
|
@pulumi.getter(name="timeUpdated")
|
800
901
|
def time_updated(self) -> pulumi.Output[str]:
|
pulumi_oci/psql/db_system.py
CHANGED
@@ -878,6 +878,11 @@ class DbSystem(pulumi.CustomResource):
|
|
878
878
|
management_policy={
|
879
879
|
"backup_policy": {
|
880
880
|
"backup_start": db_system_management_policy_backup_policy_backup_start,
|
881
|
+
"copy_policy": {
|
882
|
+
"compartment_id": compartment_id,
|
883
|
+
"regions": db_system_management_policy_backup_policy_copy_policy_regions,
|
884
|
+
"retention_period": db_system_management_policy_backup_policy_copy_policy_retention_period,
|
885
|
+
},
|
881
886
|
"days_of_the_months": db_system_management_policy_backup_policy_days_of_the_month,
|
882
887
|
"days_of_the_weeks": db_system_management_policy_backup_policy_days_of_the_week,
|
883
888
|
"kind": db_system_management_policy_backup_policy_kind,
|
@@ -995,6 +1000,11 @@ class DbSystem(pulumi.CustomResource):
|
|
995
1000
|
management_policy={
|
996
1001
|
"backup_policy": {
|
997
1002
|
"backup_start": db_system_management_policy_backup_policy_backup_start,
|
1003
|
+
"copy_policy": {
|
1004
|
+
"compartment_id": compartment_id,
|
1005
|
+
"regions": db_system_management_policy_backup_policy_copy_policy_regions,
|
1006
|
+
"retention_period": db_system_management_policy_backup_policy_copy_policy_retention_period,
|
1007
|
+
},
|
998
1008
|
"days_of_the_months": db_system_management_policy_backup_policy_days_of_the_month,
|
999
1009
|
"days_of_the_weeks": db_system_management_policy_backup_policy_days_of_the_week,
|
1000
1010
|
"kind": db_system_management_policy_backup_policy_kind,
|
pulumi_oci/psql/get_backup.py
CHANGED
@@ -27,7 +27,7 @@ class GetBackupResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getBackup.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, backup_id=None, backup_size=None, compartment_id=None, db_system_details=None, db_system_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, last_accepted_request_token=None, last_completed_request_token=None, lifecycle_details=None, retention_period=None, source_type=None, state=None, system_tags=None, time_created=None, time_updated=None):
|
30
|
+
def __init__(__self__, backup_id=None, backup_size=None, compartment_id=None, copy_statuses=None, db_system_details=None, db_system_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, last_accepted_request_token=None, last_completed_request_token=None, lifecycle_details=None, retention_period=None, source_backup_details=None, source_type=None, state=None, system_tags=None, time_created=None, time_created_precise=None, time_updated=None):
|
31
31
|
if backup_id and not isinstance(backup_id, str):
|
32
32
|
raise TypeError("Expected argument 'backup_id' to be a str")
|
33
33
|
pulumi.set(__self__, "backup_id", backup_id)
|
@@ -37,6 +37,9 @@ class GetBackupResult:
|
|
37
37
|
if compartment_id and not isinstance(compartment_id, str):
|
38
38
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
39
39
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
40
|
+
if copy_statuses and not isinstance(copy_statuses, list):
|
41
|
+
raise TypeError("Expected argument 'copy_statuses' to be a list")
|
42
|
+
pulumi.set(__self__, "copy_statuses", copy_statuses)
|
40
43
|
if db_system_details and not isinstance(db_system_details, list):
|
41
44
|
raise TypeError("Expected argument 'db_system_details' to be a list")
|
42
45
|
pulumi.set(__self__, "db_system_details", db_system_details)
|
@@ -70,6 +73,9 @@ class GetBackupResult:
|
|
70
73
|
if retention_period and not isinstance(retention_period, int):
|
71
74
|
raise TypeError("Expected argument 'retention_period' to be a int")
|
72
75
|
pulumi.set(__self__, "retention_period", retention_period)
|
76
|
+
if source_backup_details and not isinstance(source_backup_details, list):
|
77
|
+
raise TypeError("Expected argument 'source_backup_details' to be a list")
|
78
|
+
pulumi.set(__self__, "source_backup_details", source_backup_details)
|
73
79
|
if source_type and not isinstance(source_type, str):
|
74
80
|
raise TypeError("Expected argument 'source_type' to be a str")
|
75
81
|
pulumi.set(__self__, "source_type", source_type)
|
@@ -82,6 +88,9 @@ class GetBackupResult:
|
|
82
88
|
if time_created and not isinstance(time_created, str):
|
83
89
|
raise TypeError("Expected argument 'time_created' to be a str")
|
84
90
|
pulumi.set(__self__, "time_created", time_created)
|
91
|
+
if time_created_precise and not isinstance(time_created_precise, str):
|
92
|
+
raise TypeError("Expected argument 'time_created_precise' to be a str")
|
93
|
+
pulumi.set(__self__, "time_created_precise", time_created_precise)
|
85
94
|
if time_updated and not isinstance(time_updated, str):
|
86
95
|
raise TypeError("Expected argument 'time_updated' to be a str")
|
87
96
|
pulumi.set(__self__, "time_updated", time_updated)
|
@@ -89,6 +98,9 @@ class GetBackupResult:
|
|
89
98
|
@property
|
90
99
|
@pulumi.getter(name="backupId")
|
91
100
|
def backup_id(self) -> str:
|
101
|
+
"""
|
102
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup in the source region
|
103
|
+
"""
|
92
104
|
return pulumi.get(self, "backup_id")
|
93
105
|
|
94
106
|
@property
|
@@ -107,6 +119,14 @@ class GetBackupResult:
|
|
107
119
|
"""
|
108
120
|
return pulumi.get(self, "compartment_id")
|
109
121
|
|
122
|
+
@property
|
123
|
+
@pulumi.getter(name="copyStatuses")
|
124
|
+
def copy_statuses(self) -> Sequence['outputs.GetBackupCopyStatusResult']:
|
125
|
+
"""
|
126
|
+
List of status for Backup Copy
|
127
|
+
"""
|
128
|
+
return pulumi.get(self, "copy_statuses")
|
129
|
+
|
110
130
|
@property
|
111
131
|
@pulumi.getter(name="dbSystemDetails")
|
112
132
|
def db_system_details(self) -> Sequence['outputs.GetBackupDbSystemDetailResult']:
|
@@ -195,11 +215,19 @@ class GetBackupResult:
|
|
195
215
|
"""
|
196
216
|
return pulumi.get(self, "retention_period")
|
197
217
|
|
218
|
+
@property
|
219
|
+
@pulumi.getter(name="sourceBackupDetails")
|
220
|
+
def source_backup_details(self) -> Sequence['outputs.GetBackupSourceBackupDetailResult']:
|
221
|
+
"""
|
222
|
+
Information about the Source Backup associated with a backup.
|
223
|
+
"""
|
224
|
+
return pulumi.get(self, "source_backup_details")
|
225
|
+
|
198
226
|
@property
|
199
227
|
@pulumi.getter(name="sourceType")
|
200
228
|
def source_type(self) -> str:
|
201
229
|
"""
|
202
|
-
Specifies whether the backup was created manually,
|
230
|
+
Specifies whether the backup was created manually, taken on schedule defined in the a backup policy, or copied from the remote location.
|
203
231
|
"""
|
204
232
|
return pulumi.get(self, "source_type")
|
205
233
|
|
@@ -227,6 +255,14 @@ class GetBackupResult:
|
|
227
255
|
"""
|
228
256
|
return pulumi.get(self, "time_created")
|
229
257
|
|
258
|
+
@property
|
259
|
+
@pulumi.getter(name="timeCreatedPrecise")
|
260
|
+
def time_created_precise(self) -> str:
|
261
|
+
"""
|
262
|
+
The date and time the backup was created. This is the time the actual point-in-time data snapshot was taken, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
263
|
+
"""
|
264
|
+
return pulumi.get(self, "time_created_precise")
|
265
|
+
|
230
266
|
@property
|
231
267
|
@pulumi.getter(name="timeUpdated")
|
232
268
|
def time_updated(self) -> str:
|
@@ -245,6 +281,7 @@ class AwaitableGetBackupResult(GetBackupResult):
|
|
245
281
|
backup_id=self.backup_id,
|
246
282
|
backup_size=self.backup_size,
|
247
283
|
compartment_id=self.compartment_id,
|
284
|
+
copy_statuses=self.copy_statuses,
|
248
285
|
db_system_details=self.db_system_details,
|
249
286
|
db_system_id=self.db_system_id,
|
250
287
|
defined_tags=self.defined_tags,
|
@@ -256,10 +293,12 @@ class AwaitableGetBackupResult(GetBackupResult):
|
|
256
293
|
last_completed_request_token=self.last_completed_request_token,
|
257
294
|
lifecycle_details=self.lifecycle_details,
|
258
295
|
retention_period=self.retention_period,
|
296
|
+
source_backup_details=self.source_backup_details,
|
259
297
|
source_type=self.source_type,
|
260
298
|
state=self.state,
|
261
299
|
system_tags=self.system_tags,
|
262
300
|
time_created=self.time_created,
|
301
|
+
time_created_precise=self.time_created_precise,
|
263
302
|
time_updated=self.time_updated)
|
264
303
|
|
265
304
|
|
@@ -291,6 +330,7 @@ def get_backup(backup_id: Optional[str] = None,
|
|
291
330
|
backup_id=pulumi.get(__ret__, 'backup_id'),
|
292
331
|
backup_size=pulumi.get(__ret__, 'backup_size'),
|
293
332
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
333
|
+
copy_statuses=pulumi.get(__ret__, 'copy_statuses'),
|
294
334
|
db_system_details=pulumi.get(__ret__, 'db_system_details'),
|
295
335
|
db_system_id=pulumi.get(__ret__, 'db_system_id'),
|
296
336
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
@@ -302,10 +342,12 @@ def get_backup(backup_id: Optional[str] = None,
|
|
302
342
|
last_completed_request_token=pulumi.get(__ret__, 'last_completed_request_token'),
|
303
343
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
304
344
|
retention_period=pulumi.get(__ret__, 'retention_period'),
|
345
|
+
source_backup_details=pulumi.get(__ret__, 'source_backup_details'),
|
305
346
|
source_type=pulumi.get(__ret__, 'source_type'),
|
306
347
|
state=pulumi.get(__ret__, 'state'),
|
307
348
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
308
349
|
time_created=pulumi.get(__ret__, 'time_created'),
|
350
|
+
time_created_precise=pulumi.get(__ret__, 'time_created_precise'),
|
309
351
|
time_updated=pulumi.get(__ret__, 'time_updated'))
|
310
352
|
def get_backup_output(backup_id: Optional[pulumi.Input[str]] = None,
|
311
353
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetBackupResult]:
|
@@ -334,6 +376,7 @@ def get_backup_output(backup_id: Optional[pulumi.Input[str]] = None,
|
|
334
376
|
backup_id=pulumi.get(__response__, 'backup_id'),
|
335
377
|
backup_size=pulumi.get(__response__, 'backup_size'),
|
336
378
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
379
|
+
copy_statuses=pulumi.get(__response__, 'copy_statuses'),
|
337
380
|
db_system_details=pulumi.get(__response__, 'db_system_details'),
|
338
381
|
db_system_id=pulumi.get(__response__, 'db_system_id'),
|
339
382
|
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
@@ -345,8 +388,10 @@ def get_backup_output(backup_id: Optional[pulumi.Input[str]] = None,
|
|
345
388
|
last_completed_request_token=pulumi.get(__response__, 'last_completed_request_token'),
|
346
389
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
347
390
|
retention_period=pulumi.get(__response__, 'retention_period'),
|
391
|
+
source_backup_details=pulumi.get(__response__, 'source_backup_details'),
|
348
392
|
source_type=pulumi.get(__response__, 'source_type'),
|
349
393
|
state=pulumi.get(__response__, 'state'),
|
350
394
|
system_tags=pulumi.get(__response__, 'system_tags'),
|
351
395
|
time_created=pulumi.get(__response__, 'time_created'),
|
396
|
+
time_created_precise=pulumi.get(__response__, 'time_created_precise'),
|
352
397
|
time_updated=pulumi.get(__response__, 'time_updated')))
|
pulumi_oci/psql/get_backups.py
CHANGED
@@ -68,6 +68,9 @@ class GetBackupsResult:
|
|
68
68
|
@property
|
69
69
|
@pulumi.getter(name="backupId")
|
70
70
|
def backup_id(self) -> Optional[str]:
|
71
|
+
"""
|
72
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup in the source region
|
73
|
+
"""
|
71
74
|
return pulumi.get(self, "backup_id")
|
72
75
|
|
73
76
|
@property
|