pulumi-oci 1.38.0a1717181239__py3-none-any.whl → 1.39.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 (35) hide show
  1. pulumi_oci/__init__.py +11 -0
  2. pulumi_oci/database/__init__.py +1 -0
  3. pulumi_oci/database/_inputs.py +44 -4
  4. pulumi_oci/database/autonomous_database.py +61 -14
  5. pulumi_oci/database/cloud_autonomous_vm_cluster.py +25 -7
  6. pulumi_oci/database/get_autonomous_character_sets.py +4 -0
  7. pulumi_oci/database/get_autonomous_database.py +14 -1
  8. pulumi_oci/database/get_autonomous_database_peers.py +133 -0
  9. pulumi_oci/database/outputs.py +102 -6
  10. pulumi_oci/demandsignal/__init__.py +12 -0
  11. pulumi_oci/demandsignal/_inputs.py +267 -0
  12. pulumi_oci/demandsignal/get_occ_demand_signal.py +259 -0
  13. pulumi_oci/demandsignal/get_occ_demand_signals.py +183 -0
  14. pulumi_oci/demandsignal/occ_demand_signal.py +630 -0
  15. pulumi_oci/demandsignal/outputs.py +700 -0
  16. pulumi_oci/goldengate/_inputs.py +219 -6
  17. pulumi_oci/goldengate/connection.py +334 -0
  18. pulumi_oci/goldengate/connection_assignment.py +68 -19
  19. pulumi_oci/goldengate/deployment.py +88 -7
  20. pulumi_oci/goldengate/deployment_backup.py +122 -3
  21. pulumi_oci/goldengate/deployment_certificate.py +59 -10
  22. pulumi_oci/goldengate/get_connection.py +80 -1
  23. pulumi_oci/goldengate/get_connection_assignment.py +11 -1
  24. pulumi_oci/goldengate/get_deployment.py +25 -2
  25. pulumi_oci/goldengate/get_deployment_backup.py +38 -1
  26. pulumi_oci/goldengate/get_deployment_certificate.py +12 -2
  27. pulumi_oci/goldengate/get_deployment_certificates.py +3 -0
  28. pulumi_oci/goldengate/get_trail_files.py +2 -2
  29. pulumi_oci/goldengate/get_trail_sequences.py +2 -2
  30. pulumi_oci/goldengate/outputs.py +720 -12
  31. pulumi_oci/pulumi-plugin.json +1 -1
  32. {pulumi_oci-1.38.0a1717181239.dist-info → pulumi_oci-1.39.0.dist-info}/METADATA +1 -1
  33. {pulumi_oci-1.38.0a1717181239.dist-info → pulumi_oci-1.39.0.dist-info}/RECORD +35 -28
  34. {pulumi_oci-1.38.0a1717181239.dist-info → pulumi_oci-1.39.0.dist-info}/WHEEL +0 -0
  35. {pulumi_oci-1.38.0a1717181239.dist-info → pulumi_oci-1.39.0.dist-info}/top_level.txt +0 -0
