pulumi-oci 2.19.0a1733984857__py3-none-any.whl → 2.20.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. pulumi_oci/__init__.py +56 -0
  2. pulumi_oci/bigdataservice/__init__.py +4 -0
  3. pulumi_oci/bigdataservice/_inputs.py +672 -6
  4. pulumi_oci/bigdataservice/bds_instance.py +169 -7
  5. pulumi_oci/bigdataservice/bds_instance_api_key.py +66 -3
  6. pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +859 -0
  7. pulumi_oci/bigdataservice/bds_instance_patch_action.py +4 -0
  8. pulumi_oci/bigdataservice/get_bds_cluster_versions.py +123 -0
  9. pulumi_oci/bigdataservice/get_bds_instance.py +48 -1
  10. pulumi_oci/bigdataservice/get_bds_instance_api_key.py +17 -1
  11. pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +3 -0
  12. pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +322 -0
  13. pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +207 -0
  14. pulumi_oci/bigdataservice/outputs.py +1466 -98
  15. pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
  16. pulumi_oci/blockchain/outputs.py +2 -2
  17. pulumi_oci/core/outputs.py +4 -0
  18. pulumi_oci/database/autonomous_container_database.py +47 -0
  19. pulumi_oci/database/autonomous_database.py +94 -0
  20. pulumi_oci/database/exadb_vm_cluster.py +104 -0
  21. pulumi_oci/database/get_autonomous_container_database.py +15 -1
  22. pulumi_oci/database/get_autonomous_database.py +29 -1
  23. pulumi_oci/database/outputs.py +36 -0
  24. pulumi_oci/dataflow/application.py +75 -33
  25. pulumi_oci/dataflow/get_application.py +15 -1
  26. pulumi_oci/dataflow/outputs.py +7 -0
  27. pulumi_oci/datascience/_inputs.py +32 -12
  28. pulumi_oci/datascience/get_job_run.py +3 -3
  29. pulumi_oci/datascience/get_job_runs.py +2 -2
  30. pulumi_oci/datascience/job_run.py +7 -7
  31. pulumi_oci/datascience/model_deployment.py +2 -0
  32. pulumi_oci/datascience/outputs.py +62 -26
  33. pulumi_oci/desktops/_inputs.py +9 -9
  34. pulumi_oci/desktops/desktop_pool.py +84 -35
  35. pulumi_oci/desktops/get_desktop_pool.py +12 -1
  36. pulumi_oci/desktops/outputs.py +13 -6
  37. pulumi_oci/disasterrecovery/_inputs.py +46 -30
  38. pulumi_oci/disasterrecovery/dr_plan.py +194 -23
  39. pulumi_oci/disasterrecovery/get_dr_plan.py +54 -4
  40. pulumi_oci/disasterrecovery/get_dr_plans.py +23 -1
  41. pulumi_oci/disasterrecovery/outputs.py +113 -21
  42. pulumi_oci/fleetappsmanagement/__init__.py +19 -0
  43. pulumi_oci/fleetappsmanagement/_inputs.py +5334 -378
  44. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +830 -0
  45. pulumi_oci/fleetappsmanagement/fleet.py +112 -67
  46. pulumi_oci/fleetappsmanagement/fleet_credential.py +44 -36
  47. pulumi_oci/fleetappsmanagement/fleet_property.py +35 -35
  48. pulumi_oci/fleetappsmanagement/fleet_resource.py +37 -37
  49. pulumi_oci/fleetappsmanagement/get_announcements.py +4 -4
  50. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +199 -0
  51. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +253 -0
  52. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +324 -0
  53. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +243 -0
  54. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +144 -0
  55. pulumi_oci/fleetappsmanagement/get_compliance_records.py +279 -0
  56. pulumi_oci/fleetappsmanagement/get_fleet.py +29 -15
  57. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +8 -8
  58. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +7 -7
  59. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +61 -17
  60. pulumi_oci/fleetappsmanagement/get_fleet_products.py +6 -6
  61. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +8 -8
  62. pulumi_oci/fleetappsmanagement/get_fleet_property.py +11 -11
  63. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +11 -11
  64. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +10 -10
  65. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +8 -8
  66. pulumi_oci/fleetappsmanagement/get_fleets.py +16 -16
  67. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +12 -12
  68. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +8 -8
  69. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +31 -12
  70. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +144 -0
  71. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +2 -2
  72. pulumi_oci/fleetappsmanagement/get_onboardings.py +2 -2
  73. pulumi_oci/fleetappsmanagement/get_patch.py +363 -0
  74. pulumi_oci/fleetappsmanagement/get_patches.py +335 -0
  75. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +296 -0
  76. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +221 -0
  77. pulumi_oci/fleetappsmanagement/get_properties.py +9 -9
  78. pulumi_oci/fleetappsmanagement/get_property.py +4 -4
  79. pulumi_oci/fleetappsmanagement/get_runbook.py +8 -8
  80. pulumi_oci/fleetappsmanagement/get_runbooks.py +16 -16
  81. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +10 -10
  82. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +2 -2
  83. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +33 -11
  84. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +144 -0
  85. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py +245 -0
  86. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +245 -0
  87. pulumi_oci/fleetappsmanagement/get_task_record.py +3 -3
  88. pulumi_oci/fleetappsmanagement/maintenance_window.py +44 -44
  89. pulumi_oci/fleetappsmanagement/onboarding.py +108 -20
  90. pulumi_oci/fleetappsmanagement/outputs.py +11222 -2736
  91. pulumi_oci/fleetappsmanagement/patch.py +978 -0
  92. pulumi_oci/fleetappsmanagement/platform_configuration.py +687 -0
  93. pulumi_oci/fleetappsmanagement/property.py +27 -27
  94. pulumi_oci/fleetappsmanagement/runbook.py +1173 -0
  95. pulumi_oci/fleetappsmanagement/scheduler_definition.py +30 -30
  96. pulumi_oci/fleetappsmanagement/task_record.py +754 -0
  97. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +28 -0
  98. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +56 -0
  99. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +15 -1
  100. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +29 -1
  101. pulumi_oci/fleetsoftwareupdate/outputs.py +33 -0
  102. pulumi_oci/generativeai/dedicated_ai_cluster.py +21 -0
  103. pulumi_oci/goldengate/__init__.py +7 -0
  104. pulumi_oci/goldengate/_inputs.py +665 -0
  105. pulumi_oci/goldengate/connection.py +7 -7
  106. pulumi_oci/goldengate/get_pipeline.py +408 -0
  107. pulumi_oci/goldengate/get_pipeline_running_processes.py +144 -0
  108. pulumi_oci/goldengate/get_pipeline_schema_tables.py +207 -0
  109. pulumi_oci/goldengate/get_pipeline_schemas.py +163 -0
  110. pulumi_oci/goldengate/get_pipelines.py +213 -0
  111. pulumi_oci/goldengate/get_recipes.py +188 -0
  112. pulumi_oci/goldengate/get_trail_files.py +4 -2
  113. pulumi_oci/goldengate/get_trail_sequences.py +4 -2
  114. pulumi_oci/goldengate/outputs.py +1500 -0
  115. pulumi_oci/goldengate/pipeline.py +928 -0
  116. pulumi_oci/pulumi-plugin.json +1 -1
  117. pulumi_oci/stackmonitoring/_inputs.py +94 -14
  118. pulumi_oci/stackmonitoring/get_metric_extensions.py +22 -3
  119. pulumi_oci/stackmonitoring/metric_extension.py +8 -0
  120. pulumi_oci/stackmonitoring/outputs.py +166 -24
  121. pulumi_oci/visualbuilder/_inputs.py +57 -202
  122. pulumi_oci/visualbuilder/get_vb_instance.py +15 -29
  123. pulumi_oci/visualbuilder/outputs.py +114 -400
  124. pulumi_oci/visualbuilder/vb_instance.py +62 -59
  125. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/METADATA +3 -3
  126. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/RECORD +128 -98
  127. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/WHEEL +0 -0
  128. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/top_level.txt +0 -0
