pulumi-oci 3.4.0a1755714728__py3-none-any.whl → 3.5.0a1756190604__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 (198) hide show
  1. pulumi_oci/__init__.py +168 -43
  2. pulumi_oci/aidocument/__init__.py +1 -0
  3. pulumi_oci/aidocument/_inputs.py +476 -6
  4. pulumi_oci/aidocument/get_model.py +63 -2
  5. pulumi_oci/aidocument/get_model_type.py +179 -0
  6. pulumi_oci/aidocument/get_models.py +1 -1
  7. pulumi_oci/aidocument/get_project.py +17 -2
  8. pulumi_oci/aidocument/get_projects.py +1 -1
  9. pulumi_oci/aidocument/model.py +188 -0
  10. pulumi_oci/aidocument/outputs.py +883 -8
  11. pulumi_oci/aidocument/processor_job.py +22 -4
  12. pulumi_oci/aidocument/project.py +50 -1
  13. pulumi_oci/apigateway/_inputs.py +608 -12
  14. pulumi_oci/apigateway/api.py +127 -38
  15. pulumi_oci/apigateway/certificate.py +122 -3
  16. pulumi_oci/apigateway/deployment.py +120 -3
  17. pulumi_oci/apigateway/gateway.py +124 -7
  18. pulumi_oci/apigateway/get_api.py +40 -1
  19. pulumi_oci/apigateway/get_certificate.py +41 -1
  20. pulumi_oci/apigateway/get_deployment.py +40 -1
  21. pulumi_oci/apigateway/get_gateway.py +40 -1
  22. pulumi_oci/apigateway/get_subscriber.py +40 -1
  23. pulumi_oci/apigateway/get_usage_plan.py +40 -1
  24. pulumi_oci/apigateway/outputs.py +1413 -39
  25. pulumi_oci/apigateway/subscriber.py +120 -3
  26. pulumi_oci/apigateway/usage_plan.py +127 -38
  27. pulumi_oci/apmconfig/_inputs.py +199 -15
  28. pulumi_oci/apmconfig/config.py +535 -17
  29. pulumi_oci/apmconfig/get_config.py +141 -1
  30. pulumi_oci/apmconfig/get_configs.py +2 -2
  31. pulumi_oci/apmconfig/outputs.py +509 -13
  32. pulumi_oci/apmtraces/__init__.py +5 -0
  33. pulumi_oci/apmtraces/_inputs.py +413 -0
  34. pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
  35. pulumi_oci/apmtraces/get_log.py +356 -0
  36. pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
  37. pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
  38. pulumi_oci/apmtraces/get_trace.py +4 -4
  39. pulumi_oci/apmtraces/outputs.py +971 -0
  40. pulumi_oci/apmtraces/scheduled_query.py +925 -0
  41. pulumi_oci/autoscaling/_inputs.py +177 -13
  42. pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
  43. pulumi_oci/autoscaling/outputs.py +269 -23
  44. pulumi_oci/core/_inputs.py +184 -0
  45. pulumi_oci/core/get_ipv6.py +15 -1
  46. pulumi_oci/core/ipv6.py +49 -0
  47. pulumi_oci/core/outputs.py +365 -0
  48. pulumi_oci/database/__init__.py +3 -0
  49. pulumi_oci/database/_inputs.py +139 -7
  50. pulumi_oci/database/autonomous_container_database.py +94 -0
  51. pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
  52. pulumi_oci/database/autonomous_database.py +578 -568
  53. pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
  54. pulumi_oci/database/get_autonomous_container_database.py +29 -1
  55. pulumi_oci/database/get_autonomous_database.py +65 -1
  56. pulumi_oci/database/get_autonomous_databases.py +6 -1
  57. pulumi_oci/database/get_pluggable_database_snapshot.py +253 -0
  58. pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
  59. pulumi_oci/database/outputs.py +470 -75
  60. pulumi_oci/database/pluggable_database.py +0 -14
  61. pulumi_oci/database/pluggable_database_snapshot.py +539 -0
  62. pulumi_oci/databasemanagement/__init__.py +37 -0
  63. pulumi_oci/databasemanagement/_inputs.py +9516 -3414
  64. pulumi_oci/databasemanagement/cloud_asm.py +791 -0
  65. pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
  66. pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
  67. pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
  68. pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
  69. pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
  70. pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
  71. pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
  72. pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
  73. pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
  74. pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
  75. pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
  76. pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
  77. pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
  78. pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
  79. pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
  80. pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
  81. pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
  82. pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
  83. pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
  84. pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
  85. pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
  86. pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
  87. pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
  88. pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
  89. pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
  90. pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
  91. pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
  92. pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
  93. pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
  94. pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
  95. pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
  96. pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
  97. pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
  98. pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
  99. pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
  100. pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
  101. pulumi_oci/databasemanagement/get_managed_database.py +2 -2
  102. pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
  103. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
  104. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
  105. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
  106. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
  107. pulumi_oci/databasemanagement/outputs.py +18049 -4222
  108. pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +22 -1
  109. pulumi_oci/datasafe/get_security_assessment_findings.py +2 -2
  110. pulumi_oci/datasafe/get_security_assessments.py +2 -2
  111. pulumi_oci/datasafe/outputs.py +192 -2
  112. pulumi_oci/datascience/__init__.py +10 -0
  113. pulumi_oci/datascience/_inputs.py +6760 -2206
  114. pulumi_oci/datascience/get_job.py +15 -1
  115. pulumi_oci/datascience/get_job_run.py +44 -2
  116. pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
  117. pulumi_oci/datascience/get_model_group.py +405 -0
  118. pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
  119. pulumi_oci/datascience/get_model_group_models.py +240 -0
  120. pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
  121. pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
  122. pulumi_oci/datascience/get_model_groups.py +265 -0
  123. pulumi_oci/datascience/get_pipeline_run.py +15 -1
  124. pulumi_oci/datascience/job.py +81 -154
  125. pulumi_oci/datascience/job_run.py +250 -4
  126. pulumi_oci/datascience/model_group.py +1111 -0
  127. pulumi_oci/datascience/model_group_artifact.py +369 -0
  128. pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
  129. pulumi_oci/datascience/notebook_session.py +4 -0
  130. pulumi_oci/datascience/outputs.py +17168 -8021
  131. pulumi_oci/datascience/pipeline_run.py +87 -0
  132. pulumi_oci/goldengate/_inputs.py +3 -3
  133. pulumi_oci/goldengate/connection.py +175 -56
  134. pulumi_oci/goldengate/get_connection.py +20 -4
  135. pulumi_oci/goldengate/outputs.py +27 -8
  136. pulumi_oci/managementagent/__init__.py +4 -0
  137. pulumi_oci/managementagent/_inputs.py +129 -0
  138. pulumi_oci/managementagent/get_management_agent.py +26 -1
  139. pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
  140. pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
  141. pulumi_oci/managementagent/get_named_credential.py +268 -0
  142. pulumi_oci/managementagent/get_named_credentials.py +221 -0
  143. pulumi_oci/managementagent/management_agent.py +48 -0
  144. pulumi_oci/managementagent/management_agent_install_key.py +84 -0
  145. pulumi_oci/managementagent/named_credential.py +706 -0
  146. pulumi_oci/managementagent/outputs.py +515 -0
  147. pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
  148. pulumi_oci/oci/__init__.py +3 -0
  149. pulumi_oci/oci/_inputs.py +146 -0
  150. pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
  151. pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
  152. pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
  153. pulumi_oci/oci/outputs.py +367 -0
  154. pulumi_oci/opsi/_inputs.py +1001 -149
  155. pulumi_oci/opsi/database_insight.py +22 -3
  156. pulumi_oci/opsi/exadata_insight.py +86 -6
  157. pulumi_oci/opsi/outputs.py +1438 -178
  158. pulumi_oci/psql/configuration.py +109 -19
  159. pulumi_oci/psql/db_system.py +7 -7
  160. pulumi_oci/psql/get_configuration.py +30 -2
  161. pulumi_oci/psql/get_configurations.py +49 -5
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_default_configuration.py +30 -4
  164. pulumi_oci/psql/get_default_configurations.py +49 -5
  165. pulumi_oci/psql/outputs.py +47 -14
  166. pulumi_oci/pulumi-plugin.json +1 -1
  167. pulumi_oci/redis/__init__.py +6 -0
  168. pulumi_oci/redis/_inputs.py +217 -0
  169. pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
  170. pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
  171. pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
  172. pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
  173. pulumi_oci/redis/get_redis_cluster.py +15 -1
  174. pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
  175. pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
  176. pulumi_oci/redis/outputs.py +713 -0
  177. pulumi_oci/redis/redis_cluster.py +49 -0
  178. pulumi_oci/vault/_inputs.py +198 -0
  179. pulumi_oci/vault/get_secret.py +43 -1
  180. pulumi_oci/vault/outputs.py +434 -0
  181. pulumi_oci/vault/secret.py +103 -0
  182. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0a1756190604.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0a1756190604.dist-info}/RECORD +185 -134
  184. pulumi_oci/aianomalydetection/__init__.py +0 -25
  185. pulumi_oci/aianomalydetection/_inputs.py +0 -1742
  186. pulumi_oci/aianomalydetection/ai_private_endpoint.py +0 -643
  187. pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
  188. pulumi_oci/aianomalydetection/get_ai_private_endpoint.py +0 -281
  189. pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
  190. pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
  191. pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
  192. pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
  193. pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
  194. pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
  195. pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
  196. pulumi_oci/aianomalydetection/outputs.py +0 -3699
  197. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0a1756190604.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0a1756190604.dist-info}/top_level.txt +0 -0
