pulumi-oci 2.29.0a1744212348__py3-none-any.whl → 2.30.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.
@@ -46,6 +46,8 @@ __all__ = [
46
46
  'PipelineLockArgsDict',
47
47
  'PipelineMappingRuleArgs',
48
48
  'PipelineMappingRuleArgsDict',
49
+ 'PipelinePipelineDiagnosticDataArgs',
50
+ 'PipelinePipelineDiagnosticDataArgsDict',
49
51
  'PipelineProcessOptionsArgs',
50
52
  'PipelineProcessOptionsArgsDict',
51
53
  'PipelineProcessOptionsInitialDataLoadArgs',
@@ -1408,6 +1410,118 @@ class PipelineMappingRuleArgs:
1408
1410
  pulumi.set(self, "target", value)
1409
1411
 
1410
1412
 
1413
+ if not MYPY:
1414
+ class PipelinePipelineDiagnosticDataArgsDict(TypedDict):
1415
+ bucket: NotRequired[pulumi.Input[builtins.str]]
1416
+ """
1417
+ Name of the bucket where the object is to be uploaded in the object storage
1418
+ """
1419
+ diagnostic_state: NotRequired[pulumi.Input[builtins.str]]
1420
+ """
1421
+ The state of the pipeline diagnostics collection.
1422
+ """
1423
+ namespace: NotRequired[pulumi.Input[builtins.str]]
1424
+ """
1425
+ Name of namespace that serves as a container for all of your buckets
1426
+ """
1427
+ object: NotRequired[pulumi.Input[builtins.str]]
1428
+ """
1429
+ Name of the diagnostic collected and uploaded to object storage
1430
+ """
1431
+ time_last_collected: NotRequired[pulumi.Input[builtins.str]]
1432
+ """
1433
+ The date and time the diagnostic data was last collected for the pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
1434
+ """
1435
+ elif False:
1436
+ PipelinePipelineDiagnosticDataArgsDict: TypeAlias = Mapping[str, Any]
1437
+
1438
+ @pulumi.input_type
1439
+ class PipelinePipelineDiagnosticDataArgs:
1440
+ def __init__(__self__, *,
1441
+ bucket: Optional[pulumi.Input[builtins.str]] = None,
1442
+ diagnostic_state: Optional[pulumi.Input[builtins.str]] = None,
1443
+ namespace: Optional[pulumi.Input[builtins.str]] = None,
1444
+ object: Optional[pulumi.Input[builtins.str]] = None,
1445
+ time_last_collected: Optional[pulumi.Input[builtins.str]] = None):
1446
+ """
1447
+ :param pulumi.Input[builtins.str] bucket: Name of the bucket where the object is to be uploaded in the object storage
1448
+ :param pulumi.Input[builtins.str] diagnostic_state: The state of the pipeline diagnostics collection.
1449
+ :param pulumi.Input[builtins.str] namespace: Name of namespace that serves as a container for all of your buckets
1450
+ :param pulumi.Input[builtins.str] object: Name of the diagnostic collected and uploaded to object storage
1451
+ :param pulumi.Input[builtins.str] time_last_collected: The date and time the diagnostic data was last collected for the pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
1452
+ """
1453
+ if bucket is not None:
1454
+ pulumi.set(__self__, "bucket", bucket)
1455
+ if diagnostic_state is not None:
1456
+ pulumi.set(__self__, "diagnostic_state", diagnostic_state)
1457
+ if namespace is not None:
1458
+ pulumi.set(__self__, "namespace", namespace)
1459
+ if object is not None:
1460
+ pulumi.set(__self__, "object", object)
1461
+ if time_last_collected is not None:
1462
+ pulumi.set(__self__, "time_last_collected", time_last_collected)
1463
+
1464
+ @property
1465
+ @pulumi.getter
1466
+ def bucket(self) -> Optional[pulumi.Input[builtins.str]]:
1467
+ """
1468
+ Name of the bucket where the object is to be uploaded in the object storage
1469
+ """
1470
+ return pulumi.get(self, "bucket")
1471
+
1472
+ @bucket.setter
1473
+ def bucket(self, value: Optional[pulumi.Input[builtins.str]]):
1474
+ pulumi.set(self, "bucket", value)
1475
+
1476
+ @property
1477
+ @pulumi.getter(name="diagnosticState")
1478
+ def diagnostic_state(self) -> Optional[pulumi.Input[builtins.str]]:
1479
+ """
1480
+ The state of the pipeline diagnostics collection.
1481
+ """
1482
+ return pulumi.get(self, "diagnostic_state")
1483
+
1484
+ @diagnostic_state.setter
1485
+ def diagnostic_state(self, value: Optional[pulumi.Input[builtins.str]]):
1486
+ pulumi.set(self, "diagnostic_state", value)
1487
+
1488
+ @property
1489
+ @pulumi.getter
1490
+ def namespace(self) -> Optional[pulumi.Input[builtins.str]]:
1491
+ """
1492
+ Name of namespace that serves as a container for all of your buckets
1493
+ """
1494
+ return pulumi.get(self, "namespace")
1495
+
1496
+ @namespace.setter
1497
+ def namespace(self, value: Optional[pulumi.Input[builtins.str]]):
1498
+ pulumi.set(self, "namespace", value)
1499
+
1500
+ @property
1501
+ @pulumi.getter
1502
+ def object(self) -> Optional[pulumi.Input[builtins.str]]:
1503
+ """
1504
+ Name of the diagnostic collected and uploaded to object storage
1505
+ """
1506
+ return pulumi.get(self, "object")
1507
+
1508
+ @object.setter
1509
+ def object(self, value: Optional[pulumi.Input[builtins.str]]):
1510
+ pulumi.set(self, "object", value)
1511
+
1512
+ @property
1513
+ @pulumi.getter(name="timeLastCollected")
1514
+ def time_last_collected(self) -> Optional[pulumi.Input[builtins.str]]:
1515
+ """
1516
+ The date and time the diagnostic data was last collected for the pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
1517
+ """
1518
+ return pulumi.get(self, "time_last_collected")
1519
+
1520
+ @time_last_collected.setter
1521
+ def time_last_collected(self, value: Optional[pulumi.Input[builtins.str]]):
1522
+ pulumi.set(self, "time_last_collected", value)
1523
+
1524
+
1411
1525
  if not MYPY:
1412
1526
  class PipelineProcessOptionsArgsDict(TypedDict):
1413
1527
  initial_data_load: pulumi.Input['PipelineProcessOptionsInitialDataLoadArgsDict']
@@ -1422,6 +1536,10 @@ if not MYPY:
1422
1536
  """
1423
1537
  (Updatable) If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
1424
1538
  """
1539
+ start_using_default_mapping: NotRequired[pulumi.Input[builtins.str]]
1540
+ """
1541
+ (Updatable) If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
1542
+ """
1425
1543
  elif False:
1426
1544
  PipelineProcessOptionsArgsDict: TypeAlias = Mapping[str, Any]
1427
1545
 
@@ -1430,15 +1548,19 @@ class PipelineProcessOptionsArgs:
1430
1548
  def __init__(__self__, *,
1431
1549
  initial_data_load: pulumi.Input['PipelineProcessOptionsInitialDataLoadArgs'],
1432
1550
  replicate_schema_change: pulumi.Input['PipelineProcessOptionsReplicateSchemaChangeArgs'],
1433
- should_restart_on_failure: pulumi.Input[builtins.str]):
1551
+ should_restart_on_failure: pulumi.Input[builtins.str],
1552
+ start_using_default_mapping: Optional[pulumi.Input[builtins.str]] = None):
1434
1553
  """
1435
1554
  :param pulumi.Input['PipelineProcessOptionsInitialDataLoadArgs'] initial_data_load: (Updatable) Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
1436
1555
  :param pulumi.Input['PipelineProcessOptionsReplicateSchemaChangeArgs'] replicate_schema_change: (Updatable) Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
1437
1556
  :param pulumi.Input[builtins.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.
1557
+ :param pulumi.Input[builtins.str] start_using_default_mapping: (Updatable) If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
1438
1558
  """
