pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.26.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 (218) hide show
  1. pulumi_oci/__init__.py +102 -0
  2. pulumi_oci/config/__init__.pyi +2 -0
  3. pulumi_oci/config/vars.py +4 -0
  4. pulumi_oci/containerengine/_inputs.py +74 -35
  5. pulumi_oci/containerengine/cluster.py +4 -0
  6. pulumi_oci/containerengine/container_instance.py +2 -4
  7. pulumi_oci/containerengine/outputs.py +180 -21
  8. pulumi_oci/containerinstances/outputs.py +0 -14
  9. pulumi_oci/core/_inputs.py +21 -33
  10. pulumi_oci/core/outputs.py +13 -21
  11. pulumi_oci/database/__init__.py +1 -0
  12. pulumi_oci/database/_inputs.py +1246 -57
  13. pulumi_oci/database/application_vip.py +59 -10
  14. pulumi_oci/database/autonomous_container_database.py +92 -0
  15. pulumi_oci/database/autonomous_database.py +90 -22
  16. pulumi_oci/database/backup.py +153 -5
  17. pulumi_oci/database/backup_destination.py +84 -0
  18. pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
  19. pulumi_oci/database/cloud_vm_cluster.py +163 -30
  20. pulumi_oci/database/data_guard_association.py +49 -0
  21. pulumi_oci/database/db_node.py +64 -8
  22. pulumi_oci/database/db_system.py +111 -8
  23. pulumi_oci/database/exadata_infrastructure.py +157 -3
  24. pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
  25. pulumi_oci/database/exadb_vm_cluster.py +84 -7
  26. pulumi_oci/database/exascale_db_storage_vault.py +147 -0
  27. pulumi_oci/database/external_container_database.py +4 -4
  28. pulumi_oci/database/external_non_container_database.py +4 -4
  29. pulumi_oci/database/external_pluggable_database.py +4 -4
  30. pulumi_oci/database/get_application_vip.py +16 -2
  31. pulumi_oci/database/get_autonomous_container_database.py +43 -1
  32. pulumi_oci/database/get_autonomous_database.py +29 -1
  33. pulumi_oci/database/get_autonomous_databases.py +0 -26
  34. pulumi_oci/database/get_backup_destination.py +43 -1
  35. pulumi_oci/database/get_backups.py +136 -10
  36. pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
  37. pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
  38. pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
  39. pulumi_oci/database/get_data_guard_association.py +12 -1
  40. pulumi_oci/database/get_database_software_images.py +20 -1
  41. pulumi_oci/database/get_db_node.py +31 -4
  42. pulumi_oci/database/get_db_server.py +15 -1
  43. pulumi_oci/database/get_exadata_infrastructure.py +57 -1
  44. pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
  45. pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
  48. pulumi_oci/database/get_external_container_database.py +1 -1
  49. pulumi_oci/database/get_external_non_container_database.py +1 -1
  50. pulumi_oci/database/get_external_pluggable_database.py +1 -1
  51. pulumi_oci/database/get_flex_components.py +28 -6
  52. pulumi_oci/database/get_maintenance_runs.py +20 -1
  53. pulumi_oci/database/get_vm_cluster.py +60 -4
  54. pulumi_oci/database/get_vm_clusters.py +25 -3
  55. pulumi_oci/database/outputs.py +2260 -87
  56. pulumi_oci/database/pluggable_database.py +13 -13
  57. pulumi_oci/database/vm_cluster.py +172 -18
  58. pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
  59. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
  60. pulumi_oci/datasafe/__init__.py +7 -0
  61. pulumi_oci/datasafe/_inputs.py +301 -0
  62. pulumi_oci/datasafe/discovery_mod.py +49 -0
  63. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  64. pulumi_oci/datasafe/get_masking_report.py +46 -4
  65. pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
  66. pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
  67. pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
  68. pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
  69. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  70. pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
  71. pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
  72. pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
  73. pulumi_oci/datasafe/outputs.py +676 -3
  74. pulumi_oci/datasafe/sensitive_data_model.py +49 -0
  75. pulumi_oci/datasafe/sensitive_type_group.py +563 -0
  76. pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
  77. pulumi_oci/datascience/__init__.py +4 -0
  78. pulumi_oci/datascience/_inputs.py +1160 -41
  79. pulumi_oci/datascience/get_model.py +29 -1
  80. pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
  81. pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
  82. pulumi_oci/datascience/get_model_version_set.py +15 -1
  83. pulumi_oci/datascience/get_model_version_sets.py +25 -3
  84. pulumi_oci/datascience/get_models.py +25 -3
  85. pulumi_oci/datascience/get_pipeline.py +15 -1
  86. pulumi_oci/datascience/model.py +64 -0
  87. pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
  88. pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
  89. pulumi_oci/datascience/model_version_set.py +28 -0
  90. pulumi_oci/datascience/outputs.py +4343 -2164
  91. pulumi_oci/datascience/pipeline.py +48 -141
  92. pulumi_oci/datascience/pipeline_run.py +32 -0
  93. pulumi_oci/dblm/__init__.py +17 -0
  94. pulumi_oci/dblm/_inputs.py +275 -0
  95. pulumi_oci/dblm/get_vulnerability.py +242 -0
  96. pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
  97. pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
  98. pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
  99. pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
  100. pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
  101. pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
  102. pulumi_oci/dblm/outputs.py +1294 -0
  103. pulumi_oci/dblm/vulnerability_scan.py +521 -0
  104. pulumi_oci/email/dkim.py +120 -20
  105. pulumi_oci/email/get_dkim.py +40 -1
  106. pulumi_oci/email/outputs.py +29 -0
  107. pulumi_oci/filestorage/__init__.py +3 -0
  108. pulumi_oci/filestorage/_inputs.py +49 -0
  109. pulumi_oci/filestorage/file_system.py +133 -0
  110. pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
  111. pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
  112. pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
  113. pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
  114. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
  115. pulumi_oci/filestorage/get_outbound_connector.py +15 -1
  116. pulumi_oci/filestorage/get_replication.py +15 -1
  117. pulumi_oci/filestorage/get_replication_target.py +15 -1
  118. pulumi_oci/filestorage/get_snapshot.py +15 -1
  119. pulumi_oci/filestorage/mount_target.py +28 -0
  120. pulumi_oci/filestorage/outbound_connector.py +28 -0
  121. pulumi_oci/filestorage/outputs.py +263 -0
  122. pulumi_oci/filestorage/replication.py +28 -0
  123. pulumi_oci/filestorage/snapshot.py +28 -0
  124. pulumi_oci/goldengate/connection.py +561 -162
  125. pulumi_oci/goldengate/database_registration.py +14 -14
  126. pulumi_oci/goldengate/get_connection.py +117 -6
  127. pulumi_oci/goldengate/outputs.py +96 -10
  128. pulumi_oci/jms/__init__.py +4 -0
  129. pulumi_oci/jms/_inputs.py +196 -0
  130. pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
  131. pulumi_oci/jms/get_fleet_errors.py +264 -0
  132. pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
  133. pulumi_oci/jms/get_jms_plugins.py +23 -1
  134. pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
  135. pulumi_oci/jms/get_plugin_errors.py +264 -0
  136. pulumi_oci/jms/outputs.py +566 -6
  137. pulumi_oci/mysql/_inputs.py +1239 -10
  138. pulumi_oci/mysql/channel.py +28 -0
  139. pulumi_oci/mysql/get_channel.py +15 -1
  140. pulumi_oci/mysql/get_mysql_backup.py +15 -1
  141. pulumi_oci/mysql/get_mysql_configuration.py +15 -1
  142. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  143. pulumi_oci/mysql/mysql_backup.py +28 -0
  144. pulumi_oci/mysql/mysql_configuration.py +106 -0
  145. pulumi_oci/mysql/mysql_db_system.py +36 -0
  146. pulumi_oci/mysql/outputs.py +2008 -35
  147. pulumi_oci/opensearch/__init__.py +3 -0
  148. pulumi_oci/opensearch/_inputs.py +101 -0
  149. pulumi_oci/opensearch/cluster.py +76 -29
  150. pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
  151. pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
  152. pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
  153. pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
  154. pulumi_oci/opensearch/outputs.py +425 -0
  155. pulumi_oci/provider.py +20 -0
  156. pulumi_oci/psql/_inputs.py +258 -0
  157. pulumi_oci/psql/backup.py +129 -28
  158. pulumi_oci/psql/db_system.py +10 -0
  159. pulumi_oci/psql/get_backup.py +47 -2
  160. pulumi_oci/psql/get_backups.py +3 -0
  161. pulumi_oci/psql/get_configurations.py +23 -1
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_db_systems.py +1 -1
  164. pulumi_oci/psql/outputs.py +541 -5
  165. pulumi_oci/pulumi-plugin.json +1 -1
  166. pulumi_oci/redis/redis_cluster.py +7 -7
  167. pulumi_oci/stackmonitoring/__init__.py +8 -0
  168. pulumi_oci/stackmonitoring/_inputs.py +372 -1
  169. pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
  170. pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
  171. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
  172. pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
  173. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
  174. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
  175. pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
  176. pulumi_oci/stackmonitoring/metric_extension.py +4 -4
  177. pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
  178. pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
  179. pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
  180. pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
  181. pulumi_oci/stackmonitoring/outputs.py +1305 -118
  182. pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
  183. pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
  184. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
  185. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
  186. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
  187. pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
  188. pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
  189. pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
  190. pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
  191. pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
  192. pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
  193. pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
  194. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
  195. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
  196. pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
  197. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
  198. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
  199. pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
  200. pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
  201. pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
  202. pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
  203. pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
  204. pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
  205. pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
  206. pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
  207. pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
  208. pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
  209. pulumi_oci/vault/__init__.py +1 -1
  210. pulumi_oci/vault/_inputs.py +92 -0
  211. pulumi_oci/vault/get_secret.py +40 -1
  212. pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
  213. pulumi_oci/vault/outputs.py +210 -0
  214. pulumi_oci/vault/secret.py +122 -0
  215. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/METADATA +1 -1
  216. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/RECORD +218 -150
  217. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/WHEEL +1 -1
  218. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/top_level.txt +0 -0