@@ -32,6 +32,7 @@ class ConnectionArgs:
32
32
  additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionAdditionalAttributeArgs']]]] = None,
33
33
  authentication_mode: Optional[pulumi.Input[_builtins.str]] = None,
34
34
  authentication_type: Optional[pulumi.Input[_builtins.str]] = None,
35
+ azure_authority_host: Optional[pulumi.Input[_builtins.str]] = None,
35
36
  azure_tenant_id: Optional[pulumi.Input[_builtins.str]] = None,
36
37
  bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]]] = None,
37
38
  catalog: Optional[pulumi.Input['ConnectionCatalogArgs']] = None,
@@ -141,6 +142,9 @@ class ConnectionArgs:
141
142
  :param pulumi.Input[Sequence[pulumi.Input['ConnectionAdditionalAttributeArgs']]] additional_attributes: (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
142
143
  :param pulumi.Input[_builtins.str] authentication_mode: (Updatable) Authentication mode. It can be provided at creation of Oracle Autonomous Database Serverless connections, when a databaseId is provided. The default value is MTLS.
143
144
  :param pulumi.Input[_builtins.str] authentication_type: (Updatable) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
145
+ :param pulumi.Input[_builtins.str] azure_authority_host: (Updatable) The endpoint used for authentication with Microsoft Entra ID (formerly Azure Active Directory). Default value: https://login.microsoftonline.com When connecting to a non-public Azure Cloud, the endpoint must be provided, eg:
146
+ * Azure China: https://login.chinacloudapi.cn/
147
+ * Azure US Government: https://login.microsoftonline.us/
144
148
  :param pulumi.Input[_builtins.str] azure_tenant_id: (Updatable) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
145
149
  :param pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]] bootstrap_servers: (Updatable) Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `"server1.example.com:9092,server2.example.com:9092"`
146
150
  :param pulumi.Input['ConnectionCatalogArgs'] catalog: (Updatable) The information about a new catalog of given type used in an Iceberg connection.
@@ -159,8 +163,8 @@ class ConnectionArgs:
159
163
  :param pulumi.Input[_builtins.str] deployment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
160
164
  :param pulumi.Input[_builtins.str] description: (Updatable) Metadata about this specific object.