1439
1559
  pulumi.set(__self__, "initial_data_load", initial_data_load)
1440
1560
  pulumi.set(__self__, "replicate_schema_change", replicate_schema_change)
1441
1561
  pulumi.set(__self__, "should_restart_on_failure", should_restart_on_failure)
1562
+ if start_using_default_mapping is not None:
1563
+ pulumi.set(__self__, "start_using_default_mapping", start_using_default_mapping)
1442
1564
 
1443
1565
  @property
1444
1566
  @pulumi.getter(name="initialDataLoad")
@@ -1476,6 +1598,18 @@ class PipelineProcessOptionsArgs:
1476
1598
  def should_restart_on_failure(self, value: pulumi.Input[builtins.str]):
1477
1599
  pulumi.set(self, "should_restart_on_failure", value)
1478
1600
 
1601
+ @property
1602
+ @pulumi.getter(name="startUsingDefaultMapping")
1603
+ def start_using_default_mapping(self) -> Optional[pulumi.Input[builtins.str]]:
1604
+ """
1605
+ (Updatable) If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
1606
+ """
1607
+ return pulumi.get(self, "start_using_default_mapping")
1608
+
1609
+ @start_using_default_mapping.setter
1610
+ def start_using_default_mapping(self, value: Optional[pulumi.Input[builtins.str]]):
1611
+ pulumi.set(self, "start_using_default_mapping", value)
1612
+
1479
1613
 