@@ -14,8 +14,11 @@ __all__ = [
14
14
  'ConnectionAdditionalAttribute',
15
15
  'ConnectionBootstrapServer',
16
16
  'ConnectionIngressIp',
17
+ 'ConnectionLock',
18
+ 'DeploymentBackupLock',
17
19
  'DeploymentDeploymentDiagnosticData',
18
20
  'DeploymentIngressIp',
21
+ 'DeploymentLock',
19
22
  'DeploymentMaintenanceConfiguration',
20
23
  'DeploymentMaintenanceWindow',
21
24
  'DeploymentOggData',
@@ -25,23 +28,28 @@ __all__ = [
25
28
  'GetConnectionAssignmentsFilterResult',
26
29
  'GetConnectionBootstrapServerResult',
27
30
  'GetConnectionIngressIpResult',
31
+ 'GetConnectionLockResult',
28
32
  'GetConnectionsConnectionCollectionResult',
29
33
  'GetConnectionsConnectionCollectionItemResult',
30
34
  'GetConnectionsConnectionCollectionItemAdditionalAttributeResult',
31
35
  'GetConnectionsConnectionCollectionItemBootstrapServerResult',
32
36
  'GetConnectionsConnectionCollectionItemIngressIpResult',
37
+ 'GetConnectionsConnectionCollectionItemLockResult',
33
38
  'GetConnectionsFilterResult',
34
39
  'GetDatabaseRegistrationsDatabaseRegistrationCollectionResult',
35
40
  'GetDatabaseRegistrationsDatabaseRegistrationCollectionItemResult',
36
41
  'GetDatabaseRegistrationsFilterResult',
42
+ 'GetDeploymentBackupLockResult',
37
43
  'GetDeploymentBackupsDeploymentBackupCollectionResult',
38
44
  'GetDeploymentBackupsDeploymentBackupCollectionItemResult',
45
+ 'GetDeploymentBackupsDeploymentBackupCollectionItemLockResult',
39
46
  'GetDeploymentBackupsFilterResult',
40
47
  'GetDeploymentCertificatesCertificateCollectionResult',
41
48
  'GetDeploymentCertificatesCertificateCollectionItemResult',
42
49
  'GetDeploymentCertificatesFilterResult',
43
50
  'GetDeploymentDeploymentDiagnosticDataResult',
44
51
  'GetDeploymentIngressIpResult',
52
+ 'GetDeploymentLockResult',
45
53
  'GetDeploymentMaintenanceConfigurationResult',
46
54
  'GetDeploymentMaintenanceWindowResult',
47
55
  'GetDeploymentOggDataResult',
@@ -59,6 +67,7 @@ __all__ = [
59
67
  'GetDeploymentsDeploymentCollectionItemResult',
60
68
  'GetDeploymentsDeploymentCollectionItemDeploymentDiagnosticDataResult',
61
69
  'GetDeploymentsDeploymentCollectionItemIngressIpResult',
70
+ 'GetDeploymentsDeploymentCollectionItemLockResult',
62
71
  'GetDeploymentsDeploymentCollectionItemMaintenanceConfigurationResult',
63
72
  'GetDeploymentsDeploymentCollectionItemMaintenanceWindowResult',
64
73
  'GetDeploymentsDeploymentCollectionItemOggDataResult',
@@ -206,6 +215,152 @@ class ConnectionIngressIp(dict):
206
215
  return pulumi.get(self, "ingress_ip")
207
216
 
208
217
 
218
+ @pulumi.output_type
219
+ class ConnectionLock(dict):
220
+ @staticmethod
221
+ def __key_warning(key: str):
222
+ suggest = None
223
+ if key == "relatedResourceId":
224
+ suggest = "related_resource_id"
225
+ elif key == "timeCreated":
226
+ suggest = "time_created"
227
+
228
+ if suggest:
229
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionLock. Access the value via the '{suggest}' property getter instead.")
230
+
231
+ def __getitem__(self, key: str) -> Any:
232
+ ConnectionLock.__key_warning(key)
233
+ return super().__getitem__(key)
234
+
235
+ def get(self, key: str, default = None) -> Any:
236
+ ConnectionLock.__key_warning(key)
237
+ return super().get(key, default)
238
+
239
+ def __init__(__self__, *,
240
+ type: str,
241
+ message: Optional[str] = None,
242
+ related_resource_id: Optional[str] = None,
243
+ time_created: Optional[str] = None):
244
+ """
245
+ :param str type: Type of the lock.
246
+ :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.
247
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
248
+ :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`.
249
+ """
250
+ pulumi.set(__self__, "type", type)
251
+ if message is not None:
252
+ pulumi.set(__self__, "message", message)
253
+ if related_resource_id is not None:
254
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
255
+ if time_created is not None:
256
+ pulumi.set(__self__, "time_created", time_created)
257
+
258
+ @property
259
+ @pulumi.getter
260
+ def type(self) -> str:
261
+ """
262
+ Type of the lock.
263
+ """
264
+ return pulumi.get(self, "type")
265
+
266
+ @property
267
+ @pulumi.getter
268
+ def message(self) -> Optional[str]:
269
+ """
270
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
271
+ """
272
+ return pulumi.get(self, "message")
273
+
274
+ @property
275
+ @pulumi.getter(name="relatedResourceId")
276
+ def related_resource_id(self) -> Optional[str]:
277
+ """
278
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
279
+ """
280
+ return pulumi.get(self, "related_resource_id")
281
+
282
+ @property
283
+ @pulumi.getter(name="timeCreated")
284
+ def time_created(self) -> Optional[str]:
285
+ """
286
+ 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`.
287
+ """
288
+ return pulumi.get(self, "time_created")
289
+
290
+
291
+ @pulumi.output_type
292
+ class DeploymentBackupLock(dict):
293
+ @staticmethod
294
+ def __key_warning(key: str):
295
+ suggest = None
296
+ if key == "relatedResourceId":
297
+ suggest = "related_resource_id"
298
+ elif key == "timeCreated":
299
+ suggest = "time_created"
300
+
301
+ if suggest:
302
+ pulumi.log.warn(f"Key '{key}' not found in DeploymentBackupLock. Access the value via the '{suggest}' property getter instead.")
303
+
304
+ def __getitem__(self, key: str) -> Any:
305
+ DeploymentBackupLock.__key_warning(key)
306
+ return super().__getitem__(key)
307
+
308
+ def get(self, key: str, default = None) -> Any:
309
+ DeploymentBackupLock.__key_warning(key)
310
+ return super().get(key, default)
311
+
312
+ def __init__(__self__, *,
313
+ type: str,
314
+ message: Optional[str] = None,
315
+ related_resource_id: Optional[str] = None,
316
+ time_created: Optional[str] = None):
317
+ """
318
+ :param str type: Type of the lock.
319
+ :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.
320
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
321
+ :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`.
322
+ """
323
+ pulumi.set(__self__, "type", type)
324
+ if message is not None:
325
+ pulumi.set(__self__, "message", message)
326
+ if related_resource_id is not None:
327
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
328
+ if time_created is not None:
329
+ pulumi.set(__self__, "time_created", time_created)
330
+
331
+ @property
332
+ @pulumi.getter
333
+ def type(self) -> str:
334
+ """
335
+ Type of the lock.
336
+ """
337
+ return pulumi.get(self, "type")
338
+
339
+ @property
340
+ @pulumi.getter
341
+ def message(self) -> Optional[str]:
342
+ """
343
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
344
+ """
345
+ return pulumi.get(self, "message")
346
+
347
+ @property
348
+ @pulumi.getter(name="relatedResourceId")
349
+ def related_resource_id(self) -> Optional[str]:
350
+ """
351
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
352
+ """
353
+ return pulumi.get(self, "related_resource_id")
354
+
355
+ @property
356
+ @pulumi.getter(name="timeCreated")
357
+ def time_created(self) -> Optional[str]:
358
+ """
359
+ 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`.
360
+ """
361
+ return pulumi.get(self, "time_created")
362
+
363
+
209
364
  @pulumi.output_type
210
365
  class DeploymentDeploymentDiagnosticData(dict):
211
366
  @staticmethod
@@ -342,6 +497,79 @@ class DeploymentIngressIp(dict):
342
497
  return pulumi.get(self, "ingress_ip")
343
498
 
344
499
 
500
+ @pulumi.output_type
501
+ class DeploymentLock(dict):
502
+ @staticmethod
503
+ def __key_warning(key: str):
504
+ suggest = None
505
+ if key == "relatedResourceId":
506
+ suggest = "related_resource_id"
507
+ elif key == "timeCreated":
508
+ suggest = "time_created"
509
+
510
+ if suggest:
511
+ pulumi.log.warn(f"Key '{key}' not found in DeploymentLock. Access the value via the '{suggest}' property getter instead.")
512
+
513
+ def __getitem__(self, key: str) -> Any:
514
+ DeploymentLock.__key_warning(key)
515
+ return super().__getitem__(key)
516
+
517
+ def get(self, key: str, default = None) -> Any:
518
+ DeploymentLock.__key_warning(key)
519
+ return super().get(key, default)
520
+
521
+ def __init__(__self__, *,
522
+ type: str,
523
+ message: Optional[str] = None,
524
+ related_resource_id: Optional[str] = None,
525
+ time_created: Optional[str] = None):
526
+ """
527
+ :param str type: Type of the lock.
528
+ :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.
529
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
530
+ :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`.
531
+ """
532
+ pulumi.set(__self__, "type", type)
533
+ if message is not None:
534
+ pulumi.set(__self__, "message", message)
535
+ if related_resource_id is not None:
536
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
537
+ if time_created is not None:
538
+ pulumi.set(__self__, "time_created", time_created)
539
+
540
+ @property
541
+ @pulumi.getter
542
+ def type(self) -> str:
543
+ """
544
+ Type of the lock.
545
+ """
546
+ return pulumi.get(self, "type")
547
+
548
+ @property
549
+ @pulumi.getter
550
+ def message(self) -> Optional[str]:
551
+ """
552
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
553
+ """
554
+ return pulumi.get(self, "message")
555
+
556
+ @property
557
+ @pulumi.getter(name="relatedResourceId")
558
+ def related_resource_id(self) -> Optional[str]:
559
+ """
560
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
561
+ """
562
+ return pulumi.get(self, "related_resource_id")
563
+
564
+ @property
565
+ @pulumi.getter(name="timeCreated")
566
+ def time_created(self) -> Optional[str]:
567
+ """
568
+ 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`.
569
+ """
570
+ return pulumi.get(self, "time_created")
571
+
572
+
345
573
  @pulumi.output_type
346
574
  class DeploymentMaintenanceConfiguration(dict):
347
575
  @staticmethod
@@ -525,11 +753,11 @@ class DeploymentOggData(dict):
525
753
  :param str deployment_name: The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
526
754
  :param str admin_password: (Updatable) The password associated with the GoldenGate deployment console username. The password must be 8 to 30 characters long and must contain at least 1 uppercase, 1 lowercase, 1 numeric, and 1 special character. Special characters such as ‘$’, ‘^’, or ‘?’ are not allowed. This field will be deprecated and replaced by "passwordSecretId".
527
755
  :param str admin_username: (Updatable) The GoldenGate deployment console username.
528
- :param str certificate: (Updatable) A PEM-encoded SSL certificate.
756
+ :param str certificate: (Updatable) The base64 encoded content of the PEM file containing the SSL certificate.
529
757
  :param str credential_store: (Updatable) The type of credential store for OGG.
530
758
  :param str identity_domain_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Identity Domain when IAM credential store is used.
531
- :param str key: (Updatable) A PEM-encoded private key.
532
- :param str ogg_version: (Updatable) Version of ogg to use by deployment. By updating version you can upgrade your deployment to a newer version. Downgrade to older version is not supported.
759
+ :param str key: (Updatable) The base64 encoded content of the PEM file containing the private key.
760
+ :param str ogg_version: Version of OGG
533
761
  :param str password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the deployment password is stored.
534
762
  """
535
763
  pulumi.set(__self__, "deployment_name", deployment_name)
@@ -578,7 +806,7 @@ class DeploymentOggData(dict):
578
806
  @pulumi.getter
579
807
  def certificate(self) -> Optional[str]:
580
808
  """
581
- (Updatable) A PEM-encoded SSL certificate.
809
+ (Updatable) The base64 encoded content of the PEM file containing the SSL certificate.
582
810
  """
583
811
  return pulumi.get(self, "certificate")
584
812
 
@@ -602,7 +830,7 @@ class DeploymentOggData(dict):
602
830
  @pulumi.getter
603
831
  def key(self) -> Optional[str]:
604
832
  """
605
- (Updatable) A PEM-encoded private key.
833
+ (Updatable) The base64 encoded content of the PEM file containing the private key.
606
834
  """
607
835
  return pulumi.get(self, "key")
608
836
 
@@ -610,7 +838,7 @@ class DeploymentOggData(dict):
610
838
  @pulumi.getter(name="oggVersion")
611
839
  def ogg_version(self) -> Optional[str]:
612
840
  """
613
- (Updatable) Version of ogg to use by deployment. By updating version you can upgrade your deployment to a newer version. Downgrade to older version is not supported.
841
+ Version of OGG
614
842
  """
615
843
  return pulumi.get(self, "ogg_version")
616
844
 
@@ -672,6 +900,7 @@ class GetConnectionAssignmentsConnectionAssignmentCollectionItemResult(dict):
672
900
  connection_id: str,
673
901
  deployment_id: str,
674
902
  id: str,
903
+ is_lock_override: bool,
675
904
  state: str,
676
905
  time_created: str,
677
906
  time_updated: str):
@@ -690,6 +919,7 @@ class GetConnectionAssignmentsConnectionAssignmentCollectionItemResult(dict):
690
919
  pulumi.set(__self__, "connection_id", connection_id)
691
920
  pulumi.set(__self__, "deployment_id", deployment_id)
692
921
  pulumi.set(__self__, "id", id)
922
+ pulumi.set(__self__, "is_lock_override", is_lock_override)
693
923
  pulumi.set(__self__, "state", state)
694
924
  pulumi.set(__self__, "time_created", time_created)
695
925
  pulumi.set(__self__, "time_updated", time_updated)
@@ -734,6 +964,11 @@ class GetConnectionAssignmentsConnectionAssignmentCollectionItemResult(dict):
734
964
  """
735
965
  return pulumi.get(self, "id")
736
966
 
967
+ @property
968
+ @pulumi.getter(name="isLockOverride")
969
+ def is_lock_override(self) -> bool:
970
+ return pulumi.get(self, "is_lock_override")
971
+
737
972
  @property
738
973
  @pulumi.getter
739
974
  def state(self) -> str:
@@ -856,6 +1091,57 @@ class GetConnectionIngressIpResult(dict):
856
1091
  return pulumi.get(self, "ingress_ip")
857
1092
 
858
1093
 
1094
+ @pulumi.output_type
1095
+ class GetConnectionLockResult(dict):
1096
+ def __init__(__self__, *,
1097
+ message: str,
1098
+ related_resource_id: str,
1099
+ time_created: str,
1100
+ type: str):
1101
+ """
1102
+ :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.
1103
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1104
+ :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`.
1105
+ :param str type: Type of the lock.
1106
+ """
1107
+ pulumi.set(__self__, "message", message)
1108
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
1109
+ pulumi.set(__self__, "time_created", time_created)
1110
+ pulumi.set(__self__, "type", type)
1111
+
1112
+ @property
1113
+ @pulumi.getter
1114
+ def message(self) -> str:
1115
+ """
1116
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1117
+ """
1118
+ return pulumi.get(self, "message")
1119
+
1120
+ @property
1121
+ @pulumi.getter(name="relatedResourceId")
1122
+ def related_resource_id(self) -> str:
1123
+ """
1124
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1125
+ """
1126
+ return pulumi.get(self, "related_resource_id")
1127
+
1128
+ @property
1129
+ @pulumi.getter(name="timeCreated")
1130
+ def time_created(self) -> str:
1131
+ """
1132
+ 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`.
1133
+ """
1134
+ return pulumi.get(self, "time_created")
1135
+
1136
+ @property
1137
+ @pulumi.getter
1138
+ def type(self) -> str:
1139
+ """
1140
+ Type of the lock.
1141
+ """
1142
+ return pulumi.get(self, "type")
1143
+
1144
+
859
1145
  @pulumi.output_type
860
1146
  class GetConnectionsConnectionCollectionResult(dict):
861
1147
  def __init__(__self__, *,
@@ -875,6 +1161,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
875
1161
  account_key: str,
876
1162
  account_name: str,
877
1163
  additional_attributes: Sequence['outputs.GetConnectionsConnectionCollectionItemAdditionalAttributeResult'],
1164
+ authentication_mode: str,
878
1165
  authentication_type: str,
879
1166
  azure_tenant_id: str,
880
1167
  bootstrap_servers: Sequence['outputs.GetConnectionsConnectionCollectionItemBootstrapServerResult'],
@@ -900,6 +1187,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
900
1187
  host: str,
901
1188
  id: str,
902
1189
  ingress_ips: Sequence['outputs.GetConnectionsConnectionCollectionItemIngressIpResult'],
1190
+ is_lock_override: bool,
903
1191
  jndi_connection_factory: str,
904
1192
  jndi_initial_context_factory: str,
905
1193
  jndi_provider_url: str,
@@ -909,6 +1197,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
909
1197
  key_store: str,
910
1198
  key_store_password: str,
911
1199
  lifecycle_details: str,
1200
+ locks: Sequence['outputs.GetConnectionsConnectionCollectionItemLockResult'],
912
1201
  nsg_ids: Sequence[str],
913
1202
  password: str,
914
1203
  port: int,
@@ -917,6 +1206,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
917
1206
  private_key_passphrase: str,
918
1207
  producer_properties: str,
919
1208
  public_key_fingerprint: str,
1209
+ redis_cluster_id: str,
920
1210
  region: str,
921
1211
  routing_method: str,
922
1212
  sas_token: str,
@@ -929,10 +1219,13 @@ class GetConnectionsConnectionCollectionItemResult(dict):
929
1219
  should_validate_server_certificate: bool,
930
1220
  ssl_ca: str,
931
1221
  ssl_cert: str,
1222
+ ssl_client_keystash: str,
1223
+ ssl_client_keystoredb: str,
932
1224
  ssl_crl: str,
933
1225
  ssl_key: str,
934
1226
  ssl_key_password: str,
935
1227
  ssl_mode: str,
1228
+ ssl_server_certificate: str,
936
1229
  state: str,
937
1230
  stream_pool_id: str,
938
1231
  subnet_id: str,
@@ -952,6 +1245,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
952
1245
  :param str access_key_id: Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
953
1246
  :param str account_name: Sets the Azure storage account name.
954
1247
  :param Sequence['GetConnectionsConnectionCollectionItemAdditionalAttributeArgs'] additional_attributes: An array of name-value pair attribute entries. Used as additional parameters in connection string.
1248
+ :param str authentication_mode: Authentication mode. It can be provided at creation of Oracle Autonomous Database Serverless connections, when a databaseId is provided. The default value is MTLS.
955
1249
  :param str authentication_type: Used authentication mechanism to be provided for the following connection types:
956
1250
  * SNOWFLAKE, AZURE_DATA_LAKE_STORAGE, ELASTICSEARCH, KAFKA_SCHEMA_REGISTRY, REDIS
957
1251
  * JAVA_MESSAGE_SERVICE - If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
@@ -987,10 +1281,12 @@ class GetConnectionsConnectionCollectionItemResult(dict):
987
1281
  :param str jndi_security_principal: Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
988
1282
  :param str key_id: Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
989
1283
  :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.
1284
+ :param Sequence['GetConnectionsConnectionCollectionItemLockArgs'] locks: Locks associated with this resource.
990
1285
  :param Sequence[str] nsg_ids: An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
991
1286
  :param int port: The port of an endpoint usually specified for a connection.
992
1287
  :param str private_ip: Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
993
1288
  The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
1289
+ :param str redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
994
1290
  :param str region: The name of the region. e.g.: us-ashburn-1
995
1291
  :param str routing_method: Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.
996
1292
  :param str security_protocol: Security Protocol to be provided for the following connection types:
@@ -1020,6 +1316,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1020
1316
  pulumi.set(__self__, "account_key", account_key)
1021
1317
  pulumi.set(__self__, "account_name", account_name)
1022
1318
  pulumi.set(__self__, "additional_attributes", additional_attributes)
1319
+ pulumi.set(__self__, "authentication_mode", authentication_mode)
1023
1320
  pulumi.set(__self__, "authentication_type", authentication_type)
1024
1321
  pulumi.set(__self__, "azure_tenant_id", azure_tenant_id)
1025
1322
  pulumi.set(__self__, "bootstrap_servers", bootstrap_servers)
@@ -1045,6 +1342,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1045
1342
  pulumi.set(__self__, "host", host)
1046
1343
  pulumi.set(__self__, "id", id)
1047
1344
  pulumi.set(__self__, "ingress_ips", ingress_ips)
1345
+ pulumi.set(__self__, "is_lock_override", is_lock_override)
1048
1346
  pulumi.set(__self__, "jndi_connection_factory", jndi_connection_factory)
1049
1347
  pulumi.set(__self__, "jndi_initial_context_factory", jndi_initial_context_factory)
1050
1348
  pulumi.set(__self__, "jndi_provider_url", jndi_provider_url)
@@ -1054,6 +1352,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1054
1352
  pulumi.set(__self__, "key_store", key_store)
1055
1353
  pulumi.set(__self__, "key_store_password", key_store_password)
1056
1354
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
1355
+ pulumi.set(__self__, "locks", locks)
1057
1356
  pulumi.set(__self__, "nsg_ids", nsg_ids)
1058
1357
  pulumi.set(__self__, "password", password)
1059
1358
  pulumi.set(__self__, "port", port)
@@ -1062,6 +1361,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1062
1361
  pulumi.set(__self__, "private_key_passphrase", private_key_passphrase)
1063
1362
  pulumi.set(__self__, "producer_properties", producer_properties)
1064
1363
  pulumi.set(__self__, "public_key_fingerprint", public_key_fingerprint)
1364
+ pulumi.set(__self__, "redis_cluster_id", redis_cluster_id)
1065
1365
  pulumi.set(__self__, "region", region)
1066
1366
  pulumi.set(__self__, "routing_method", routing_method)
1067
1367
  pulumi.set(__self__, "sas_token", sas_token)
@@ -1074,10 +1374,13 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1074
1374
  pulumi.set(__self__, "should_validate_server_certificate", should_validate_server_certificate)
1075
1375
  pulumi.set(__self__, "ssl_ca", ssl_ca)
1076
1376
  pulumi.set(__self__, "ssl_cert", ssl_cert)
1377
+ pulumi.set(__self__, "ssl_client_keystash", ssl_client_keystash)
1378
+ pulumi.set(__self__, "ssl_client_keystoredb", ssl_client_keystoredb)
1077
1379
  pulumi.set(__self__, "ssl_crl", ssl_crl)
1078
1380
  pulumi.set(__self__, "ssl_key", ssl_key)
1079
1381
  pulumi.set(__self__, "ssl_key_password", ssl_key_password)
1080
1382
  pulumi.set(__self__, "ssl_mode", ssl_mode)
1383
+ pulumi.set(__self__, "ssl_server_certificate", ssl_server_certificate)
1081
1384
  pulumi.set(__self__, "state", state)
1082
1385
  pulumi.set(__self__, "stream_pool_id", stream_pool_id)
1083
1386
  pulumi.set(__self__, "subnet_id", subnet_id)
@@ -1123,6 +1426,14 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1123
1426
  """
1124
1427
  return pulumi.get(self, "additional_attributes")
1125
1428
 
1429
+ @property
1430
+ @pulumi.getter(name="authenticationMode")
1431
+ def authentication_mode(self) -> str:
1432
+ """
1433
+ Authentication mode. It can be provided at creation of Oracle Autonomous Database Serverless connections, when a databaseId is provided. The default value is MTLS.
1434
+ """
1435
+ return pulumi.get(self, "authentication_mode")
1436
+
1126
1437
  @property
1127
1438
  @pulumi.getter(name="authenticationType")
1128
1439
  def authentication_type(self) -> str:
@@ -1319,6 +1630,11 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1319
1630
  """
1320
1631
  return pulumi.get(self, "ingress_ips")
1321
1632
 
1633
+ @property
1634
+ @pulumi.getter(name="isLockOverride")
1635
+ def is_lock_override(self) -> bool:
1636
+ return pulumi.get(self, "is_lock_override")
1637
+
1322
1638
  @property
1323
1639
  @pulumi.getter(name="jndiConnectionFactory")
1324
1640
  def jndi_connection_factory(self) -> str:
@@ -1382,6 +1698,14 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1382
1698
  """
1383
1699
  return pulumi.get(self, "lifecycle_details")
1384
1700
 
1701
+ @property
1702
+ @pulumi.getter
1703
+ def locks(self) -> Sequence['outputs.GetConnectionsConnectionCollectionItemLockResult']:
1704
+ """
1705
+ Locks associated with this resource.
1706
+ """
1707
+ return pulumi.get(self, "locks")
1708
+
1385
1709
  @property
1386
1710
  @pulumi.getter(name="nsgIds")
1387
1711
  def nsg_ids(self) -> Sequence[str]:
@@ -1432,6 +1756,14 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1432
1756
  def public_key_fingerprint(self) -> str:
1433
1757
  return pulumi.get(self, "public_key_fingerprint")
1434
1758
 
1759
+ @property
1760
+ @pulumi.getter(name="redisClusterId")
1761
+ def redis_cluster_id(self) -> str:
1762
+ """
1763
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
1764
+ """
1765
+ return pulumi.get(self, "redis_cluster_id")
1766
+
1435
1767
  @property
1436
1768
  @pulumi.getter
1437
1769
  def region(self) -> str:
@@ -1519,6 +1851,16 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1519
1851
  def ssl_cert(self) -> str:
1520
1852
  return pulumi.get(self, "ssl_cert")
1521
1853
 
1854
+ @property
1855
+ @pulumi.getter(name="sslClientKeystash")
1856
+ def ssl_client_keystash(self) -> str:
1857
+ return pulumi.get(self, "ssl_client_keystash")
1858
+
1859
+ @property
1860
+ @pulumi.getter(name="sslClientKeystoredb")
1861
+ def ssl_client_keystoredb(self) -> str:
1862
+ return pulumi.get(self, "ssl_client_keystoredb")
1863
+
1522
1864
  @property
1523
1865
  @pulumi.getter(name="sslCrl")
1524
1866
  def ssl_crl(self) -> str:
@@ -1542,6 +1884,11 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1542
1884
  """
1543
1885
  return pulumi.get(self, "ssl_mode")
1544
1886
 
1887
+ @property
1888
+ @pulumi.getter(name="sslServerCertificate")
1889
+ def ssl_server_certificate(self) -> str:
1890
+ return pulumi.get(self, "ssl_server_certificate")
1891
+
1545
1892
  @property
1546
1893
  @pulumi.getter
1547
1894
  def state(self) -> str:
@@ -1747,6 +2094,57 @@ class GetConnectionsConnectionCollectionItemIngressIpResult(dict):
1747
2094
  return pulumi.get(self, "ingress_ip")
1748
2095
 
1749
2096
 
2097
+ @pulumi.output_type
2098
+ class GetConnectionsConnectionCollectionItemLockResult(dict):
2099
+ def __init__(__self__, *,
2100
+ message: str,
2101
+ related_resource_id: str,
2102
+ time_created: str,
2103
+ type: str):
2104
+ """
2105
+ :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.
2106
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
2107
+ :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`.
2108
+ :param str type: Type of the lock.
2109
+ """
2110
+ pulumi.set(__self__, "message", message)
2111
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
2112
+ pulumi.set(__self__, "time_created", time_created)
2113
+ pulumi.set(__self__, "type", type)
2114
+
2115
+ @property
2116
+ @pulumi.getter
2117
+ def message(self) -> str:
2118
+ """
2119
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
2120
+ """
2121
+ return pulumi.get(self, "message")
2122
+
2123
+ @property
2124
+ @pulumi.getter(name="relatedResourceId")
2125
+ def related_resource_id(self) -> str:
2126
+ """
2127
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
2128
+ """
2129
+ return pulumi.get(self, "related_resource_id")
2130
+
2131
+ @property
2132
+ @pulumi.getter(name="timeCreated")
2133
+ def time_created(self) -> str:
2134
+ """
2135
+ 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`.
2136
+ """
2137
+ return pulumi.get(self, "time_created")
2138
+
2139
+ @property
2140
+ @pulumi.getter
2141
+ def type(self) -> str:
2142
+ """
2143
+ Type of the lock.
2144
+ """
2145
+ return pulumi.get(self, "type")
2146
+
2147
+
1750
2148
  @pulumi.output_type
1751
2149
  class GetConnectionsFilterResult(dict):
1752
2150
  def __init__(__self__, *,
@@ -2104,6 +2502,57 @@ class GetDatabaseRegistrationsFilterResult(dict):
2104
2502
  return pulumi.get(self, "regex")
2105
2503
 
2106
2504
 
2505
+ @pulumi.output_type
2506
+ class GetDeploymentBackupLockResult(dict):
2507
+ def __init__(__self__, *,
2508
+ message: str,
2509
+ related_resource_id: str,
2510
+ time_created: str,
2511
+ type: str):
2512
+ """
2513
+ :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.
2514
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
2515
+ :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`.
2516
+ :param str type: Type of the lock.
2517
+ """
2518
+ pulumi.set(__self__, "message", message)
2519
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
2520
+ pulumi.set(__self__, "time_created", time_created)
2521
+ pulumi.set(__self__, "type", type)
2522
+
2523
+ @property
2524
+ @pulumi.getter
2525
+ def message(self) -> str:
2526
+ """
2527
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
2528
+ """
2529
+ return pulumi.get(self, "message")
2530
+
2531
+ @property
2532
+ @pulumi.getter(name="relatedResourceId")
2533
+ def related_resource_id(self) -> str:
2534
+ """
2535
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
2536
+ """
2537
+ return pulumi.get(self, "related_resource_id")
2538
+
2539
+ @property
2540
+ @pulumi.getter(name="timeCreated")
2541
+ def time_created(self) -> str:
2542
+ """
2543
+ 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`.
2544
+ """
2545
+ return pulumi.get(self, "time_created")
2546
+
2547
+ @property
2548
+ @pulumi.getter
2549
+ def type(self) -> str:
2550
+ """
2551
+ Type of the lock.
2552
+ """
2553
+ return pulumi.get(self, "type")
2554
+
2555
+
2107
2556
  @pulumi.output_type
2108
2557
  class GetDeploymentBackupsDeploymentBackupCollectionResult(dict):
2109
2558
  def __init__(__self__, *,
@@ -2124,11 +2573,14 @@ class GetDeploymentBackupsDeploymentBackupCollectionItemResult(dict):
2124
2573
  compartment_id: str,
2125
2574
  defined_tags: Mapping[str, Any],
2126
2575
  deployment_id: str,
2576
+ deployment_type: str,
2127
2577
  display_name: str,
2128
2578
  freeform_tags: Mapping[str, Any],
2129
2579
  id: str,
2130
2580
  is_automatic: bool,
2581
+ is_lock_override: bool,
2131
2582
  lifecycle_details: str,
2583
+ locks: Sequence['outputs.GetDeploymentBackupsDeploymentBackupCollectionItemLockResult'],
2132
2584
  namespace: str,
2133
2585
  object: str,
2134
2586
  ogg_version: str,
@@ -2145,11 +2597,13 @@ class GetDeploymentBackupsDeploymentBackupCollectionItemResult(dict):
2145
2597
  :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.
2146
2598
  :param Mapping[str, Any] defined_tags: Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
2147
2599
  :param str deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment in which to list resources.
2600
+ :param 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'.
2148
2601
  :param str display_name: A filter to return only the resources that match the entire 'displayName' given.
2149
2602
  :param Mapping[str, Any] 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"}`
2150
2603
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup being referenced.
2151
2604
  :param bool is_automatic: True if this object is automatically created
2152
2605
  :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.
2606
+ :param Sequence['GetDeploymentBackupsDeploymentBackupCollectionItemLockArgs'] locks: Locks associated with this resource.
2153
2607
  :param str namespace: Name of namespace that serves as a container for all of your buckets
2154
2608
  :param str object: Name of the object to be uploaded to object storage
2155
2609
  :param str ogg_version: Version of OGG
@@ -2166,11 +2620,14 @@ class GetDeploymentBackupsDeploymentBackupCollectionItemResult(dict):
2166
2620
  pulumi.set(__self__, "compartment_id", compartment_id)
2167
2621
  pulumi.set(__self__, "defined_tags", defined_tags)
2168
2622
  pulumi.set(__self__, "deployment_id", deployment_id)
2623
+ pulumi.set(__self__, "deployment_type", deployment_type)
2169
2624
  pulumi.set(__self__, "display_name", display_name)
2170
2625
  pulumi.set(__self__, "freeform_tags", freeform_tags)
2171
2626
  pulumi.set(__self__, "id", id)
2172
2627
  pulumi.set(__self__, "is_automatic", is_automatic)
2628
+ pulumi.set(__self__, "is_lock_override", is_lock_override)
2173
2629
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
2630
+ pulumi.set(__self__, "locks", locks)
2174
2631
  pulumi.set(__self__, "namespace", namespace)
2175
2632
  pulumi.set(__self__, "object", object)
2176
2633
  pulumi.set(__self__, "ogg_version", ogg_version)
@@ -2222,6 +2679,14 @@ class GetDeploymentBackupsDeploymentBackupCollectionItemResult(dict):
2222
2679
  """
2223
2680
  return pulumi.get(self, "deployment_id")
2224
2681
 
2682
+ @property
2683
+ @pulumi.getter(name="deploymentType")
2684
+ def deployment_type(self) -> str:
2685
+ """
2686
+ 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'.
2687
+ """
2688
+ return pulumi.get(self, "deployment_type")
2689
+
2225
2690
  @property
2226
2691
  @pulumi.getter(name="displayName")
2227
2692
  def display_name(self) -> str:
@@ -2254,6 +2719,11 @@ class GetDeploymentBackupsDeploymentBackupCollectionItemResult(dict):
2254
2719
  """
2255
2720
  return pulumi.get(self, "is_automatic")
2256
2721
 
2722
+ @property
2723
+ @pulumi.getter(name="isLockOverride")
2724
+ def is_lock_override(self) -> bool:
2725
+ return pulumi.get(self, "is_lock_override")
2726
+
2257
2727
  @property
2258
2728
  @pulumi.getter(name="lifecycleDetails")
2259
2729
  def lifecycle_details(self) -> str:
@@ -2262,6 +2732,14 @@ class GetDeploymentBackupsDeploymentBackupCollectionItemResult(dict):
2262
2732
  """
2263
2733
  return pulumi.get(self, "lifecycle_details")
2264
2734
 
2735
+ @property
2736
+ @pulumi.getter
2737
+ def locks(self) -> Sequence['outputs.GetDeploymentBackupsDeploymentBackupCollectionItemLockResult']:
2738
+ """
2739
+ Locks associated with this resource.
2740
+ """
2741
+ return pulumi.get(self, "locks")
2742
+
2265
2743
  @property
2266
2744
  @pulumi.getter
2267
2745
  def namespace(self) -> str:
@@ -2343,6 +2821,57 @@ class GetDeploymentBackupsDeploymentBackupCollectionItemResult(dict):
2343
2821
  return pulumi.get(self, "time_updated")
2344
2822
 
2345
2823
 
2824
+ @pulumi.output_type
2825
+ class GetDeploymentBackupsDeploymentBackupCollectionItemLockResult(dict):
2826
+ def __init__(__self__, *,
2827
+ message: str,
2828
+ related_resource_id: str,
2829
+ time_created: str,
2830
+ type: str):
2831
+ """
2832
+ :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.
2833
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
2834
+ :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`.
2835
+ :param str type: Type of the lock.
2836
+ """
2837
+ pulumi.set(__self__, "message", message)
2838
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
2839
+ pulumi.set(__self__, "time_created", time_created)
2840
+ pulumi.set(__self__, "type", type)
2841
+
2842
+ @property
2843
+ @pulumi.getter
2844
+ def message(self) -> str:
2845
+ """
2846
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
2847
+ """
2848
+ return pulumi.get(self, "message")
2849
+
2850
+ @property
2851
+ @pulumi.getter(name="relatedResourceId")
2852
+ def related_resource_id(self) -> str:
2853
+ """
2854
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
2855
+ """
2856
+ return pulumi.get(self, "related_resource_id")
2857
+
2858
+ @property
2859
+ @pulumi.getter(name="timeCreated")
2860
+ def time_created(self) -> str:
2861
+ """
2862
+ 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`.
2863
+ """
2864
+ return pulumi.get(self, "time_created")
2865
+
2866
+ @property
2867
+ @pulumi.getter
2868
+ def type(self) -> str:
2869
+ """
2870
+ Type of the lock.
2871
+ """
2872
+ return pulumi.get(self, "type")
2873
+
2874
+
2346
2875
  @pulumi.output_type
2347
2876
  class GetDeploymentBackupsFilterResult(dict):
2348
2877
  def __init__(__self__, *,
@@ -2389,6 +2918,7 @@ class GetDeploymentCertificatesCertificateCollectionItemResult(dict):
2389
2918
  certificate_content: str,
2390
2919
  deployment_id: str,
2391
2920
  is_ca: bool,
2921
+ is_lock_override: bool,
2392
2922
  is_self_signed: bool,
2393
2923
  issuer: str,
2394
2924
  key: str,
@@ -2406,18 +2936,32 @@ class GetDeploymentCertificatesCertificateCollectionItemResult(dict):
2406
2936
  time_valid_to: str,
2407
2937
  version: str):
2408
2938
  """
2939
+ :param str authority_key_id: The Certificate authority key id.
2940
+ :param str certificate_content: The base64 encoded content of the PEM file containing the SSL certificate.
2409
2941
  :param str deployment_id: A unique Deployment identifier.
2942
+ :param bool is_ca: Indicates if the certificate is ca.
2410
2943
  :param bool is_self_signed: Indicates if the certificate is self signed.
2944
+ :param str issuer: The Certificate issuer.
2411
2945
  :param str key: The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
2946
+ :param str md5hash: The Certificate md5Hash.
2947
+ :param str public_key: The Certificate public key.
2948
+ :param str public_key_algorithm: The Certificate public key algorithm.
2949
+ :param str public_key_size: The Certificate public key size.
2950
+ :param str serial: The Certificate serial.
2951
+ :param str sha1hash: The Certificate sha1 hash.
2412
2952
  :param str state: A filter to return only connections having the 'lifecycleState' given.
2413
2953
  :param str subject: The Certificate subject.
2954
+ :param str subject_key_id: The Certificate subject key id.
2414
2955
  :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`.
2956
+ :param str time_valid_from: The time the certificate is valid from. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
2415
2957
  :param str time_valid_to: The time the certificate is valid to. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
2958
+ :param str version: The Certificate version.
2416
2959
  """
2417
2960
  pulumi.set(__self__, "authority_key_id", authority_key_id)
2418
2961
  pulumi.set(__self__, "certificate_content", certificate_content)
2419
2962
  pulumi.set(__self__, "deployment_id", deployment_id)
2420
2963
  pulumi.set(__self__, "is_ca", is_ca)
2964
+ pulumi.set(__self__, "is_lock_override", is_lock_override)
2421
2965
  pulumi.set(__self__, "is_self_signed", is_self_signed)
2422
2966
  pulumi.set(__self__, "issuer", issuer)
2423
2967
  pulumi.set(__self__, "key", key)
@@ -2438,11 +2982,17 @@ class GetDeploymentCertificatesCertificateCollectionItemResult(dict):
2438
2982
  @property
2439
2983
  @pulumi.getter(name="authorityKeyId")
2440
2984
  def authority_key_id(self) -> str:
2985
+ """
2986
+ The Certificate authority key id.
2987
+ """
2441
2988
  return pulumi.get(self, "authority_key_id")
2442
2989
 
2443
2990
  @property
2444
2991
  @pulumi.getter(name="certificateContent")
2445
2992
  def certificate_content(self) -> str:
2993
+ """
2994
+ The base64 encoded content of the PEM file containing the SSL certificate.
2995
+ """
2446
2996
  return pulumi.get(self, "certificate_content")
2447
2997
 
2448
2998
  @property
@@ -2456,8 +3006,16 @@ class GetDeploymentCertificatesCertificateCollectionItemResult(dict):
2456
3006
  @property
2457
3007
  @pulumi.getter(name="isCa")
2458
3008
  def is_ca(self) -> bool:
3009
+ """
3010
+ Indicates if the certificate is ca.
3011
+ """
2459
3012
  return pulumi.get(self, "is_ca")
2460
3013
 
3014
+ @property
3015
+ @pulumi.getter(name="isLockOverride")
3016
+ def is_lock_override(self) -> bool:
3017
+ return pulumi.get(self, "is_lock_override")
3018
+
2461
3019
  @property
2462
3020
  @pulumi.getter(name="isSelfSigned")
2463
3021
  def is_self_signed(self) -> bool:
@@ -2469,6 +3027,9 @@ class GetDeploymentCertificatesCertificateCollectionItemResult(dict):
2469
3027
  @property
2470
3028
  @pulumi.getter
2471
3029
  def issuer(self) -> str:
3030
+ """
3031
+ The Certificate issuer.
3032
+ """
2472
3033
  return pulumi.get(self, "issuer")
2473
3034
 
2474
3035
  @property
@@ -2482,31 +3043,49 @@ class GetDeploymentCertificatesCertificateCollectionItemResult(dict):
2482
3043
  @property
2483
3044
  @pulumi.getter
2484
3045
  def md5hash(self) -> str:
3046
+ """
3047
+ The Certificate md5Hash.
3048
+ """
2485
3049
  return pulumi.get(self, "md5hash")
2486
3050
 
2487
3051
  @property
2488
3052
  @pulumi.getter(name="publicKey")
2489
3053
  def public_key(self) -> str:
3054
+ """
3055
+ The Certificate public key.
3056
+ """
2490
3057
  return pulumi.get(self, "public_key")
2491
3058
 
2492
3059
  @property
2493
3060
  @pulumi.getter(name="publicKeyAlgorithm")
2494
3061
  def public_key_algorithm(self) -> str:
3062
+ """
3063
+ The Certificate public key algorithm.
3064
+ """
2495
3065
  return pulumi.get(self, "public_key_algorithm")
2496
3066
 
2497
3067
  @property
2498
3068
  @pulumi.getter(name="publicKeySize")
2499
3069
  def public_key_size(self) -> str:
3070
+ """
3071
+ The Certificate public key size.
3072
+ """
2500
3073
  return pulumi.get(self, "public_key_size")
2501
3074
 
2502
3075
  @property
2503
3076
  @pulumi.getter
2504
3077
  def serial(self) -> str:
3078
+ """
3079
+ The Certificate serial.
3080
+ """
2505
3081
  return pulumi.get(self, "serial")
2506
3082
 
2507
3083
  @property
2508
3084
  @pulumi.getter
2509
3085
  def sha1hash(self) -> str:
3086
+ """
3087
+ The Certificate sha1 hash.
3088
+ """
2510
3089
  return pulumi.get(self, "sha1hash")
2511
3090
 
2512
3091
  @property
@@ -2528,6 +3107,9 @@ class GetDeploymentCertificatesCertificateCollectionItemResult(dict):
2528
3107
  @property
2529
3108
  @pulumi.getter(name="subjectKeyId")
2530
3109
  def subject_key_id(self) -> str:
3110
+ """
3111
+ The Certificate subject key id.
3112
+ """
2531
3113
  return pulumi.get(self, "subject_key_id")
2532
3114
 
2533
3115
  @property
@@ -2541,6 +3123,9 @@ class GetDeploymentCertificatesCertificateCollectionItemResult(dict):
2541
3123
  @property
2542
3124
  @pulumi.getter(name="timeValidFrom")
2543
3125
  def time_valid_from(self) -> str:
3126
+ """
3127
+ The time the certificate is valid from. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
3128
+ """
2544
3129
  return pulumi.get(self, "time_valid_from")
2545
3130
 
2546
3131
  @property
@@ -2554,6 +3139,9 @@ class GetDeploymentCertificatesCertificateCollectionItemResult(dict):
2554
3139
  @property
2555
3140
  @pulumi.getter
2556
3141
  def version(self) -> str:
3142
+ """
3143
+ The Certificate version.
3144
+ """
2557
3145
  return pulumi.get(self, "version")
2558
3146
 
2559
3147
 
@@ -2675,6 +3263,57 @@ class GetDeploymentIngressIpResult(dict):
2675
3263
  return pulumi.get(self, "ingress_ip")
2676
3264
 
2677
3265
 
3266
+ @pulumi.output_type
3267
+ class GetDeploymentLockResult(dict):
3268
+ def __init__(__self__, *,
3269
+ message: str,
3270
+ related_resource_id: str,
3271
+ time_created: str,
3272
+ type: str):
3273
+ """
3274
+ :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.
3275
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
3276
+ :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`.
3277
+ :param str type: Type of the lock.
3278
+ """
3279
+ pulumi.set(__self__, "message", message)
3280
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
3281
+ pulumi.set(__self__, "time_created", time_created)
3282
+ pulumi.set(__self__, "type", type)
3283
+
3284
+ @property
3285
+ @pulumi.getter
3286
+ def message(self) -> str:
3287
+ """
3288
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
3289
+ """
3290
+ return pulumi.get(self, "message")
3291
+
3292
+ @property
3293
+ @pulumi.getter(name="relatedResourceId")
3294
+ def related_resource_id(self) -> str:
3295
+ """
3296
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
3297
+ """
3298
+ return pulumi.get(self, "related_resource_id")
3299
+
3300
+ @property
3301
+ @pulumi.getter(name="timeCreated")
3302
+ def time_created(self) -> str:
3303
+ """
3304
+ 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`.
3305
+ """
3306
+ return pulumi.get(self, "time_created")
3307
+
3308
+ @property
3309
+ @pulumi.getter
3310
+ def type(self) -> str:
3311
+ """
3312
+ Type of the lock.
3313
+ """
3314
+ return pulumi.get(self, "type")
3315
+
3316
+
2678
3317
  @pulumi.output_type
2679
3318
  class GetDeploymentMaintenanceConfigurationResult(dict):
2680
3319
  def __init__(__self__, *,
@@ -2780,7 +3419,7 @@ class GetDeploymentOggDataResult(dict):
2780
3419
  password_secret_id: str):
2781
3420
  """
2782
3421
  :param str admin_username: The GoldenGate deployment console username.
2783
- :param str certificate: A PEM-encoded SSL certificate.
3422
+ :param str certificate: The base64 encoded content of the PEM file containing the SSL certificate.
2784
3423
  :param str credential_store: The type of credential store for OGG.
2785
3424
  :param str deployment_name: The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
2786
3425
  :param str identity_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Identity Domain when IAM credential store is used.
@@ -2814,7 +3453,7 @@ class GetDeploymentOggDataResult(dict):
2814
3453
  @pulumi.getter
2815
3454
  def certificate(self) -> str:
2816
3455
  """
2817
- A PEM-encoded SSL certificate.
3456
+ The base64 encoded content of the PEM file containing the SSL certificate.
2818
3457
  """
2819
3458
  return pulumi.get(self, "certificate")
2820
3459
 
@@ -3606,6 +4245,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3606
4245
  is_auto_scaling_enabled: bool,
3607
4246
  is_healthy: bool,
3608
4247
  is_latest_version: bool,
4248
+ is_lock_override: bool,
3609
4249
  is_public: bool,
3610
4250
  is_storage_utilization_limit_exceeded: bool,
3611
4251
  license_model: str,
@@ -3613,6 +4253,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3613
4253
  lifecycle_sub_state: str,
3614
4254
  load_balancer_id: str,
3615
4255
  load_balancer_subnet_id: str,
4256
+ locks: Sequence['outputs.GetDeploymentsDeploymentCollectionItemLockResult'],
3616
4257
  maintenance_configurations: Sequence['outputs.GetDeploymentsDeploymentCollectionItemMaintenanceConfigurationResult'],
3617
4258
  maintenance_windows: Sequence['outputs.GetDeploymentsDeploymentCollectionItemMaintenanceWindowResult'],
3618
4259
  next_maintenance_action_type: str,
@@ -3654,6 +4295,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3654
4295
  :param str lifecycle_sub_state: A filter to return only the resources that match the 'lifecycleSubState' given.
3655
4296
  :param str load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.
3656
4297
  :param str load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
4298
+ :param Sequence['GetDeploymentsDeploymentCollectionItemLockArgs'] locks: Locks associated with this resource.
3657
4299
  :param Sequence['GetDeploymentsDeploymentCollectionItemMaintenanceConfigurationArgs'] maintenance_configurations: Attributes for configuring automatic deployment maintenance.
3658
4300
  :param Sequence['GetDeploymentsDeploymentCollectionItemMaintenanceWindowArgs'] maintenance_windows: Defines the maintenance window, when automatic actions can be performed.
3659
4301
  :param str next_maintenance_action_type: Type of the next maintenance.
@@ -3664,7 +4306,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3664
4306
  :param str public_ip_address: The public IP address representing the access point for the Deployment.
3665
4307
  :param str state: A filter to return only the resources that match the 'lifecycleState' given.
3666
4308
  :param str storage_utilization_in_bytes: The amount of storage being utilized (in bytes)
3667
- :param 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.
4309
+ :param 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.
3668
4310
  :param Mapping[str, Any] 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}}`
3669
4311
  :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`.
3670
4312
  :param 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`.
@@ -3688,6 +4330,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3688
4330
  pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
3689
4331
  pulumi.set(__self__, "is_healthy", is_healthy)
3690
4332
  pulumi.set(__self__, "is_latest_version", is_latest_version)
4333
+ pulumi.set(__self__, "is_lock_override", is_lock_override)
3691
4334
  pulumi.set(__self__, "is_public", is_public)
3692
4335
  pulumi.set(__self__, "is_storage_utilization_limit_exceeded", is_storage_utilization_limit_exceeded)
3693
4336
  pulumi.set(__self__, "license_model", license_model)
@@ -3695,6 +4338,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3695
4338
  pulumi.set(__self__, "lifecycle_sub_state", lifecycle_sub_state)
3696
4339
  pulumi.set(__self__, "load_balancer_id", load_balancer_id)
3697
4340
  pulumi.set(__self__, "load_balancer_subnet_id", load_balancer_subnet_id)
4341
+ pulumi.set(__self__, "locks", locks)
3698
4342
  pulumi.set(__self__, "maintenance_configurations", maintenance_configurations)
3699
4343
  pulumi.set(__self__, "maintenance_windows", maintenance_windows)
3700
4344
  pulumi.set(__self__, "next_maintenance_action_type", next_maintenance_action_type)
@@ -3841,6 +4485,11 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3841
4485
  """
3842
4486
  return pulumi.get(self, "is_latest_version")
3843
4487
 
4488
+ @property
4489
+ @pulumi.getter(name="isLockOverride")
4490
+ def is_lock_override(self) -> bool:
4491
+ return pulumi.get(self, "is_lock_override")
4492
+
3844
4493
  @property
3845
4494
  @pulumi.getter(name="isPublic")
3846
4495
  def is_public(self) -> bool:
@@ -3897,6 +4546,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3897
4546
  """
3898
4547
  return pulumi.get(self, "load_balancer_subnet_id")
3899
4548
 
4549
+ @property
4550
+ @pulumi.getter
4551
+ def locks(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionItemLockResult']:
4552
+ """
4553
+ Locks associated with this resource.
4554
+ """
4555
+ return pulumi.get(self, "locks")
4556
+
3900
4557
  @property
3901
4558
  @pulumi.getter(name="maintenanceConfigurations")
3902
4559
  def maintenance_configurations(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionItemMaintenanceConfigurationResult']:
@@ -3981,7 +4638,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3981
4638
  @pulumi.getter(name="subnetId")
3982
4639
  def subnet_id(self) -> str:
3983
4640
  """
3984
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
4641
+ 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.
3985
4642
  """
3986
4643
  return pulumi.get(self, "subnet_id")
3987
4644
 
@@ -4125,6 +4782,57 @@ class GetDeploymentsDeploymentCollectionItemIngressIpResult(dict):
4125
4782
  return pulumi.get(self, "ingress_ip")
4126
4783
 
4127
4784
 
4785
+ @pulumi.output_type
4786
+ class GetDeploymentsDeploymentCollectionItemLockResult(dict):
4787
+ def __init__(__self__, *,
4788
+ message: str,
4789
+ related_resource_id: str,
4790
+ time_created: str,
4791
+ type: str):
4792
+ """
4793
+ :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.
4794
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
4795
+ :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`.
4796
+ :param str type: Type of the lock.
4797
+ """
4798
+ pulumi.set(__self__, "message", message)
4799
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
4800
+ pulumi.set(__self__, "time_created", time_created)
4801
+ pulumi.set(__self__, "type", type)
4802
+
4803
+ @property
4804
+ @pulumi.getter
4805
+ def message(self) -> str:
4806
+ """
4807
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
4808
+ """
4809
+ return pulumi.get(self, "message")
4810
+
4811
+ @property
4812
+ @pulumi.getter(name="relatedResourceId")
4813
+ def related_resource_id(self) -> str:
4814
+ """
4815
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
4816
+ """
4817
+ return pulumi.get(self, "related_resource_id")
4818
+
4819
+ @property
4820
+ @pulumi.getter(name="timeCreated")
4821
+ def time_created(self) -> str:
4822
+ """
4823
+ 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`.
4824
+ """
4825
+ return pulumi.get(self, "time_created")
4826
+
4827
+ @property
4828
+ @pulumi.getter
4829
+ def type(self) -> str:
4830
+ """
4831
+ Type of the lock.
4832
+ """
4833
+ return pulumi.get(self, "type")
4834
+
4835
+
4128
4836
  @pulumi.output_type
4129
4837
  class GetDeploymentsDeploymentCollectionItemMaintenanceConfigurationResult(dict):
4130
4838
  def __init__(__self__, *,
@@ -4230,7 +4938,7 @@ class GetDeploymentsDeploymentCollectionItemOggDataResult(dict):
4230
4938
  password_secret_id: str):
4231
4939
  """
4232
4940
  :param str admin_username: The GoldenGate deployment console username.
4233
- :param str certificate: A PEM-encoded SSL certificate.
4941
+ :param str certificate: The base64 encoded content of the PEM file containing the SSL certificate.
4234
4942
  :param str credential_store: The type of credential store for OGG.
4235
4943
  :param str deployment_name: The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
4236
4944
  :param str identity_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Identity Domain when IAM credential store is used.
@@ -4264,7 +4972,7 @@ class GetDeploymentsDeploymentCollectionItemOggDataResult(dict):
4264
4972
  @pulumi.getter
4265
4973
  def certificate(self) -> str:
4266
4974
  """
4267
- A PEM-encoded SSL certificate.
4975
+ The base64 encoded content of the PEM file containing the SSL certificate.
4268
4976
  """
4269
4977
  return pulumi.get(self, "certificate")
4270
4978