161
165
  :param pulumi.Input[_builtins.bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
162
- :param pulumi.Input[_builtins.str] endpoint: (Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
163
- :param pulumi.Input[_builtins.str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
166
+ :param pulumi.Input[_builtins.str] endpoint: (Updatable) The endpoint URL of the 3rd party cloud service. e.g.: 'https://kinesis.us-east-1.amazonaws.com' If not provided, GoldenGate will default to the default endpoint in the `region`.
167
+ :param pulumi.Input[_builtins.str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. E.g.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
164
168
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.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"}`
165
169
  :param pulumi.Input[_builtins.str] host: (Updatable) The name or address of a host. In case of Generic connection type host and port separated by colon. Example: `"server.example.com:1234"`
166
170
  For multiple hosts, provide a comma separated list. Example: `"server1.example.com:1000,server1.example.com:2000"`
@@ -190,7 +194,7 @@ class ConnectionArgs:
190
194
  :param pulumi.Input[_builtins.str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
191
195
  :param pulumi.Input[_builtins.str] public_key_fingerprint: (Updatable) The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
192
196
  :param pulumi.Input[_builtins.str] redis_cluster_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
193
- :param pulumi.Input[_builtins.str] region: (Updatable) The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
197
+ :param pulumi.Input[_builtins.str] region: (Updatable) The name of the AWS region where the bucket is created. If not provided, GoldenGate will default to 'us-west-2'. Note: this property will become mandatory after May 20, 2026.
194
198
  :param pulumi.Input[_builtins.str] routing_method: (Updatable) 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.
195
199
  :param pulumi.Input[_builtins.str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D Deprecated: This field is deprecated and replaced by "sasTokenSecretId". This field will be removed after February 15 2026.
196
200
  :param pulumi.Input[_builtins.str] sas_token_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the sas token is stored. Note: When provided, 'sasToken' field must not be provided.
@@ -202,14 +206,22 @@ class ConnectionArgs:
202
206
  :param pulumi.Input[_builtins.str] service_account_key_file_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the service account key file is stored, which contains the credentials required to use Google Cloud Storage. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
203
207
  :param pulumi.Input[_builtins.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.
204
208
  :param pulumi.Input[_builtins.bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
205
- :param pulumi.Input[_builtins.bool] should_use_resource_principal: (Updatable) Indicates that the user intents to connect to the instance through resource principal.
209
+ :param pulumi.Input[_builtins.bool] should_use_resource_principal: (Updatable) Specifies that the user intends to authenticate to the instance using a resource principal. Default: false
206
210
  :param pulumi.Input[_builtins.bool] should_validate_server_certificate: (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
207
211
  :param pulumi.Input[_builtins.str] ssl_ca: (Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
208
212
  :param pulumi.Input[_builtins.str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file containing the client public key (for 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
209
- :param pulumi.Input[_builtins.str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
210
- :param pulumi.Input[_builtins.str] ssl_client_keystash_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. Note: When provided, 'sslClientKeystash' field must not be provided.
211
- :param pulumi.Input[_builtins.str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
212
- :param pulumi.Input[_builtins.str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
213
+ :param pulumi.Input[_builtins.str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
214
+
215
+ Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
216
+ :param pulumi.Input[_builtins.str] ssl_client_keystash_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
217
+
218
+ Note: When provided, 'sslClientKeystash' field must not be provided.
219
+ :param pulumi.Input[_builtins.str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
220
+
221
+ Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
222
+ :param pulumi.Input[_builtins.str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
223
+
224
+ Note: When provided, 'sslClientKeystoredb' field must not be provided.
213
225
  :param pulumi.Input[_builtins.str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
214
226
  :param pulumi.Input[_builtins.str] ssl_key: (Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "sslKeySecretId". This field will be removed after February 15 2026.
215
227
  :param pulumi.Input[_builtins.str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided. Deprecated: This field is deprecated and replaced by "sslKeyPasswordSecretId". This field will be removed after February 15 2026.
@@ -264,6 +276,8 @@ class ConnectionArgs:
264
276
  pulumi.set(__self__, "authentication_mode", authentication_mode)
265
277
  if authentication_type is not None:
266
278
  pulumi.set(__self__, "authentication_type", authentication_type)
279
+ if azure_authority_host is not None:
280
+ pulumi.set(__self__, "azure_authority_host", azure_authority_host)
267
281
  if azure_tenant_id is not None:
268
282
  pulumi.set(__self__, "azure_tenant_id", azure_tenant_id)
269
283
  if bootstrap_servers is not None:
@@ -589,6 +603,20 @@ class ConnectionArgs:
589
603
  def authentication_type(self, value: Optional[pulumi.Input[_builtins.str]]):
590
604
  pulumi.set(self, "authentication_type", value)
591
605
 
606
+ @_builtins.property
607
+ @pulumi.getter(name="azureAuthorityHost")
608
+ def azure_authority_host(self) -> Optional[pulumi.Input[_builtins.str]]:
609
+ """
610
+ (Updatable) The endpoint used for authentication with Microsoft Entra ID (formerly Azure Active Directory). Default value: https://login.microsoftonline.com When connecting to a non-public Azure Cloud, the endpoint must be provided, eg:
611
+ * Azure China: https://login.chinacloudapi.cn/
612
+ * Azure US Government: https://login.microsoftonline.us/
613
+ """
614
+ return pulumi.get(self, "azure_authority_host")
615
+
616
+ @azure_authority_host.setter
617
+ def azure_authority_host(self, value: Optional[pulumi.Input[_builtins.str]]):
618
+ pulumi.set(self, "azure_authority_host", value)
619
+
592
620
  @_builtins.property
593
621
  @pulumi.getter(name="azureTenantId")
594
622
  def azure_tenant_id(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -809,7 +837,7 @@ class ConnectionArgs:
809
837
  @pulumi.getter
810
838
  def endpoint(self) -> Optional[pulumi.Input[_builtins.str]]:
811
839
  """
812
- (Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
840
+ (Updatable) The endpoint URL of the 3rd party cloud service. e.g.: 'https://kinesis.us-east-1.amazonaws.com' If not provided, GoldenGate will default to the default endpoint in the `region`.
813
841
  """
814
842
  return pulumi.get(self, "endpoint")
815
843
 
@@ -821,7 +849,7 @@ class ConnectionArgs:
821
849
  @pulumi.getter
822
850
  def fingerprint(self) -> Optional[pulumi.Input[_builtins.str]]:
823
851
  """
824
- (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
852
+ (Updatable) Fingerprint required by TLS security protocol. E.g.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
825
853
  """
826
854
  return pulumi.get(self, "fingerprint")
827
855
 
@@ -1157,7 +1185,7 @@ class ConnectionArgs:
1157
1185
  @pulumi.getter
1158
1186
  def region(self) -> Optional[pulumi.Input[_builtins.str]]:
1159
1187
  """
1160
- (Updatable) The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
1188
+ (Updatable) The name of the AWS region where the bucket is created. If not provided, GoldenGate will default to 'us-west-2'. Note: this property will become mandatory after May 20, 2026.
1161
1189
  """
1162
1190
  return pulumi.get(self, "region")
1163
1191
 
@@ -1301,7 +1329,7 @@ class ConnectionArgs:
1301
1329
  @pulumi.getter(name="shouldUseResourcePrincipal")
1302
1330
  def should_use_resource_principal(self) -> Optional[pulumi.Input[_builtins.bool]]:
1303
1331
  """
1304
- (Updatable) Indicates that the user intents to connect to the instance through resource principal.
1332
+ (Updatable) Specifies that the user intends to authenticate to the instance using a resource principal. Default: false
1305
1333
  """
1306
1334
  return pulumi.get(self, "should_use_resource_principal")
1307
1335
 
@@ -1349,7 +1377,9 @@ class ConnectionArgs:
1349
1377
  @pulumi.getter(name="sslClientKeystash")
1350
1378
  def ssl_client_keystash(self) -> Optional[pulumi.Input[_builtins.str]]:
1351
1379
  """
1352
- (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
1380
+ (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
1381
+
1382
+ Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
1353
1383
  """
1354
1384
  return pulumi.get(self, "ssl_client_keystash")
1355
1385
 
@@ -1361,7 +1391,9 @@ class ConnectionArgs:
1361
1391
  @pulumi.getter(name="sslClientKeystashSecretId")
1362
1392
  def ssl_client_keystash_secret_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1363
1393
  """
1364
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. Note: When provided, 'sslClientKeystash' field must not be provided.
1394
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
1395
+
1396
+ Note: When provided, 'sslClientKeystash' field must not be provided.
1365
1397
  """
1366
1398
  return pulumi.get(self, "ssl_client_keystash_secret_id")
1367
1399
 
@@ -1373,7 +1405,9 @@ class ConnectionArgs:
1373
1405
  @pulumi.getter(name="sslClientKeystoredb")
1374
1406
  def ssl_client_keystoredb(self) -> Optional[pulumi.Input[_builtins.str]]:
1375
1407
  """
1376
- (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
1408
+ (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
1409
+
1410
+ Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
1377
1411
  """
1378
1412
  return pulumi.get(self, "ssl_client_keystoredb")
1379
1413
 
@@ -1385,7 +1419,9 @@ class ConnectionArgs:
1385
1419
  @pulumi.getter(name="sslClientKeystoredbSecretId")
1386
1420
  def ssl_client_keystoredb_secret_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1387
1421
  """
1388
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
1422
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
1423
+
1424
+ Note: When provided, 'sslClientKeystoredb' field must not be provided.
1389
1425
  """
1390
1426
  return pulumi.get(self, "ssl_client_keystoredb_secret_id")
1391
1427
 
@@ -1758,6 +1794,7 @@ class _ConnectionState:
1758
1794
  additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionAdditionalAttributeArgs']]]] = None,
1759
1795
  authentication_mode: Optional[pulumi.Input[_builtins.str]] = None,
1760
1796
  authentication_type: Optional[pulumi.Input[_builtins.str]] = None,
1797
+ azure_authority_host: Optional[pulumi.Input[_builtins.str]] = None,
1761
1798
  azure_tenant_id: Optional[pulumi.Input[_builtins.str]] = None,
1762
1799
  bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]]] = None,
1763
1800
  catalog: Optional[pulumi.Input['ConnectionCatalogArgs']] = None,
@@ -1873,6 +1910,9 @@ class _ConnectionState:
1873
1910
  :param pulumi.Input[Sequence[pulumi.Input['ConnectionAdditionalAttributeArgs']]] additional_attributes: (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
1874
1911
  :param pulumi.Input[_builtins.str] authentication_mode: (Updatable) Authentication mode. It can be provided at creation of Oracle Autonomous Database Serverless connections, when a databaseId is provided. The default value is MTLS.
1875
1912
  :param pulumi.Input[_builtins.str] authentication_type: (Updatable) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
1913
+ :param pulumi.Input[_builtins.str] azure_authority_host: (Updatable) The endpoint used for authentication with Microsoft Entra ID (formerly Azure Active Directory). Default value: https://login.microsoftonline.com When connecting to a non-public Azure Cloud, the endpoint must be provided, eg:
1914
+ * Azure China: https://login.chinacloudapi.cn/
1915
+ * Azure US Government: https://login.microsoftonline.us/
1876
1916
  :param pulumi.Input[_builtins.str] azure_tenant_id: (Updatable) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
1877
1917
  :param pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]] bootstrap_servers: (Updatable) Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `"server1.example.com:9092,server2.example.com:9092"`
1878
1918
  :param pulumi.Input['ConnectionCatalogArgs'] catalog: (Updatable) The information about a new catalog of given type used in an Iceberg connection.
@@ -1894,8 +1934,8 @@ class _ConnectionState:
1894
1934
  :param pulumi.Input[_builtins.str] description: (Updatable) Metadata about this specific object.
1895
1935
  :param pulumi.Input[_builtins.str] display_name: (Updatable) An object's Display Name.
1896
1936
  :param pulumi.Input[_builtins.bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
1897
- :param pulumi.Input[_builtins.str] endpoint: (Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
1898
- :param pulumi.Input[_builtins.str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
1937
+ :param pulumi.Input[_builtins.str] endpoint: (Updatable) The endpoint URL of the 3rd party cloud service. e.g.: 'https://kinesis.us-east-1.amazonaws.com' If not provided, GoldenGate will default to the default endpoint in the `region`.
1938
+ :param pulumi.Input[_builtins.str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. E.g.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
1899
1939
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.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"}`
1900
1940
  :param pulumi.Input[_builtins.str] host: (Updatable) The name or address of a host. In case of Generic connection type host and port separated by colon. Example: `"server.example.com:1234"`
1901
1941
  For multiple hosts, provide a comma separated list. Example: `"server1.example.com:1000,server1.example.com:2000"`
@@ -1927,7 +1967,7 @@ class _ConnectionState:
1927
1967
  :param pulumi.Input[_builtins.str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
1928
1968
  :param pulumi.Input[_builtins.str] public_key_fingerprint: (Updatable) The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
1929
1969
  :param pulumi.Input[_builtins.str] redis_cluster_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
1930
- :param pulumi.Input[_builtins.str] region: (Updatable) The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
1970
+ :param pulumi.Input[_builtins.str] region: (Updatable) The name of the AWS region where the bucket is created. If not provided, GoldenGate will default to 'us-west-2'. Note: this property will become mandatory after May 20, 2026.
1931
1971
  :param pulumi.Input[_builtins.str] routing_method: (Updatable) 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.
1932
1972
  :param pulumi.Input[_builtins.str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D Deprecated: This field is deprecated and replaced by "sasTokenSecretId". This field will be removed after February 15 2026.
1933
1973
  :param pulumi.Input[_builtins.str] sas_token_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the sas token is stored. Note: When provided, 'sasToken' field must not be provided.
@@ -1939,14 +1979,22 @@ class _ConnectionState:
1939
1979
  :param pulumi.Input[_builtins.str] service_account_key_file_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the service account key file is stored, which contains the credentials required to use Google Cloud Storage. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
1940
1980
  :param pulumi.Input[_builtins.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.
1941
1981
  :param pulumi.Input[_builtins.bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
1942
- :param pulumi.Input[_builtins.bool] should_use_resource_principal: (Updatable) Indicates that the user intents to connect to the instance through resource principal.
1982
+ :param pulumi.Input[_builtins.bool] should_use_resource_principal: (Updatable) Specifies that the user intends to authenticate to the instance using a resource principal. Default: false
1943
1983
  :param pulumi.Input[_builtins.bool] should_validate_server_certificate: (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
1944
1984
  :param pulumi.Input[_builtins.str] ssl_ca: (Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
1945
1985
  :param pulumi.Input[_builtins.str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file containing the client public key (for 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
1946
- :param pulumi.Input[_builtins.str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
1947
- :param pulumi.Input[_builtins.str] ssl_client_keystash_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. Note: When provided, 'sslClientKeystash' field must not be provided.
1948
- :param pulumi.Input[_builtins.str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
1949
- :param pulumi.Input[_builtins.str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
1986
+ :param pulumi.Input[_builtins.str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
1987
+
1988
+ Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
1989
+ :param pulumi.Input[_builtins.str] ssl_client_keystash_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
1990
+
1991
+ Note: When provided, 'sslClientKeystash' field must not be provided.
1992
+ :param pulumi.Input[_builtins.str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
1993
+
1994
+ Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
1995
+ :param pulumi.Input[_builtins.str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
1996
+
1997
+ Note: When provided, 'sslClientKeystoredb' field must not be provided.
1950
1998
  :param pulumi.Input[_builtins.str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
1951
1999
  :param pulumi.Input[_builtins.str] ssl_key: (Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "sslKeySecretId". This field will be removed after February 15 2026.
1952
2000
  :param pulumi.Input[_builtins.str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided. Deprecated: This field is deprecated and replaced by "sslKeyPasswordSecretId". This field will be removed after February 15 2026.
@@ -2002,6 +2050,8 @@ class _ConnectionState:
2002
2050
  pulumi.set(__self__, "authentication_mode", authentication_mode)
2003
2051
  if authentication_type is not None:
2004
2052
  pulumi.set(__self__, "authentication_type", authentication_type)
2053
+ if azure_authority_host is not None:
2054
+ pulumi.set(__self__, "azure_authority_host", azure_authority_host)
2005
2055
  if azure_tenant_id is not None:
2006
2056
  pulumi.set(__self__, "azure_tenant_id", azure_tenant_id)
2007
2057
  if bootstrap_servers is not None:
@@ -2299,6 +2349,20 @@ class _ConnectionState:
2299
2349
  def authentication_type(self, value: Optional[pulumi.Input[_builtins.str]]):
2300
2350
  pulumi.set(self, "authentication_type", value)
2301
2351
 
2352
+ @_builtins.property
2353
+ @pulumi.getter(name="azureAuthorityHost")
2354
+ def azure_authority_host(self) -> Optional[pulumi.Input[_builtins.str]]:
2355
+ """
2356
+ (Updatable) The endpoint used for authentication with Microsoft Entra ID (formerly Azure Active Directory). Default value: https://login.microsoftonline.com When connecting to a non-public Azure Cloud, the endpoint must be provided, eg:
2357
+ * Azure China: https://login.chinacloudapi.cn/
2358
+ * Azure US Government: https://login.microsoftonline.us/
2359
+ """
2360
+ return pulumi.get(self, "azure_authority_host")
2361
+
2362
+ @azure_authority_host.setter
2363
+ def azure_authority_host(self, value: Optional[pulumi.Input[_builtins.str]]):
2364
+ pulumi.set(self, "azure_authority_host", value)
2365
+
2302
2366
  @_builtins.property
2303
2367
  @pulumi.getter(name="azureTenantId")
2304
2368
  def azure_tenant_id(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -2555,7 +2619,7 @@ class _ConnectionState:
2555
2619
  @pulumi.getter
2556
2620
  def endpoint(self) -> Optional[pulumi.Input[_builtins.str]]:
2557
2621
  """
2558
- (Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
2622
+ (Updatable) The endpoint URL of the 3rd party cloud service. e.g.: 'https://kinesis.us-east-1.amazonaws.com' If not provided, GoldenGate will default to the default endpoint in the `region`.
2559
2623
  """
2560
2624
  return pulumi.get(self, "endpoint")
2561
2625
 
@@ -2567,7 +2631,7 @@ class _ConnectionState:
2567
2631
  @pulumi.getter
2568
2632
  def fingerprint(self) -> Optional[pulumi.Input[_builtins.str]]:
2569
2633
  """
2570
- (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
2634
+ (Updatable) Fingerprint required by TLS security protocol. E.g.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
2571
2635
  """
2572
2636
  return pulumi.get(self, "fingerprint")
2573
2637
 
@@ -2927,7 +2991,7 @@ class _ConnectionState:
2927
2991
  @pulumi.getter
2928
2992
  def region(self) -> Optional[pulumi.Input[_builtins.str]]:
2929
2993
  """
2930
- (Updatable) The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
2994
+ (Updatable) The name of the AWS region where the bucket is created. If not provided, GoldenGate will default to 'us-west-2'. Note: this property will become mandatory after May 20, 2026.
2931
2995
  """
2932
2996
  return pulumi.get(self, "region")
2933
2997
 
@@ -3071,7 +3135,7 @@ class _ConnectionState:
3071
3135
  @pulumi.getter(name="shouldUseResourcePrincipal")
3072
3136
  def should_use_resource_principal(self) -> Optional[pulumi.Input[_builtins.bool]]:
3073
3137
  """
3074
- (Updatable) Indicates that the user intents to connect to the instance through resource principal.
3138
+ (Updatable) Specifies that the user intends to authenticate to the instance using a resource principal. Default: false
3075
3139
  """
3076
3140
  return pulumi.get(self, "should_use_resource_principal")
3077
3141
 
@@ -3119,7 +3183,9 @@ class _ConnectionState:
3119
3183
  @pulumi.getter(name="sslClientKeystash")
3120
3184
  def ssl_client_keystash(self) -> Optional[pulumi.Input[_builtins.str]]:
3121
3185
  """
3122
- (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
3186
+ (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
3187
+
3188
+ Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
3123
3189
  """
3124
3190
  return pulumi.get(self, "ssl_client_keystash")
3125
3191
 
@@ -3131,7 +3197,9 @@ class _ConnectionState:
3131
3197
  @pulumi.getter(name="sslClientKeystashSecretId")
3132
3198
  def ssl_client_keystash_secret_id(self) -> Optional[pulumi.Input[_builtins.str]]:
3133
3199
  """
3134
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. Note: When provided, 'sslClientKeystash' field must not be provided.
3200
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
3201
+
3202
+ Note: When provided, 'sslClientKeystash' field must not be provided.
3135
3203
  """
3136
3204
  return pulumi.get(self, "ssl_client_keystash_secret_id")
3137
3205
 
@@ -3143,7 +3211,9 @@ class _ConnectionState:
3143
3211
  @pulumi.getter(name="sslClientKeystoredb")
3144
3212
  def ssl_client_keystoredb(self) -> Optional[pulumi.Input[_builtins.str]]:
3145
3213
  """
3146
- (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
3214
+ (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
3215
+
3216
+ Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
3147
3217
  """
3148
3218
  return pulumi.get(self, "ssl_client_keystoredb")
3149
3219
 
@@ -3155,7 +3225,9 @@ class _ConnectionState:
3155
3225
  @pulumi.getter(name="sslClientKeystoredbSecretId")
3156
3226
  def ssl_client_keystoredb_secret_id(self) -> Optional[pulumi.Input[_builtins.str]]:
3157
3227
  """
3158
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
3228
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
3229
+
3230
+ Note: When provided, 'sslClientKeystoredb' field must not be provided.
3159
3231
  """
3160
3232
  return pulumi.get(self, "ssl_client_keystoredb_secret_id")
3161
3233
 
@@ -3591,6 +3663,7 @@ class Connection(pulumi.CustomResource):
3591
3663
  additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionAdditionalAttributeArgs', 'ConnectionAdditionalAttributeArgsDict']]]]] = None,
3592
3664
  authentication_mode: Optional[pulumi.Input[_builtins.str]] = None,
3593
3665
  authentication_type: Optional[pulumi.Input[_builtins.str]] = None,
3666
+ azure_authority_host: Optional[pulumi.Input[_builtins.str]] = None,
3594
3667
  azure_tenant_id: Optional[pulumi.Input[_builtins.str]] = None,
3595
3668
  bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionBootstrapServerArgs', 'ConnectionBootstrapServerArgsDict']]]]] = None,
3596
3669
  catalog: Optional[pulumi.Input[Union['ConnectionCatalogArgs', 'ConnectionCatalogArgsDict']]] = None,
@@ -3718,6 +3791,7 @@ class Connection(pulumi.CustomResource):
3718
3791
  }],
3719
3792
  authentication_mode=connection_authentication_mode,
3720
3793
  authentication_type=connection_authentication_type,
3794
+ azure_authority_host=connection_azure_authority_host,
3721
3795
  azure_tenant_id=test_azure_tenant["id"],
3722
3796
  bootstrap_servers=[{
3723
3797
  "host": connection_bootstrap_servers_host,
@@ -3866,6 +3940,9 @@ class Connection(pulumi.CustomResource):
3866
3940
  :param pulumi.Input[Sequence[pulumi.Input[Union['ConnectionAdditionalAttributeArgs', 'ConnectionAdditionalAttributeArgsDict']]]] additional_attributes: (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
3867
3941
  :param pulumi.Input[_builtins.str] authentication_mode: (Updatable) Authentication mode. It can be provided at creation of Oracle Autonomous Database Serverless connections, when a databaseId is provided. The default value is MTLS.
3868
3942
  :param pulumi.Input[_builtins.str] authentication_type: (Updatable) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
3943
+ :param pulumi.Input[_builtins.str] azure_authority_host: (Updatable) The endpoint used for authentication with Microsoft Entra ID (formerly Azure Active Directory). Default value: https://login.microsoftonline.com When connecting to a non-public Azure Cloud, the endpoint must be provided, eg:
3944
+ * Azure China: https://login.chinacloudapi.cn/
3945
+ * Azure US Government: https://login.microsoftonline.us/
3869
3946
  :param pulumi.Input[_builtins.str] azure_tenant_id: (Updatable) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
3870
3947
  :param pulumi.Input[Sequence[pulumi.Input[Union['ConnectionBootstrapServerArgs', 'ConnectionBootstrapServerArgsDict']]]] bootstrap_servers: (Updatable) Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `"server1.example.com:9092,server2.example.com:9092"`
3871
3948
  :param pulumi.Input[Union['ConnectionCatalogArgs', 'ConnectionCatalogArgsDict']] catalog: (Updatable) The information about a new catalog of given type used in an Iceberg connection.
@@ -3887,8 +3964,8 @@ class Connection(pulumi.CustomResource):
3887
3964
  :param pulumi.Input[_builtins.str] description: (Updatable) Metadata about this specific object.
3888
3965
  :param pulumi.Input[_builtins.str] display_name: (Updatable) An object's Display Name.
3889
3966
  :param pulumi.Input[_builtins.bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
3890
- :param pulumi.Input[_builtins.str] endpoint: (Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
3891
- :param pulumi.Input[_builtins.str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
3967
+ :param pulumi.Input[_builtins.str] endpoint: (Updatable) The endpoint URL of the 3rd party cloud service. e.g.: 'https://kinesis.us-east-1.amazonaws.com' If not provided, GoldenGate will default to the default endpoint in the `region`.
3968
+ :param pulumi.Input[_builtins.str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. E.g.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
3892
3969
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.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"}`
3893
3970
  :param pulumi.Input[_builtins.str] host: (Updatable) The name or address of a host. In case of Generic connection type host and port separated by colon. Example: `"server.example.com:1234"`
3894
3971
  For multiple hosts, provide a comma separated list. Example: `"server1.example.com:1000,server1.example.com:2000"`
@@ -3918,7 +3995,7 @@ class Connection(pulumi.CustomResource):
3918
3995
  :param pulumi.Input[_builtins.str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
3919
3996
  :param pulumi.Input[_builtins.str] public_key_fingerprint: (Updatable) The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
3920
3997
  :param pulumi.Input[_builtins.str] redis_cluster_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
3921
- :param pulumi.Input[_builtins.str] region: (Updatable) The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
3998
+ :param pulumi.Input[_builtins.str] region: (Updatable) The name of the AWS region where the bucket is created. If not provided, GoldenGate will default to 'us-west-2'. Note: this property will become mandatory after May 20, 2026.
3922
3999
  :param pulumi.Input[_builtins.str] routing_method: (Updatable) 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.
3923
4000
  :param pulumi.Input[_builtins.str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D Deprecated: This field is deprecated and replaced by "sasTokenSecretId". This field will be removed after February 15 2026.
3924
4001
  :param pulumi.Input[_builtins.str] sas_token_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the sas token is stored. Note: When provided, 'sasToken' field must not be provided.
@@ -3930,14 +4007,22 @@ class Connection(pulumi.CustomResource):
3930
4007
  :param pulumi.Input[_builtins.str] service_account_key_file_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the service account key file is stored, which contains the credentials required to use Google Cloud Storage. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
3931
4008
  :param pulumi.Input[_builtins.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.
3932
4009
  :param pulumi.Input[_builtins.bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
3933
- :param pulumi.Input[_builtins.bool] should_use_resource_principal: (Updatable) Indicates that the user intents to connect to the instance through resource principal.
4010
+ :param pulumi.Input[_builtins.bool] should_use_resource_principal: (Updatable) Specifies that the user intends to authenticate to the instance using a resource principal. Default: false
3934
4011
  :param pulumi.Input[_builtins.bool] should_validate_server_certificate: (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
3935
4012
  :param pulumi.Input[_builtins.str] ssl_ca: (Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
3936
4013
  :param pulumi.Input[_builtins.str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file containing the client public key (for 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
3937
- :param pulumi.Input[_builtins.str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
3938
- :param pulumi.Input[_builtins.str] ssl_client_keystash_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. Note: When provided, 'sslClientKeystash' field must not be provided.
3939
- :param pulumi.Input[_builtins.str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
3940
- :param pulumi.Input[_builtins.str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
4014
+ :param pulumi.Input[_builtins.str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
4015
+
4016
+ Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
4017
+ :param pulumi.Input[_builtins.str] ssl_client_keystash_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
4018
+
4019
+ Note: When provided, 'sslClientKeystash' field must not be provided.
4020
+ :param pulumi.Input[_builtins.str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
4021
+
4022
+ Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
4023
+ :param pulumi.Input[_builtins.str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
4024
+
4025
+ Note: When provided, 'sslClientKeystoredb' field must not be provided.
3941
4026
  :param pulumi.Input[_builtins.str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
3942
4027
  :param pulumi.Input[_builtins.str] ssl_key: (Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "sslKeySecretId". This field will be removed after February 15 2026.
3943
4028
  :param pulumi.Input[_builtins.str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided. Deprecated: This field is deprecated and replaced by "sslKeyPasswordSecretId". This field will be removed after February 15 2026.
@@ -4007,6 +4092,7 @@ class Connection(pulumi.CustomResource):
4007
4092
  }],
4008
4093
  authentication_mode=connection_authentication_mode,
4009
4094
  authentication_type=connection_authentication_type,
4095
+ azure_authority_host=connection_azure_authority_host,
4010
4096
  azure_tenant_id=test_azure_tenant["id"],
4011
4097
  bootstrap_servers=[{
4012
4098
  "host": connection_bootstrap_servers_host,
@@ -4168,6 +4254,7 @@ class Connection(pulumi.CustomResource):
4168
4254
  additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionAdditionalAttributeArgs', 'ConnectionAdditionalAttributeArgsDict']]]]] = None,
4169
4255
  authentication_mode: Optional[pulumi.Input[_builtins.str]] = None,
4170
4256
  authentication_type: Optional[pulumi.Input[_builtins.str]] = None,
4257
+ azure_authority_host: Optional[pulumi.Input[_builtins.str]] = None,
4171
4258
  azure_tenant_id: Optional[pulumi.Input[_builtins.str]] = None,
4172
4259
  bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionBootstrapServerArgs', 'ConnectionBootstrapServerArgsDict']]]]] = None,
4173
4260
  catalog: Optional[pulumi.Input[Union['ConnectionCatalogArgs', 'ConnectionCatalogArgsDict']]] = None,
@@ -4284,6 +4371,7 @@ class Connection(pulumi.CustomResource):
4284
4371
  __props__.__dict__["additional_attributes"] = additional_attributes
4285
4372
  __props__.__dict__["authentication_mode"] = authentication_mode
4286
4373
  __props__.__dict__["authentication_type"] = authentication_type
4374
+ __props__.__dict__["azure_authority_host"] = azure_authority_host
4287
4375
  __props__.__dict__["azure_tenant_id"] = azure_tenant_id
4288
4376
  __props__.__dict__["bootstrap_servers"] = bootstrap_servers
4289
4377
  __props__.__dict__["catalog"] = catalog
@@ -4417,6 +4505,7 @@ class Connection(pulumi.CustomResource):
4417
4505
  additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionAdditionalAttributeArgs', 'ConnectionAdditionalAttributeArgsDict']]]]] = None,
4418
4506
  authentication_mode: Optional[pulumi.Input[_builtins.str]] = None,
4419
4507
  authentication_type: Optional[pulumi.Input[_builtins.str]] = None,
4508
+ azure_authority_host: Optional[pulumi.Input[_builtins.str]] = None,
4420
4509
  azure_tenant_id: Optional[pulumi.Input[_builtins.str]] = None,
4421
4510
  bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionBootstrapServerArgs', 'ConnectionBootstrapServerArgsDict']]]]] = None,
4422
4511
  catalog: Optional[pulumi.Input[Union['ConnectionCatalogArgs', 'ConnectionCatalogArgsDict']]] = None,
@@ -4537,6 +4626,9 @@ class Connection(pulumi.CustomResource):
4537
4626
  :param pulumi.Input[Sequence[pulumi.Input[Union['ConnectionAdditionalAttributeArgs', 'ConnectionAdditionalAttributeArgsDict']]]] additional_attributes: (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
4538
4627
  :param pulumi.Input[_builtins.str] authentication_mode: (Updatable) Authentication mode. It can be provided at creation of Oracle Autonomous Database Serverless connections, when a databaseId is provided. The default value is MTLS.
4539
4628
  :param pulumi.Input[_builtins.str] authentication_type: (Updatable) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
4629
+ :param pulumi.Input[_builtins.str] azure_authority_host: (Updatable) The endpoint used for authentication with Microsoft Entra ID (formerly Azure Active Directory). Default value: https://login.microsoftonline.com When connecting to a non-public Azure Cloud, the endpoint must be provided, eg:
4630
+ * Azure China: https://login.chinacloudapi.cn/
4631
+ * Azure US Government: https://login.microsoftonline.us/
4540
4632
  :param pulumi.Input[_builtins.str] azure_tenant_id: (Updatable) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
4541
4633
  :param pulumi.Input[Sequence[pulumi.Input[Union['ConnectionBootstrapServerArgs', 'ConnectionBootstrapServerArgsDict']]]] bootstrap_servers: (Updatable) Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `"server1.example.com:9092,server2.example.com:9092"`
4542
4634
  :param pulumi.Input[Union['ConnectionCatalogArgs', 'ConnectionCatalogArgsDict']] catalog: (Updatable) The information about a new catalog of given type used in an Iceberg connection.
@@ -4558,8 +4650,8 @@ class Connection(pulumi.CustomResource):
4558
4650
  :param pulumi.Input[_builtins.str] description: (Updatable) Metadata about this specific object.
4559
4651
  :param pulumi.Input[_builtins.str] display_name: (Updatable) An object's Display Name.
4560
4652
  :param pulumi.Input[_builtins.bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
4561
- :param pulumi.Input[_builtins.str] endpoint: (Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
4562
- :param pulumi.Input[_builtins.str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
4653
+ :param pulumi.Input[_builtins.str] endpoint: (Updatable) The endpoint URL of the 3rd party cloud service. e.g.: 'https://kinesis.us-east-1.amazonaws.com' If not provided, GoldenGate will default to the default endpoint in the `region`.
4654
+ :param pulumi.Input[_builtins.str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. E.g.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
4563
4655
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.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"}`
4564
4656
  :param pulumi.Input[_builtins.str] host: (Updatable) The name or address of a host. In case of Generic connection type host and port separated by colon. Example: `"server.example.com:1234"`
4565
4657
  For multiple hosts, provide a comma separated list. Example: `"server1.example.com:1000,server1.example.com:2000"`
@@ -4591,7 +4683,7 @@ class Connection(pulumi.CustomResource):
4591
4683
  :param pulumi.Input[_builtins.str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
4592
4684
  :param pulumi.Input[_builtins.str] public_key_fingerprint: (Updatable) The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
4593
4685
  :param pulumi.Input[_builtins.str] redis_cluster_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
4594
- :param pulumi.Input[_builtins.str] region: (Updatable) The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
4686
+ :param pulumi.Input[_builtins.str] region: (Updatable) The name of the AWS region where the bucket is created. If not provided, GoldenGate will default to 'us-west-2'. Note: this property will become mandatory after May 20, 2026.
4595
4687
  :param pulumi.Input[_builtins.str] routing_method: (Updatable) 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.
4596
4688
  :param pulumi.Input[_builtins.str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D Deprecated: This field is deprecated and replaced by "sasTokenSecretId". This field will be removed after February 15 2026.
4597
4689
  :param pulumi.Input[_builtins.str] sas_token_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the sas token is stored. Note: When provided, 'sasToken' field must not be provided.
@@ -4603,14 +4695,22 @@ class Connection(pulumi.CustomResource):
4603
4695
  :param pulumi.Input[_builtins.str] service_account_key_file_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the service account key file is stored, which contains the credentials required to use Google Cloud Storage. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
4604
4696
  :param pulumi.Input[_builtins.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.
4605
4697
  :param pulumi.Input[_builtins.bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
4606
- :param pulumi.Input[_builtins.bool] should_use_resource_principal: (Updatable) Indicates that the user intents to connect to the instance through resource principal.
4698
+ :param pulumi.Input[_builtins.bool] should_use_resource_principal: (Updatable) Specifies that the user intends to authenticate to the instance using a resource principal. Default: false
4607
4699
  :param pulumi.Input[_builtins.bool] should_validate_server_certificate: (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
4608
4700
  :param pulumi.Input[_builtins.str] ssl_ca: (Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
4609
4701
  :param pulumi.Input[_builtins.str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file containing the client public key (for 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
4610
- :param pulumi.Input[_builtins.str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
4611
- :param pulumi.Input[_builtins.str] ssl_client_keystash_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. Note: When provided, 'sslClientKeystash' field must not be provided.
4612
- :param pulumi.Input[_builtins.str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
4613
- :param pulumi.Input[_builtins.str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
4702
+ :param pulumi.Input[_builtins.str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
4703
+
4704
+ Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
4705
+ :param pulumi.Input[_builtins.str] ssl_client_keystash_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
4706
+
4707
+ Note: When provided, 'sslClientKeystash' field must not be provided.
4708
+ :param pulumi.Input[_builtins.str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
4709
+
4710
+ Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
4711
+ :param pulumi.Input[_builtins.str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
4712
+
4713
+ Note: When provided, 'sslClientKeystoredb' field must not be provided.
4614
4714
  :param pulumi.Input[_builtins.str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
4615
4715
  :param pulumi.Input[_builtins.str] ssl_key: (Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "sslKeySecretId". This field will be removed after February 15 2026.
4616
4716
  :param pulumi.Input[_builtins.str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided. Deprecated: This field is deprecated and replaced by "sslKeyPasswordSecretId". This field will be removed after February 15 2026.
@@ -4663,6 +4763,7 @@ class Connection(pulumi.CustomResource):
4663
4763
  __props__.__dict__["additional_attributes"] = additional_attributes
4664
4764
  __props__.__dict__["authentication_mode"] = authentication_mode
4665
4765
  __props__.__dict__["authentication_type"] = authentication_type
4766
+ __props__.__dict__["azure_authority_host"] = azure_authority_host
4666
4767
  __props__.__dict__["azure_tenant_id"] = azure_tenant_id
4667
4768
  __props__.__dict__["bootstrap_servers"] = bootstrap_servers
4668
4769
  __props__.__dict__["catalog"] = catalog
@@ -4827,6 +4928,16 @@ class Connection(pulumi.CustomResource):
4827
4928
  """
4828
4929
  return pulumi.get(self, "authentication_type")
4829
4930
 
4931
+ @_builtins.property
4932
+ @pulumi.getter(name="azureAuthorityHost")
4933
+ def azure_authority_host(self) -> pulumi.Output[_builtins.str]:
4934
+ """
4935
+ (Updatable) The endpoint used for authentication with Microsoft Entra ID (formerly Azure Active Directory). Default value: https://login.microsoftonline.com When connecting to a non-public Azure Cloud, the endpoint must be provided, eg:
4936
+ * Azure China: https://login.chinacloudapi.cn/
4937
+ * Azure US Government: https://login.microsoftonline.us/
4938
+ """
4939
+ return pulumi.get(self, "azure_authority_host")
4940
+
4830
4941
  @_builtins.property
4831
4942
  @pulumi.getter(name="azureTenantId")
4832
4943
  def azure_tenant_id(self) -> pulumi.Output[_builtins.str]:
@@ -4999,7 +5110,7 @@ class Connection(pulumi.CustomResource):
4999
5110
  @pulumi.getter
5000
5111
  def endpoint(self) -> pulumi.Output[_builtins.str]:
5001
5112
  """
5002
- (Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
5113
+ (Updatable) The endpoint URL of the 3rd party cloud service. e.g.: 'https://kinesis.us-east-1.amazonaws.com' If not provided, GoldenGate will default to the default endpoint in the `region`.
5003
5114
  """
5004
5115
  return pulumi.get(self, "endpoint")
5005
5116
 
@@ -5007,7 +5118,7 @@ class Connection(pulumi.CustomResource):
5007
5118
  @pulumi.getter
5008
5119
  def fingerprint(self) -> pulumi.Output[_builtins.str]:
5009
5120
  """
5010
- (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
5121
+ (Updatable) Fingerprint required by TLS security protocol. E.g.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
5011
5122
  """
5012
5123
  return pulumi.get(self, "fingerprint")
5013
5124
 
@@ -5247,7 +5358,7 @@ class Connection(pulumi.CustomResource):
5247
5358
  @pulumi.getter
5248
5359
  def region(self) -> pulumi.Output[_builtins.str]:
5249
5360
  """
5250
- (Updatable) The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
5361
+ (Updatable) The name of the AWS region where the bucket is created. If not provided, GoldenGate will default to 'us-west-2'. Note: this property will become mandatory after May 20, 2026.
5251
5362
  """
5252
5363
  return pulumi.get(self, "region")
5253
5364
 
@@ -5343,7 +5454,7 @@ class Connection(pulumi.CustomResource):
5343
5454
  @pulumi.getter(name="shouldUseResourcePrincipal")
5344
5455
  def should_use_resource_principal(self) -> pulumi.Output[_builtins.bool]:
5345
5456
  """
5346
- (Updatable) Indicates that the user intents to connect to the instance through resource principal.
5457
+ (Updatable) Specifies that the user intends to authenticate to the instance using a resource principal. Default: false
5347
5458
  """
5348
5459
  return pulumi.get(self, "should_use_resource_principal")
5349
5460
 
@@ -5375,7 +5486,9 @@ class Connection(pulumi.CustomResource):
5375
5486
  @pulumi.getter(name="sslClientKeystash")
5376
5487
  def ssl_client_keystash(self) -> pulumi.Output[Optional[_builtins.str]]:
5377
5488
  """
5378
- (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
5489
+ (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
5490
+
5491
+ Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
5379
5492
  """
5380
5493
  return pulumi.get(self, "ssl_client_keystash")
5381
5494
 
@@ -5383,7 +5496,9 @@ class Connection(pulumi.CustomResource):
5383
5496
  @pulumi.getter(name="sslClientKeystashSecretId")
5384
5497
  def ssl_client_keystash_secret_id(self) -> pulumi.Output[Optional[_builtins.str]]:
5385
5498
  """
5386
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. Note: When provided, 'sslClientKeystash' field must not be provided.
5499
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
5500
+
5501
+ Note: When provided, 'sslClientKeystash' field must not be provided.
5387
5502
  """
5388
5503
  return pulumi.get(self, "ssl_client_keystash_secret_id")
5389
5504
 
@@ -5391,7 +5506,9 @@ class Connection(pulumi.CustomResource):
5391
5506
  @pulumi.getter(name="sslClientKeystoredb")
5392
5507
  def ssl_client_keystoredb(self) -> pulumi.Output[Optional[_builtins.str]]:
5393
5508
  """
5394
- (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
5509
+ (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
5510
+
5511
+ Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
5395
5512
  """
5396
5513
  return pulumi.get(self, "ssl_client_keystoredb")
5397
5514
 
@@ -5399,7 +5516,9 @@ class Connection(pulumi.CustomResource):
5399
5516
  @pulumi.getter(name="sslClientKeystoredbSecretId")
5400
5517
  def ssl_client_keystoredb_secret_id(self) -> pulumi.Output[Optional[_builtins.str]]:
5401
5518
  """
5402
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
5519
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
5520
+
5521
+ Note: When provided, 'sslClientKeystoredb' field must not be provided.
5403
5522
  """
5404
5523
  return pulumi.get(self, "ssl_client_keystoredb_secret_id")
5405
5524