1480
1614
  if not MYPY:
1481
1615
  class PipelineProcessOptionsInitialDataLoadArgsDict(TypedDict):
@@ -28,7 +28,7 @@ class GetPipelineResult:
28
28
  """
29
29
  A collection of values returned by getPipeline.
30
30
  """
31
- def __init__(__self__, compartment_id=None, cpu_core_count=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, is_auto_scaling_enabled=None, license_model=None, lifecycle_details=None, lifecycle_sub_state=None, locks=None, mapping_rules=None, pipeline_id=None, process_options=None, recipe_type=None, source_connection_details=None, state=None, system_tags=None, target_connection_details=None, time_created=None, time_last_recorded=None, time_updated=None):
31
+ def __init__(__self__, compartment_id=None, cpu_core_count=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, is_auto_scaling_enabled=None, license_model=None, lifecycle_details=None, lifecycle_sub_state=None, locks=None, mapping_rules=None, pipeline_diagnostic_datas=None, pipeline_id=None, process_options=None, recipe_type=None, source_connection_details=None, state=None, system_tags=None, target_connection_details=None, time_created=None, time_last_recorded=None, time_updated=None):
32
32
  if compartment_id and not isinstance(compartment_id, str):
33
33
  raise TypeError("Expected argument 'compartment_id' to be a str")
34
34
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -68,6 +68,9 @@ class GetPipelineResult:
68
68
  if mapping_rules and not isinstance(mapping_rules, list):
69
69
  raise TypeError("Expected argument 'mapping_rules' to be a list")
70
70
  pulumi.set(__self__, "mapping_rules", mapping_rules)
71
+ if pipeline_diagnostic_datas and not isinstance(pipeline_diagnostic_datas, list):
72
+ raise TypeError("Expected argument 'pipeline_diagnostic_datas' to be a list")
73
+ pulumi.set(__self__, "pipeline_diagnostic_datas", pipeline_diagnostic_datas)
71
74
  if pipeline_id and not isinstance(pipeline_id, str):
72
75
  raise TypeError("Expected argument 'pipeline_id' to be a str")
73
76
  pulumi.set(__self__, "pipeline_id", pipeline_id)
@@ -203,6 +206,14 @@ class GetPipelineResult:
203
206
  """
204
207
  return pulumi.get(self, "mapping_rules")
205
208
 
209
+ @property
210
+ @pulumi.getter(name="pipelineDiagnosticDatas")
211
+ def pipeline_diagnostic_datas(self) -> Sequence['outputs.GetPipelinePipelineDiagnosticDataResult']:
212
+ """
213
+ Information regarding the pipeline diagnostic collection
214
+ """
215
+ return pulumi.get(self, "pipeline_diagnostic_datas")
216
+
206
217
  @property
207
218
  @pulumi.getter(name="pipelineId")
208
219
  def pipeline_id(self) -> builtins.str:
@@ -300,6 +311,7 @@ class AwaitableGetPipelineResult(GetPipelineResult):
300
311
  lifecycle_sub_state=self.lifecycle_sub_state,
301
312
  locks=self.locks,
302
313
  mapping_rules=self.mapping_rules,
314
+ pipeline_diagnostic_datas=self.pipeline_diagnostic_datas,
303
315
  pipeline_id=self.pipeline_id,
304
316
  process_options=self.process_options,
305
317
  recipe_type=self.recipe_type,
@@ -350,6 +362,7 @@ def get_pipeline(pipeline_id: Optional[builtins.str] = None,
350
362
  lifecycle_sub_state=pulumi.get(__ret__, 'lifecycle_sub_state'),
351
363
  locks=pulumi.get(__ret__, 'locks'),
352
364
  mapping_rules=pulumi.get(__ret__, 'mapping_rules'),
365
+ pipeline_diagnostic_datas=pulumi.get(__ret__, 'pipeline_diagnostic_datas'),
353
366
  pipeline_id=pulumi.get(__ret__, 'pipeline_id'),
354
367
  process_options=pulumi.get(__ret__, 'process_options'),
355
368
  recipe_type=pulumi.get(__ret__, 'recipe_type'),
@@ -397,6 +410,7 @@ def get_pipeline_output(pipeline_id: Optional[pulumi.Input[builtins.str]] = None
397
410
  lifecycle_sub_state=pulumi.get(__response__, 'lifecycle_sub_state'),
398
411
  locks=pulumi.get(__response__, 'locks'),
399
412
  mapping_rules=pulumi.get(__response__, 'mapping_rules'),
413
+ pipeline_diagnostic_datas=pulumi.get(__response__, 'pipeline_diagnostic_datas'),
400
414
  pipeline_id=pulumi.get(__response__, 'pipeline_id'),
401
415
  process_options=pulumi.get(__response__, 'process_options'),
402
416
  recipe_type=pulumi.get(__response__, 'recipe_type'),
@@ -88,7 +88,7 @@ def get_pipeline_running_processes(filters: Optional[Sequence[Union['GetPipeline
88
88
  """