@@ -43,7 +43,7 @@ class DatabaseRegistrationArgs:
43
43
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
44
44
  :param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
45
45
  :param pulumi.Input[str] fqdn: (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
46
- :param pulumi.Input[str] password: (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
46
+ :param pulumi.Input[str] password: (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on. Deprecated: This field is deprecated and replaced by "passwordSecretId". This field will be removed after February 15 2026.
47
47
  :param pulumi.Input[str] username: (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
48
48
  :param pulumi.Input[str] connection_string: (Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.
49
49
  :param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database being referenced.
@@ -56,7 +56,7 @@ class DatabaseRegistrationArgs:
56
56
  :param pulumi.Input[str] session_mode: (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
57
57
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
58
58
  :param pulumi.Input[str] vault_id: Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
59
- :param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
59
+ :param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded. Deprecated: This field is deprecated and replaced by "walletSecretId". This field will be removed after February 15 2026.
60
60
 
61
61
 
62
62
  ** IMPORTANT **
@@ -145,7 +145,7 @@ class DatabaseRegistrationArgs:
145
145
  @pulumi.getter
146
146
  def password(self) -> pulumi.Input[str]:
147
147
  """
148
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
148
+ (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on. Deprecated: This field is deprecated and replaced by "passwordSecretId". This field will be removed after February 15 2026.
149
149
  """
150
150
  return pulumi.get(self, "password")
151
151
 
@@ -301,7 +301,7 @@ class DatabaseRegistrationArgs:
301
301
  @pulumi.getter
302
302
  def wallet(self) -> Optional[pulumi.Input[str]]:
303
303
  """
304
- (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
304
+ (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded. Deprecated: This field is deprecated and replaced by "walletSecretId". This field will be removed after February 15 2026.
305
305
 
306
306
 
307
307
  ** IMPORTANT **
@@ -356,7 +356,7 @@ class _DatabaseRegistrationState:
356
356
  :param pulumi.Input[str] ip_address: The private IP address in the customer's VCN of the customer's endpoint, typically a database.
357
357
  :param pulumi.Input[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.
358
358
  :param pulumi.Input[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.
359
- :param pulumi.Input[str] password: (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
359
+ :param pulumi.Input[str] password: (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on. Deprecated: This field is deprecated and replaced by "passwordSecretId". This field will be removed after February 15 2026.
360
360
  :param pulumi.Input[str] rce_private_ip: A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
361
361
  :param pulumi.Input[str] secret_compartment_id: The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
362
362
  :param pulumi.Input[str] secret_id: The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
@@ -368,7 +368,7 @@ class _DatabaseRegistrationState:
368
368
  :param pulumi.Input[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`.
369
369
  :param pulumi.Input[str] username: (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
370
370
  :param pulumi.Input[str] vault_id: Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
371
- :param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
371
+ :param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded. Deprecated: This field is deprecated and replaced by "walletSecretId". This field will be removed after February 15 2026.
372
372
 
373
373
 
374
374
  ** IMPORTANT **
@@ -573,7 +573,7 @@ class _DatabaseRegistrationState:
573
573
  @pulumi.getter
574
574
  def password(self) -> Optional[pulumi.Input[str]]:
575
575
  """
576
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
576
+ (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on. Deprecated: This field is deprecated and replaced by "passwordSecretId". This field will be removed after February 15 2026.
577
577
  """
578
578
  return pulumi.get(self, "password")
579
579
 
@@ -717,7 +717,7 @@ class _DatabaseRegistrationState:
717
717
  @pulumi.getter
718
718
  def wallet(self) -> Optional[pulumi.Input[str]]:
719
719
  """
720
- (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
720
+ (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded. Deprecated: This field is deprecated and replaced by "walletSecretId". This field will be removed after February 15 2026.
721
721
 
722
722
 
723
723
  ** IMPORTANT **
@@ -812,13 +812,13 @@ class DatabaseRegistration(pulumi.CustomResource):
812
812
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
813
813
  :param pulumi.Input[str] ip_address: The private IP address in the customer's VCN of the customer's endpoint, typically a database.
814
814
  :param pulumi.Input[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.
815
- :param pulumi.Input[str] password: (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
815
+ :param pulumi.Input[str] password: (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on. Deprecated: This field is deprecated and replaced by "passwordSecretId". This field will be removed after February 15 2026.
816
816
  :param pulumi.Input[str] secret_compartment_id: The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
817
817
  :param pulumi.Input[str] session_mode: (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
818
818
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
819
819
  :param pulumi.Input[str] username: (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
820
820
  :param pulumi.Input[str] vault_id: Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
821
- :param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
821
+ :param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded. Deprecated: This field is deprecated and replaced by "walletSecretId". This field will be removed after February 15 2026.
822
822
 
823
823
 
824
824
  ** IMPORTANT **
@@ -1010,7 +1010,7 @@ class DatabaseRegistration(pulumi.CustomResource):
1010
1010
  :param pulumi.Input[str] ip_address: The private IP address in the customer's VCN of the customer's endpoint, typically a database.
1011
1011
  :param pulumi.Input[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.
1012
1012
  :param pulumi.Input[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.
1013
- :param pulumi.Input[str] password: (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
1013
+ :param pulumi.Input[str] password: (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on. Deprecated: This field is deprecated and replaced by "passwordSecretId". This field will be removed after February 15 2026.
1014
1014
  :param pulumi.Input[str] rce_private_ip: A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
1015
1015
  :param pulumi.Input[str] secret_compartment_id: The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
1016
1016
  :param pulumi.Input[str] secret_id: The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
@@ -1022,7 +1022,7 @@ class DatabaseRegistration(pulumi.CustomResource):
1022
1022
  :param pulumi.Input[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`.
1023
1023
  :param pulumi.Input[str] username: (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
1024
1024
  :param pulumi.Input[str] vault_id: Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
1025
- :param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
1025
+ :param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded. Deprecated: This field is deprecated and replaced by "walletSecretId". This field will be removed after February 15 2026.
1026
1026
 
1027
1027
 
1028
1028
  ** IMPORTANT **
@@ -1159,7 +1159,7 @@ class DatabaseRegistration(pulumi.CustomResource):
1159
1159
  @pulumi.getter
1160
1160
  def password(self) -> pulumi.Output[str]:
1161
1161
  """
1162
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
1162
+ (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on. Deprecated: This field is deprecated and replaced by "passwordSecretId". This field will be removed after February 15 2026.
1163
1163
  """
1164
1164
  return pulumi.get(self, "password")
1165
1165
 
@@ -1255,7 +1255,7 @@ class DatabaseRegistration(pulumi.CustomResource):
1255
1255
  @pulumi.getter
1256
1256
  def wallet(self) -> pulumi.Output[str]:
1257
1257
  """
1258
- (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
1258
+ (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded. Deprecated: This field is deprecated and replaced by "walletSecretId". This field will be removed after February 15 2026.
1259
1259
 
1260
1260
 
1261
1261
  ** IMPORTANT **
@@ -27,7 +27,7 @@ class GetConnectionResult:
27
27
  """
28
28
  A collection of values returned by getConnection.
29
29
  """
30
- def __init__(__self__, access_key_id=None, account_key=None, account_key_secret_id=None, account_name=None, additional_attributes=None, authentication_mode=None, authentication_type=None, azure_tenant_id=None, bootstrap_servers=None, client_id=None, client_secret=None, client_secret_secret_id=None, compartment_id=None, connection_factory=None, connection_id=None, connection_string=None, connection_type=None, connection_url=None, consumer_properties=None, core_site_xml=None, database_id=None, database_name=None, db_system_id=None, defined_tags=None, deployment_id=None, description=None, display_name=None, does_use_secret_ids=None, endpoint=None, fingerprint=None, freeform_tags=None, host=None, id=None, ingress_ips=None, is_lock_override=None, jndi_connection_factory=None, jndi_initial_context_factory=None, jndi_provider_url=None, jndi_security_credentials=None, jndi_security_credentials_secret_id=None, jndi_security_principal=None, key_id=None, key_store=None, key_store_password=None, key_store_password_secret_id=None, key_store_secret_id=None, lifecycle_details=None, locks=None, nsg_ids=None, password=None, password_secret_id=None, port=None, private_ip=None, private_key_file=None, private_key_file_secret_id=None, private_key_passphrase=None, private_key_passphrase_secret_id=None, producer_properties=None, public_key_fingerprint=None, redis_cluster_id=None, region=None, routing_method=None, sas_token=None, sas_token_secret_id=None, secret_access_key=None, secret_access_key_secret_id=None, security_protocol=None, servers=None, service_account_key_file=None, service_account_key_file_secret_id=None, session_mode=None, should_use_jndi=None, should_validate_server_certificate=None, ssl_ca=None, ssl_cert=None, ssl_client_keystash=None, ssl_client_keystash_secret_id=None, ssl_client_keystoredb=None, ssl_client_keystoredb_secret_id=None, ssl_crl=None, ssl_key=None, ssl_key_password=None, ssl_key_password_secret_id=None, ssl_key_secret_id=None, ssl_mode=None, ssl_server_certificate=None, state=None, stream_pool_id=None, subnet_id=None, system_tags=None, technology_type=None, tenancy_id=None, time_created=None, time_updated=None, trigger_refresh=None, trust_store=None, trust_store_password=None, trust_store_password_secret_id=None, trust_store_secret_id=None, url=None, user_id=None, username=None, vault_id=None, wallet=None, wallet_secret_id=None):
30
+ def __init__(__self__, access_key_id=None, account_key=None, account_key_secret_id=None, account_name=None, additional_attributes=None, authentication_mode=None, authentication_type=None, azure_tenant_id=None, bootstrap_servers=None, client_id=None, client_secret=None, client_secret_secret_id=None, compartment_id=None, connection_factory=None, connection_id=None, connection_string=None, connection_type=None, connection_url=None, consumer_properties=None, core_site_xml=None, database_id=None, database_name=None, db_system_id=None, defined_tags=None, deployment_id=None, description=None, display_name=None, does_use_secret_ids=None, endpoint=None, fingerprint=None, freeform_tags=None, host=None, id=None, ingress_ips=None, is_lock_override=None, jndi_connection_factory=None, jndi_initial_context_factory=None, jndi_provider_url=None, jndi_security_credentials=None, jndi_security_credentials_secret_id=None, jndi_security_principal=None, key_id=None, key_store=None, key_store_password=None, key_store_password_secret_id=None, key_store_secret_id=None, lifecycle_details=None, locks=None, nsg_ids=None, password=None, password_secret_id=None, port=None, private_ip=None, private_key_file=None, private_key_file_secret_id=None, private_key_passphrase=None, private_key_passphrase_secret_id=None, producer_properties=None, public_key_fingerprint=None, redis_cluster_id=None, region=None, routing_method=None, sas_token=None, sas_token_secret_id=None, secret_access_key=None, secret_access_key_secret_id=None, security_protocol=None, servers=None, service_account_key_file=None, service_account_key_file_secret_id=None, session_mode=None, should_use_jndi=None, should_use_resource_principal=None, should_validate_server_certificate=None, ssl_ca=None, ssl_cert=None, ssl_client_keystash=None, ssl_client_keystash_secret_id=None, ssl_client_keystoredb=None, ssl_client_keystoredb_secret_id=None, ssl_crl=None, ssl_key=None, ssl_key_password=None, ssl_key_password_secret_id=None, ssl_key_secret_id=None, ssl_mode=None, ssl_server_certificate=None, state=None, storage_credential_name=None, stream_pool_id=None, subnet_id=None, system_tags=None, technology_type=None, tenancy_id=None, tenant_id=None, time_created=None, time_updated=None, tls_ca_file=None, tls_certificate_key_file=None, tls_certificate_key_file_password=None, tls_certificate_key_file_password_secret_id=None, tls_certificate_key_file_secret_id=None, trigger_refresh=None, trust_store=None, trust_store_password=None, trust_store_password_secret_id=None, trust_store_secret_id=None, url=None, user_id=None, username=None, vault_id=None, wallet=None, wallet_secret_id=None):
31
31
  if access_key_id and not isinstance(access_key_id, str):
32
32
  raise TypeError("Expected argument 'access_key_id' to be a str")
33
33
  pulumi.set(__self__, "access_key_id", access_key_id)
@@ -244,6 +244,9 @@ class GetConnectionResult:
244
244
  if should_use_jndi and not isinstance(should_use_jndi, bool):
245
245
  raise TypeError("Expected argument 'should_use_jndi' to be a bool")
246
246
  pulumi.set(__self__, "should_use_jndi", should_use_jndi)
247
+ if should_use_resource_principal and not isinstance(should_use_resource_principal, bool):
248
+ raise TypeError("Expected argument 'should_use_resource_principal' to be a bool")
249
+ pulumi.set(__self__, "should_use_resource_principal", should_use_resource_principal)
247
250
  if should_validate_server_certificate and not isinstance(should_validate_server_certificate, bool):
248
251
  raise TypeError("Expected argument 'should_validate_server_certificate' to be a bool")
249
252
  pulumi.set(__self__, "should_validate_server_certificate", should_validate_server_certificate)
@@ -289,6 +292,9 @@ class GetConnectionResult:
289
292
  if state and not isinstance(state, str):
290
293
  raise TypeError("Expected argument 'state' to be a str")
291
294
  pulumi.set(__self__, "state", state)
295
+ if storage_credential_name and not isinstance(storage_credential_name, str):
296
+ raise TypeError("Expected argument 'storage_credential_name' to be a str")
297
+ pulumi.set(__self__, "storage_credential_name", storage_credential_name)
292
298
  if stream_pool_id and not isinstance(stream_pool_id, str):
293
299
  raise TypeError("Expected argument 'stream_pool_id' to be a str")
294
300
  pulumi.set(__self__, "stream_pool_id", stream_pool_id)
@@ -304,12 +310,30 @@ class GetConnectionResult:
304
310
  if tenancy_id and not isinstance(tenancy_id, str):
305
311
  raise TypeError("Expected argument 'tenancy_id' to be a str")
306
312
  pulumi.set(__self__, "tenancy_id", tenancy_id)
313
+ if tenant_id and not isinstance(tenant_id, str):
314
+ raise TypeError("Expected argument 'tenant_id' to be a str")
315
+ pulumi.set(__self__, "tenant_id", tenant_id)
307
316
  if time_created and not isinstance(time_created, str):
308
317
  raise TypeError("Expected argument 'time_created' to be a str")
309
318
  pulumi.set(__self__, "time_created", time_created)
310
319
  if time_updated and not isinstance(time_updated, str):
311
320
  raise TypeError("Expected argument 'time_updated' to be a str")
312
321
  pulumi.set(__self__, "time_updated", time_updated)
322
+ if tls_ca_file and not isinstance(tls_ca_file, str):
323
+ raise TypeError("Expected argument 'tls_ca_file' to be a str")
324
+ pulumi.set(__self__, "tls_ca_file", tls_ca_file)
325
+ if tls_certificate_key_file and not isinstance(tls_certificate_key_file, str):
326
+ raise TypeError("Expected argument 'tls_certificate_key_file' to be a str")
327
+ pulumi.set(__self__, "tls_certificate_key_file", tls_certificate_key_file)
328
+ if tls_certificate_key_file_password and not isinstance(tls_certificate_key_file_password, str):
329
+ raise TypeError("Expected argument 'tls_certificate_key_file_password' to be a str")
330
+ pulumi.set(__self__, "tls_certificate_key_file_password", tls_certificate_key_file_password)
331
+ if tls_certificate_key_file_password_secret_id and not isinstance(tls_certificate_key_file_password_secret_id, str):
332
+ raise TypeError("Expected argument 'tls_certificate_key_file_password_secret_id' to be a str")
333
+ pulumi.set(__self__, "tls_certificate_key_file_password_secret_id", tls_certificate_key_file_password_secret_id)
334
+ if tls_certificate_key_file_secret_id and not isinstance(tls_certificate_key_file_secret_id, str):
335
+ raise TypeError("Expected argument 'tls_certificate_key_file_secret_id' to be a str")
336
+ pulumi.set(__self__, "tls_certificate_key_file_secret_id", tls_certificate_key_file_secret_id)
313
337
  if trigger_refresh and not isinstance(trigger_refresh, bool):
314
338
  raise TypeError("Expected argument 'trigger_refresh' to be a bool")
315
339
  pulumi.set(__self__, "trigger_refresh", trigger_refresh)
@@ -396,6 +420,9 @@ class GetConnectionResult:
396
420
  Used authentication mechanism to be provided for the following connection types:
397
421
  * AZURE_DATA_LAKE_STORAGE, ELASTICSEARCH, KAFKA_SCHEMA_REGISTRY, REDIS, SNOWFLAKE
398
422
  * JAVA_MESSAGE_SERVICE - If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
423
+ * DATABRICKS - Required fields by authentication types:
424
+ * PERSONAL_ACCESS_TOKEN: username is always 'token', user must enter password
425
+ * OAUTH_M2M: user must enter clientId and clientSecret
399
426
  """
400
427
  return pulumi.get(self, "authentication_type")
401
428
 
@@ -482,6 +509,7 @@ class GetConnectionResult:
482
509
  * JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676'
483
510
  * SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=<warehouse-name>&db=<db-name>'
484
511
  * AMAZON_REDSHIFT: Connection URL. e.g.: 'jdbc:redshift://aws-redshift-instance.aaaaaaaaaaaa.us-east-2.redshift.amazonaws.com:5439/mydb'
512
+ * DATABRICKS: Connection URL. e.g.: 'jdbc:databricks://adb-33934.4.azuredatabricks.net:443/default;transportMode=http;ssl=1;httpPath=sql/protocolv1/o/3393########44/0##3-7-hlrb'
485
513
  """
486
514
  return pulumi.get(self, "connection_url")
487
515
 
@@ -565,6 +593,9 @@ class GetConnectionResult:
565
593
  @property
566
594
  @pulumi.getter
567
595
  def endpoint(self) -> str:
596
+ """
597
+ Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
598
+ """
568
599
  return pulumi.get(self, "endpoint")
569
600
 
570
601
  @property
@@ -795,7 +826,7 @@ class GetConnectionResult:
795
826
  @pulumi.getter
796
827
  def region(self) -> str:
797
828
  """
798
- The name of the region. e.g.: us-ashburn-1
829
+ The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
799
830
  """
800
831
  return pulumi.get(self, "region")
801
832
 
@@ -881,6 +912,14 @@ class GetConnectionResult:
881
912
  """
882
913
  return pulumi.get(self, "should_use_jndi")
883
914
 
915
+ @property
916
+ @pulumi.getter(name="shouldUseResourcePrincipal")
917
+ def should_use_resource_principal(self) -> bool:
918
+ """
919
+ Indicates that the user intents to connect to the instance through resource principal.
920
+ """
921
+ return pulumi.get(self, "should_use_resource_principal")
922
+
884
923
  @property
885
924
  @pulumi.getter(name="shouldValidateServerCertificate")
886
925
  def should_validate_server_certificate(self) -> bool:
@@ -893,7 +932,7 @@ class GetConnectionResult:
893
932
  @pulumi.getter(name="sslCa")
894
933
  def ssl_ca(self) -> str:
895
934
  """
896
- Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
935
+ Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1-way SSL).
897
936
  """
898
937
  return pulumi.get(self, "ssl_ca")
899
938
 
@@ -981,6 +1020,14 @@ class GetConnectionResult:
981
1020
  """
982
1021
  return pulumi.get(self, "state")
983
1022
 
1023
+ @property
1024
+ @pulumi.getter(name="storageCredentialName")
1025
+ def storage_credential_name(self) -> str:
1026
+ """
1027
+ Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
1028
+ """
1029
+ return pulumi.get(self, "storage_credential_name")
1030
+
984
1031
  @property
985
1032
  @pulumi.getter(name="streamPoolId")
986
1033
  def stream_pool_id(self) -> str:
@@ -1021,6 +1068,14 @@ class GetConnectionResult:
1021
1068
  """
1022
1069
  return pulumi.get(self, "tenancy_id")
1023
1070
 
1071
+ @property
1072
+ @pulumi.getter(name="tenantId")
1073
+ def tenant_id(self) -> str:
1074
+ """
1075
+ Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
1076
+ """
1077
+ return pulumi.get(self, "tenant_id")
1078
+
1024
1079
  @property
1025
1080
  @pulumi.getter(name="timeCreated")
1026
1081
  def time_created(self) -> str:
@@ -1037,6 +1092,38 @@ class GetConnectionResult:
1037
1092
  """
1038
1093
  return pulumi.get(self, "time_updated")
1039
1094
 
1095
+ @property
1096
+ @pulumi.getter(name="tlsCaFile")
1097
+ def tls_ca_file(self) -> str:
1098
+ return pulumi.get(self, "tls_ca_file")
1099
+
1100
+ @property
1101
+ @pulumi.getter(name="tlsCertificateKeyFile")
1102
+ def tls_certificate_key_file(self) -> str:
1103
+ return pulumi.get(self, "tls_certificate_key_file")
1104
+
1105
+ @property
1106
+ @pulumi.getter(name="tlsCertificateKeyFilePassword")
1107
+ def tls_certificate_key_file_password(self) -> str:
1108
+ return pulumi.get(self, "tls_certificate_key_file_password")
1109
+
1110
+ @property
1111
+ @pulumi.getter(name="tlsCertificateKeyFilePasswordSecretId")
1112
+ def tls_certificate_key_file_password_secret_id(self) -> str:
1113
+ """
1114
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password of the tls certificate key file. Note: When provided, 'tlsCertificateKeyFilePassword' field must not be provided.
1115
+ """
1116
+ return pulumi.get(self, "tls_certificate_key_file_password_secret_id")
1117
+
1118
+ @property
1119
+ @pulumi.getter(name="tlsCertificateKeyFileSecretId")
1120
+ def tls_certificate_key_file_secret_id(self) -> str:
1121
+ """
1122
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the certificate key file of the mtls connection.
1123
+ * The content of a .pem file containing the client private key (for 2-way SSL). Note: When provided, 'tlsCertificateKeyFile' field must not be provided.
1124
+ """
1125
+ return pulumi.get(self, "tls_certificate_key_file_secret_id")
1126
+
1040
1127
  @property
1041
1128
  @pulumi.getter(name="triggerRefresh")
1042
1129
  def trigger_refresh(self) -> bool:
@@ -1064,7 +1151,7 @@ class GetConnectionResult:
1064
1151
  @pulumi.getter(name="trustStoreSecretId")
1065
1152
  def trust_store_secret_id(self) -> str:
1066
1153
  """
1067
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the TrustStore file is stored. Note: When provided, 'trustStore' field must not be provided
1154
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the TrustStore file is stored. Note: When provided, 'trustStore' field must not be provided.
1068
1155
  """
1069
1156
  return pulumi.get(self, "trust_store_secret_id")
1070
1157
 
@@ -1080,7 +1167,7 @@ class GetConnectionResult:
1080
1167
  @pulumi.getter(name="userId")
1081
1168
  def user_id(self) -> str:
1082
1169
  """
1083
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/Object Storage. The user must have write access to the table they want to connect to.
1170
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database. The user must have write access to the table they want to connect to. If the user is not provided, backend will default to the user who is calling the API endpoint.
1084
1171
  """
1085
1172
  return pulumi.get(self, "user_id")
1086
1173
 
@@ -1088,7 +1175,7 @@ class GetConnectionResult:
1088
1175
  @pulumi.getter
1089
1176
  def username(self) -> str:
1090
1177
  """
1091
- The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivity requirements defined in it.
1178
+ The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
1092
1179
  """
1093
1180
  return pulumi.get(self, "username")
1094
1181
 
@@ -1192,6 +1279,7 @@ class AwaitableGetConnectionResult(GetConnectionResult):
1192
1279
  service_account_key_file_secret_id=self.service_account_key_file_secret_id,
1193
1280
  session_mode=self.session_mode,
1194
1281
  should_use_jndi=self.should_use_jndi,
1282
+ should_use_resource_principal=self.should_use_resource_principal,
1195
1283
  should_validate_server_certificate=self.should_validate_server_certificate,
1196
1284
  ssl_ca=self.ssl_ca,
1197
1285
  ssl_cert=self.ssl_cert,
@@ -1207,13 +1295,20 @@ class AwaitableGetConnectionResult(GetConnectionResult):
1207
1295
  ssl_mode=self.ssl_mode,
1208
1296
  ssl_server_certificate=self.ssl_server_certificate,
1209
1297
  state=self.state,
1298
+ storage_credential_name=self.storage_credential_name,
1210
1299
  stream_pool_id=self.stream_pool_id,
1211
1300
  subnet_id=self.subnet_id,
1212
1301
  system_tags=self.system_tags,
1213
1302
  technology_type=self.technology_type,
1214
1303
  tenancy_id=self.tenancy_id,
1304
+ tenant_id=self.tenant_id,
1215
1305
  time_created=self.time_created,
1216
1306
  time_updated=self.time_updated,
1307
+ tls_ca_file=self.tls_ca_file,
1308
+ tls_certificate_key_file=self.tls_certificate_key_file,
1309
+ tls_certificate_key_file_password=self.tls_certificate_key_file_password,
1310
+ tls_certificate_key_file_password_secret_id=self.tls_certificate_key_file_password_secret_id,
1311
+ tls_certificate_key_file_secret_id=self.tls_certificate_key_file_secret_id,
1217
1312
  trigger_refresh=self.trigger_refresh,
1218
1313
  trust_store=self.trust_store,
1219
1314
  trust_store_password=self.trust_store_password,
@@ -1324,6 +1419,7 @@ def get_connection(connection_id: Optional[str] = None,
1324
1419
  service_account_key_file_secret_id=pulumi.get(__ret__, 'service_account_key_file_secret_id'),
1325
1420
  session_mode=pulumi.get(__ret__, 'session_mode'),
1326
1421
  should_use_jndi=pulumi.get(__ret__, 'should_use_jndi'),
1422
+ should_use_resource_principal=pulumi.get(__ret__, 'should_use_resource_principal'),
1327
1423
  should_validate_server_certificate=pulumi.get(__ret__, 'should_validate_server_certificate'),
1328
1424
  ssl_ca=pulumi.get(__ret__, 'ssl_ca'),
1329
1425
  ssl_cert=pulumi.get(__ret__, 'ssl_cert'),
@@ -1339,13 +1435,20 @@ def get_connection(connection_id: Optional[str] = None,
1339
1435
  ssl_mode=pulumi.get(__ret__, 'ssl_mode'),
1340
1436
  ssl_server_certificate=pulumi.get(__ret__, 'ssl_server_certificate'),
1341
1437
  state=pulumi.get(__ret__, 'state'),
1438
+ storage_credential_name=pulumi.get(__ret__, 'storage_credential_name'),
1342
1439
  stream_pool_id=pulumi.get(__ret__, 'stream_pool_id'),
1343
1440
  subnet_id=pulumi.get(__ret__, 'subnet_id'),
1344
1441
  system_tags=pulumi.get(__ret__, 'system_tags'),
1345
1442
  technology_type=pulumi.get(__ret__, 'technology_type'),
1346
1443
  tenancy_id=pulumi.get(__ret__, 'tenancy_id'),
1444
+ tenant_id=pulumi.get(__ret__, 'tenant_id'),
1347
1445
  time_created=pulumi.get(__ret__, 'time_created'),
1348
1446
  time_updated=pulumi.get(__ret__, 'time_updated'),
1447
+ tls_ca_file=pulumi.get(__ret__, 'tls_ca_file'),
1448
+ tls_certificate_key_file=pulumi.get(__ret__, 'tls_certificate_key_file'),
1449
+ tls_certificate_key_file_password=pulumi.get(__ret__, 'tls_certificate_key_file_password'),
1450
+ tls_certificate_key_file_password_secret_id=pulumi.get(__ret__, 'tls_certificate_key_file_password_secret_id'),
1451
+ tls_certificate_key_file_secret_id=pulumi.get(__ret__, 'tls_certificate_key_file_secret_id'),
1349
1452
  trigger_refresh=pulumi.get(__ret__, 'trigger_refresh'),
1350
1453
  trust_store=pulumi.get(__ret__, 'trust_store'),
1351
1454
  trust_store_password=pulumi.get(__ret__, 'trust_store_password'),
@@ -1453,6 +1556,7 @@ def get_connection_output(connection_id: Optional[pulumi.Input[str]] = None,
1453
1556
  service_account_key_file_secret_id=pulumi.get(__response__, 'service_account_key_file_secret_id'),
1454
1557
  session_mode=pulumi.get(__response__, 'session_mode'),
1455
1558
  should_use_jndi=pulumi.get(__response__, 'should_use_jndi'),
1559
+ should_use_resource_principal=pulumi.get(__response__, 'should_use_resource_principal'),
1456
1560
  should_validate_server_certificate=pulumi.get(__response__, 'should_validate_server_certificate'),
1457
1561
  ssl_ca=pulumi.get(__response__, 'ssl_ca'),
1458
1562
  ssl_cert=pulumi.get(__response__, 'ssl_cert'),
@@ -1468,13 +1572,20 @@ def get_connection_output(connection_id: Optional[pulumi.Input[str]] = None,
1468
1572
  ssl_mode=pulumi.get(__response__, 'ssl_mode'),
1469
1573
  ssl_server_certificate=pulumi.get(__response__, 'ssl_server_certificate'),
1470
1574
  state=pulumi.get(__response__, 'state'),
1575
+ storage_credential_name=pulumi.get(__response__, 'storage_credential_name'),
1471
1576
  stream_pool_id=pulumi.get(__response__, 'stream_pool_id'),
1472
1577
  subnet_id=pulumi.get(__response__, 'subnet_id'),
1473
1578
  system_tags=pulumi.get(__response__, 'system_tags'),
1474
1579
  technology_type=pulumi.get(__response__, 'technology_type'),
1475
1580
  tenancy_id=pulumi.get(__response__, 'tenancy_id'),
1581
+ tenant_id=pulumi.get(__response__, 'tenant_id'),
1476
1582
  time_created=pulumi.get(__response__, 'time_created'),
1477
1583
  time_updated=pulumi.get(__response__, 'time_updated'),
1584
+ tls_ca_file=pulumi.get(__response__, 'tls_ca_file'),
1585
+ tls_certificate_key_file=pulumi.get(__response__, 'tls_certificate_key_file'),
1586
+ tls_certificate_key_file_password=pulumi.get(__response__, 'tls_certificate_key_file_password'),
1587
+ tls_certificate_key_file_password_secret_id=pulumi.get(__response__, 'tls_certificate_key_file_password_secret_id'),
1588
+ tls_certificate_key_file_secret_id=pulumi.get(__response__, 'tls_certificate_key_file_secret_id'),
1478
1589
  trigger_refresh=pulumi.get(__response__, 'trigger_refresh'),
1479
1590
  trust_store=pulumi.get(__response__, 'trust_store'),
1480
1591
  trust_store_password=pulumi.get(__response__, 'trust_store_password'),