pulumi-oci 2.30.0a1744439401__py3-none-any.whl → 2.31.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 (33) hide show
  1. pulumi_oci/containerengine/_inputs.py +20 -19
  2. pulumi_oci/containerengine/container_instance.py +2 -2
  3. pulumi_oci/containerengine/outputs.py +12 -11
  4. pulumi_oci/core/_inputs.py +21 -21
  5. pulumi_oci/core/get_ipv6.py +32 -2
  6. pulumi_oci/core/get_private_ip.py +33 -3
  7. pulumi_oci/core/get_private_ips.py +51 -1
  8. pulumi_oci/core/get_vnic.py +4 -1
  9. pulumi_oci/core/ipv6.py +155 -44
  10. pulumi_oci/core/outputs.py +71 -17
  11. pulumi_oci/core/private_ip.py +124 -20
  12. pulumi_oci/functions/invoke_function.py +52 -3
  13. pulumi_oci/goldengate/__init__.py +1 -0
  14. pulumi_oci/goldengate/_inputs.py +238 -1
  15. pulumi_oci/goldengate/deployment.py +308 -68
  16. pulumi_oci/goldengate/get_deployment.py +85 -1
  17. pulumi_oci/goldengate/get_deployment_peers.py +192 -0
  18. pulumi_oci/goldengate/get_pipeline.py +15 -1
  19. pulumi_oci/goldengate/get_pipeline_running_processes.py +2 -2
  20. pulumi_oci/goldengate/outputs.py +627 -3
  21. pulumi_oci/goldengate/pipeline.py +28 -0
  22. pulumi_oci/kms/_inputs.py +48 -0
  23. pulumi_oci/kms/outputs.py +48 -0
  24. pulumi_oci/kms/vault_verification.py +37 -1
  25. pulumi_oci/loadbalancer/load_balancer.py +49 -0
  26. pulumi_oci/loadbalancer/outputs.py +11 -0
  27. pulumi_oci/pulumi-plugin.json +1 -1
  28. pulumi_oci/sch/_inputs.py +223 -1
  29. pulumi_oci/sch/outputs.py +472 -31
  30. {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/METADATA +1 -1
  31. {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/RECORD +33 -32
  32. {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/WHEEL +0 -0
  33. {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/top_level.txt +0 -0
@@ -30,8 +30,10 @@ __all__ = [
30
30
  'DeploymentMaintenanceWindow',
31
31
  'DeploymentOggData',
32
32
  'DeploymentOggDataGroupToRolesMapping',
33
+ 'DeploymentPlacement',
33
34
  'PipelineLock',
34
35
  'PipelineMappingRule',
36
+ 'PipelinePipelineDiagnosticData',
35
37
  'PipelineProcessOptions',
36
38
  'PipelineProcessOptionsInitialDataLoad',
37
39
  'PipelineProcessOptionsReplicateSchemaChange',
@@ -73,6 +75,10 @@ __all__ = [
73
75
  'GetDeploymentMaintenanceWindowResult',
74
76
  'GetDeploymentOggDataResult',
75
77
  'GetDeploymentOggDataGroupToRolesMappingResult',
78
+ 'GetDeploymentPeersDeploymentPeerCollectionResult',
79
+ 'GetDeploymentPeersDeploymentPeerCollectionItemResult',
80
+ 'GetDeploymentPeersFilterResult',
81
+ 'GetDeploymentPlacementResult',
76
82
  'GetDeploymentTypeItemResult',
77
83
  'GetDeploymentTypesDeploymentTypeCollectionResult',
78
84
  'GetDeploymentTypesDeploymentTypeCollectionItemResult',
@@ -93,6 +99,7 @@ __all__ = [
93
99
  'GetDeploymentsDeploymentCollectionItemMaintenanceWindowResult',
94
100
  'GetDeploymentsDeploymentCollectionItemOggDataResult',
95
101
  'GetDeploymentsDeploymentCollectionItemOggDataGroupToRolesMappingResult',
102
+ 'GetDeploymentsDeploymentCollectionItemPlacementResult',
96
103
  'GetDeploymentsFilterResult',
97
104
  'GetMessageItemResult',
98
105
  'GetMessagesDeploymentMessagesCollectionResult',
@@ -100,6 +107,7 @@ __all__ = [
100
107
  'GetMessagesFilterResult',
101
108
  'GetPipelineLockResult',
102
109
  'GetPipelineMappingRuleResult',
110
+ 'GetPipelinePipelineDiagnosticDataResult',
103
111
  'GetPipelineProcessOptionResult',
104
112
  'GetPipelineProcessOptionInitialDataLoadResult',
105
113
  'GetPipelineProcessOptionReplicateSchemaChangeResult',
@@ -119,6 +127,7 @@ __all__ = [
119
127
  'GetPipelinesPipelineCollectionItemResult',
120
128
  'GetPipelinesPipelineCollectionItemLockResult',
121
129
  'GetPipelinesPipelineCollectionItemMappingRuleResult',
130
+ 'GetPipelinesPipelineCollectionItemPipelineDiagnosticDataResult',
122
131
  'GetPipelinesPipelineCollectionItemProcessOptionResult',
123
132
  'GetPipelinesPipelineCollectionItemProcessOptionInitialDataLoadResult',
124
133
  'GetPipelinesPipelineCollectionItemProcessOptionReplicateSchemaChangeResult',
@@ -1091,6 +1100,56 @@ class DeploymentOggDataGroupToRolesMapping(dict):
1091
1100
  return pulumi.get(self, "user_group_id")
1092
1101
 
1093
1102
 
1103
+ @pulumi.output_type
1104
+ class DeploymentPlacement(dict):
1105
+ @staticmethod
1106
+ def __key_warning(key: str):
1107
+ suggest = None
1108
+ if key == "availabilityDomain":
1109
+ suggest = "availability_domain"
1110
+ elif key == "faultDomain":
1111
+ suggest = "fault_domain"
1112
+
1113
+ if suggest:
1114
+ pulumi.log.warn(f"Key '{key}' not found in DeploymentPlacement. Access the value via the '{suggest}' property getter instead.")
1115
+
1116
+ def __getitem__(self, key: str) -> Any:
1117
+ DeploymentPlacement.__key_warning(key)
1118
+ return super().__getitem__(key)
1119
+
1120
+ def get(self, key: str, default = None) -> Any:
1121
+ DeploymentPlacement.__key_warning(key)
1122
+ return super().get(key, default)
1123
+
1124
+ def __init__(__self__, *,
1125
+ availability_domain: Optional[builtins.str] = None,
1126
+ fault_domain: Optional[builtins.str] = None):
1127
+ """
1128
+ :param builtins.str availability_domain: (Updatable) The availability domain of a placement.
1129
+ :param builtins.str fault_domain: (Updatable) The fault domain of a placement.
1130
+ """
1131
+ if availability_domain is not None:
1132
+ pulumi.set(__self__, "availability_domain", availability_domain)
1133
+ if fault_domain is not None:
1134
+ pulumi.set(__self__, "fault_domain", fault_domain)
1135
+
1136
+ @property
1137
+ @pulumi.getter(name="availabilityDomain")
1138
+ def availability_domain(self) -> Optional[builtins.str]:
1139
+ """
1140
+ (Updatable) The availability domain of a placement.
1141
+ """
1142
+ return pulumi.get(self, "availability_domain")
1143
+
1144
+ @property
1145
+ @pulumi.getter(name="faultDomain")
1146
+ def fault_domain(self) -> Optional[builtins.str]:
1147
+ """
1148
+ (Updatable) The fault domain of a placement.
1149
+ """
1150
+ return pulumi.get(self, "fault_domain")
1151
+
1152
+
1094
1153
  @pulumi.output_type
1095
1154
  class PipelineLock(dict):
1096
1155
  def __init__(__self__, *,
@@ -1181,6 +1240,92 @@ class PipelineMappingRule(dict):
1181
1240
  return pulumi.get(self, "target")
1182
1241
 
1183
1242
 
1243
+ @pulumi.output_type
1244
+ class PipelinePipelineDiagnosticData(dict):
1245
+ @staticmethod
1246
+ def __key_warning(key: str):
1247
+ suggest = None
1248
+ if key == "diagnosticState":
1249
+ suggest = "diagnostic_state"
1250
+ elif key == "timeLastCollected":
1251
+ suggest = "time_last_collected"
1252
+
1253
+ if suggest:
1254
+ pulumi.log.warn(f"Key '{key}' not found in PipelinePipelineDiagnosticData. Access the value via the '{suggest}' property getter instead.")
1255
+
1256
+ def __getitem__(self, key: str) -> Any:
1257
+ PipelinePipelineDiagnosticData.__key_warning(key)
1258
+ return super().__getitem__(key)
1259
+
1260
+ def get(self, key: str, default = None) -> Any:
1261
+ PipelinePipelineDiagnosticData.__key_warning(key)
1262
+ return super().get(key, default)
1263
+
1264
+ def __init__(__self__, *,
1265
+ bucket: Optional[builtins.str] = None,
1266
+ diagnostic_state: Optional[builtins.str] = None,
1267
+ namespace: Optional[builtins.str] = None,
1268
+ object: Optional[builtins.str] = None,
1269
+ time_last_collected: Optional[builtins.str] = None):
1270
+ """
1271
+ :param builtins.str bucket: Name of the bucket where the object is to be uploaded in the object storage
1272
+ :param builtins.str diagnostic_state: The state of the pipeline diagnostics collection.
1273
+ :param builtins.str namespace: Name of namespace that serves as a container for all of your buckets
1274
+ :param builtins.str object: Name of the diagnostic collected and uploaded to object storage
1275
+ :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`.
1276
+ """
1277
+ if bucket is not None:
1278
+ pulumi.set(__self__, "bucket", bucket)
1279
+ if diagnostic_state is not None:
1280
+ pulumi.set(__self__, "diagnostic_state", diagnostic_state)
1281
+ if namespace is not None:
1282
+ pulumi.set(__self__, "namespace", namespace)
1283
+ if object is not None:
1284
+ pulumi.set(__self__, "object", object)
1285
+ if time_last_collected is not None:
1286
+ pulumi.set(__self__, "time_last_collected", time_last_collected)
1287
+
1288
+ @property
1289
+ @pulumi.getter
1290
+ def bucket(self) -> Optional[builtins.str]:
1291
+ """
1292
+ Name of the bucket where the object is to be uploaded in the object storage
1293
+ """
1294
+ return pulumi.get(self, "bucket")
1295
+
1296
+ @property
1297
+ @pulumi.getter(name="diagnosticState")
1298
+ def diagnostic_state(self) -> Optional[builtins.str]:
1299
+ """
1300
+ The state of the pipeline diagnostics collection.
1301
+ """
1302
+ return pulumi.get(self, "diagnostic_state")
1303
+
1304
+ @property
1305
+ @pulumi.getter
1306
+ def namespace(self) -> Optional[builtins.str]:
1307
+ """
1308
+ Name of namespace that serves as a container for all of your buckets
1309
+ """
1310
+ return pulumi.get(self, "namespace")
1311
+
1312
+ @property
1313
+ @pulumi.getter
1314
+ def object(self) -> Optional[builtins.str]:
1315
+ """
1316
+ Name of the diagnostic collected and uploaded to object storage
1317
+ """
1318
+ return pulumi.get(self, "object")
1319
+
1320
+ @property
1321
+ @pulumi.getter(name="timeLastCollected")
1322
+ def time_last_collected(self) -> Optional[builtins.str]:
1323
+ """
1324
+ 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`.
1325
+ """
1326
+ return pulumi.get(self, "time_last_collected")
1327
+
1328
+
1184
1329
  @pulumi.output_type
1185
1330
  class PipelineProcessOptions(dict):
1186
1331
  @staticmethod
@@ -1192,6 +1337,8 @@ class PipelineProcessOptions(dict):
1192
1337
  suggest = "replicate_schema_change"
1193
1338
  elif key == "shouldRestartOnFailure":
1194
1339
  suggest = "should_restart_on_failure"
1340
+ elif key == "startUsingDefaultMapping":
1341
+ suggest = "start_using_default_mapping"
1195
1342
 
1196
1343
  if suggest:
1197
1344
  pulumi.log.warn(f"Key '{key}' not found in PipelineProcessOptions. Access the value via the '{suggest}' property getter instead.")
@@ -1207,15 +1354,19 @@ class PipelineProcessOptions(dict):
1207
1354
  def __init__(__self__, *,
1208
1355
  initial_data_load: 'outputs.PipelineProcessOptionsInitialDataLoad',
1209
1356
  replicate_schema_change: 'outputs.PipelineProcessOptionsReplicateSchemaChange',
1210
- should_restart_on_failure: builtins.str):
1357
+ should_restart_on_failure: builtins.str,
1358
+ start_using_default_mapping: Optional[builtins.str] = None):
1211
1359
  """
1212
1360
  :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
1361
  :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
1362
  :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.
1363
+ :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
1364
  """
1216
1365
  pulumi.set(__self__, "initial_data_load", initial_data_load)
1217
1366
  pulumi.set(__self__, "replicate_schema_change", replicate_schema_change)
1218
1367
  pulumi.set(__self__, "should_restart_on_failure", should_restart_on_failure)
1368
+ if start_using_default_mapping is not None:
1369
+ pulumi.set(__self__, "start_using_default_mapping", start_using_default_mapping)
1219
1370
 
1220
1371
  @property
1221
1372
  @pulumi.getter(name="initialDataLoad")
@@ -1241,6 +1392,14 @@ class PipelineProcessOptions(dict):
1241
1392
  """
1242
1393
  return pulumi.get(self, "should_restart_on_failure")
1243
1394
 
1395
+ @property
1396
+ @pulumi.getter(name="startUsingDefaultMapping")
1397
+ def start_using_default_mapping(self) -> Optional[builtins.str]:
1398
+ """
1399
+ (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.
1400
+ """
1401
+ return pulumi.get(self, "start_using_default_mapping")
1402
+
1244
1403
 
1245
1404
  @pulumi.output_type
1246
1405
  class PipelineProcessOptionsInitialDataLoad(dict):
@@ -4715,6 +4874,208 @@ class GetDeploymentOggDataGroupToRolesMappingResult(dict):
4715
4874
  return pulumi.get(self, "user_group_id")
4716
4875
 
4717
4876
 
4877
+ @pulumi.output_type
4878
+ class GetDeploymentPeersDeploymentPeerCollectionResult(dict):
4879
+ def __init__(__self__, *,
4880
+ items: Sequence['outputs.GetDeploymentPeersDeploymentPeerCollectionItemResult']):
4881
+ """
4882
+ :param Sequence['GetDeploymentPeersDeploymentPeerCollectionItemArgs'] items: An array of DeploymentPeers.
4883
+ """
4884
+ pulumi.set(__self__, "items", items)
4885
+
4886
+ @property
4887
+ @pulumi.getter
4888
+ def items(self) -> Sequence['outputs.GetDeploymentPeersDeploymentPeerCollectionItemResult']:
4889
+ """
4890
+ An array of DeploymentPeers.
4891
+ """
4892
+ return pulumi.get(self, "items")
4893
+
4894
+
4895
+ @pulumi.output_type
4896
+ class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
4897
+ def __init__(__self__, *,
4898
+ availability_domain: builtins.str,
4899
+ deployment_id: builtins.str,
4900
+ display_name: builtins.str,
4901
+ fault_domain: builtins.str,
4902
+ peer_role: builtins.str,
4903
+ peer_type: builtins.str,
4904
+ region: builtins.str,
4905
+ state: builtins.str,
4906
+ time_created: builtins.str,
4907
+ time_role_changed: builtins.str,
4908
+ time_updated: builtins.str):
4909
+ """
4910
+ :param builtins.str availability_domain: The availability domain of a placement.
4911
+ :param builtins.str deployment_id: A unique Deployment identifier.
4912
+ :param builtins.str display_name: A filter to return only the resources that match the entire 'displayName' given.
4913
+ :param builtins.str fault_domain: The fault domain of a placement.
4914
+ :param builtins.str peer_role: The type of the deployment role.
4915
+ :param builtins.str peer_type: The type of the deployment peer.
4916
+ :param builtins.str region: The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
4917
+ :param builtins.str state: A filter to return only the resources that match the 'lifecycleState' given.
4918
+ :param builtins.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`.
4919
+ :param builtins.str time_role_changed: The time of the last role change. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
4920
+ :param builtins.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`.
4921
+ """
4922
+ pulumi.set(__self__, "availability_domain", availability_domain)
4923
+ pulumi.set(__self__, "deployment_id", deployment_id)
4924
+ pulumi.set(__self__, "display_name", display_name)
4925
+ pulumi.set(__self__, "fault_domain", fault_domain)
4926
+ pulumi.set(__self__, "peer_role", peer_role)
4927
+ pulumi.set(__self__, "peer_type", peer_type)
4928
+ pulumi.set(__self__, "region", region)
4929
+ pulumi.set(__self__, "state", state)
4930
+ pulumi.set(__self__, "time_created", time_created)
4931
+ pulumi.set(__self__, "time_role_changed", time_role_changed)
4932
+ pulumi.set(__self__, "time_updated", time_updated)
4933
+
4934
+ @property
4935
+ @pulumi.getter(name="availabilityDomain")
4936
+ def availability_domain(self) -> builtins.str:
4937
+ """
4938
+ The availability domain of a placement.
4939
+ """
4940
+ return pulumi.get(self, "availability_domain")
4941
+
4942
+ @property
4943
+ @pulumi.getter(name="deploymentId")
4944
+ def deployment_id(self) -> builtins.str:
4945
+ """
4946
+ A unique Deployment identifier.
4947
+ """
4948
+ return pulumi.get(self, "deployment_id")
4949
+
4950
+ @property
4951
+ @pulumi.getter(name="displayName")
4952
+ def display_name(self) -> builtins.str:
4953
+ """
4954
+ A filter to return only the resources that match the entire 'displayName' given.
4955
+ """
4956
+ return pulumi.get(self, "display_name")
4957
+
4958
+ @property
4959
+ @pulumi.getter(name="faultDomain")
4960
+ def fault_domain(self) -> builtins.str:
4961
+ """
4962
+ The fault domain of a placement.
4963
+ """
4964
+ return pulumi.get(self, "fault_domain")
4965
+
4966
+ @property
4967
+ @pulumi.getter(name="peerRole")
4968
+ def peer_role(self) -> builtins.str:
4969
+ """
4970
+ The type of the deployment role.
4971
+ """
4972
+ return pulumi.get(self, "peer_role")
4973
+
4974
+ @property
4975
+ @pulumi.getter(name="peerType")
4976
+ def peer_type(self) -> builtins.str:
4977
+ """
4978
+ The type of the deployment peer.
4979
+ """
4980
+ return pulumi.get(self, "peer_type")
4981
+
4982
+ @property
4983
+ @pulumi.getter
4984
+ def region(self) -> builtins.str:
4985
+ """
4986
+ The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
4987
+ """
4988
+ return pulumi.get(self, "region")
4989
+
4990
+ @property
4991
+ @pulumi.getter
4992
+ def state(self) -> builtins.str:
4993
+ """
4994
+ A filter to return only the resources that match the 'lifecycleState' given.
4995
+ """
4996
+ return pulumi.get(self, "state")
4997
+
4998
+ @property
4999
+ @pulumi.getter(name="timeCreated")
5000
+ def time_created(self) -> builtins.str:
5001
+ """
5002
+ 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`.
5003
+ """
5004
+ return pulumi.get(self, "time_created")
5005
+
5006
+ @property
5007
+ @pulumi.getter(name="timeRoleChanged")
5008
+ def time_role_changed(self) -> builtins.str:
5009
+ """
5010
+ The time of the last role change. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
5011
+ """
5012
+ return pulumi.get(self, "time_role_changed")
5013
+
5014
+ @property
5015
+ @pulumi.getter(name="timeUpdated")
5016
+ def time_updated(self) -> builtins.str:
5017
+ """
5018
+ 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`.
5019
+ """
5020
+ return pulumi.get(self, "time_updated")
5021
+
5022
+
5023
+ @pulumi.output_type
5024
+ class GetDeploymentPeersFilterResult(dict):
5025
+ def __init__(__self__, *,
5026
+ name: builtins.str,
5027
+ values: Sequence[builtins.str],
5028
+ regex: Optional[builtins.bool] = None):
5029
+ pulumi.set(__self__, "name", name)
5030
+ pulumi.set(__self__, "values", values)
5031
+ if regex is not None:
5032
+ pulumi.set(__self__, "regex", regex)
5033
+
5034
+ @property
5035
+ @pulumi.getter
5036
+ def name(self) -> builtins.str:
5037
+ return pulumi.get(self, "name")
5038
+
5039
+ @property
5040
+ @pulumi.getter
5041
+ def values(self) -> Sequence[builtins.str]:
5042
+ return pulumi.get(self, "values")
5043
+
5044
+ @property
5045
+ @pulumi.getter
5046
+ def regex(self) -> Optional[builtins.bool]:
5047
+ return pulumi.get(self, "regex")
5048
+
5049
+
5050
+ @pulumi.output_type
5051
+ class GetDeploymentPlacementResult(dict):
5052
+ def __init__(__self__, *,
5053
+ availability_domain: builtins.str,
5054
+ fault_domain: builtins.str):
5055
+ """
5056
+ :param builtins.str availability_domain: The availability domain of a placement.
5057
+ :param builtins.str fault_domain: The fault domain of a placement.
5058
+ """
5059
+ pulumi.set(__self__, "availability_domain", availability_domain)
5060
+ pulumi.set(__self__, "fault_domain", fault_domain)
5061
+
5062
+ @property
5063
+ @pulumi.getter(name="availabilityDomain")
5064
+ def availability_domain(self) -> builtins.str:
5065
+ """
5066
+ The availability domain of a placement.
5067
+ """
5068
+ return pulumi.get(self, "availability_domain")
5069
+
5070
+ @property
5071
+ @pulumi.getter(name="faultDomain")
5072
+ def fault_domain(self) -> builtins.str:
5073
+ """
5074
+ The fault domain of a placement.
5075
+ """
5076
+ return pulumi.get(self, "fault_domain")
5077
+
5078
+
4718
5079
  @pulumi.output_type
4719
5080
  class GetDeploymentTypeItemResult(dict):
4720
5081
  def __init__(__self__, *,
@@ -4816,6 +5177,7 @@ class GetDeploymentTypesDeploymentTypeCollectionItemResult(dict):
4816
5177
  display_name: builtins.str,
4817
5178
  ogg_version: builtins.str,
4818
5179
  source_technologies: Sequence[builtins.str],
5180
+ supported_capabilities: Sequence[builtins.str],
4819
5181
  supported_technologies_url: builtins.str,
4820
5182
  target_technologies: Sequence[builtins.str]):
4821
5183
  """
@@ -4826,6 +5188,7 @@ class GetDeploymentTypesDeploymentTypeCollectionItemResult(dict):
4826
5188
  :param builtins.str display_name: A filter to return only the resources that match the entire 'displayName' given.
4827
5189
  :param builtins.str ogg_version: Allows to query by a specific GoldenGate version.
4828
5190
  :param Sequence[builtins.str] source_technologies: List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
5191
+ :param Sequence[builtins.str] supported_capabilities: Specifies supported capabilities or features by a deployment type .
4829
5192
  :param builtins.str supported_technologies_url: The URL to the webpage listing the supported technologies.
4830
5193
  :param Sequence[builtins.str] target_technologies: List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
4831
5194
  """
@@ -4836,6 +5199,7 @@ class GetDeploymentTypesDeploymentTypeCollectionItemResult(dict):
4836
5199
  pulumi.set(__self__, "display_name", display_name)
4837
5200
  pulumi.set(__self__, "ogg_version", ogg_version)
4838
5201
  pulumi.set(__self__, "source_technologies", source_technologies)
5202
+ pulumi.set(__self__, "supported_capabilities", supported_capabilities)
4839
5203
  pulumi.set(__self__, "supported_technologies_url", supported_technologies_url)
4840
5204
  pulumi.set(__self__, "target_technologies", target_technologies)
4841
5205
 
@@ -4895,6 +5259,14 @@ class GetDeploymentTypesDeploymentTypeCollectionItemResult(dict):
4895
5259
  """
4896
5260
  return pulumi.get(self, "source_technologies")
4897
5261
 
5262
+ @property
5263
+ @pulumi.getter(name="supportedCapabilities")
5264
+ def supported_capabilities(self) -> Sequence[builtins.str]:
5265
+ """
5266
+ Specifies supported capabilities or features by a deployment type .
5267
+ """
5268
+ return pulumi.get(self, "supported_capabilities")
5269
+
4898
5270
  @property
4899
5271
  @pulumi.getter(name="supportedTechnologiesUrl")
4900
5272
  def supported_technologies_url(self) -> builtins.str:
@@ -5441,6 +5813,7 @@ class GetDeploymentsDeploymentCollectionResult(dict):
5441
5813
  @pulumi.output_type
5442
5814
  class GetDeploymentsDeploymentCollectionItemResult(dict):
5443
5815
  def __init__(__self__, *,
5816
+ availability_domain: builtins.str,
5444
5817
  backup_schedules: Sequence['outputs.GetDeploymentsDeploymentCollectionItemBackupScheduleResult'],
5445
5818
  category: builtins.str,
5446
5819
  compartment_id: builtins.str,
@@ -5448,11 +5821,13 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5448
5821
  defined_tags: Mapping[str, builtins.str],
5449
5822
  deployment_backup_id: builtins.str,
5450
5823
  deployment_diagnostic_datas: Sequence['outputs.GetDeploymentsDeploymentCollectionItemDeploymentDiagnosticDataResult'],
5824
+ deployment_role: builtins.str,
5451
5825
  deployment_type: builtins.str,
5452
5826
  deployment_url: builtins.str,
5453
5827
  description: builtins.str,
5454
5828
  display_name: builtins.str,
5455
5829
  environment_type: builtins.str,
5830
+ fault_domain: builtins.str,
5456
5831
  fqdn: builtins.str,
5457
5832
  freeform_tags: Mapping[str, builtins.str],
5458
5833
  id: builtins.str,
@@ -5475,8 +5850,10 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5475
5850
  next_maintenance_description: builtins.str,
5476
5851
  nsg_ids: Sequence[builtins.str],
5477
5852
  ogg_datas: Sequence['outputs.GetDeploymentsDeploymentCollectionItemOggDataResult'],
5853
+ placements: Sequence['outputs.GetDeploymentsDeploymentCollectionItemPlacementResult'],
5478
5854
  private_ip_address: builtins.str,
5479
5855
  public_ip_address: builtins.str,
5856
+ source_deployment_id: builtins.str,
5480
5857
  state: builtins.str,
5481
5858
  storage_utilization_in_bytes: builtins.str,
5482
5859
  subnet_id: builtins.str,
@@ -5486,9 +5863,11 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5486
5863
  time_next_backup_scheduled: builtins.str,
5487
5864
  time_of_next_maintenance: builtins.str,
5488
5865
  time_ogg_version_supported_until: builtins.str,
5866
+ time_role_changed: builtins.str,
5489
5867
  time_updated: builtins.str,
5490
5868
  time_upgrade_required: builtins.str):
5491
5869
  """
5870
+ :param builtins.str availability_domain: The availability domain of a placement.
5492
5871
  :param Sequence['GetDeploymentsDeploymentCollectionItemBackupScheduleArgs'] backup_schedules: Defines the schedule of the deployment backup.
5493
5872
  :param builtins.str category: The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
5494
5873
  :param builtins.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.
@@ -5496,11 +5875,13 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5496
5875
  :param Mapping[str, builtins.str] defined_tags: Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
5497
5876
  :param builtins.str deployment_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup being referenced.
5498
5877
  :param Sequence['GetDeploymentsDeploymentCollectionItemDeploymentDiagnosticDataArgs'] deployment_diagnostic_datas: Information regarding the deployment diagnostic collection
5878
+ :param builtins.str deployment_role: The type of the deployment role.
5499
5879
  :param builtins.str deployment_type: The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
5500
5880
  :param builtins.str deployment_url: The URL of a resource.
5501
5881
  :param builtins.str description: Metadata about this specific object.
5502
5882
  :param builtins.str display_name: A filter to return only the resources that match the entire 'displayName' given.
5503
5883
  :param builtins.str environment_type: Specifies whether the deployment is used in a production or development/testing environment.
5884
+ :param builtins.str fault_domain: The fault domain of a placement.
5504
5885
  :param builtins.str fqdn: A filter to return only the resources that match the 'fqdn' given.
5505
5886
  :param Mapping[str, builtins.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"}`
5506
5887
  :param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
@@ -5522,8 +5903,10 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5522
5903
  :param builtins.str next_maintenance_description: Description of the next maintenance.
5523
5904
  :param Sequence[builtins.str] nsg_ids: An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
5524
5905
  :param Sequence['GetDeploymentsDeploymentCollectionItemOggDataArgs'] ogg_datas: Deployment Data for an OggDeployment
5906
+ :param Sequence['GetDeploymentsDeploymentCollectionItemPlacementArgs'] placements: An array of local peers of deployment
5525
5907
  :param builtins.str private_ip_address: The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
5526
5908
  :param builtins.str public_ip_address: The public IP address representing the access point for the Deployment.
5909
+ :param builtins.str source_deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
5527
5910
  :param builtins.str state: A filter to return only the resources that match the 'lifecycleState' given.
5528
5911
  :param builtins.str storage_utilization_in_bytes: The amount of storage being utilized (in bytes)
5529
5912
  :param builtins.str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint. The subnet must be a private subnet. For backward compatibility, public subnets are allowed until May 31 2025, after which the private subnet will be enforced.
@@ -5533,9 +5916,11 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5533
5916
  :param builtins.str time_next_backup_scheduled: The timestamp of next deployment backup scheduled. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-26T20:19:29.600Z`.
5534
5917
  :param builtins.str time_of_next_maintenance: The time of next maintenance schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
5535
5918
  :param builtins.str time_ogg_version_supported_until: The time until OGG version is supported. After this date has passed OGG version will not be available anymore. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
5919
+ :param builtins.str time_role_changed: The time of the last role change. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
5536
5920
  :param builtins.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`.
5537
5921
  :param builtins.str time_upgrade_required: Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
5538
5922
  """
5923
+ pulumi.set(__self__, "availability_domain", availability_domain)
5539
5924
  pulumi.set(__self__, "backup_schedules", backup_schedules)
5540
5925
  pulumi.set(__self__, "category", category)
5541
5926
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -5543,11 +5928,13 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5543
5928
  pulumi.set(__self__, "defined_tags", defined_tags)
5544
5929
  pulumi.set(__self__, "deployment_backup_id", deployment_backup_id)
5545
5930
  pulumi.set(__self__, "deployment_diagnostic_datas", deployment_diagnostic_datas)
5931
+ pulumi.set(__self__, "deployment_role", deployment_role)
5546
5932
  pulumi.set(__self__, "deployment_type", deployment_type)
5547
5933
  pulumi.set(__self__, "deployment_url", deployment_url)
5548
5934
  pulumi.set(__self__, "description", description)
5549
5935
  pulumi.set(__self__, "display_name", display_name)
5550
5936
  pulumi.set(__self__, "environment_type", environment_type)
5937
+ pulumi.set(__self__, "fault_domain", fault_domain)
5551
5938
  pulumi.set(__self__, "fqdn", fqdn)
5552
5939
  pulumi.set(__self__, "freeform_tags", freeform_tags)
5553
5940
  pulumi.set(__self__, "id", id)
@@ -5570,8 +5957,10 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5570
5957
  pulumi.set(__self__, "next_maintenance_description", next_maintenance_description)
5571
5958
  pulumi.set(__self__, "nsg_ids", nsg_ids)
5572
5959
  pulumi.set(__self__, "ogg_datas", ogg_datas)
5960
+ pulumi.set(__self__, "placements", placements)
5573
5961
  pulumi.set(__self__, "private_ip_address", private_ip_address)
5574
5962
  pulumi.set(__self__, "public_ip_address", public_ip_address)
5963
+ pulumi.set(__self__, "source_deployment_id", source_deployment_id)
5575
5964
  pulumi.set(__self__, "state", state)
5576
5965
  pulumi.set(__self__, "storage_utilization_in_bytes", storage_utilization_in_bytes)
5577
5966
  pulumi.set(__self__, "subnet_id", subnet_id)
@@ -5581,9 +5970,18 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5581
5970
  pulumi.set(__self__, "time_next_backup_scheduled", time_next_backup_scheduled)
5582
5971
  pulumi.set(__self__, "time_of_next_maintenance", time_of_next_maintenance)
5583
5972
  pulumi.set(__self__, "time_ogg_version_supported_until", time_ogg_version_supported_until)
5973
+ pulumi.set(__self__, "time_role_changed", time_role_changed)
5584
5974
  pulumi.set(__self__, "time_updated", time_updated)
5585
5975
  pulumi.set(__self__, "time_upgrade_required", time_upgrade_required)
5586
5976
 
5977
+ @property
5978
+ @pulumi.getter(name="availabilityDomain")
5979
+ def availability_domain(self) -> builtins.str:
5980
+ """
5981
+ The availability domain of a placement.
5982
+ """
5983
+ return pulumi.get(self, "availability_domain")
5984
+
5587
5985
  @property
5588
5986
  @pulumi.getter(name="backupSchedules")
5589
5987
  def backup_schedules(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionItemBackupScheduleResult']:
@@ -5640,6 +6038,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5640
6038
  """
5641
6039
  return pulumi.get(self, "deployment_diagnostic_datas")
5642
6040
 
6041
+ @property
6042
+ @pulumi.getter(name="deploymentRole")
6043
+ def deployment_role(self) -> builtins.str:
6044
+ """
6045
+ The type of the deployment role.
6046
+ """
6047
+ return pulumi.get(self, "deployment_role")
6048
+
5643
6049
  @property
5644
6050
  @pulumi.getter(name="deploymentType")
5645
6051
  def deployment_type(self) -> builtins.str:
@@ -5680,6 +6086,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5680
6086
  """
5681
6087
  return pulumi.get(self, "environment_type")
5682
6088
 
6089
+ @property
6090
+ @pulumi.getter(name="faultDomain")
6091
+ def fault_domain(self) -> builtins.str:
6092
+ """
6093
+ The fault domain of a placement.
6094
+ """
6095
+ return pulumi.get(self, "fault_domain")
6096
+
5683
6097
  @property
5684
6098
  @pulumi.getter
5685
6099
  def fqdn(self) -> builtins.str:
@@ -5853,6 +6267,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5853
6267
  """
5854
6268
  return pulumi.get(self, "ogg_datas")
5855
6269
 
6270
+ @property
6271
+ @pulumi.getter
6272
+ def placements(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionItemPlacementResult']:
6273
+ """
6274
+ An array of local peers of deployment
6275
+ """
6276
+ return pulumi.get(self, "placements")
6277
+
5856
6278
  @property
5857
6279
  @pulumi.getter(name="privateIpAddress")
5858
6280
  def private_ip_address(self) -> builtins.str:
@@ -5869,6 +6291,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5869
6291
  """
5870
6292
  return pulumi.get(self, "public_ip_address")
5871
6293
 
6294
+ @property
6295
+ @pulumi.getter(name="sourceDeploymentId")
6296
+ def source_deployment_id(self) -> builtins.str:
6297
+ """
6298
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
6299
+ """
6300
+ return pulumi.get(self, "source_deployment_id")
6301
+
5872
6302
  @property
5873
6303
  @pulumi.getter
5874
6304
  def state(self) -> builtins.str:
@@ -5941,6 +6371,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
5941
6371
  """
5942
6372
  return pulumi.get(self, "time_ogg_version_supported_until")
5943
6373
 
6374
+ @property
6375
+ @pulumi.getter(name="timeRoleChanged")
6376
+ def time_role_changed(self) -> builtins.str:
6377
+ """
6378
+ The time of the last role change. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
6379
+ """
6380
+ return pulumi.get(self, "time_role_changed")
6381
+
5944
6382
  @property
5945
6383
  @pulumi.getter(name="timeUpdated")
5946
6384
  def time_updated(self) -> builtins.str:
@@ -6424,6 +6862,35 @@ class GetDeploymentsDeploymentCollectionItemOggDataGroupToRolesMappingResult(dic
6424
6862
  return pulumi.get(self, "user_group_id")
6425
6863
 
6426
6864
 
6865
+ @pulumi.output_type
6866
+ class GetDeploymentsDeploymentCollectionItemPlacementResult(dict):
6867
+ def __init__(__self__, *,
6868
+ availability_domain: builtins.str,
6869
+ fault_domain: builtins.str):
6870
+ """
6871
+ :param builtins.str availability_domain: The availability domain of a placement.
6872
+ :param builtins.str fault_domain: The fault domain of a placement.
6873
+ """
6874
+ pulumi.set(__self__, "availability_domain", availability_domain)
6875
+ pulumi.set(__self__, "fault_domain", fault_domain)
6876
+
6877
+ @property
6878
+ @pulumi.getter(name="availabilityDomain")
6879
+ def availability_domain(self) -> builtins.str:
6880
+ """
6881
+ The availability domain of a placement.
6882
+ """
6883
+ return pulumi.get(self, "availability_domain")
6884
+
6885
+ @property
6886
+ @pulumi.getter(name="faultDomain")
6887
+ def fault_domain(self) -> builtins.str:
6888
+ """
6889
+ The fault domain of a placement.
6890
+ """
6891
+ return pulumi.get(self, "fault_domain")
6892
+
6893
+
6427
6894
  @pulumi.output_type
6428
6895
  class GetDeploymentsFilterResult(dict):
6429
6896
  def __init__(__self__, *,
@@ -6645,20 +7112,85 @@ class GetPipelineMappingRuleResult(dict):
6645
7112
  return pulumi.get(self, "target")
6646
7113
 
6647
7114
 
7115
+ @pulumi.output_type
7116
+ class GetPipelinePipelineDiagnosticDataResult(dict):
7117
+ def __init__(__self__, *,
7118
+ bucket: builtins.str,
7119
+ diagnostic_state: builtins.str,
7120
+ namespace: builtins.str,
7121
+ object: builtins.str,
7122
+ time_last_collected: builtins.str):
7123
+ """
7124
+ :param builtins.str bucket: Name of the bucket where the object is to be uploaded in the object storage
7125
+ :param builtins.str diagnostic_state: The state of the pipeline diagnostics collection.
7126
+ :param builtins.str namespace: Name of namespace that serves as a container for all of your buckets
7127
+ :param builtins.str object: Name of the diagnostic collected and uploaded to object storage
7128
+ :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`.
7129
+ """
7130
+ pulumi.set(__self__, "bucket", bucket)
7131
+ pulumi.set(__self__, "diagnostic_state", diagnostic_state)
7132
+ pulumi.set(__self__, "namespace", namespace)
7133
+ pulumi.set(__self__, "object", object)
7134
+ pulumi.set(__self__, "time_last_collected", time_last_collected)
7135
+
7136
+ @property
7137
+ @pulumi.getter
7138
+ def bucket(self) -> builtins.str:
7139
+ """
7140
+ Name of the bucket where the object is to be uploaded in the object storage
7141
+ """
7142
+ return pulumi.get(self, "bucket")
7143
+
7144
+ @property
7145
+ @pulumi.getter(name="diagnosticState")
7146
+ def diagnostic_state(self) -> builtins.str:
7147
+ """
7148
+ The state of the pipeline diagnostics collection.
7149
+ """
7150
+ return pulumi.get(self, "diagnostic_state")
7151
+
7152
+ @property
7153
+ @pulumi.getter
7154
+ def namespace(self) -> builtins.str:
7155
+ """
7156
+ Name of namespace that serves as a container for all of your buckets
7157
+ """
7158
+ return pulumi.get(self, "namespace")
7159
+
7160
+ @property
7161
+ @pulumi.getter
7162
+ def object(self) -> builtins.str:
7163
+ """
7164
+ Name of the diagnostic collected and uploaded to object storage
7165
+ """
7166
+ return pulumi.get(self, "object")
7167
+
7168
+ @property
7169
+ @pulumi.getter(name="timeLastCollected")
7170
+ def time_last_collected(self) -> builtins.str:
7171
+ """
7172
+ 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`.
7173
+ """
7174
+ return pulumi.get(self, "time_last_collected")
7175
+
7176
+
6648
7177
  @pulumi.output_type
6649
7178
  class GetPipelineProcessOptionResult(dict):
6650
7179
  def __init__(__self__, *,
6651
7180
  initial_data_loads: Sequence['outputs.GetPipelineProcessOptionInitialDataLoadResult'],
6652
7181
  replicate_schema_changes: Sequence['outputs.GetPipelineProcessOptionReplicateSchemaChangeResult'],
6653
- should_restart_on_failure: builtins.str):
7182
+ should_restart_on_failure: builtins.str,
7183
+ start_using_default_mapping: builtins.str):
6654
7184
  """
6655
7185
  :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
7186
  :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
7187
  :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.
7188
+ :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
7189
  """
6659
7190
  pulumi.set(__self__, "initial_data_loads", initial_data_loads)
6660
7191
  pulumi.set(__self__, "replicate_schema_changes", replicate_schema_changes)
6661
7192
  pulumi.set(__self__, "should_restart_on_failure", should_restart_on_failure)
7193
+ pulumi.set(__self__, "start_using_default_mapping", start_using_default_mapping)
6662
7194
 
6663
7195
  @property
6664
7196
  @pulumi.getter(name="initialDataLoads")
@@ -6684,6 +7216,14 @@ class GetPipelineProcessOptionResult(dict):
6684
7216
  """
6685
7217
  return pulumi.get(self, "should_restart_on_failure")
6686
7218
 
7219
+ @property
7220
+ @pulumi.getter(name="startUsingDefaultMapping")
7221
+ def start_using_default_mapping(self) -> builtins.str:
7222
+ """
7223
+ 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.
7224
+ """
7225
+ return pulumi.get(self, "start_using_default_mapping")
7226
+
6687
7227
 
6688
7228
  @pulumi.output_type
6689
7229
  class GetPipelineProcessOptionInitialDataLoadResult(dict):
@@ -7128,6 +7668,7 @@ class GetPipelinesPipelineCollectionItemResult(dict):
7128
7668
  lifecycle_sub_state: builtins.str,
7129
7669
  locks: Sequence['outputs.GetPipelinesPipelineCollectionItemLockResult'],
7130
7670
  mapping_rules: Sequence['outputs.GetPipelinesPipelineCollectionItemMappingRuleResult'],
7671
+ pipeline_diagnostic_datas: Sequence['outputs.GetPipelinesPipelineCollectionItemPipelineDiagnosticDataResult'],
7131
7672
  process_options: Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionResult'],
7132
7673
  recipe_type: builtins.str,
7133
7674
  source_connection_details: Sequence['outputs.GetPipelinesPipelineCollectionItemSourceConnectionDetailResult'],
@@ -7151,6 +7692,7 @@ class GetPipelinesPipelineCollectionItemResult(dict):
7151
7692
  :param builtins.str lifecycle_sub_state: A filtered list of pipelines to return for a given lifecycleSubState.
7152
7693
  :param Sequence['GetPipelinesPipelineCollectionItemLockArgs'] locks: Locks associated with this resource.
7153
7694
  :param Sequence['GetPipelinesPipelineCollectionItemMappingRuleArgs'] mapping_rules: Mapping for source/target schema/tables for the pipeline data replication.
7695
+ :param Sequence['GetPipelinesPipelineCollectionItemPipelineDiagnosticDataArgs'] pipeline_diagnostic_datas: Information regarding the pipeline diagnostic collection
7154
7696
  :param Sequence['GetPipelinesPipelineCollectionItemProcessOptionArgs'] process_options: Required pipeline options to configure the replication process (Extract or Replicat).
7155
7697
  :param builtins.str recipe_type: The type of the recipe
7156
7698
  :param Sequence['GetPipelinesPipelineCollectionItemSourceConnectionDetailArgs'] source_connection_details: The source connection details for creating a pipeline.
@@ -7174,6 +7716,7 @@ class GetPipelinesPipelineCollectionItemResult(dict):
7174
7716
  pulumi.set(__self__, "lifecycle_sub_state", lifecycle_sub_state)
7175
7717
  pulumi.set(__self__, "locks", locks)
7176
7718
  pulumi.set(__self__, "mapping_rules", mapping_rules)
7719
+ pulumi.set(__self__, "pipeline_diagnostic_datas", pipeline_diagnostic_datas)
7177
7720
  pulumi.set(__self__, "process_options", process_options)
7178
7721
  pulumi.set(__self__, "recipe_type", recipe_type)
7179
7722
  pulumi.set(__self__, "source_connection_details", source_connection_details)
@@ -7288,6 +7831,14 @@ class GetPipelinesPipelineCollectionItemResult(dict):
7288
7831
  """
7289
7832
  return pulumi.get(self, "mapping_rules")
7290
7833
 
7834
+ @property
7835
+ @pulumi.getter(name="pipelineDiagnosticDatas")
7836
+ def pipeline_diagnostic_datas(self) -> Sequence['outputs.GetPipelinesPipelineCollectionItemPipelineDiagnosticDataResult']:
7837
+ """
7838
+ Information regarding the pipeline diagnostic collection
7839
+ """
7840
+ return pulumi.get(self, "pipeline_diagnostic_datas")
7841
+
7291
7842
  @property
7292
7843
  @pulumi.getter(name="processOptions")
7293
7844
  def process_options(self) -> Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionResult']:
@@ -7430,20 +7981,85 @@ class GetPipelinesPipelineCollectionItemMappingRuleResult(dict):
7430
7981
  return pulumi.get(self, "target")
7431
7982
 
7432
7983
 
7984
+ @pulumi.output_type
7985
+ class GetPipelinesPipelineCollectionItemPipelineDiagnosticDataResult(dict):
7986
+ def __init__(__self__, *,
7987
+ bucket: builtins.str,
7988
+ diagnostic_state: builtins.str,
7989
+ namespace: builtins.str,
7990
+ object: builtins.str,
7991
+ time_last_collected: builtins.str):
7992
+ """
7993
+ :param builtins.str bucket: Name of the bucket where the object is to be uploaded in the object storage
7994
+ :param builtins.str diagnostic_state: The state of the pipeline diagnostics collection.
7995
+ :param builtins.str namespace: Name of namespace that serves as a container for all of your buckets
7996
+ :param builtins.str object: Name of the diagnostic collected and uploaded to object storage
7997
+ :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`.
7998
+ """
7999
+ pulumi.set(__self__, "bucket", bucket)
8000
+ pulumi.set(__self__, "diagnostic_state", diagnostic_state)
8001
+ pulumi.set(__self__, "namespace", namespace)
8002
+ pulumi.set(__self__, "object", object)
8003
+ pulumi.set(__self__, "time_last_collected", time_last_collected)
8004
+
8005
+ @property
8006
+ @pulumi.getter
8007
+ def bucket(self) -> builtins.str:
8008
+ """
8009
+ Name of the bucket where the object is to be uploaded in the object storage
8010
+ """
8011
+ return pulumi.get(self, "bucket")
8012
+
8013
+ @property
8014
+ @pulumi.getter(name="diagnosticState")
8015
+ def diagnostic_state(self) -> builtins.str:
8016
+ """
8017
+ The state of the pipeline diagnostics collection.
8018
+ """
8019
+ return pulumi.get(self, "diagnostic_state")
8020
+
8021
+ @property
8022
+ @pulumi.getter
8023
+ def namespace(self) -> builtins.str:
8024
+ """
8025
+ Name of namespace that serves as a container for all of your buckets
8026
+ """
8027
+ return pulumi.get(self, "namespace")
8028
+
8029
+ @property
8030
+ @pulumi.getter
8031
+ def object(self) -> builtins.str:
8032
+ """
8033
+ Name of the diagnostic collected and uploaded to object storage
8034
+ """
8035
+ return pulumi.get(self, "object")
8036
+
8037
+ @property
8038
+ @pulumi.getter(name="timeLastCollected")
8039
+ def time_last_collected(self) -> builtins.str:
8040
+ """
8041
+ 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`.
8042
+ """
8043
+ return pulumi.get(self, "time_last_collected")
8044
+
8045
+
7433
8046
  @pulumi.output_type
7434
8047
  class GetPipelinesPipelineCollectionItemProcessOptionResult(dict):
7435
8048
  def __init__(__self__, *,
7436
8049
  initial_data_loads: Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionInitialDataLoadResult'],
7437
8050
  replicate_schema_changes: Sequence['outputs.GetPipelinesPipelineCollectionItemProcessOptionReplicateSchemaChangeResult'],
7438
- should_restart_on_failure: builtins.str):
8051
+ should_restart_on_failure: builtins.str,
8052
+ start_using_default_mapping: builtins.str):
7439
8053
  """
7440
8054
  :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
8055
  :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
8056
  :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.
8057
+ :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
8058
  """
7444
8059
  pulumi.set(__self__, "initial_data_loads", initial_data_loads)
7445
8060
  pulumi.set(__self__, "replicate_schema_changes", replicate_schema_changes)
7446
8061
  pulumi.set(__self__, "should_restart_on_failure", should_restart_on_failure)
8062
+ pulumi.set(__self__, "start_using_default_mapping", start_using_default_mapping)
7447
8063
 
7448
8064
  @property
7449
8065
  @pulumi.getter(name="initialDataLoads")
@@ -7469,6 +8085,14 @@ class GetPipelinesPipelineCollectionItemProcessOptionResult(dict):
7469
8085
  """
7470
8086
  return pulumi.get(self, "should_restart_on_failure")
7471
8087
 
8088
+ @property
8089
+ @pulumi.getter(name="startUsingDefaultMapping")
8090
+ def start_using_default_mapping(self) -> builtins.str:
8091
+ """
8092
+ 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.
8093
+ """
8094
+ return pulumi.get(self, "start_using_default_mapping")
8095
+
7472
8096
 
7473
8097
  @pulumi.output_type
7474
8098
  class GetPipelinesPipelineCollectionItemProcessOptionInitialDataLoadResult(dict):