89
89
  This data source provides the list of Pipeline Running Processes in Oracle Cloud Infrastructure Golden Gate service.
90
90
 
91
- Retrieves a Pipeline's running replication process's status like extracts/replicats.
91
+ Retrieves a Pipeline's running replication process's status like Capture/Apply.
92
92
 
93
93
  ## Example Usage
94
94
 
@@ -119,7 +119,7 @@ def get_pipeline_running_processes_output(filters: Optional[pulumi.Input[Optiona
119
119
  """
120
120
  This data source provides the list of Pipeline Running Processes in Oracle Cloud Infrastructure Golden Gate service.
121
121
 
122
- Retrieves a Pipeline's running replication process's status like extracts/replicats.
122
+ Retrieves a Pipeline's running replication process's status like Capture/Apply.
123
123
 
124
124
  ## Example Usage
125
125
 
@@ -32,6 +32,7 @@ __all__ = [
32
32
  'DeploymentOggDataGroupToRolesMapping',
33
33
  'PipelineLock',
34
34
  'PipelineMappingRule',
35
+ 'PipelinePipelineDiagnosticData',
35
36
  'PipelineProcessOptions',
36
37
  'PipelineProcessOptionsInitialDataLoad',
37
38
  'PipelineProcessOptionsReplicateSchemaChange',
@@ -100,6 +101,7 @@ __all__ = [
100
101
  'GetMessagesFilterResult',
101
102
  'GetPipelineLockResult',
102
103
  'GetPipelineMappingRuleResult',
104
+ 'GetPipelinePipelineDiagnosticDataResult',
103
105
  'GetPipelineProcessOptionResult',
104
106
  'GetPipelineProcessOptionInitialDataLoadResult',
105
107
  'GetPipelineProcessOptionReplicateSchemaChangeResult',
@@ -119,6 +121,7 @@ __all__ = [
119
121
  'GetPipelinesPipelineCollectionItemResult',
120
122
  'GetPipelinesPipelineCollectionItemLockResult',
121
123
  'GetPipelinesPipelineCollectionItemMappingRuleResult',
124
+ 'GetPipelinesPipelineCollectionItemPipelineDiagnosticDataResult',
122
125
  'GetPipelinesPipelineCollectionItemProcessOptionResult',
123
126
  'GetPipelinesPipelineCollectionItemProcessOptionInitialDataLoadResult',
124
127
  'GetPipelinesPipelineCollectionItemProcessOptionReplicateSchemaChangeResult',
@@ -1181,6 +1184,92 @@ class PipelineMappingRule(dict):
1181
1184
  return pulumi.get(self, "target")
1182
1185
 
1183
1186
 
1187
+ @pulumi.output_type
1188
+ class PipelinePipelineDiagnosticData(dict):
1189
+ @staticmethod
1190
+ def __key_warning(key: str):
1191
+ suggest = None
1192
+ if key == "diagnosticState":
1193
+ suggest = "diagnostic_state"
1194
+ elif key == "timeLastCollected":
1195
+ suggest = "time_last_collected"
1196
+
1197
+ if suggest:
1198
+ pulumi.log.warn(f"Key '{key}' not found in PipelinePipelineDiagnosticData. Access the value via the '{suggest}' property getter instead.")
1199
+
1200
+ def __getitem__(self, key: str) -> Any:
1201
+ PipelinePipelineDiagnosticData.__key_warning(key)
1202
+ return super().__getitem__(key)
1203
+
1204
+ def get(self, key: str, default = None) -> Any:
1205
+ PipelinePipelineDiagnosticData.__key_warning(key)
1206
+ return super().get(key, default)
1207
+
1208
+ def __init__(__self__, *,
1209
+ bucket: Optional[builtins.str] = None,
1210
+ diagnostic_state: Optional[builtins.str] = None,
1211
+ namespace: Optional[builtins.str] = None,
1212
+ object: Optional[builtins.str] = None,
1213
+ time_last_collected: Optional[builtins.str] = None):
1214
+ """
1215
+ :param builtins.str bucket: Name of the bucket where the object is to be uploaded in the object storage
1216
+ :param builtins.str diagnostic_state: The state of the pipeline diagnostics collection.
1217
+ :param builtins.str namespace: Name of namespace that serves as a container for all of your buckets
1218
+ :param builtins.str object: Name of the diagnostic collected and uploaded to object storage
1219
+ :param builtins.str time_last_collected: The date and time the diagnostic data was last collected for the pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
1220
+ """
1221
+ if bucket is not None:
1222
+ pulumi.set(__self__, "bucket", bucket)
1223
+ if diagnostic_state is not None:
1224
+ pulumi.set(__self__, "diagnostic_state", diagnostic_state)
1225
+ if namespace is not None:
1226
+ pulumi.set(__self__, "namespace", namespace)
1227
+ if object is not None:
1228
+ pulumi.set(__self__, "object", object)
1229
+ if time_last_collected is not None:
1230
+ pulumi.set(__self__, "time_last_collected", time_last_collected)
1231
+
1232
+ @property
1233
+ @pulumi.getter
1234
+ def bucket(self) -> Optional[builtins.str]:
1235
+ """
1236
+ Name of the bucket where the object is to be uploaded in the object storage
1237
+ """
1238
+ return pulumi.get(self, "bucket")
1239
+
1240
+ @property
1241
+ @pulumi.getter(name="diagnosticState")
1242
+ def diagnostic_state(self) -> Optional[builtins.str]:
1243
+ """
1244
+ The state of the pipeline diagnostics collection.
1245
+ """
1246
+ return pulumi.get(self, "diagnostic_state")
1247
+
1248
+ @property
1249
+ @pulumi.getter
1250
+ def namespace(self) -> Optional[builtins.str]:
1251
+ """
1252
+ Name of namespace that serves as a container for all of your buckets
1253
+ """
1254
+ return pulumi.get(self, "namespace")
1255
+
1256
+ @property
1257
+ @pulumi.getter
1258
+ def object(self) -> Optional[builtins.str]:
1259
+ """
1260
+ Name of the diagnostic collected and uploaded to object storage
1261
+ """
1262
+ return pulumi.get(self, "object")
1263
+
1264
+ @property
1265
+ @pulumi.getter(name="timeLastCollected")
1266
+ def time_last_collected(self) -> Optional[builtins.str]:
1267
+ """
1268
+ The date and time the diagnostic data was last collected for the pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
1269
+ """
1270
+ return pulumi.get(self, "time_last_collected")
1271
+
1272
+
1184
1273
  @pulumi.output_type
1185
1274
  class PipelineProcessOptions(dict):
1186
1275
  @staticmethod
@@ -1192,6 +1281,8 @@ class PipelineProcessOptions(dict):
1192
1281
  suggest = "replicate_schema_change"
1193
1282
  elif key == "shouldRestartOnFailure":
1194
1283
  suggest = "should_restart_on_failure"
1284
+ elif key == "startUsingDefaultMapping":
1285
+ suggest = "start_using_default_mapping"
1195
1286
 
1196
1287
  if suggest:
1197
1288
  pulumi.log.warn(f"Key '{key}' not found in PipelineProcessOptions. Access the value via the '{suggest}' property getter instead.")
@@ -1207,15 +1298,19 @@ class PipelineProcessOptions(dict):
1207
1298
  def __init__(__self__, *,
1208
1299
  initial_data_load: 'outputs.PipelineProcessOptionsInitialDataLoad',
1209
1300
  replicate_schema_change: 'outputs.PipelineProcessOptionsReplicateSchemaChange',
1210
- should_restart_on_failure: builtins.str):
1301
+ should_restart_on_failure: builtins.str,
1302
+ start_using_default_mapping: Optional[builtins.str] = None):
1211
1303
  """
1212
1304
  :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.
1213
1305
  :param 'PipelineProcessOptionsReplicateSchemaChangeArgs' replicate_schema_change: (Updatable) Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
1214
1306
  :param builtins.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.
1307
+ :param builtins.str start_using_default_mapping: (Updatable) If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
1215
1308
  """
1216
1309
  pulumi.set(__self__, "initial_data_load", initial_data_load)
1217
1310
  pulumi.set(__self__, "replicate_schema_change", replicate_schema_change)
1218
1311
  pulumi.set(__self__, "should_restart_on_failure", should_restart_on_failure)
1312
+ if start_using_default_mapping is not None:
1313
+ pulumi.set(__self__, "start_using_default_mapping", start_using_default_mapping)
1219
1314
 
1220
1315
  @property
1221
1316
  @pulumi.getter(name="initialDataLoad")
@@ -1241,6 +1336,14 @@ class PipelineProcessOptions(dict):
1241
1336
  """
1242
1337
  return pulumi.get(self, "should_restart_on_failure")
1243
1338
 
1339
+ @property
1340
+ @pulumi.getter(name="startUsingDefaultMapping")
1341
+ def start_using_default_mapping(self) -> Optional[builtins.str]:
1342
+ """
1343
+ (Updatable) If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
1344
+ """
1345
+ return pulumi.get(self, "start_using_default_mapping")
1346
+
1244
1347
 
1245
1348
  @pulumi.output_type
1246
1349
  class PipelineProcessOptionsInitialDataLoad(dict):
@@ -6645,20 +6748,85 @@ class GetPipelineMappingRuleResult(dict):
6645
6748
  return pulumi.get(self, "target")
6646
6749
 
6647
6750
 
6751
+ @pulumi.output_type
6752
+ class GetPipelinePipelineDiagnosticDataResult(dict):
6753
+ def __init__(__self__, *,
6754
+ bucket: builtins.str,
6755
+ diagnostic_state: builtins.str,
6756
+ namespace: builtins.str,
6757
+ object: builtins.str,
6758
+ time_last_collected: builtins.str):
6759
+ """
6760
+ :param builtins.str bucket: Name of the bucket where the object is to be uploaded in the object storage
6761
+ :param builtins.str diagnostic_state: The state of the pipeline diagnostics collection.
6762
+ :param builtins.str namespace: Name of namespace that serves as a container for all of your buckets
6763
+ :param builtins.str object: Name of the diagnostic collected and uploaded to object storage
6764
+ :param builtins.str time_last_collected: The date and time the diagnostic data was last collected for the pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
6765
+ """
6766
+ pulumi.set(__self__, "bucket", bucket)
6767
+ pulumi.set(__self__, "diagnostic_state", diagnostic_state)
6768
+ pulumi.set(__self__, "namespace", namespace)
6769
+ pulumi.set(__self__, "object", object)
6770
+ pulumi.set(__self__, "time_last_collected", time_last_collected)
6771
+
6772
+ @property
6773
+ @pulumi.getter
6774
+ def bucket(self) -> builtins.str:
6775
+ """
6776
+ Name of the bucket where the object is to be uploaded in the object storage
6777
+ """
6778
+ return pulumi.get(self, "bucket")
6779
+
6780
+ @property
6781
+ @pulumi.getter(name="diagnosticState")
6782
+ def diagnostic_state(self) -> builtins.str:
6783
+ """
6784
+ The state of the pipeline diagnostics collection.
6785
+ """
6786
+ return pulumi.get(self, "diagnostic_state")
6787
+
6788
+ @property
6789
+ @pulumi.getter
6790
+ def namespace(self) -> builtins.str:
6791
+ """
6792
+ Name of namespace that serves as a container for all of your buckets
6793
+ """
6794
+ return pulumi.get(self, "namespace")
6795
+
6796
+ @property
6797
+ @pulumi.getter
6798
+ def object(self) -> builtins.str:
6799
+ """
6800
+ Name of the diagnostic collected and uploaded to object storage
6801
+ """
6802
+ return pulumi.get(self, "object")
6803
+
6804
+ @property
6805
+ @pulumi.getter(name="timeLastCollected")
6806
+ def time_last_collected(self) -> builtins.str:
6807
+ """
6808
+ The date and time the diagnostic data was last collected for the pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
6809
+ """
6810
+ return pulumi.get(self, "time_last_collected")
6811
+
6812
+
6648
6813
  @pulumi.output_type
6649
6814
  class GetPipelineProcessOptionResult(dict):
6650
6815
  def __init__(__self__, *,
6651
6816
  initial_data_loads: Sequence['outputs.GetPipelineProcessOptionInitialDataLoadResult'],
6652
6817
  replicate_schema_changes: Sequence['outputs.GetPipelineProcessOptionReplicateSchemaChangeResult'],
6653
- should_restart_on_failure: builtins.str):
6818
+ should_restart_on_failure: builtins.str,
6819
+ start_using_default_mapping: builtins.str):
6654
6820
  """
6655
6821
  :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.
6656
6822
  :param Sequence['GetPipelineProcessOptionReplicateSchemaChangeArgs'] replicate_schema_changes: Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
6657
6823
  :param builtins.str should_restart_on_failure: If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
6824
+ :param builtins.str start_using_default_mapping: If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
6658
6825
  """
6659
6826
  pulumi.set(__self__, "initial_data_loads", initial_data_loads)
6660
6827
  pulumi.set(__self__, "replicate_schema_changes", replicate_schema_changes)
6661
6828
  pulumi.set(__self__, "should_restart_on_failure", should_restart_on_failure)
6829
+ pulumi.set(__self__, "start_using_default_mapping", start_using_default_mapping)
6662
6830
 
6663
6831
  @property
6664
6832
  @pulumi.getter(name="initialDataLoads")
@@ -6684,6 +6852,14 @@ class GetPipelineProcessOptionResult(dict):
6684
6852
  """
6685
6853
  return pulumi.get(self, "should_restart_on_failure")
6686
6854
 
6855
+ @property
6856
+ @pulumi.getter(name="startUsingDefaultMapping")
6857
+ def start_using_default_mapping(self) -> builtins.str:
6858
+ """
6859
+ If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
6860
+ """
6861
+ return pulumi.get(self, "start_using_default_mapping")
6862
+
6687
6863
 
6688
6864
  @pulumi.output_type
6689
6865
  class GetPipelineProcessOptionInitialDataLoadResult(dict):
@@ -7128,6 +7304,7 @@ class GetPipelinesPipelineCollectionItemResult(dict):
7128
7304
  lifecycle_sub_state: builtins.str,
7129
7305
  locks: Sequence['outputs.GetPipelinesPipelineCollectionItemLockResult'],
7130
7306
  mapping_rules: Sequence['outputs.GetPipelinesPipelineCollectionItemMappingRuleResult'],
7307
+ pipeline_diagnostic_datas: Sequence['outputs.GetPipelinesPipelineCollectionItemPipelineDiagnosticDataResult'],
7131
7308
  process_options: Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionResult'],
7132
7309
  recipe_type: builtins.str,
7133
7310
  source_connection_details: Sequence['outputs.GetPipelinesPipelineCollectionItemSourceConnectionDetailResult'],
@@ -7151,6 +7328,7 @@ class GetPipelinesPipelineCollectionItemResult(dict):
7151
7328
  :param builtins.str lifecycle_sub_state: A filtered list of pipelines to return for a given lifecycleSubState.
7152
7329
  :param Sequence['GetPipelinesPipelineCollectionItemLockArgs'] locks: Locks associated with this resource.
7153
7330
  :param Sequence['GetPipelinesPipelineCollectionItemMappingRuleArgs'] mapping_rules: Mapping for source/target schema/tables for the pipeline data replication.
7331
+ :param Sequence['GetPipelinesPipelineCollectionItemPipelineDiagnosticDataArgs'] pipeline_diagnostic_datas: Information regarding the pipeline diagnostic collection
7154
7332
  :param Sequence['GetPipelinesPipelineCollectionItemProcessOptionArgs'] process_options: Required pipeline options to configure the replication process (Extract or Replicat).
7155
7333
  :param builtins.str recipe_type: The type of the recipe
7156
7334
  :param Sequence['GetPipelinesPipelineCollectionItemSourceConnectionDetailArgs'] source_connection_details: The source connection details for creating a pipeline.
@@ -7174,6 +7352,7 @@ class GetPipelinesPipelineCollectionItemResult(dict):
7174
7352
  pulumi.set(__self__, "lifecycle_sub_state", lifecycle_sub_state)
7175
7353
  pulumi.set(__self__, "locks", locks)
7176
7354
  pulumi.set(__self__, "mapping_rules", mapping_rules)
7355
+ pulumi.set(__self__, "pipeline_diagnostic_datas", pipeline_diagnostic_datas)
7177
7356
  pulumi.set(__self__, "process_options", process_options)
7178
7357
  pulumi.set(__self__, "recipe_type", recipe_type)
7179
7358
  pulumi.set(__self__, "source_connection_details", source_connection_details)
@@ -7288,6 +7467,14 @@ class GetPipelinesPipelineCollectionItemResult(dict):
7288
7467
  """
7289
7468
  return pulumi.get(self, "mapping_rules")
7290
7469
 
7470
+ @property
7471
+ @pulumi.getter(name="pipelineDiagnosticDatas")
7472
+ def pipeline_diagnostic_datas(self) -> Sequence['outputs.GetPipelinesPipelineCollectionItemPipelineDiagnosticDataResult']:
7473
+ """
7474
+ Information regarding the pipeline diagnostic collection
7475
+ """
7476
+ return pulumi.get(self, "pipeline_diagnostic_datas")
7477
+
7291
7478
  @property
7292
7479
  @pulumi.getter(name="processOptions")
7293
7480
  def process_options(self) -> Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionResult']:
@@ -7430,20 +7617,85 @@ class GetPipelinesPipelineCollectionItemMappingRuleResult(dict):
7430
7617
  return pulumi.get(self, "target")
7431
7618
 
7432
7619
 
7620
+ @pulumi.output_type
7621
+ class GetPipelinesPipelineCollectionItemPipelineDiagnosticDataResult(dict):
7622
+ def __init__(__self__, *,
7623
+ bucket: builtins.str,
7624
+ diagnostic_state: builtins.str,
7625
+ namespace: builtins.str,
7626
+ object: builtins.str,
7627
+ time_last_collected: builtins.str):
7628
+ """
7629
+ :param builtins.str bucket: Name of the bucket where the object is to be uploaded in the object storage
7630
+ :param builtins.str diagnostic_state: The state of the pipeline diagnostics collection.
7631
+ :param builtins.str namespace: Name of namespace that serves as a container for all of your buckets
7632
+ :param builtins.str object: Name of the diagnostic collected and uploaded to object storage
7633
+ :param builtins.str time_last_collected: The date and time the diagnostic data was last collected for the pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
7634
+ """
7635
+ pulumi.set(__self__, "bucket", bucket)
7636
+ pulumi.set(__self__, "diagnostic_state", diagnostic_state)
7637
+ pulumi.set(__self__, "namespace", namespace)
7638
+ pulumi.set(__self__, "object", object)
7639
+ pulumi.set(__self__, "time_last_collected", time_last_collected)
7640
+
7641
+ @property
7642
+ @pulumi.getter
7643
+ def bucket(self) -> builtins.str:
7644
+ """
7645
+ Name of the bucket where the object is to be uploaded in the object storage
7646
+ """
7647
+ return pulumi.get(self, "bucket")
7648
+
7649
+ @property
7650
+ @pulumi.getter(name="diagnosticState")
7651
+ def diagnostic_state(self) -> builtins.str:
7652
+ """
7653
+ The state of the pipeline diagnostics collection.
7654
+ """
7655
+ return pulumi.get(self, "diagnostic_state")
7656
+
7657
+ @property
7658
+ @pulumi.getter
7659
+ def namespace(self) -> builtins.str:
7660
+ """
7661
+ Name of namespace that serves as a container for all of your buckets
7662
+ """
7663
+ return pulumi.get(self, "namespace")
7664
+
7665
+ @property
7666
+ @pulumi.getter
7667
+ def object(self) -> builtins.str:
7668
+ """
7669
+ Name of the diagnostic collected and uploaded to object storage
7670
+ """
7671
+ return pulumi.get(self, "object")
7672
+
7673
+ @property
7674
+ @pulumi.getter(name="timeLastCollected")
7675
+ def time_last_collected(self) -> builtins.str:
7676
+ """
7677
+ The date and time the diagnostic data was last collected for the pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
7678
+ """
7679
+ return pulumi.get(self, "time_last_collected")
7680
+
7681
+
7433
7682
  @pulumi.output_type
7434
7683
  class GetPipelinesPipelineCollectionItemProcessOptionResult(dict):
7435
7684
  def __init__(__self__, *,
7436
7685
  initial_data_loads: Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionInitialDataLoadResult'],
7437
7686
  replicate_schema_changes: Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionReplicateSchemaChangeResult'],
7438
- should_restart_on_failure: builtins.str):
7687
+ should_restart_on_failure: builtins.str,
7688
+ start_using_default_mapping: builtins.str):
7439
7689
  """
7440
7690
  :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.
7441
7691
  :param Sequence['GetPipelinesPipelineCollectionItemProcessOptionReplicateSchemaChangeArgs'] replicate_schema_changes: Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
7442
7692
  :param builtins.str should_restart_on_failure: If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
7693
+ :param builtins.str start_using_default_mapping: If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
7443
7694
  """
7444
7695
  pulumi.set(__self__, "initial_data_loads", initial_data_loads)
7445
7696
  pulumi.set(__self__, "replicate_schema_changes", replicate_schema_changes)
7446
7697
  pulumi.set(__self__, "should_restart_on_failure", should_restart_on_failure)
7698
+ pulumi.set(__self__, "start_using_default_mapping", start_using_default_mapping)
7447
7699
 
7448
7700
  @property
7449
7701
  @pulumi.getter(name="initialDataLoads")
@@ -7469,6 +7721,14 @@ class GetPipelinesPipelineCollectionItemProcessOptionResult(dict):
7469
7721
  """
7470
7722
  return pulumi.get(self, "should_restart_on_failure")
7471
7723
 
7724
+ @property
7725
+ @pulumi.getter(name="startUsingDefaultMapping")
7726
+ def start_using_default_mapping(self) -> builtins.str:
7727
+ """
7728
+ If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
7729
+ """
7730
+ return pulumi.get(self, "start_using_default_mapping")
7731
+
7472
7732
 
7473
7733
  @pulumi.output_type
7474
7734
  class GetPipelinesPipelineCollectionItemProcessOptionInitialDataLoadResult(dict):