pulumi-oci 2.26.0a1741415311__py3-none-any.whl → 2.26.0a1741943394__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.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/top_level.txt +0 -0
pulumi_oci/psql/_inputs.py
CHANGED
@@ -15,8 +15,12 @@ else:
|
|
15
15
|
from .. import _utilities
|
16
16
|
|
17
17
|
__all__ = [
|
18
|
+
'BackupCopyStatusArgs',
|
19
|
+
'BackupCopyStatusArgsDict',
|
18
20
|
'BackupDbSystemDetailArgs',
|
19
21
|
'BackupDbSystemDetailArgsDict',
|
22
|
+
'BackupSourceBackupDetailsArgs',
|
23
|
+
'BackupSourceBackupDetailsArgsDict',
|
20
24
|
'ConfigurationConfigurationDetailArgs',
|
21
25
|
'ConfigurationConfigurationDetailArgsDict',
|
22
26
|
'ConfigurationConfigurationDetailItemArgs',
|
@@ -37,6 +41,8 @@ __all__ = [
|
|
37
41
|
'DbSystemManagementPolicyArgsDict',
|
38
42
|
'DbSystemManagementPolicyBackupPolicyArgs',
|
39
43
|
'DbSystemManagementPolicyBackupPolicyArgsDict',
|
44
|
+
'DbSystemManagementPolicyBackupPolicyCopyPolicyArgs',
|
45
|
+
'DbSystemManagementPolicyBackupPolicyCopyPolicyArgsDict',
|
40
46
|
'DbSystemNetworkDetailsArgs',
|
41
47
|
'DbSystemNetworkDetailsArgsDict',
|
42
48
|
'DbSystemPatchOperationArgs',
|
@@ -59,8 +65,104 @@ __all__ = [
|
|
59
65
|
|
60
66
|
MYPY = False
|
61
67
|
|
68
|
+
if not MYPY:
|
69
|
+
class BackupCopyStatusArgsDict(TypedDict):
|
70
|
+
backup_id: NotRequired[pulumi.Input[str]]
|
71
|
+
"""
|
72
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup in the source region
|
73
|
+
"""
|
74
|
+
region: NotRequired[pulumi.Input[str]]
|
75
|
+
"""
|
76
|
+
Region name of the remote region
|
77
|
+
"""
|
78
|
+
state: NotRequired[pulumi.Input[str]]
|
79
|
+
"""
|
80
|
+
The current state of the backup.
|
81
|
+
"""
|
82
|
+
state_details: NotRequired[pulumi.Input[str]]
|
83
|
+
"""
|
84
|
+
A message describing the current state of copy in more detail
|
85
|
+
"""
|
86
|
+
elif False:
|
87
|
+
BackupCopyStatusArgsDict: TypeAlias = Mapping[str, Any]
|
88
|
+
|
89
|
+
@pulumi.input_type
|
90
|
+
class BackupCopyStatusArgs:
|
91
|
+
def __init__(__self__, *,
|
92
|
+
backup_id: Optional[pulumi.Input[str]] = None,
|
93
|
+
region: Optional[pulumi.Input[str]] = None,
|
94
|
+
state: Optional[pulumi.Input[str]] = None,
|
95
|
+
state_details: Optional[pulumi.Input[str]] = None):
|
96
|
+
"""
|
97
|
+
:param pulumi.Input[str] backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup in the source region
|
98
|
+
:param pulumi.Input[str] region: Region name of the remote region
|
99
|
+
:param pulumi.Input[str] state: The current state of the backup.
|
100
|
+
:param pulumi.Input[str] state_details: A message describing the current state of copy in more detail
|
101
|
+
"""
|
102
|
+
if backup_id is not None:
|
103
|
+
pulumi.set(__self__, "backup_id", backup_id)
|
104
|
+
if region is not None:
|
105
|
+
pulumi.set(__self__, "region", region)
|
106
|
+
if state is not None:
|
107
|
+
pulumi.set(__self__, "state", state)
|
108
|
+
if state_details is not None:
|
109
|
+
pulumi.set(__self__, "state_details", state_details)
|
110
|
+
|
111
|
+
@property
|
112
|
+
@pulumi.getter(name="backupId")
|
113
|
+
def backup_id(self) -> Optional[pulumi.Input[str]]:
|
114
|
+
"""
|
115
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup in the source region
|
116
|
+
"""
|
117
|
+
return pulumi.get(self, "backup_id")
|
118
|
+
|
119
|
+
@backup_id.setter
|
120
|
+
def backup_id(self, value: Optional[pulumi.Input[str]]):
|
121
|
+
pulumi.set(self, "backup_id", value)
|
122
|
+
|
123
|
+
@property
|
124
|
+
@pulumi.getter
|
125
|
+
def region(self) -> Optional[pulumi.Input[str]]:
|
126
|
+
"""
|
127
|
+
Region name of the remote region
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "region")
|
130
|
+
|
131
|
+
@region.setter
|
132
|
+
def region(self, value: Optional[pulumi.Input[str]]):
|
133
|
+
pulumi.set(self, "region", value)
|
134
|
+
|
135
|
+
@property
|
136
|
+
@pulumi.getter
|
137
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
138
|
+
"""
|
139
|
+
The current state of the backup.
|
140
|
+
"""
|
141
|
+
return pulumi.get(self, "state")
|
142
|
+
|
143
|
+
@state.setter
|
144
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
145
|
+
pulumi.set(self, "state", value)
|
146
|
+
|
147
|
+
@property
|
148
|
+
@pulumi.getter(name="stateDetails")
|
149
|
+
def state_details(self) -> Optional[pulumi.Input[str]]:
|
150
|
+
"""
|
151
|
+
A message describing the current state of copy in more detail
|
152
|
+
"""
|
153
|
+
return pulumi.get(self, "state_details")
|
154
|
+
|
155
|
+
@state_details.setter
|
156
|
+
def state_details(self, value: Optional[pulumi.Input[str]]):
|
157
|
+
pulumi.set(self, "state_details", value)
|
158
|
+
|
159
|
+
|
62
160
|
if not MYPY:
|
63
161
|
class BackupDbSystemDetailArgsDict(TypedDict):
|
162
|
+
config_id: NotRequired[pulumi.Input[str]]
|
163
|
+
"""
|
164
|
+
OCID of the configuration that was applied on the source dbSystem at the time when backup was taken.
|
165
|
+
"""
|
64
166
|
db_version: NotRequired[pulumi.Input[str]]
|
65
167
|
"""
|
66
168
|
The major and minor versions of the database system software.
|
@@ -75,17 +177,33 @@ elif False:
|
|
75
177
|
@pulumi.input_type
|
76
178
|
class BackupDbSystemDetailArgs:
|
77
179
|
def __init__(__self__, *,
|
180
|
+
config_id: Optional[pulumi.Input[str]] = None,
|
78
181
|
db_version: Optional[pulumi.Input[str]] = None,
|
79
182
|
system_type: Optional[pulumi.Input[str]] = None):
|
80
183
|
"""
|
184
|
+
:param pulumi.Input[str] config_id: OCID of the configuration that was applied on the source dbSystem at the time when backup was taken.
|
81
185
|
:param pulumi.Input[str] db_version: The major and minor versions of the database system software.
|
82
186
|
:param pulumi.Input[str] system_type: Type of the database system.
|
83
187
|
"""
|
188
|
+
if config_id is not None:
|
189
|
+
pulumi.set(__self__, "config_id", config_id)
|
84
190
|
if db_version is not None:
|
85
191
|
pulumi.set(__self__, "db_version", db_version)
|
86
192
|
if system_type is not None:
|
87
193
|
pulumi.set(__self__, "system_type", system_type)
|
88
194
|
|
195
|
+
@property
|
196
|
+
@pulumi.getter(name="configId")
|
197
|
+
def config_id(self) -> Optional[pulumi.Input[str]]:
|
198
|
+
"""
|
199
|
+
OCID of the configuration that was applied on the source dbSystem at the time when backup was taken.
|
200
|
+
"""
|
201
|
+
return pulumi.get(self, "config_id")
|
202
|
+
|
203
|
+
@config_id.setter
|
204
|
+
def config_id(self, value: Optional[pulumi.Input[str]]):
|
205
|
+
pulumi.set(self, "config_id", value)
|
206
|
+
|
89
207
|
@property
|
90
208
|
@pulumi.getter(name="dbVersion")
|
91
209
|
def db_version(self) -> Optional[pulumi.Input[str]]:
|
@@ -111,6 +229,56 @@ class BackupDbSystemDetailArgs:
|
|
111
229
|
pulumi.set(self, "system_type", value)
|
112
230
|
|
113
231
|
|
232
|
+
if not MYPY:
|
233
|
+
class BackupSourceBackupDetailsArgsDict(TypedDict):
|
234
|
+
source_backup_id: pulumi.Input[str]
|
235
|
+
"""
|
236
|
+
Backup ID of the COPY source type.
|
237
|
+
"""
|
238
|
+
source_region: pulumi.Input[str]
|
239
|
+
"""
|
240
|
+
Backup Region of the COPY source type.
|
241
|
+
"""
|
242
|
+
elif False:
|
243
|
+
BackupSourceBackupDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
244
|
+
|
245
|
+
@pulumi.input_type
|
246
|
+
class BackupSourceBackupDetailsArgs:
|
247
|
+
def __init__(__self__, *,
|
248
|
+
source_backup_id: pulumi.Input[str],
|
249
|
+
source_region: pulumi.Input[str]):
|
250
|
+
"""
|
251
|
+
:param pulumi.Input[str] source_backup_id: Backup ID of the COPY source type.
|
252
|
+
:param pulumi.Input[str] source_region: Backup Region of the COPY source type.
|
253
|
+
"""
|
254
|
+
pulumi.set(__self__, "source_backup_id", source_backup_id)
|
255
|
+
pulumi.set(__self__, "source_region", source_region)
|
256
|
+
|
257
|
+
@property
|
258
|
+
@pulumi.getter(name="sourceBackupId")
|
259
|
+
def source_backup_id(self) -> pulumi.Input[str]:
|
260
|
+
"""
|
261
|
+
Backup ID of the COPY source type.
|
262
|
+
"""
|
263
|
+
return pulumi.get(self, "source_backup_id")
|
264
|
+
|
265
|
+
@source_backup_id.setter
|
266
|
+
def source_backup_id(self, value: pulumi.Input[str]):
|
267
|
+
pulumi.set(self, "source_backup_id", value)
|
268
|
+
|
269
|
+
@property
|
270
|
+
@pulumi.getter(name="sourceRegion")
|
271
|
+
def source_region(self) -> pulumi.Input[str]:
|
272
|
+
"""
|
273
|
+
Backup Region of the COPY source type.
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "source_region")
|
276
|
+
|
277
|
+
@source_region.setter
|
278
|
+
def source_region(self, value: pulumi.Input[str]):
|
279
|
+
pulumi.set(self, "source_region", value)
|
280
|
+
|
281
|
+
|
114
282
|
if not MYPY:
|
115
283
|
class ConfigurationConfigurationDetailArgsDict(TypedDict):
|
116
284
|
items: NotRequired[pulumi.Input[Sequence[pulumi.Input['ConfigurationConfigurationDetailItemArgsDict']]]]
|
@@ -845,6 +1013,10 @@ if not MYPY:
|
|
845
1013
|
"""
|
846
1014
|
(Updatable) Hour of the day when the backup starts.
|
847
1015
|
"""
|
1016
|
+
copy_policy: NotRequired[pulumi.Input['DbSystemManagementPolicyBackupPolicyCopyPolicyArgsDict']]
|
1017
|
+
"""
|
1018
|
+
(Updatable) Backup copy details
|
1019
|
+
"""
|
848
1020
|
days_of_the_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
|
849
1021
|
"""
|
850
1022
|
(Updatable) Day of the month when the backup should start. To ensure that the backup runs monthly, the latest day of the month that you can use to schedule a backup is the the 28th day.
|
@@ -868,12 +1040,14 @@ elif False:
|
|
868
1040
|
class DbSystemManagementPolicyBackupPolicyArgs:
|
869
1041
|
def __init__(__self__, *,
|
870
1042
|
backup_start: Optional[pulumi.Input[str]] = None,
|
1043
|
+
copy_policy: Optional[pulumi.Input['DbSystemManagementPolicyBackupPolicyCopyPolicyArgs']] = None,
|
871
1044
|
days_of_the_months: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
|
872
1045
|
days_of_the_weeks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
873
1046
|
kind: Optional[pulumi.Input[str]] = None,
|
874
1047
|
retention_days: Optional[pulumi.Input[int]] = None):
|
875
1048
|
"""
|
876
1049
|
:param pulumi.Input[str] backup_start: (Updatable) Hour of the day when the backup starts.
|
1050
|
+
:param pulumi.Input['DbSystemManagementPolicyBackupPolicyCopyPolicyArgs'] copy_policy: (Updatable) Backup copy details
|
877
1051
|
:param pulumi.Input[Sequence[pulumi.Input[int]]] days_of_the_months: (Updatable) Day of the month when the backup should start. To ensure that the backup runs monthly, the latest day of the month that you can use to schedule a backup is the the 28th day.
|
878
1052
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] days_of_the_weeks: (Updatable) The day of the week that the backup starts.
|
879
1053
|
:param pulumi.Input[str] kind: (Updatable) The kind of backup policy.
|
@@ -881,6 +1055,8 @@ class DbSystemManagementPolicyBackupPolicyArgs:
|
|
881
1055
|
"""
|
882
1056
|
if backup_start is not None:
|
883
1057
|
pulumi.set(__self__, "backup_start", backup_start)
|
1058
|
+
if copy_policy is not None:
|
1059
|
+
pulumi.set(__self__, "copy_policy", copy_policy)
|
884
1060
|
if days_of_the_months is not None:
|
885
1061
|
pulumi.set(__self__, "days_of_the_months", days_of_the_months)
|
886
1062
|
if days_of_the_weeks is not None:
|
@@ -902,6 +1078,18 @@ class DbSystemManagementPolicyBackupPolicyArgs:
|
|
902
1078
|
def backup_start(self, value: Optional[pulumi.Input[str]]):
|
903
1079
|
pulumi.set(self, "backup_start", value)
|
904
1080
|
|
1081
|
+
@property
|
1082
|
+
@pulumi.getter(name="copyPolicy")
|
1083
|
+
def copy_policy(self) -> Optional[pulumi.Input['DbSystemManagementPolicyBackupPolicyCopyPolicyArgs']]:
|
1084
|
+
"""
|
1085
|
+
(Updatable) Backup copy details
|
1086
|
+
"""
|
1087
|
+
return pulumi.get(self, "copy_policy")
|
1088
|
+
|
1089
|
+
@copy_policy.setter
|
1090
|
+
def copy_policy(self, value: Optional[pulumi.Input['DbSystemManagementPolicyBackupPolicyCopyPolicyArgs']]):
|
1091
|
+
pulumi.set(self, "copy_policy", value)
|
1092
|
+
|
905
1093
|
@property
|
906
1094
|
@pulumi.getter(name="daysOfTheMonths")
|
907
1095
|
def days_of_the_months(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]:
|
@@ -951,6 +1139,76 @@ class DbSystemManagementPolicyBackupPolicyArgs:
|
|
951
1139
|
pulumi.set(self, "retention_days", value)
|
952
1140
|
|
953
1141
|
|
1142
|
+
if not MYPY:
|
1143
|
+
class DbSystemManagementPolicyBackupPolicyCopyPolicyArgsDict(TypedDict):
|
1144
|
+
compartment_id: pulumi.Input[str]
|
1145
|
+
"""
|
1146
|
+
(Updatable) target compartment to place a new backup
|
1147
|
+
"""
|
1148
|
+
regions: pulumi.Input[Sequence[pulumi.Input[str]]]
|
1149
|
+
"""
|
1150
|
+
(Updatable) List of region names of the remote region
|
1151
|
+
"""
|
1152
|
+
retention_period: NotRequired[pulumi.Input[int]]
|
1153
|
+
"""
|
1154
|
+
(Updatable) Retention period in days of the backup copy.
|
1155
|
+
"""
|
1156
|
+
elif False:
|
1157
|
+
DbSystemManagementPolicyBackupPolicyCopyPolicyArgsDict: TypeAlias = Mapping[str, Any]
|
1158
|
+
|
1159
|
+
@pulumi.input_type
|
1160
|
+
class DbSystemManagementPolicyBackupPolicyCopyPolicyArgs:
|
1161
|
+
def __init__(__self__, *,
|
1162
|
+
compartment_id: pulumi.Input[str],
|
1163
|
+
regions: pulumi.Input[Sequence[pulumi.Input[str]]],
|
1164
|
+
retention_period: Optional[pulumi.Input[int]] = None):
|
1165
|
+
"""
|
1166
|
+
:param pulumi.Input[str] compartment_id: (Updatable) target compartment to place a new backup
|
1167
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] regions: (Updatable) List of region names of the remote region
|
1168
|
+
:param pulumi.Input[int] retention_period: (Updatable) Retention period in days of the backup copy.
|
1169
|
+
"""
|
1170
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
1171
|
+
pulumi.set(__self__, "regions", regions)
|
1172
|
+
if retention_period is not None:
|
1173
|
+
pulumi.set(__self__, "retention_period", retention_period)
|
1174
|
+
|
1175
|
+
@property
|
1176
|
+
@pulumi.getter(name="compartmentId")
|
1177
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
1178
|
+
"""
|
1179
|
+
(Updatable) target compartment to place a new backup
|
1180
|
+
"""
|
1181
|
+
return pulumi.get(self, "compartment_id")
|
1182
|
+
|
1183
|
+
@compartment_id.setter
|
1184
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
1185
|
+
pulumi.set(self, "compartment_id", value)
|
1186
|
+
|
1187
|
+
@property
|
1188
|
+
@pulumi.getter
|
1189
|
+
def regions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
1190
|
+
"""
|
1191
|
+
(Updatable) List of region names of the remote region
|
1192
|
+
"""
|
1193
|
+
return pulumi.get(self, "regions")
|
1194
|
+
|
1195
|
+
@regions.setter
|
1196
|
+
def regions(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
1197
|
+
pulumi.set(self, "regions", value)
|
1198
|
+
|
1199
|
+
@property
|
1200
|
+
@pulumi.getter(name="retentionPeriod")
|
1201
|
+
def retention_period(self) -> Optional[pulumi.Input[int]]:
|
1202
|
+
"""
|
1203
|
+
(Updatable) Retention period in days of the backup copy.
|
1204
|
+
"""
|
1205
|
+
return pulumi.get(self, "retention_period")
|
1206
|
+
|
1207
|
+
@retention_period.setter
|
1208
|
+
def retention_period(self, value: Optional[pulumi.Input[int]]):
|
1209
|
+
pulumi.set(self, "retention_period", value)
|
1210
|
+
|
1211
|
+
|
954
1212
|
if not MYPY:
|
955
1213
|
class DbSystemNetworkDetailsArgsDict(TypedDict):
|
956
1214
|
subnet_id: pulumi.Input[str]
|