@@ -28,6 +28,13 @@ __all__ = [
28
28
  'DeploymentMaintenanceWindow',
29
29
  'DeploymentOggData',
30
30
  'DeploymentOggDataGroupToRolesMapping',
31
+ 'PipelineLock',
32
+ 'PipelineMappingRule',
33
+ 'PipelineProcessOptions',
34
+ 'PipelineProcessOptionsInitialDataLoad',
35
+ 'PipelineProcessOptionsReplicateSchemaChange',
36
+ 'PipelineSourceConnectionDetails',
37
+ 'PipelineTargetConnectionDetails',
31
38
  'GetConnectionAdditionalAttributeResult',
32
39
  'GetConnectionAssignmentsConnectionAssignmentCollectionResult',
33
40
  'GetConnectionAssignmentsConnectionAssignmentCollectionItemResult',
@@ -87,6 +94,35 @@ __all__ = [
87
94
  'GetMessagesDeploymentMessagesCollectionResult',
88
95
  'GetMessagesDeploymentMessagesCollectionItemResult',
89
96
  'GetMessagesFilterResult',
97
+ 'GetPipelineLockResult',
98
+ 'GetPipelineMappingRuleResult',
99
+ 'GetPipelineProcessOptionResult',
100
+ 'GetPipelineProcessOptionInitialDataLoadResult',
101
+ 'GetPipelineProcessOptionReplicateSchemaChangeResult',
102
+ 'GetPipelineRunningProcessesFilterResult',
103
+ 'GetPipelineRunningProcessesPipelineRunningProcessCollectionResult',
104
+ 'GetPipelineRunningProcessesPipelineRunningProcessCollectionItemResult',
105
+ 'GetPipelineSchemaTablesFilterResult',
106
+ 'GetPipelineSchemaTablesPipelineSchemaTableCollectionResult',
107
+ 'GetPipelineSchemaTablesPipelineSchemaTableCollectionItemResult',
108
+ 'GetPipelineSchemasFilterResult',
109
+ 'GetPipelineSchemasPipelineSchemaCollectionResult',
110
+ 'GetPipelineSchemasPipelineSchemaCollectionItemResult',
111
+ 'GetPipelineSourceConnectionDetailResult',
112
+ 'GetPipelineTargetConnectionDetailResult',
113
+ 'GetPipelinesFilterResult',
114
+ 'GetPipelinesPipelineCollectionResult',
115
+ 'GetPipelinesPipelineCollectionItemResult',
116
+ 'GetPipelinesPipelineCollectionItemLockResult',
117
+ 'GetPipelinesPipelineCollectionItemMappingRuleResult',
118
+ 'GetPipelinesPipelineCollectionItemProcessOptionResult',
119
+ 'GetPipelinesPipelineCollectionItemProcessOptionInitialDataLoadResult',
120
+ 'GetPipelinesPipelineCollectionItemProcessOptionReplicateSchemaChangeResult',
121
+ 'GetPipelinesPipelineCollectionItemSourceConnectionDetailResult',
122
+ 'GetPipelinesPipelineCollectionItemTargetConnectionDetailResult',
123
+ 'GetRecipesFilterResult',
124
+ 'GetRecipesRecipeSummaryCollectionResult',
125
+ 'GetRecipesRecipeSummaryCollectionItemResult',
90
126
  'GetTrailFileItemResult',
91
127
  'GetTrailFilesFilterResult',
92
128
  'GetTrailFilesTrailFileCollectionResult',
@@ -955,6 +991,347 @@ class DeploymentOggDataGroupToRolesMapping(dict):
955
991
  return pulumi.get(self, "user_group_id")
956
992
 
957
993
 
994
+ @pulumi.output_type
995
+ class PipelineLock(dict):
996
+ def __init__(__self__, *,
997
+ type: str,
998
+ message: Optional[str] = None):
999
+ """
1000
+ :param str type: Type of the lock.
1001
+ :param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1002
+ """
1003
+ pulumi.set(__self__, "type", type)
1004
+ if message is not None:
1005
+ pulumi.set(__self__, "message", message)
1006
+
1007
+ @property
1008
+ @pulumi.getter
1009
+ def type(self) -> str:
1010
+ """
1011
+ Type of the lock.
1012
+ """
1013
+ return pulumi.get(self, "type")
1014
+
1015
+ @property
1016
+ @pulumi.getter
1017
+ def message(self) -> Optional[str]:
1018
+ """
1019
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1020
+ """
1021
+ return pulumi.get(self, "message")
1022
+
1023
+
1024
+ @pulumi.output_type
1025
+ class PipelineMappingRule(dict):
1026
+ @staticmethod
1027
+ def __key_warning(key: str):
1028
+ suggest = None
1029
+ if key == "mappingType":
1030
+ suggest = "mapping_type"
1031
+
1032
+ if suggest:
1033
+ pulumi.log.warn(f"Key '{key}' not found in PipelineMappingRule. Access the value via the '{suggest}' property getter instead.")
1034
+
1035
+ def __getitem__(self, key: str) -> Any:
1036
+ PipelineMappingRule.__key_warning(key)
1037
+ return super().__getitem__(key)
1038
+
1039
+ def get(self, key: str, default = None) -> Any:
1040
+ PipelineMappingRule.__key_warning(key)
1041
+ return super().get(key, default)
1042
+
1043
+ def __init__(__self__, *,
1044
+ mapping_type: Optional[str] = None,
1045
+ source: Optional[str] = None,
1046
+ target: Optional[str] = None):
1047
+ """
1048
+ :param str mapping_type: Defines the exclude/include rules of source and target schemas and tables when replicating from source to target. This option applies when creating and updating a pipeline.
1049
+ :param str source: The source schema/table combination for replication to target.
1050
+ :param str target: The target schema/table combination for replication from the source.
1051
+ """
1052
+ if mapping_type is not None:
1053
+ pulumi.set(__self__, "mapping_type", mapping_type)
1054
+ if source is not None:
1055
+ pulumi.set(__self__, "source", source)
1056
+ if target is not None:
1057
+ pulumi.set(__self__, "target", target)
1058
+
1059
+ @property
1060
+ @pulumi.getter(name="mappingType")
1061
+ def mapping_type(self) -> Optional[str]:
1062
+ """
1063
+ Defines the exclude/include rules of source and target schemas and tables when replicating from source to target. This option applies when creating and updating a pipeline.
1064
+ """
1065
+ return pulumi.get(self, "mapping_type")
1066
+
1067
+ @property
1068
+ @pulumi.getter
1069
+ def source(self) -> Optional[str]:
1070
+ """
1071
+ The source schema/table combination for replication to target.
1072
+ """
1073
+ return pulumi.get(self, "source")
1074
+
1075
+ @property
1076
+ @pulumi.getter
1077
+ def target(self) -> Optional[str]:
1078
+ """
1079
+ The target schema/table combination for replication from the source.
1080
+ """
1081
+ return pulumi.get(self, "target")
1082
+
1083
+
1084
+ @pulumi.output_type
1085
+ class PipelineProcessOptions(dict):
1086
+ @staticmethod
1087
+ def __key_warning(key: str):
1088
+ suggest = None
1089
+ if key == "initialDataLoad":
1090
+ suggest = "initial_data_load"
1091
+ elif key == "replicateSchemaChange":
1092
+ suggest = "replicate_schema_change"
1093
+ elif key == "shouldRestartOnFailure":
1094
+ suggest = "should_restart_on_failure"
1095
+
1096
+ if suggest:
1097
+ pulumi.log.warn(f"Key '{key}' not found in PipelineProcessOptions. Access the value via the '{suggest}' property getter instead.")
1098
+
1099
+ def __getitem__(self, key: str) -> Any:
1100
+ PipelineProcessOptions.__key_warning(key)
1101
+ return super().__getitem__(key)
1102
+
1103
+ def get(self, key: str, default = None) -> Any:
1104
+ PipelineProcessOptions.__key_warning(key)
1105
+ return super().get(key, default)
1106
+
1107
+ def __init__(__self__, *,
1108
+ initial_data_load: 'outputs.PipelineProcessOptionsInitialDataLoad',
1109
+ replicate_schema_change: 'outputs.PipelineProcessOptionsReplicateSchemaChange',
1110
+ should_restart_on_failure: str):
1111
+ """
1112
+ :param 'PipelineProcessOptionsInitialDataLoadArgs' initial_data_load: (Updatable) Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
1113
+ :param 'PipelineProcessOptionsReplicateSchemaChangeArgs' replicate_schema_change: (Updatable) Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
1114
+ :param str should_restart_on_failure: (Updatable) If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
1115
+ """
1116
+ pulumi.set(__self__, "initial_data_load", initial_data_load)
1117
+ pulumi.set(__self__, "replicate_schema_change", replicate_schema_change)
1118
+ pulumi.set(__self__, "should_restart_on_failure", should_restart_on_failure)
1119
+
1120
+ @property
1121
+ @pulumi.getter(name="initialDataLoad")
1122
+ def initial_data_load(self) -> 'outputs.PipelineProcessOptionsInitialDataLoad':
1123
+ """
1124
+ (Updatable) Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
1125
+ """
1126
+ return pulumi.get(self, "initial_data_load")
1127
+
1128
+ @property
1129
+ @pulumi.getter(name="replicateSchemaChange")
1130
+ def replicate_schema_change(self) -> 'outputs.PipelineProcessOptionsReplicateSchemaChange':
1131
+ """
1132
+ (Updatable) Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
1133
+ """
1134
+ return pulumi.get(self, "replicate_schema_change")
1135
+
1136
+ @property
1137
+ @pulumi.getter(name="shouldRestartOnFailure")
1138
+ def should_restart_on_failure(self) -> str:
1139
+ """
1140
+ (Updatable) If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
1141
+ """
1142
+ return pulumi.get(self, "should_restart_on_failure")
1143
+
1144
+
1145
+ @pulumi.output_type
1146
+ class PipelineProcessOptionsInitialDataLoad(dict):
1147
+ @staticmethod
1148
+ def __key_warning(key: str):
1149
+ suggest = None
1150
+ if key == "isInitialLoad":
1151
+ suggest = "is_initial_load"
1152
+ elif key == "actionOnExistingTable":
1153
+ suggest = "action_on_existing_table"
1154
+
1155
+ if suggest:
1156
+ pulumi.log.warn(f"Key '{key}' not found in PipelineProcessOptionsInitialDataLoad. Access the value via the '{suggest}' property getter instead.")
1157
+
1158
+ def __getitem__(self, key: str) -> Any:
1159
+ PipelineProcessOptionsInitialDataLoad.__key_warning(key)
1160
+ return super().__getitem__(key)
1161
+
1162
+ def get(self, key: str, default = None) -> Any:
1163
+ PipelineProcessOptionsInitialDataLoad.__key_warning(key)
1164
+ return super().get(key, default)
1165
+
1166
+ def __init__(__self__, *,
1167
+ is_initial_load: str,
1168
+ action_on_existing_table: Optional[str] = None):
1169
+ """
1170
+ :param str is_initial_load: (Updatable) If ENABLED, then existing source data is also synchronized to the target when creating or updating the pipeline.
1171
+ :param str action_on_existing_table: (Updatable) Action upon existing tables in target when initial Data Load is set i.e., isInitialLoad=true.
1172
+ """
1173
+ pulumi.set(__self__, "is_initial_load", is_initial_load)
1174
+ if action_on_existing_table is not None:
1175
+ pulumi.set(__self__, "action_on_existing_table", action_on_existing_table)
1176
+
1177
+ @property
1178
+ @pulumi.getter(name="isInitialLoad")
1179
+ def is_initial_load(self) -> str:
1180
+ """
1181
+ (Updatable) If ENABLED, then existing source data is also synchronized to the target when creating or updating the pipeline.
1182
+ """
1183
+ return pulumi.get(self, "is_initial_load")
1184
+
1185
+ @property
1186
+ @pulumi.getter(name="actionOnExistingTable")
1187
+ def action_on_existing_table(self) -> Optional[str]:
1188
+ """
1189
+ (Updatable) Action upon existing tables in target when initial Data Load is set i.e., isInitialLoad=true.
1190
+ """
1191
+ return pulumi.get(self, "action_on_existing_table")
1192
+
1193
+
1194
+ @pulumi.output_type
1195
+ class PipelineProcessOptionsReplicateSchemaChange(dict):
1196
+ @staticmethod
1197
+ def __key_warning(key: str):
1198
+ suggest = None
1199
+ if key == "canReplicateSchemaChange":
1200
+ suggest = "can_replicate_schema_change"
1201
+ elif key == "actionOnDdlError":
1202
+ suggest = "action_on_ddl_error"
1203
+ elif key == "actionOnDmlError":
1204
+ suggest = "action_on_dml_error"
1205
+
1206
+ if suggest:
1207
+ pulumi.log.warn(f"Key '{key}' not found in PipelineProcessOptionsReplicateSchemaChange. Access the value via the '{suggest}' property getter instead.")
1208
+
1209
+ def __getitem__(self, key: str) -> Any:
1210
+ PipelineProcessOptionsReplicateSchemaChange.__key_warning(key)
1211
+ return super().__getitem__(key)
1212
+
1213
+ def get(self, key: str, default = None) -> Any:
1214
+ PipelineProcessOptionsReplicateSchemaChange.__key_warning(key)
1215
+ return super().get(key, default)
1216
+
1217
+ def __init__(__self__, *,
1218
+ can_replicate_schema_change: str,
1219
+ action_on_ddl_error: Optional[str] = None,
1220
+ action_on_dml_error: Optional[str] = None):
1221
+ """
1222
+ :param str can_replicate_schema_change: (Updatable) If ENABLED, then addition or removal of schema is also replicated, apart from individual tables and records when creating or updating the pipeline.
1223
+ :param str action_on_ddl_error: (Updatable) Action upon DDL Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
1224
+ :param str action_on_dml_error: (Updatable) Action upon DML Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
1225
+ """
1226
+ pulumi.set(__self__, "can_replicate_schema_change", can_replicate_schema_change)
1227
+ if action_on_ddl_error is not None:
1228
+ pulumi.set(__self__, "action_on_ddl_error", action_on_ddl_error)
1229
+ if action_on_dml_error is not None:
1230
+ pulumi.set(__self__, "action_on_dml_error", action_on_dml_error)
1231
+
1232
+ @property
1233
+ @pulumi.getter(name="canReplicateSchemaChange")
1234
+ def can_replicate_schema_change(self) -> str:
1235
+ """
1236
+ (Updatable) If ENABLED, then addition or removal of schema is also replicated, apart from individual tables and records when creating or updating the pipeline.
1237
+ """
1238
+ return pulumi.get(self, "can_replicate_schema_change")
1239
+
1240
+ @property
1241
+ @pulumi.getter(name="actionOnDdlError")
1242
+ def action_on_ddl_error(self) -> Optional[str]:
1243
+ """
1244
+ (Updatable) Action upon DDL Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
1245
+ """
1246
+ return pulumi.get(self, "action_on_ddl_error")
1247
+
1248
+ @property
1249
+ @pulumi.getter(name="actionOnDmlError")
1250
+ def action_on_dml_error(self) -> Optional[str]:
1251
+ """
1252
+ (Updatable) Action upon DML Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
1253
+ """
1254
+ return pulumi.get(self, "action_on_dml_error")
1255
+
1256
+
1257
+ @pulumi.output_type
1258
+ class PipelineSourceConnectionDetails(dict):
1259
+ @staticmethod
1260
+ def __key_warning(key: str):
1261
+ suggest = None
1262
+ if key == "connectionId":
1263
+ suggest = "connection_id"
1264
+
1265
+ if suggest:
1266
+ pulumi.log.warn(f"Key '{key}' not found in PipelineSourceConnectionDetails. Access the value via the '{suggest}' property getter instead.")
1267
+
1268
+ def __getitem__(self, key: str) -> Any:
1269
+ PipelineSourceConnectionDetails.__key_warning(key)
1270
+ return super().__getitem__(key)
1271
+
1272
+ def get(self, key: str, default = None) -> Any:
1273
+ PipelineSourceConnectionDetails.__key_warning(key)
1274
+ return super().get(key, default)
1275
+
1276
+ def __init__(__self__, *,
1277
+ connection_id: str):
1278
+ """
1279
+ :param str connection_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
1280
+ """
1281
+ pulumi.set(__self__, "connection_id", connection_id)
1282
+
1283
+ @property
1284
+ @pulumi.getter(name="connectionId")
1285
+ def connection_id(self) -> str:
1286
+ """
1287
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
1288
+ """
1289
+ return pulumi.get(self, "connection_id")
1290
+
1291
+
1292
+ @pulumi.output_type
1293
+ class PipelineTargetConnectionDetails(dict):
1294
+ @staticmethod
1295
+ def __key_warning(key: str):
1296
+ suggest = None
1297
+ if key == "connectionId":
1298
+ suggest = "connection_id"
1299
+
1300
+ if suggest:
1301
+ pulumi.log.warn(f"Key '{key}' not found in PipelineTargetConnectionDetails. Access the value via the '{suggest}' property getter instead.")
1302
+
1303
+ def __getitem__(self, key: str) -> Any:
1304
+ PipelineTargetConnectionDetails.__key_warning(key)
1305
+ return super().__getitem__(key)
1306
+
1307
+ def get(self, key: str, default = None) -> Any:
1308
+ PipelineTargetConnectionDetails.__key_warning(key)
1309
+ return super().get(key, default)
1310
+
1311
+ def __init__(__self__, *,
1312
+ connection_id: str):
1313
+ """
1314
+ :param str connection_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
1315
+
1316
+
1317
+ ** IMPORTANT **
1318
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1319
+ """
1320
+ pulumi.set(__self__, "connection_id", connection_id)
1321
+
1322
+ @property
1323
+ @pulumi.getter(name="connectionId")
1324
+ def connection_id(self) -> str:
1325
+ """
1326
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
1327
+
1328
+
1329
+ ** IMPORTANT **
1330
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1331
+ """
1332
+ return pulumi.get(self, "connection_id")
1333
+
1334
+
958
1335
  @pulumi.output_type
959
1336
  class GetConnectionAdditionalAttributeResult(dict):
960
1337
  def __init__(__self__, *,
@@ -5823,6 +6200,1129 @@ class GetMessagesFilterResult(dict):
5823
6200
  return pulumi.get(self, "regex")
5824
6201
 
5825
6202
 
6203
+ @pulumi.output_type
6204
+ class GetPipelineLockResult(dict):
6205
+ def __init__(__self__, *,
6206
+ message: str,
6207
+ type: str):
6208
+ """
6209
+ :param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
6210
+ :param str type: Type of the lock.
6211
+ """
6212
+ pulumi.set(__self__, "message", message)
6213
+ pulumi.set(__self__, "type", type)
6214
+
6215
+ @property
6216
+ @pulumi.getter
6217
+ def message(self) -> str:
6218
+ """
6219
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
6220
+ """
6221
+ return pulumi.get(self, "message")
6222
+
6223
+ @property
6224
+ @pulumi.getter
6225
+ def type(self) -> str:
6226
+ """
6227
+ Type of the lock.
6228
+ """
6229
+ return pulumi.get(self, "type")
6230
+
6231
+
6232
+ @pulumi.output_type
6233
+ class GetPipelineMappingRuleResult(dict):
6234
+ def __init__(__self__, *,
6235
+ mapping_type: str,
6236
+ source: str,
6237
+ target: str):
6238
+ """
6239
+ :param str mapping_type: Defines the exclude/include rules of source and target schemas and tables when replicating from source to target. This option applies when creating and updating a pipeline.
6240
+ :param str source: The source schema/table combination for replication to target.
6241
+ :param str target: The target schema/table combination for replication from the source.
6242
+ """
6243
+ pulumi.set(__self__, "mapping_type", mapping_type)
6244
+ pulumi.set(__self__, "source", source)
6245
+ pulumi.set(__self__, "target", target)
6246
+
6247
+ @property
6248
+ @pulumi.getter(name="mappingType")
6249
+ def mapping_type(self) -> str:
6250
+ """
6251
+ Defines the exclude/include rules of source and target schemas and tables when replicating from source to target. This option applies when creating and updating a pipeline.
6252
+ """
6253
+ return pulumi.get(self, "mapping_type")
6254
+
6255
+ @property
6256
+ @pulumi.getter
6257
+ def source(self) -> str:
6258
+ """
6259
+ The source schema/table combination for replication to target.
6260
+ """
6261
+ return pulumi.get(self, "source")
6262
+
6263
+ @property
6264
+ @pulumi.getter
6265
+ def target(self) -> str:
6266
+ """
6267
+ The target schema/table combination for replication from the source.
6268
+ """
6269
+ return pulumi.get(self, "target")
6270
+
6271
+
6272
+ @pulumi.output_type
6273
+ class GetPipelineProcessOptionResult(dict):
6274
+ def __init__(__self__, *,
6275
+ initial_data_loads: Sequence['outputs.GetPipelineProcessOptionInitialDataLoadResult'],
6276
+ replicate_schema_changes: Sequence['outputs.GetPipelineProcessOptionReplicateSchemaChangeResult'],
6277
+ should_restart_on_failure: str):
6278
+ """
6279
+ :param Sequence['GetPipelineProcessOptionInitialDataLoadArgs'] initial_data_loads: Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
6280
+ :param Sequence['GetPipelineProcessOptionReplicateSchemaChangeArgs'] replicate_schema_changes: Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
6281
+ :param str should_restart_on_failure: If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
6282
+ """
6283
+ pulumi.set(__self__, "initial_data_loads", initial_data_loads)
6284
+ pulumi.set(__self__, "replicate_schema_changes", replicate_schema_changes)
6285
+ pulumi.set(__self__, "should_restart_on_failure", should_restart_on_failure)
6286
+
6287
+ @property
6288
+ @pulumi.getter(name="initialDataLoads")
6289
+ def initial_data_loads(self) -> Sequence['outputs.GetPipelineProcessOptionInitialDataLoadResult']:
6290
+ """
6291
+ Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
6292
+ """
6293
+ return pulumi.get(self, "initial_data_loads")
6294
+
6295
+ @property
6296
+ @pulumi.getter(name="replicateSchemaChanges")
6297
+ def replicate_schema_changes(self) -> Sequence['outputs.GetPipelineProcessOptionReplicateSchemaChangeResult']:
6298
+ """
6299
+ Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
6300
+ """
6301
+ return pulumi.get(self, "replicate_schema_changes")
6302
+
6303
+ @property
6304
+ @pulumi.getter(name="shouldRestartOnFailure")
6305
+ def should_restart_on_failure(self) -> str:
6306
+ """
6307
+ If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
6308
+ """
6309
+ return pulumi.get(self, "should_restart_on_failure")
6310
+
6311
+
6312
+ @pulumi.output_type
6313
+ class GetPipelineProcessOptionInitialDataLoadResult(dict):
6314
+ def __init__(__self__, *,
6315
+ action_on_existing_table: str,
6316
+ is_initial_load: str):
6317
+ """
6318
+ :param str action_on_existing_table: Action upon existing tables in target when initial Data Load is set i.e., isInitialLoad=true.
6319
+ :param str is_initial_load: If ENABLED, then existing source data is also synchronized to the target when creating or updating the pipeline.
6320
+ """
6321
+ pulumi.set(__self__, "action_on_existing_table", action_on_existing_table)
6322
+ pulumi.set(__self__, "is_initial_load", is_initial_load)
6323
+
6324
+ @property
6325
+ @pulumi.getter(name="actionOnExistingTable")
6326
+ def action_on_existing_table(self) -> str:
6327
+ """
6328
+ Action upon existing tables in target when initial Data Load is set i.e., isInitialLoad=true.
6329
+ """
6330
+ return pulumi.get(self, "action_on_existing_table")
6331
+
6332
+ @property
6333
+ @pulumi.getter(name="isInitialLoad")
6334
+ def is_initial_load(self) -> str:
6335
+ """
6336
+ If ENABLED, then existing source data is also synchronized to the target when creating or updating the pipeline.
6337
+ """
6338
+ return pulumi.get(self, "is_initial_load")
6339
+
6340
+
6341
+ @pulumi.output_type
6342
+ class GetPipelineProcessOptionReplicateSchemaChangeResult(dict):
6343
+ def __init__(__self__, *,
6344
+ action_on_ddl_error: str,
6345
+ action_on_dml_error: str,
6346
+ can_replicate_schema_change: str):
6347
+ """
6348
+ :param str action_on_ddl_error: Action upon DDL Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
6349
+ :param str action_on_dml_error: Action upon DML Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
6350
+ :param str can_replicate_schema_change: If ENABLED, then addition or removal of schema is also replicated, apart from individual tables and records when creating or updating the pipeline.
6351
+ """
6352
+ pulumi.set(__self__, "action_on_ddl_error", action_on_ddl_error)
6353
+ pulumi.set(__self__, "action_on_dml_error", action_on_dml_error)
6354
+ pulumi.set(__self__, "can_replicate_schema_change", can_replicate_schema_change)
6355
+
6356
+ @property
6357
+ @pulumi.getter(name="actionOnDdlError")
6358
+ def action_on_ddl_error(self) -> str:
6359
+ """
6360
+ Action upon DDL Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
6361
+ """
6362
+ return pulumi.get(self, "action_on_ddl_error")
6363
+
6364
+ @property
6365
+ @pulumi.getter(name="actionOnDmlError")
6366
+ def action_on_dml_error(self) -> str:
6367
+ """
6368
+ Action upon DML Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
6369
+ """
6370
+ return pulumi.get(self, "action_on_dml_error")
6371
+
6372
+ @property
6373
+ @pulumi.getter(name="canReplicateSchemaChange")
6374
+ def can_replicate_schema_change(self) -> str:
6375
+ """
6376
+ If ENABLED, then addition or removal of schema is also replicated, apart from individual tables and records when creating or updating the pipeline.
6377
+ """
6378
+ return pulumi.get(self, "can_replicate_schema_change")
6379
+
6380
+
6381
+ @pulumi.output_type
6382
+ class GetPipelineRunningProcessesFilterResult(dict):
6383
+ def __init__(__self__, *,
6384
+ name: str,
6385
+ values: Sequence[str],
6386
+ regex: Optional[bool] = None):
6387
+ """
6388
+ :param str name: An object's Display Name.
6389
+ """
6390
+ pulumi.set(__self__, "name", name)
6391
+ pulumi.set(__self__, "values", values)
6392
+ if regex is not None:
6393
+ pulumi.set(__self__, "regex", regex)
6394
+
6395
+ @property
6396
+ @pulumi.getter
6397
+ def name(self) -> str:
6398
+ """
6399
+ An object's Display Name.
6400
+ """
6401
+ return pulumi.get(self, "name")
6402
+
6403
+ @property
6404
+ @pulumi.getter
6405
+ def values(self) -> Sequence[str]:
6406
+ return pulumi.get(self, "values")
6407
+
6408
+ @property
6409
+ @pulumi.getter
6410
+ def regex(self) -> Optional[bool]:
6411
+ return pulumi.get(self, "regex")
6412
+
6413
+
6414
+ @pulumi.output_type
6415
+ class GetPipelineRunningProcessesPipelineRunningProcessCollectionResult(dict):
6416
+ def __init__(__self__, *,
6417
+ items: Sequence['outputs.GetPipelineRunningProcessesPipelineRunningProcessCollectionItemResult']):
6418
+ """
6419
+ :param Sequence['GetPipelineRunningProcessesPipelineRunningProcessCollectionItemArgs'] items: The list of replication processes and their details.
6420
+ """
6421
+ pulumi.set(__self__, "items", items)
6422
+
6423
+ @property
6424
+ @pulumi.getter
6425
+ def items(self) -> Sequence['outputs.GetPipelineRunningProcessesPipelineRunningProcessCollectionItemResult']:
6426
+ """
6427
+ The list of replication processes and their details.
6428
+ """
6429
+ return pulumi.get(self, "items")
6430
+
6431
+
6432
+ @pulumi.output_type
6433
+ class GetPipelineRunningProcessesPipelineRunningProcessCollectionItemResult(dict):
6434
+ def __init__(__self__, *,
6435
+ last_record_lag_in_seconds: float,
6436
+ name: str,
6437
+ process_type: str,
6438
+ status: str,
6439
+ time_last_processed: str):
6440
+ """
6441
+ :param float last_record_lag_in_seconds: The latency, in seconds, of a process running in a replication. This option applies when retrieving running processes.
6442
+ :param str name: An object's Display Name.
6443
+ :param str process_type: The type of process running in a replication. For example, Extract or Replicat. This option applies when retrieving running processes.
6444
+ :param str status: The status of the Extract or Replicat process. This option applies when retrieving running processes.
6445
+ :param str time_last_processed: The date and time the last record was processed by an Extract or Replicat. This option applies when retrieving running processes. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
6446
+ """
6447
+ pulumi.set(__self__, "last_record_lag_in_seconds", last_record_lag_in_seconds)
6448
+ pulumi.set(__self__, "name", name)
6449
+ pulumi.set(__self__, "process_type", process_type)
6450
+ pulumi.set(__self__, "status", status)
6451
+ pulumi.set(__self__, "time_last_processed", time_last_processed)
6452
+
6453
+ @property
6454
+ @pulumi.getter(name="lastRecordLagInSeconds")
6455
+ def last_record_lag_in_seconds(self) -> float:
6456
+ """
6457
+ The latency, in seconds, of a process running in a replication. This option applies when retrieving running processes.
6458
+ """
6459
+ return pulumi.get(self, "last_record_lag_in_seconds")
6460
+
6461
+ @property
6462
+ @pulumi.getter
6463
+ def name(self) -> str:
6464
+ """
6465
+ An object's Display Name.
6466
+ """
6467
+ return pulumi.get(self, "name")
6468
+
6469
+ @property
6470
+ @pulumi.getter(name="processType")
6471
+ def process_type(self) -> str:
6472
+ """
6473
+ The type of process running in a replication. For example, Extract or Replicat. This option applies when retrieving running processes.
6474
+ """
6475
+ return pulumi.get(self, "process_type")
6476
+
6477
+ @property
6478
+ @pulumi.getter
6479
+ def status(self) -> str:
6480
+ """
6481
+ The status of the Extract or Replicat process. This option applies when retrieving running processes.
6482
+ """
6483
+ return pulumi.get(self, "status")
6484
+
6485
+ @property
6486
+ @pulumi.getter(name="timeLastProcessed")
6487
+ def time_last_processed(self) -> str:
6488
+ """
6489
+ The date and time the last record was processed by an Extract or Replicat. This option applies when retrieving running processes. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
6490
+ """
6491
+ return pulumi.get(self, "time_last_processed")
6492
+
6493
+
6494
+ @pulumi.output_type
6495
+ class GetPipelineSchemaTablesFilterResult(dict):
6496
+ def __init__(__self__, *,
6497
+ name: str,
6498
+ values: Sequence[str],
6499
+ regex: Optional[bool] = None):
6500
+ pulumi.set(__self__, "name", name)
6501
+ pulumi.set(__self__, "values", values)
6502
+ if regex is not None:
6503
+ pulumi.set(__self__, "regex", regex)
6504
+
6505
+ @property
6506
+ @pulumi.getter
6507
+ def name(self) -> str:
6508
+ return pulumi.get(self, "name")
6509
+
6510
+ @property
6511
+ @pulumi.getter
6512
+ def values(self) -> Sequence[str]:
6513
+ return pulumi.get(self, "values")
6514
+
6515
+ @property
6516
+ @pulumi.getter
6517
+ def regex(self) -> Optional[bool]:
6518
+ return pulumi.get(self, "regex")
6519
+
6520
+
6521
+ @pulumi.output_type
6522
+ class GetPipelineSchemaTablesPipelineSchemaTableCollectionResult(dict):
6523
+ def __init__(__self__, *,
6524
+ items: Sequence['outputs.GetPipelineSchemaTablesPipelineSchemaTableCollectionItemResult'],
6525
+ source_schema_name: str,
6526
+ target_schema_name: str):
6527
+ """
6528
+ :param Sequence['GetPipelineSchemaTablesPipelineSchemaTableCollectionItemArgs'] items: Array of source or target schema tables of a pipeline's assigned connection.
6529
+ :param str source_schema_name: Name of the source schema obtained from get schema endpoint of the created pipeline.
6530
+ :param str target_schema_name: Name of the target schema obtained from get schema endpoint of the created pipeline.
6531
+ """
6532
+ pulumi.set(__self__, "items", items)
6533
+ pulumi.set(__self__, "source_schema_name", source_schema_name)
6534
+ pulumi.set(__self__, "target_schema_name", target_schema_name)
6535
+
6536
+ @property
6537
+ @pulumi.getter
6538
+ def items(self) -> Sequence['outputs.GetPipelineSchemaTablesPipelineSchemaTableCollectionItemResult']:
6539
+ """
6540
+ Array of source or target schema tables of a pipeline's assigned connection.
6541
+ """
6542
+ return pulumi.get(self, "items")
6543
+
6544
+ @property
6545
+ @pulumi.getter(name="sourceSchemaName")
6546
+ def source_schema_name(self) -> str:
6547
+ """
6548
+ Name of the source schema obtained from get schema endpoint of the created pipeline.
6549
+ """
6550
+ return pulumi.get(self, "source_schema_name")
6551
+
6552
+ @property
6553
+ @pulumi.getter(name="targetSchemaName")
6554
+ def target_schema_name(self) -> str:
6555
+ """
6556
+ Name of the target schema obtained from get schema endpoint of the created pipeline.
6557
+ """
6558
+ return pulumi.get(self, "target_schema_name")
6559
+
6560
+
6561
+ @pulumi.output_type
6562
+ class GetPipelineSchemaTablesPipelineSchemaTableCollectionItemResult(dict):
6563
+ def __init__(__self__, *,
6564
+ source_table_name: str,
6565
+ target_table_name: str):
6566
+ """
6567
+ :param str source_table_name: The table name from the schema of database connection.
6568
+ :param str target_table_name: The table name from the schema of database connection.
6569
+ """
6570
+ pulumi.set(__self__, "source_table_name", source_table_name)
6571
+ pulumi.set(__self__, "target_table_name", target_table_name)
6572
+
6573
+ @property
6574
+ @pulumi.getter(name="sourceTableName")
6575
+ def source_table_name(self) -> str:
6576
+ """
6577
+ The table name from the schema of database connection.
6578
+ """
6579
+ return pulumi.get(self, "source_table_name")
6580
+
6581
+ @property
6582
+ @pulumi.getter(name="targetTableName")
6583
+ def target_table_name(self) -> str:
6584
+ """
6585
+ The table name from the schema of database connection.
6586
+ """
6587
+ return pulumi.get(self, "target_table_name")
6588
+
6589
+
6590
+ @pulumi.output_type
6591
+ class GetPipelineSchemasFilterResult(dict):
6592
+ def __init__(__self__, *,
6593
+ name: str,
6594
+ values: Sequence[str],
6595
+ regex: Optional[bool] = None):
6596
+ pulumi.set(__self__, "name", name)
6597
+ pulumi.set(__self__, "values", values)
6598
+ if regex is not None:
6599
+ pulumi.set(__self__, "regex", regex)
6600
+
6601
+ @property
6602
+ @pulumi.getter
6603
+ def name(self) -> str:
6604
+ return pulumi.get(self, "name")
6605
+
6606
+ @property
6607
+ @pulumi.getter
6608
+ def values(self) -> Sequence[str]:
6609
+ return pulumi.get(self, "values")
6610
+
6611
+ @property
6612
+ @pulumi.getter
6613
+ def regex(self) -> Optional[bool]:
6614
+ return pulumi.get(self, "regex")
6615
+
6616
+
6617
+ @pulumi.output_type
6618
+ class GetPipelineSchemasPipelineSchemaCollectionResult(dict):
6619
+ def __init__(__self__, *,
6620
+ items: Sequence['outputs.GetPipelineSchemasPipelineSchemaCollectionItemResult']):
6621
+ """
6622
+ :param Sequence['GetPipelineSchemasPipelineSchemaCollectionItemArgs'] items: Array of pipeline schemas
6623
+ """
6624
+ pulumi.set(__self__, "items", items)
6625
+
6626
+ @property
6627
+ @pulumi.getter
6628
+ def items(self) -> Sequence['outputs.GetPipelineSchemasPipelineSchemaCollectionItemResult']:
6629
+ """
6630
+ Array of pipeline schemas
6631
+ """
6632
+ return pulumi.get(self, "items")
6633
+
6634
+
6635
+ @pulumi.output_type
6636
+ class GetPipelineSchemasPipelineSchemaCollectionItemResult(dict):
6637
+ def __init__(__self__, *,
6638
+ source_schema_name: str,
6639
+ target_schema_name: str):
6640
+ """
6641
+ :param str source_schema_name: The schema name from the database connection.
6642
+ :param str target_schema_name: The schema name from the database connection.
6643
+ """
6644
+ pulumi.set(__self__, "source_schema_name", source_schema_name)
6645
+ pulumi.set(__self__, "target_schema_name", target_schema_name)
6646
+
6647
+ @property
6648
+ @pulumi.getter(name="sourceSchemaName")
6649
+ def source_schema_name(self) -> str:
6650
+ """
6651
+ The schema name from the database connection.
6652
+ """
6653
+ return pulumi.get(self, "source_schema_name")
6654
+
6655
+ @property
6656
+ @pulumi.getter(name="targetSchemaName")
6657
+ def target_schema_name(self) -> str:
6658
+ """
6659
+ The schema name from the database connection.
6660
+ """
6661
+ return pulumi.get(self, "target_schema_name")
6662
+
6663
+
6664
+ @pulumi.output_type
6665
+ class GetPipelineSourceConnectionDetailResult(dict):
6666
+ def __init__(__self__, *,
6667
+ connection_id: str):
6668
+ """
6669
+ :param str connection_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
6670
+ """
6671
+ pulumi.set(__self__, "connection_id", connection_id)
6672
+
6673
+ @property
6674
+ @pulumi.getter(name="connectionId")
6675
+ def connection_id(self) -> str:
6676
+ """
6677
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
6678
+ """
6679
+ return pulumi.get(self, "connection_id")
6680
+
6681
+
6682
+ @pulumi.output_type
6683
+ class GetPipelineTargetConnectionDetailResult(dict):
6684
+ def __init__(__self__, *,
6685
+ connection_id: str):
6686
+ """
6687
+ :param str connection_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
6688
+ """
6689
+ pulumi.set(__self__, "connection_id", connection_id)
6690
+
6691
+ @property
6692
+ @pulumi.getter(name="connectionId")
6693
+ def connection_id(self) -> str:
6694
+ """
6695
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
6696
+ """
6697
+ return pulumi.get(self, "connection_id")
6698
+
6699
+
6700
+ @pulumi.output_type
6701
+ class GetPipelinesFilterResult(dict):
6702
+ def __init__(__self__, *,
6703
+ name: str,
6704
+ values: Sequence[str],
6705
+ regex: Optional[bool] = None):
6706
+ pulumi.set(__self__, "name", name)
6707
+ pulumi.set(__self__, "values", values)
6708
+ if regex is not None:
6709
+ pulumi.set(__self__, "regex", regex)
6710
+
6711
+ @property
6712
+ @pulumi.getter
6713
+ def name(self) -> str:
6714
+ return pulumi.get(self, "name")
6715
+
6716
+ @property
6717
+ @pulumi.getter
6718
+ def values(self) -> Sequence[str]:
6719
+ return pulumi.get(self, "values")
6720
+
6721
+ @property
6722
+ @pulumi.getter
6723
+ def regex(self) -> Optional[bool]:
6724
+ return pulumi.get(self, "regex")
6725
+
6726
+
6727
+ @pulumi.output_type
6728
+ class GetPipelinesPipelineCollectionResult(dict):
6729
+ def __init__(__self__, *,
6730
+ items: Sequence['outputs.GetPipelinesPipelineCollectionItemResult']):
6731
+ pulumi.set(__self__, "items", items)
6732
+
6733
+ @property
6734
+ @pulumi.getter
6735
+ def items(self) -> Sequence['outputs.GetPipelinesPipelineCollectionItemResult']:
6736
+ return pulumi.get(self, "items")
6737
+
6738
+
6739
+ @pulumi.output_type
6740
+ class GetPipelinesPipelineCollectionItemResult(dict):
6741
+ def __init__(__self__, *,
6742
+ compartment_id: str,
6743
+ cpu_core_count: int,
6744
+ defined_tags: Mapping[str, str],
6745
+ description: str,
6746
+ display_name: str,
6747
+ freeform_tags: Mapping[str, str],
6748
+ id: str,
6749
+ is_auto_scaling_enabled: bool,
6750
+ license_model: str,
6751
+ lifecycle_details: str,
6752
+ lifecycle_sub_state: str,
6753
+ locks: Sequence['outputs.GetPipelinesPipelineCollectionItemLockResult'],
6754
+ mapping_rules: Sequence['outputs.GetPipelinesPipelineCollectionItemMappingRuleResult'],
6755
+ process_options: Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionResult'],
6756
+ recipe_type: str,
6757
+ source_connection_details: Sequence['outputs.GetPipelinesPipelineCollectionItemSourceConnectionDetailResult'],
6758
+ state: str,
6759
+ system_tags: Mapping[str, str],
6760
+ target_connection_details: Sequence['outputs.GetPipelinesPipelineCollectionItemTargetConnectionDetailResult'],
6761
+ time_created: str,
6762
+ time_last_recorded: str,
6763
+ time_updated: str):
6764
+ """
6765
+ :param str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
6766
+ :param int cpu_core_count: The Minimum number of OCPUs to be made available for this Deployment.
6767
+ :param Mapping[str, str] defined_tags: Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
6768
+ :param str description: Metadata about this specific object.
6769
+ :param str display_name: A filter to return only the resources that match the entire 'displayName' given.
6770
+ :param Mapping[str, str] freeform_tags: A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
6771
+ :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline. This option applies when retrieving a pipeline.
6772
+ :param bool is_auto_scaling_enabled: Indicates if auto scaling is enabled for the Deployment's CPU core count.
6773
+ :param str license_model: The Oracle license model that applies to a Deployment.
6774
+ :param str lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
6775
+ :param str lifecycle_sub_state: A filtered list of pipelines to return for a given lifecycleSubState.
6776
+ :param Sequence['GetPipelinesPipelineCollectionItemLockArgs'] locks: Locks associated with this resource.
6777
+ :param Sequence['GetPipelinesPipelineCollectionItemMappingRuleArgs'] mapping_rules: Mapping for source/target schema/tables for the pipeline data replication.
6778
+ :param Sequence['GetPipelinesPipelineCollectionItemProcessOptionArgs'] process_options: Required pipeline options to configure the replication process (Extract or Replicat).
6779
+ :param str recipe_type: The type of the recipe
6780
+ :param Sequence['GetPipelinesPipelineCollectionItemSourceConnectionDetailArgs'] source_connection_details: The source connection details for creating a pipeline.
6781
+ :param str state: A filtered list of pipelines to return for a given lifecycleState.
6782
+ :param Mapping[str, str] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
6783
+ :param Sequence['GetPipelinesPipelineCollectionItemTargetConnectionDetailArgs'] target_connection_details: The target connection details for creating a pipeline.
6784
+ :param str time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
6785
+ :param str time_last_recorded: When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
6786
+ :param str time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
6787
+ """
6788
+ pulumi.set(__self__, "compartment_id", compartment_id)
6789
+ pulumi.set(__self__, "cpu_core_count", cpu_core_count)
6790
+ pulumi.set(__self__, "defined_tags", defined_tags)
6791
+ pulumi.set(__self__, "description", description)
6792
+ pulumi.set(__self__, "display_name", display_name)
6793
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
6794
+ pulumi.set(__self__, "id", id)
6795
+ pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
6796
+ pulumi.set(__self__, "license_model", license_model)
6797
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
6798
+ pulumi.set(__self__, "lifecycle_sub_state", lifecycle_sub_state)
6799
+ pulumi.set(__self__, "locks", locks)
6800
+ pulumi.set(__self__, "mapping_rules", mapping_rules)
6801
+ pulumi.set(__self__, "process_options", process_options)
6802
+ pulumi.set(__self__, "recipe_type", recipe_type)
6803
+ pulumi.set(__self__, "source_connection_details", source_connection_details)
6804
+ pulumi.set(__self__, "state", state)
6805
+ pulumi.set(__self__, "system_tags", system_tags)
6806
+ pulumi.set(__self__, "target_connection_details", target_connection_details)
6807
+ pulumi.set(__self__, "time_created", time_created)
6808
+ pulumi.set(__self__, "time_last_recorded", time_last_recorded)
6809
+ pulumi.set(__self__, "time_updated", time_updated)
6810
+
6811
+ @property
6812
+ @pulumi.getter(name="compartmentId")
6813
+ def compartment_id(self) -> str:
6814
+ """
6815
+ The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
6816
+ """
6817
+ return pulumi.get(self, "compartment_id")
6818
+
6819
+ @property
6820
+ @pulumi.getter(name="cpuCoreCount")
6821
+ def cpu_core_count(self) -> int:
6822
+ """
6823
+ The Minimum number of OCPUs to be made available for this Deployment.
6824
+ """
6825
+ return pulumi.get(self, "cpu_core_count")
6826
+
6827
+ @property
6828
+ @pulumi.getter(name="definedTags")
6829
+ def defined_tags(self) -> Mapping[str, str]:
6830
+ """
6831
+ Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
6832
+ """
6833
+ return pulumi.get(self, "defined_tags")
6834
+
6835
+ @property
6836
+ @pulumi.getter
6837
+ def description(self) -> str:
6838
+ """
6839
+ Metadata about this specific object.
6840
+ """
6841
+ return pulumi.get(self, "description")
6842
+
6843
+ @property
6844
+ @pulumi.getter(name="displayName")
6845
+ def display_name(self) -> str:
6846
+ """
6847
+ A filter to return only the resources that match the entire 'displayName' given.
6848
+ """
6849
+ return pulumi.get(self, "display_name")
6850
+
6851
+ @property
6852
+ @pulumi.getter(name="freeformTags")
6853
+ def freeform_tags(self) -> Mapping[str, str]:
6854
+ """
6855
+ A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
6856
+ """
6857
+ return pulumi.get(self, "freeform_tags")
6858
+
6859
+ @property
6860
+ @pulumi.getter
6861
+ def id(self) -> str:
6862
+ """
6863
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline. This option applies when retrieving a pipeline.
6864
+ """
6865
+ return pulumi.get(self, "id")
6866
+
6867
+ @property
6868
+ @pulumi.getter(name="isAutoScalingEnabled")
6869
+ def is_auto_scaling_enabled(self) -> bool:
6870
+ """
6871
+ Indicates if auto scaling is enabled for the Deployment's CPU core count.
6872
+ """
6873
+ return pulumi.get(self, "is_auto_scaling_enabled")
6874
+
6875
+ @property
6876
+ @pulumi.getter(name="licenseModel")
6877
+ def license_model(self) -> str:
6878
+ """
6879
+ The Oracle license model that applies to a Deployment.
6880
+ """
6881
+ return pulumi.get(self, "license_model")
6882
+
6883
+ @property
6884
+ @pulumi.getter(name="lifecycleDetails")
6885
+ def lifecycle_details(self) -> str:
6886
+ """
6887
+ Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
6888
+ """
6889
+ return pulumi.get(self, "lifecycle_details")
6890
+
6891
+ @property
6892
+ @pulumi.getter(name="lifecycleSubState")
6893
+ def lifecycle_sub_state(self) -> str:
6894
+ """
6895
+ A filtered list of pipelines to return for a given lifecycleSubState.
6896
+ """
6897
+ return pulumi.get(self, "lifecycle_sub_state")
6898
+
6899
+ @property
6900
+ @pulumi.getter
6901
+ def locks(self) -> Sequence['outputs.GetPipelinesPipelineCollectionItemLockResult']:
6902
+ """
6903
+ Locks associated with this resource.
6904
+ """
6905
+ return pulumi.get(self, "locks")
6906
+
6907
+ @property
6908
+ @pulumi.getter(name="mappingRules")
6909
+ def mapping_rules(self) -> Sequence['outputs.GetPipelinesPipelineCollectionItemMappingRuleResult']:
6910
+ """
6911
+ Mapping for source/target schema/tables for the pipeline data replication.
6912
+ """
6913
+ return pulumi.get(self, "mapping_rules")
6914
+
6915
+ @property
6916
+ @pulumi.getter(name="processOptions")
6917
+ def process_options(self) -> Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionResult']:
6918
+ """
6919
+ Required pipeline options to configure the replication process (Extract or Replicat).
6920
+ """
6921
+ return pulumi.get(self, "process_options")
6922
+
6923
+ @property
6924
+ @pulumi.getter(name="recipeType")
6925
+ def recipe_type(self) -> str:
6926
+ """
6927
+ The type of the recipe
6928
+ """
6929
+ return pulumi.get(self, "recipe_type")
6930
+
6931
+ @property
6932
+ @pulumi.getter(name="sourceConnectionDetails")
6933
+ def source_connection_details(self) -> Sequence['outputs.GetPipelinesPipelineCollectionItemSourceConnectionDetailResult']:
6934
+ """
6935
+ The source connection details for creating a pipeline.
6936
+ """
6937
+ return pulumi.get(self, "source_connection_details")
6938
+
6939
+ @property
6940
+ @pulumi.getter
6941
+ def state(self) -> str:
6942
+ """
6943
+ A filtered list of pipelines to return for a given lifecycleState.
6944
+ """
6945
+ return pulumi.get(self, "state")
6946
+
6947
+ @property
6948
+ @pulumi.getter(name="systemTags")
6949
+ def system_tags(self) -> Mapping[str, str]:
6950
+ """
6951
+ The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
6952
+ """
6953
+ return pulumi.get(self, "system_tags")
6954
+
6955
+ @property
6956
+ @pulumi.getter(name="targetConnectionDetails")
6957
+ def target_connection_details(self) -> Sequence['outputs.GetPipelinesPipelineCollectionItemTargetConnectionDetailResult']:
6958
+ """
6959
+ The target connection details for creating a pipeline.
6960
+ """
6961
+ return pulumi.get(self, "target_connection_details")
6962
+
6963
+ @property
6964
+ @pulumi.getter(name="timeCreated")
6965
+ def time_created(self) -> str:
6966
+ """
6967
+ The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
6968
+ """
6969
+ return pulumi.get(self, "time_created")
6970
+
6971
+ @property
6972
+ @pulumi.getter(name="timeLastRecorded")
6973
+ def time_last_recorded(self) -> str:
6974
+ """
6975
+ When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
6976
+ """
6977
+ return pulumi.get(self, "time_last_recorded")
6978
+
6979
+ @property
6980
+ @pulumi.getter(name="timeUpdated")
6981
+ def time_updated(self) -> str:
6982
+ """
6983
+ The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
6984
+ """
6985
+ return pulumi.get(self, "time_updated")
6986
+
6987
+
6988
+ @pulumi.output_type
6989
+ class GetPipelinesPipelineCollectionItemLockResult(dict):
6990
+ def __init__(__self__, *,
6991
+ message: str,
6992
+ type: str):
6993
+ """
6994
+ :param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
6995
+ :param str type: Type of the lock.
6996
+ """
6997
+ pulumi.set(__self__, "message", message)
6998
+ pulumi.set(__self__, "type", type)
6999
+
7000
+ @property
7001
+ @pulumi.getter
7002
+ def message(self) -> str:
7003
+ """
7004
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
7005
+ """
7006
+ return pulumi.get(self, "message")
7007
+
7008
+ @property
7009
+ @pulumi.getter
7010
+ def type(self) -> str:
7011
+ """
7012
+ Type of the lock.
7013
+ """
7014
+ return pulumi.get(self, "type")
7015
+
7016
+
7017
+ @pulumi.output_type
7018
+ class GetPipelinesPipelineCollectionItemMappingRuleResult(dict):
7019
+ def __init__(__self__, *,
7020
+ mapping_type: str,
7021
+ source: str,
7022
+ target: str):
7023
+ """
7024
+ :param str mapping_type: Defines the exclude/include rules of source and target schemas and tables when replicating from source to target. This option applies when creating and updating a pipeline.
7025
+ :param str source: The source schema/table combination for replication to target.
7026
+ :param str target: The target schema/table combination for replication from the source.
7027
+ """
7028
+ pulumi.set(__self__, "mapping_type", mapping_type)
7029
+ pulumi.set(__self__, "source", source)
7030
+ pulumi.set(__self__, "target", target)
7031
+
7032
+ @property
7033
+ @pulumi.getter(name="mappingType")
7034
+ def mapping_type(self) -> str:
7035
+ """
7036
+ Defines the exclude/include rules of source and target schemas and tables when replicating from source to target. This option applies when creating and updating a pipeline.
7037
+ """
7038
+ return pulumi.get(self, "mapping_type")
7039
+
7040
+ @property
7041
+ @pulumi.getter
7042
+ def source(self) -> str:
7043
+ """
7044
+ The source schema/table combination for replication to target.
7045
+ """
7046
+ return pulumi.get(self, "source")
7047
+
7048
+ @property
7049
+ @pulumi.getter
7050
+ def target(self) -> str:
7051
+ """
7052
+ The target schema/table combination for replication from the source.
7053
+ """
7054
+ return pulumi.get(self, "target")
7055
+
7056
+
7057
+ @pulumi.output_type
7058
+ class GetPipelinesPipelineCollectionItemProcessOptionResult(dict):
7059
+ def __init__(__self__, *,
7060
+ initial_data_loads: Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionInitialDataLoadResult'],
7061
+ replicate_schema_changes: Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionReplicateSchemaChangeResult'],
7062
+ should_restart_on_failure: str):
7063
+ """
7064
+ :param Sequence['GetPipelinesPipelineCollectionItemProcessOptionInitialDataLoadArgs'] initial_data_loads: Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
7065
+ :param Sequence['GetPipelinesPipelineCollectionItemProcessOptionReplicateSchemaChangeArgs'] replicate_schema_changes: Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
7066
+ :param str should_restart_on_failure: If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
7067
+ """
7068
+ pulumi.set(__self__, "initial_data_loads", initial_data_loads)
7069
+ pulumi.set(__self__, "replicate_schema_changes", replicate_schema_changes)
7070
+ pulumi.set(__self__, "should_restart_on_failure", should_restart_on_failure)
7071
+
7072
+ @property
7073
+ @pulumi.getter(name="initialDataLoads")
7074
+ def initial_data_loads(self) -> Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionInitialDataLoadResult']:
7075
+ """
7076
+ Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
7077
+ """
7078
+ return pulumi.get(self, "initial_data_loads")
7079
+
7080
+ @property
7081
+ @pulumi.getter(name="replicateSchemaChanges")
7082
+ def replicate_schema_changes(self) -> Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionReplicateSchemaChangeResult']:
7083
+ """
7084
+ Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
7085
+ """
7086
+ return pulumi.get(self, "replicate_schema_changes")
7087
+
7088
+ @property
7089
+ @pulumi.getter(name="shouldRestartOnFailure")
7090
+ def should_restart_on_failure(self) -> str:
7091
+ """
7092
+ If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
7093
+ """
7094
+ return pulumi.get(self, "should_restart_on_failure")
7095
+
7096
+
7097
+ @pulumi.output_type
7098
+ class GetPipelinesPipelineCollectionItemProcessOptionInitialDataLoadResult(dict):
7099
+ def __init__(__self__, *,
7100
+ action_on_existing_table: str,
7101
+ is_initial_load: str):
7102
+ """
7103
+ :param str action_on_existing_table: Action upon existing tables in target when initial Data Load is set i.e., isInitialLoad=true.
7104
+ :param str is_initial_load: If ENABLED, then existing source data is also synchronized to the target when creating or updating the pipeline.
7105
+ """
7106
+ pulumi.set(__self__, "action_on_existing_table", action_on_existing_table)
7107
+ pulumi.set(__self__, "is_initial_load", is_initial_load)
7108
+
7109
+ @property
7110
+ @pulumi.getter(name="actionOnExistingTable")
7111
+ def action_on_existing_table(self) -> str:
7112
+ """
7113
+ Action upon existing tables in target when initial Data Load is set i.e., isInitialLoad=true.
7114
+ """
7115
+ return pulumi.get(self, "action_on_existing_table")
7116
+
7117
+ @property
7118
+ @pulumi.getter(name="isInitialLoad")
7119
+ def is_initial_load(self) -> str:
7120
+ """
7121
+ If ENABLED, then existing source data is also synchronized to the target when creating or updating the pipeline.
7122
+ """
7123
+ return pulumi.get(self, "is_initial_load")
7124
+
7125
+
7126
+ @pulumi.output_type
7127
+ class GetPipelinesPipelineCollectionItemProcessOptionReplicateSchemaChangeResult(dict):
7128
+ def __init__(__self__, *,
7129
+ action_on_ddl_error: str,
7130
+ action_on_dml_error: str,
7131
+ can_replicate_schema_change: str):
7132
+ """
7133
+ :param str action_on_ddl_error: Action upon DDL Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
7134
+ :param str action_on_dml_error: Action upon DML Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
7135
+ :param str can_replicate_schema_change: If ENABLED, then addition or removal of schema is also replicated, apart from individual tables and records when creating or updating the pipeline.
7136
+ """
7137
+ pulumi.set(__self__, "action_on_ddl_error", action_on_ddl_error)
7138
+ pulumi.set(__self__, "action_on_dml_error", action_on_dml_error)
7139
+ pulumi.set(__self__, "can_replicate_schema_change", can_replicate_schema_change)
7140
+
7141
+ @property
7142
+ @pulumi.getter(name="actionOnDdlError")
7143
+ def action_on_ddl_error(self) -> str:
7144
+ """
7145
+ Action upon DDL Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
7146
+ """
7147
+ return pulumi.get(self, "action_on_ddl_error")
7148
+
7149
+ @property
7150
+ @pulumi.getter(name="actionOnDmlError")
7151
+ def action_on_dml_error(self) -> str:
7152
+ """
7153
+ Action upon DML Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
7154
+ """
7155
+ return pulumi.get(self, "action_on_dml_error")
7156
+
7157
+ @property
7158
+ @pulumi.getter(name="canReplicateSchemaChange")
7159
+ def can_replicate_schema_change(self) -> str:
7160
+ """
7161
+ If ENABLED, then addition or removal of schema is also replicated, apart from individual tables and records when creating or updating the pipeline.
7162
+ """
7163
+ return pulumi.get(self, "can_replicate_schema_change")
7164
+
7165
+
7166
+ @pulumi.output_type
7167
+ class GetPipelinesPipelineCollectionItemSourceConnectionDetailResult(dict):
7168
+ def __init__(__self__, *,
7169
+ connection_id: str):
7170
+ """
7171
+ :param str connection_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
7172
+ """
7173
+ pulumi.set(__self__, "connection_id", connection_id)
7174
+
7175
+ @property
7176
+ @pulumi.getter(name="connectionId")
7177
+ def connection_id(self) -> str:
7178
+ """
7179
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
7180
+ """
7181
+ return pulumi.get(self, "connection_id")
7182
+
7183
+
7184
+ @pulumi.output_type
7185
+ class GetPipelinesPipelineCollectionItemTargetConnectionDetailResult(dict):
7186
+ def __init__(__self__, *,
7187
+ connection_id: str):
7188
+ """
7189
+ :param str connection_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
7190
+ """
7191
+ pulumi.set(__self__, "connection_id", connection_id)
7192
+
7193
+ @property
7194
+ @pulumi.getter(name="connectionId")
7195
+ def connection_id(self) -> str:
7196
+ """
7197
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
7198
+ """
7199
+ return pulumi.get(self, "connection_id")
7200
+
7201
+
7202
+ @pulumi.output_type
7203
+ class GetRecipesFilterResult(dict):
7204
+ def __init__(__self__, *,
7205
+ name: str,
7206
+ values: Sequence[str],
7207
+ regex: Optional[bool] = None):
7208
+ """
7209
+ :param str name: An object's Display Name.
7210
+ """
7211
+ pulumi.set(__self__, "name", name)
7212
+ pulumi.set(__self__, "values", values)
7213
+ if regex is not None:
7214
+ pulumi.set(__self__, "regex", regex)
7215
+
7216
+ @property
7217
+ @pulumi.getter
7218
+ def name(self) -> str:
7219
+ """
7220
+ An object's Display Name.
7221
+ """
7222
+ return pulumi.get(self, "name")
7223
+
7224
+ @property
7225
+ @pulumi.getter
7226
+ def values(self) -> Sequence[str]:
7227
+ return pulumi.get(self, "values")
7228
+
7229
+ @property
7230
+ @pulumi.getter
7231
+ def regex(self) -> Optional[bool]:
7232
+ return pulumi.get(self, "regex")
7233
+
7234
+
7235
+ @pulumi.output_type
7236
+ class GetRecipesRecipeSummaryCollectionResult(dict):
7237
+ def __init__(__self__, *,
7238
+ items: Sequence['outputs.GetRecipesRecipeSummaryCollectionItemResult']):
7239
+ """
7240
+ :param Sequence['GetRecipesRecipeSummaryCollectionItemArgs'] items: Array of Recipe Summary
7241
+ """
7242
+ pulumi.set(__self__, "items", items)
7243
+
7244
+ @property
7245
+ @pulumi.getter
7246
+ def items(self) -> Sequence['outputs.GetRecipesRecipeSummaryCollectionItemResult']:
7247
+ """
7248
+ Array of Recipe Summary
7249
+ """
7250
+ return pulumi.get(self, "items")
7251
+
7252
+
7253
+ @pulumi.output_type
7254
+ class GetRecipesRecipeSummaryCollectionItemResult(dict):
7255
+ def __init__(__self__, *,
7256
+ description: str,
7257
+ display_name: str,
7258
+ name: str,
7259
+ recipe_type: str,
7260
+ supported_source_technology_types: Sequence[str],
7261
+ supported_target_technology_types: Sequence[str]):
7262
+ """
7263
+ :param str description: Metadata about this specific object.
7264
+ :param str display_name: A filter to return only the resources that match the entire 'displayName' given.
7265
+ :param str name: An object's Display Name.
7266
+ :param str recipe_type: The pipeline's recipe type. The default value is ZERO_ETL.
7267
+ :param Sequence[str] supported_source_technology_types: Array of supported technology types for this recipe.
7268
+ :param Sequence[str] supported_target_technology_types: Array of supported technology types for this recipe.
7269
+ """
7270
+ pulumi.set(__self__, "description", description)
7271
+ pulumi.set(__self__, "display_name", display_name)
7272
+ pulumi.set(__self__, "name", name)
7273
+ pulumi.set(__self__, "recipe_type", recipe_type)
7274
+ pulumi.set(__self__, "supported_source_technology_types", supported_source_technology_types)
7275
+ pulumi.set(__self__, "supported_target_technology_types", supported_target_technology_types)
7276
+
7277
+ @property
7278
+ @pulumi.getter
7279
+ def description(self) -> str:
7280
+ """
7281
+ Metadata about this specific object.
7282
+ """
7283
+ return pulumi.get(self, "description")
7284
+
7285
+ @property
7286
+ @pulumi.getter(name="displayName")
7287
+ def display_name(self) -> str:
7288
+ """
7289
+ A filter to return only the resources that match the entire 'displayName' given.
7290
+ """
7291
+ return pulumi.get(self, "display_name")
7292
+
7293
+ @property
7294
+ @pulumi.getter
7295
+ def name(self) -> str:
7296
+ """
7297
+ An object's Display Name.
7298
+ """
7299
+ return pulumi.get(self, "name")
7300
+
7301
+ @property
7302
+ @pulumi.getter(name="recipeType")
7303
+ def recipe_type(self) -> str:
7304
+ """
7305
+ The pipeline's recipe type. The default value is ZERO_ETL.
7306
+ """
7307
+ return pulumi.get(self, "recipe_type")
7308
+
7309
+ @property
7310
+ @pulumi.getter(name="supportedSourceTechnologyTypes")
7311
+ def supported_source_technology_types(self) -> Sequence[str]:
7312
+ """
7313
+ Array of supported technology types for this recipe.
7314
+ """
7315
+ return pulumi.get(self, "supported_source_technology_types")
7316
+
7317
+ @property
7318
+ @pulumi.getter(name="supportedTargetTechnologyTypes")
7319
+ def supported_target_technology_types(self) -> Sequence[str]:
7320
+ """
7321
+ Array of supported technology types for this recipe.
7322
+ """
7323
+ return pulumi.get(self, "supported_target_technology_types")
7324
+
7325
+
5826
7326
  @pulumi.output_type
5827
7327
  class GetTrailFileItemResult(dict):
5828
7328
  def __init__(__self__, *,