pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.25.0a1740096539__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.
- pulumi_oci/__init__.py +35 -0
- pulumi_oci/config/__init__.pyi +2 -0
- pulumi_oci/config/vars.py +4 -0
- pulumi_oci/containerengine/_inputs.py +40 -0
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/outputs.py +70 -0
- pulumi_oci/database/_inputs.py +487 -2
- pulumi_oci/database/autonomous_container_database.py +92 -0
- pulumi_oci/database/autonomous_database.py +97 -8
- pulumi_oci/database/backup_destination.py +84 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/db_system.py +111 -8
- pulumi_oci/database/get_autonomous_container_database.py +43 -1
- pulumi_oci/database/get_autonomous_database.py +32 -1
- pulumi_oci/database/get_autonomous_databases.py +0 -26
- pulumi_oci/database/get_backup_destination.py +43 -1
- pulumi_oci/database/get_data_guard_association.py +12 -1
- pulumi_oci/database/get_maintenance_runs.py +20 -1
- pulumi_oci/database/outputs.py +1179 -48
- pulumi_oci/filestorage/file_system.py +28 -0
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
- pulumi_oci/filestorage/get_outbound_connector.py +15 -1
- pulumi_oci/filestorage/get_replication.py +15 -1
- pulumi_oci/filestorage/get_replication_target.py +15 -1
- pulumi_oci/filestorage/get_snapshot.py +15 -1
- pulumi_oci/filestorage/mount_target.py +28 -0
- pulumi_oci/filestorage/outbound_connector.py +28 -0
- pulumi_oci/filestorage/outputs.py +77 -0
- pulumi_oci/filestorage/replication.py +28 -0
- pulumi_oci/filestorage/snapshot.py +28 -0
- pulumi_oci/goldengate/connection.py +561 -162
- pulumi_oci/goldengate/database_registration.py +14 -14
- pulumi_oci/goldengate/get_connection.py +117 -6
- pulumi_oci/goldengate/outputs.py +96 -10
- pulumi_oci/jms/__init__.py +4 -0
- pulumi_oci/jms/_inputs.py +196 -0
- pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
- pulumi_oci/jms/get_fleet_errors.py +264 -0
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
- pulumi_oci/jms/get_jms_plugins.py +23 -1
- pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
- pulumi_oci/jms/get_plugin_errors.py +264 -0
- pulumi_oci/jms/outputs.py +566 -6
- pulumi_oci/provider.py +20 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/stackmonitoring/__init__.py +8 -0
- pulumi_oci/stackmonitoring/_inputs.py +372 -1
- pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
- pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
- pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
- pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
- pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
- pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
- pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
- pulumi_oci/stackmonitoring/metric_extension.py +4 -4
- pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
- pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
- pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
- pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
- pulumi_oci/stackmonitoring/outputs.py +1305 -118
- pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
- pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
- pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
- pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
- pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
- pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
- pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
- pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
- pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
- pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
- pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
- pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
- pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
- pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
- pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
- pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
- pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
- pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
- pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
- pulumi_oci/vault/__init__.py +1 -1
- pulumi_oci/vault/_inputs.py +92 -0
- pulumi_oci/vault/get_secret.py +40 -1
- pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
- pulumi_oci/vault/outputs.py +210 -0
- pulumi_oci/vault/secret.py +122 -0
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/METADATA +1 -1
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/RECORD +98 -59
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/top_level.txt +0 -0
@@ -90,6 +90,7 @@ class ConnectionArgs:
|
|
90
90
|
service_account_key_file_secret_id: Optional[pulumi.Input[str]] = None,
|
91
91
|
session_mode: Optional[pulumi.Input[str]] = None,
|
92
92
|
should_use_jndi: Optional[pulumi.Input[bool]] = None,
|
93
|
+
should_use_resource_principal: Optional[pulumi.Input[bool]] = None,
|
93
94
|
should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
|
94
95
|
ssl_ca: Optional[pulumi.Input[str]] = None,
|
95
96
|
ssl_cert: Optional[pulumi.Input[str]] = None,
|
@@ -104,9 +105,16 @@ class ConnectionArgs:
|
|
104
105
|
ssl_key_secret_id: Optional[pulumi.Input[str]] = None,
|
105
106
|
ssl_mode: Optional[pulumi.Input[str]] = None,
|
106
107
|
ssl_server_certificate: Optional[pulumi.Input[str]] = None,
|
108
|
+
storage_credential_name: Optional[pulumi.Input[str]] = None,
|
107
109
|
stream_pool_id: Optional[pulumi.Input[str]] = None,
|
108
110
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
109
111
|
tenancy_id: Optional[pulumi.Input[str]] = None,
|
112
|
+
tenant_id: Optional[pulumi.Input[str]] = None,
|
113
|
+
tls_ca_file: Optional[pulumi.Input[str]] = None,
|
114
|
+
tls_certificate_key_file: Optional[pulumi.Input[str]] = None,
|
115
|
+
tls_certificate_key_file_password: Optional[pulumi.Input[str]] = None,
|
116
|
+
tls_certificate_key_file_password_secret_id: Optional[pulumi.Input[str]] = None,
|
117
|
+
tls_certificate_key_file_secret_id: Optional[pulumi.Input[str]] = None,
|
110
118
|
trigger_refresh: Optional[pulumi.Input[bool]] = None,
|
111
119
|
trust_store: Optional[pulumi.Input[str]] = None,
|
112
120
|
trust_store_password: Optional[pulumi.Input[str]] = None,
|
@@ -125,7 +133,7 @@ class ConnectionArgs:
|
|
125
133
|
:param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
|
126
134
|
:param pulumi.Input[str] technology_type: The Kafka (e.g. Confluent) Schema Registry technology type.
|
127
135
|
:param pulumi.Input[str] access_key_id: (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
|
128
|
-
:param pulumi.Input[str] account_key: (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
|
136
|
+
:param pulumi.Input[str] account_key: (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ== Deprecated: This field is deprecated and replaced by "accountKeySecretId". This field will be removed after February 15 2026.
|
129
137
|
:param pulumi.Input[str] account_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored. Note: When provided, 'accountKey' field must not be provided.
|
130
138
|
:param pulumi.Input[str] account_name: (Updatable) Sets the Azure storage account name.
|
131
139
|
: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.
|
@@ -134,11 +142,11 @@ class ConnectionArgs:
|
|
134
142
|
:param pulumi.Input[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
|
135
143
|
: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"`
|
136
144
|
:param pulumi.Input[str] client_id: (Updatable) Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d
|
137
|
-
:param pulumi.Input[str] client_secret: (Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1
|
138
|
-
:param pulumi.Input[str] client_secret_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.
|
145
|
+
:param pulumi.Input[str] client_secret: (Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1 Deprecated: This field is deprecated and replaced by "clientSecretSecretId". This field will be removed after February 15 2026.
|
146
|
+
:param pulumi.Input[str] client_secret_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Only applicable for authenticationType == OAUTH_M2M. Note: When provided, 'clientSecret' field must not be provided.
|
139
147
|
:param pulumi.Input[str] connection_factory: (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
|
140
148
|
:param pulumi.Input[str] connection_string: (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://<synapse-workspace>.sql.azuresynapse.net:1433;database=<db-name>;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
|
141
|
-
:param pulumi.Input[str] connection_url: (Updatable)
|
149
|
+
:param pulumi.Input[str] connection_url: (Updatable) 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'
|
142
150
|
:param pulumi.Input[str] consumer_properties: (Updatable) The base64 encoded content of the consumer.properties file.
|
143
151
|
:param pulumi.Input[str] core_site_xml: (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
|
144
152
|
:param pulumi.Input[str] database_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Autonomous Json Database.
|
@@ -148,7 +156,7 @@ class ConnectionArgs:
|
|
148
156
|
:param pulumi.Input[str] deployment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
149
157
|
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
150
158
|
:param pulumi.Input[bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
|
151
|
-
:param pulumi.Input[str] endpoint: (Updatable)
|
159
|
+
:param pulumi.Input[str] endpoint: (Updatable)Azure Storage service endpoint. e.g: https://test.blob.core.windows.net, Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
152
160
|
:param pulumi.Input[str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
|
153
161
|
: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"}`
|
154
162
|
:param pulumi.Input[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"`
|
@@ -156,73 +164,82 @@ class ConnectionArgs:
|
|
156
164
|
:param pulumi.Input[str] jndi_connection_factory: (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
|
157
165
|
:param pulumi.Input[str] jndi_initial_context_factory: (Updatable) The implementation of javax.naming.spi.InitialContextFactory interface that the client uses to obtain initial naming context. e.g.: 'org.apache.activemq.jndi.ActiveMQInitialContextFactory'
|
158
166
|
:param pulumi.Input[str] jndi_provider_url: (Updatable) The URL that Java Message Service will use to contact the JNDI provider. e.g.: 'tcp://myjms.host.domain:61616?jms.prefetchPolicy.all=1000'
|
159
|
-
:param pulumi.Input[str] jndi_security_credentials: (Updatable) The password associated to the principal.
|
167
|
+
:param pulumi.Input[str] jndi_security_credentials: (Updatable) The password associated to the principal. Deprecated: This field is deprecated and replaced by "jndiSecurityCredentialsSecretId". This field will be removed after February 15 2026.
|
160
168
|
:param pulumi.Input[str] jndi_security_credentials_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the security credentials are stored associated to the principal. Note: When provided, 'jndiSecurityCredentials' field must not be provided.
|
161
169
|
:param pulumi.Input[str] jndi_security_principal: (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
|
162
170
|
:param pulumi.Input[str] key_id: (Updatable) 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.
|
163
|
-
:param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file.
|
164
|
-
:param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password.
|
171
|
+
:param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file. Deprecated: This field is deprecated and replaced by "keyStoreSecretId". This field will be removed after February 15 2026.
|
172
|
+
:param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password. Deprecated: This field is deprecated and replaced by "keyStorePasswordSecretId". This field will be removed after February 15 2026.
|
165
173
|
:param pulumi.Input[str] key_store_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka Ssl KeyStore password is stored. Note: When provided, 'keyStorePassword' field must not be provided.
|
166
174
|
:param pulumi.Input[str] key_store_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the KeyStore file is stored. Note: When provided, 'keyStore' field must not be provided.
|
167
175
|
:param pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]] locks: Locks associated with this resource.
|
168
176
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
|
169
|
-
: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.
|
177
|
+
: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.
|
170
178
|
:param pulumi.Input[str] password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored. 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. If secretId is used plaintext field must not be provided. Note: When provided, 'password' field must not be provided.
|
171
179
|
:param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
|
172
180
|
:param pulumi.Input[str] private_ip: (Updatable) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
|
173
181
|
|
174
182
|
The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
|
175
|
-
:param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
183
|
+
:param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm Deprecated: This field is deprecated and replaced by "privateKeyFileSecretId". This field will be removed after February 15 2026.
|
176
184
|
:param pulumi.Input[str] private_key_file_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm Note: When provided, 'privateKeyFile' field must not be provided.
|
177
|
-
:param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
|
185
|
+
:param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted. Deprecated: This field is deprecated and replaced by "privateKeyPassphraseSecretId". This field will be removed after February 15 2026.
|
178
186
|
:param pulumi.Input[str] private_key_passphrase_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password for the private key file. Note: When provided, 'privateKeyPassphrase' field must not be provided.
|
179
187
|
:param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
|
180
188
|
:param pulumi.Input[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
|
181
189
|
:param pulumi.Input[str] redis_cluster_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
|
182
|
-
:param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
|
190
|
+
:param pulumi.Input[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.
|
183
191
|
:param pulumi.Input[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.
|
184
|
-
:param pulumi.Input[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
|
192
|
+
:param pulumi.Input[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.
|
185
193
|
:param pulumi.Input[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.
|
186
|
-
:param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
|
194
|
+
:param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret" Deprecated: This field is deprecated and replaced by "secretAccessKeySecretId". This field will be removed after February 15 2026.
|
187
195
|
:param pulumi.Input[str] secret_access_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the secret access key is stored. Note: When provided, 'secretAccessKey' field must not be provided.
|
188
196
|
:param pulumi.Input[str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
|
189
197
|
:param pulumi.Input[str] servers: (Updatable) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `"server1.example.com:4000,server2.example.com:4000"`
|
190
|
-
:param pulumi.Input[str] service_account_key_file: (Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage.
|
198
|
+
:param pulumi.Input[str] service_account_key_file: (Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage. Deprecated: This field is deprecated and replaced by "serviceAccountKeyFileSecretId". This field will be removed after February 15 2026.
|
191
199
|
:param pulumi.Input[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 containing the credentials required to use Google Cloud Storage. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
|
192
200
|
: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.
|
193
201
|
:param pulumi.Input[bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
|
202
|
+
:param pulumi.Input[bool] should_use_resource_principal: (Updatable) Indicates that the user intents to connect to the instance through resource principal.
|
194
203
|
:param pulumi.Input[bool] should_validate_server_certificate: (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
|
195
204
|
:param pulumi.Input[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.
|
196
205
|
:param pulumi.Input[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).
|
197
|
-
:param pulumi.Input[str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
206
|
+
:param pulumi.Input[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.
|
198
207
|
:param pulumi.Input[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.
|
199
|
-
:param pulumi.Input[str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
208
|
+
:param pulumi.Input[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.
|
200
209
|
:param pulumi.Input[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.
|
201
210
|
:param pulumi.Input[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.
|
202
|
-
:param pulumi.Input[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).
|
203
|
-
:param pulumi.Input[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.
|
211
|
+
:param pulumi.Input[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.
|
212
|
+
:param pulumi.Input[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.
|
204
213
|
:param pulumi.Input[str] ssl_key_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided.
|
205
214
|
:param pulumi.Input[str] ssl_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
206
215
|
* The content of a .pem or .crt file containing the client private key (for 2-way SSL). Note: When provided, 'sslKey' field must not be provided.
|
207
216
|
:param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
|
208
217
|
:param pulumi.Input[str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
218
|
+
:param pulumi.Input[str] storage_credential_name: (Updatable) Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
|
209
219
|
:param pulumi.Input[str] stream_pool_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
|
210
220
|
:param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
|
211
221
|
:param pulumi.Input[str] tenancy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Oracle Cloud Infrastructure tenancy.
|
222
|
+
:param pulumi.Input[str] tenant_id: (Updatable) Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
223
|
+
:param pulumi.Input[str] tls_ca_file: (Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
224
|
+
:param pulumi.Input[str] tls_certificate_key_file: (Updatable) Client Certificate - The base64 encoded content of a .pem file, containing the client public key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFileSecretId". This field will be removed after February 15 2026.
|
225
|
+
:param pulumi.Input[str] tls_certificate_key_file_password: (Updatable) Client Certificate key file password. Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFilePasswordSecretId". This field will be removed after February 15 2026.
|
226
|
+
:param pulumi.Input[str] tls_certificate_key_file_password_secret_id: (Updatable) 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.
|
227
|
+
:param pulumi.Input[str] tls_certificate_key_file_secret_id: (Updatable) 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.
|
228
|
+
* The content of a .pem file containing the client private key (for 2-way SSL). Note: When provided, 'tlsCertificateKeyFile' field must not be provided.
|
212
229
|
:param pulumi.Input[bool] trigger_refresh: (Updatable) If value is true, it triggers connection refresh action and this attribute change will always show up in the "update" plan and will apply steps in order to refresh secrets and dependent service properties (such as ADB connection strings, wallets, etc..).
|
213
230
|
|
214
231
|
|
215
232
|
** IMPORTANT **
|
216
233
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
217
|
-
:param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file.
|
218
|
-
:param pulumi.Input[str] trust_store_password: (Updatable) The TrustStore password.
|
234
|
+
:param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file. Deprecated: This field is deprecated and replaced by "trustStoreSecretId". This field will be removed after February 15 2026.
|
235
|
+
:param pulumi.Input[str] trust_store_password: (Updatable) The TrustStore password. Deprecated: This field is deprecated and replaced by "trustStorePasswordSecretId". This field will be removed after February 15 2026.
|
219
236
|
:param pulumi.Input[str] trust_store_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka Ssl TrustStore password is stored. Note: When provided, 'trustStorePassword' field must not be provided.
|
220
237
|
:param pulumi.Input[str] trust_store_secret_id: (Updatable) 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.
|
221
238
|
:param pulumi.Input[str] url: (Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
|
222
|
-
:param pulumi.Input[str] user_id: (Updatable) 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.
|
239
|
+
:param pulumi.Input[str] user_id: (Updatable) 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.
|
223
240
|
: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.
|
224
241
|
:param pulumi.Input[str] vault_id: (Updatable) 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.
|
225
|
-
: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.
|
242
|
+
: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.
|
226
243
|
:param pulumi.Input[str] wallet_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the wallet file is stored. The wallet contents Oracle GoldenGate uses to make connections to a database. Note: When provided, 'wallet' field must not be provided.
|
227
244
|
"""
|
228
245
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -359,6 +376,8 @@ class ConnectionArgs:
|
|
359
376
|
pulumi.set(__self__, "session_mode", session_mode)
|
360
377
|
if should_use_jndi is not None:
|
361
378
|
pulumi.set(__self__, "should_use_jndi", should_use_jndi)
|
379
|
+
if should_use_resource_principal is not None:
|
380
|
+
pulumi.set(__self__, "should_use_resource_principal", should_use_resource_principal)
|
362
381
|
if should_validate_server_certificate is not None:
|
363
382
|
pulumi.set(__self__, "should_validate_server_certificate", should_validate_server_certificate)
|
364
383
|
if ssl_ca is not None:
|
@@ -387,12 +406,26 @@ class ConnectionArgs:
|
|
387
406
|
pulumi.set(__self__, "ssl_mode", ssl_mode)
|
388
407
|
if ssl_server_certificate is not None:
|
389
408
|
pulumi.set(__self__, "ssl_server_certificate", ssl_server_certificate)
|
409
|
+
if storage_credential_name is not None:
|
410
|
+
pulumi.set(__self__, "storage_credential_name", storage_credential_name)
|
390
411
|
if stream_pool_id is not None:
|
391
412
|
pulumi.set(__self__, "stream_pool_id", stream_pool_id)
|
392
413
|
if subnet_id is not None:
|
393
414
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
394
415
|
if tenancy_id is not None:
|
395
416
|
pulumi.set(__self__, "tenancy_id", tenancy_id)
|
417
|
+
if tenant_id is not None:
|
418
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
419
|
+
if tls_ca_file is not None:
|
420
|
+
pulumi.set(__self__, "tls_ca_file", tls_ca_file)
|
421
|
+
if tls_certificate_key_file is not None:
|
422
|
+
pulumi.set(__self__, "tls_certificate_key_file", tls_certificate_key_file)
|
423
|
+
if tls_certificate_key_file_password is not None:
|
424
|
+
pulumi.set(__self__, "tls_certificate_key_file_password", tls_certificate_key_file_password)
|
425
|
+
if tls_certificate_key_file_password_secret_id is not None:
|
426
|
+
pulumi.set(__self__, "tls_certificate_key_file_password_secret_id", tls_certificate_key_file_password_secret_id)
|
427
|
+
if tls_certificate_key_file_secret_id is not None:
|
428
|
+
pulumi.set(__self__, "tls_certificate_key_file_secret_id", tls_certificate_key_file_secret_id)
|
396
429
|
if trigger_refresh is not None:
|
397
430
|
pulumi.set(__self__, "trigger_refresh", trigger_refresh)
|
398
431
|
if trust_store is not None:
|
@@ -480,7 +513,7 @@ class ConnectionArgs:
|
|
480
513
|
@pulumi.getter(name="accountKey")
|
481
514
|
def account_key(self) -> Optional[pulumi.Input[str]]:
|
482
515
|
"""
|
483
|
-
(Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
|
516
|
+
(Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ== Deprecated: This field is deprecated and replaced by "accountKeySecretId". This field will be removed after February 15 2026.
|
484
517
|
"""
|
485
518
|
return pulumi.get(self, "account_key")
|
486
519
|
|
@@ -588,7 +621,7 @@ class ConnectionArgs:
|
|
588
621
|
@pulumi.getter(name="clientSecret")
|
589
622
|
def client_secret(self) -> Optional[pulumi.Input[str]]:
|
590
623
|
"""
|
591
|
-
(Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1
|
624
|
+
(Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1 Deprecated: This field is deprecated and replaced by "clientSecretSecretId". This field will be removed after February 15 2026.
|
592
625
|
"""
|
593
626
|
return pulumi.get(self, "client_secret")
|
594
627
|
|
@@ -600,7 +633,7 @@ class ConnectionArgs:
|
|
600
633
|
@pulumi.getter(name="clientSecretSecretId")
|
601
634
|
def client_secret_secret_id(self) -> Optional[pulumi.Input[str]]:
|
602
635
|
"""
|
603
|
-
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.
|
636
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Only applicable for authenticationType == OAUTH_M2M. Note: When provided, 'clientSecret' field must not be provided.
|
604
637
|
"""
|
605
638
|
return pulumi.get(self, "client_secret_secret_id")
|
606
639
|
|
@@ -636,7 +669,7 @@ class ConnectionArgs:
|
|
636
669
|
@pulumi.getter(name="connectionUrl")
|
637
670
|
def connection_url(self) -> Optional[pulumi.Input[str]]:
|
638
671
|
"""
|
639
|
-
(Updatable)
|
672
|
+
(Updatable) 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'
|
640
673
|
"""
|
641
674
|
return pulumi.get(self, "connection_url")
|
642
675
|
|
@@ -756,7 +789,7 @@ class ConnectionArgs:
|
|
756
789
|
@pulumi.getter
|
757
790
|
def endpoint(self) -> Optional[pulumi.Input[str]]:
|
758
791
|
"""
|
759
|
-
(Updatable)
|
792
|
+
(Updatable)Azure Storage service endpoint. e.g: https://test.blob.core.windows.net, Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
760
793
|
"""
|
761
794
|
return pulumi.get(self, "endpoint")
|
762
795
|
|
@@ -850,7 +883,7 @@ class ConnectionArgs:
|
|
850
883
|
@pulumi.getter(name="jndiSecurityCredentials")
|
851
884
|
def jndi_security_credentials(self) -> Optional[pulumi.Input[str]]:
|
852
885
|
"""
|
853
|
-
(Updatable) The password associated to the principal.
|
886
|
+
(Updatable) The password associated to the principal. Deprecated: This field is deprecated and replaced by "jndiSecurityCredentialsSecretId". This field will be removed after February 15 2026.
|
854
887
|
"""
|
855
888
|
return pulumi.get(self, "jndi_security_credentials")
|
856
889
|
|
@@ -898,7 +931,7 @@ class ConnectionArgs:
|
|
898
931
|
@pulumi.getter(name="keyStore")
|
899
932
|
def key_store(self) -> Optional[pulumi.Input[str]]:
|
900
933
|
"""
|
901
|
-
(Updatable) The base64 encoded content of the KeyStore file.
|
934
|
+
(Updatable) The base64 encoded content of the KeyStore file. Deprecated: This field is deprecated and replaced by "keyStoreSecretId". This field will be removed after February 15 2026.
|
902
935
|
"""
|
903
936
|
return pulumi.get(self, "key_store")
|
904
937
|
|
@@ -910,7 +943,7 @@ class ConnectionArgs:
|
|
910
943
|
@pulumi.getter(name="keyStorePassword")
|
911
944
|
def key_store_password(self) -> Optional[pulumi.Input[str]]:
|
912
945
|
"""
|
913
|
-
(Updatable) The KeyStore password.
|
946
|
+
(Updatable) The KeyStore password. Deprecated: This field is deprecated and replaced by "keyStorePasswordSecretId". This field will be removed after February 15 2026.
|
914
947
|
"""
|
915
948
|
return pulumi.get(self, "key_store_password")
|
916
949
|
|
@@ -970,7 +1003,7 @@ class ConnectionArgs:
|
|
970
1003
|
@pulumi.getter
|
971
1004
|
def password(self) -> Optional[pulumi.Input[str]]:
|
972
1005
|
"""
|
973
|
-
(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.
|
1006
|
+
(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.
|
974
1007
|
"""
|
975
1008
|
return pulumi.get(self, "password")
|
976
1009
|
|
@@ -1020,7 +1053,7 @@ class ConnectionArgs:
|
|
1020
1053
|
@pulumi.getter(name="privateKeyFile")
|
1021
1054
|
def private_key_file(self) -> Optional[pulumi.Input[str]]:
|
1022
1055
|
"""
|
1023
|
-
(Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
1056
|
+
(Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm Deprecated: This field is deprecated and replaced by "privateKeyFileSecretId". This field will be removed after February 15 2026.
|
1024
1057
|
"""
|
1025
1058
|
return pulumi.get(self, "private_key_file")
|
1026
1059
|
|
@@ -1044,7 +1077,7 @@ class ConnectionArgs:
|
|
1044
1077
|
@pulumi.getter(name="privateKeyPassphrase")
|
1045
1078
|
def private_key_passphrase(self) -> Optional[pulumi.Input[str]]:
|
1046
1079
|
"""
|
1047
|
-
(Updatable) Password if the private key file is encrypted.
|
1080
|
+
(Updatable) Password if the private key file is encrypted. Deprecated: This field is deprecated and replaced by "privateKeyPassphraseSecretId". This field will be removed after February 15 2026.
|
1048
1081
|
"""
|
1049
1082
|
return pulumi.get(self, "private_key_passphrase")
|
1050
1083
|
|
@@ -1104,7 +1137,7 @@ class ConnectionArgs:
|
|
1104
1137
|
@pulumi.getter
|
1105
1138
|
def region(self) -> Optional[pulumi.Input[str]]:
|
1106
1139
|
"""
|
1107
|
-
(Updatable) The name of the region. e.g.: us-ashburn-1
|
1140
|
+
(Updatable) The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
|
1108
1141
|
"""
|
1109
1142
|
return pulumi.get(self, "region")
|
1110
1143
|
|
@@ -1128,7 +1161,7 @@ class ConnectionArgs:
|
|
1128
1161
|
@pulumi.getter(name="sasToken")
|
1129
1162
|
def sas_token(self) -> Optional[pulumi.Input[str]]:
|
1130
1163
|
"""
|
1131
|
-
(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
|
1164
|
+
(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.
|
1132
1165
|
"""
|
1133
1166
|
return pulumi.get(self, "sas_token")
|
1134
1167
|
|
@@ -1152,7 +1185,7 @@ class ConnectionArgs:
|
|
1152
1185
|
@pulumi.getter(name="secretAccessKey")
|
1153
1186
|
def secret_access_key(self) -> Optional[pulumi.Input[str]]:
|
1154
1187
|
"""
|
1155
|
-
(Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
|
1188
|
+
(Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret" Deprecated: This field is deprecated and replaced by "secretAccessKeySecretId". This field will be removed after February 15 2026.
|
1156
1189
|
"""
|
1157
1190
|
return pulumi.get(self, "secret_access_key")
|
1158
1191
|
|
@@ -1200,7 +1233,7 @@ class ConnectionArgs:
|
|
1200
1233
|
@pulumi.getter(name="serviceAccountKeyFile")
|
1201
1234
|
def service_account_key_file(self) -> Optional[pulumi.Input[str]]:
|
1202
1235
|
"""
|
1203
|
-
(Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage.
|
1236
|
+
(Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage. Deprecated: This field is deprecated and replaced by "serviceAccountKeyFileSecretId". This field will be removed after February 15 2026.
|
1204
1237
|
"""
|
1205
1238
|
return pulumi.get(self, "service_account_key_file")
|
1206
1239
|
|
@@ -1244,6 +1277,18 @@ class ConnectionArgs:
|
|
1244
1277
|
def should_use_jndi(self, value: Optional[pulumi.Input[bool]]):
|
1245
1278
|
pulumi.set(self, "should_use_jndi", value)
|
1246
1279
|
|
1280
|
+
@property
|
1281
|
+
@pulumi.getter(name="shouldUseResourcePrincipal")
|
1282
|
+
def should_use_resource_principal(self) -> Optional[pulumi.Input[bool]]:
|
1283
|
+
"""
|
1284
|
+
(Updatable) Indicates that the user intents to connect to the instance through resource principal.
|
1285
|
+
"""
|
1286
|
+
return pulumi.get(self, "should_use_resource_principal")
|
1287
|
+
|
1288
|
+
@should_use_resource_principal.setter
|
1289
|
+
def should_use_resource_principal(self, value: Optional[pulumi.Input[bool]]):
|
1290
|
+
pulumi.set(self, "should_use_resource_principal", value)
|
1291
|
+
|
1247
1292
|
@property
|
1248
1293
|
@pulumi.getter(name="shouldValidateServerCertificate")
|
1249
1294
|
def should_validate_server_certificate(self) -> Optional[pulumi.Input[bool]]:
|
@@ -1284,7 +1329,7 @@ class ConnectionArgs:
|
|
1284
1329
|
@pulumi.getter(name="sslClientKeystash")
|
1285
1330
|
def ssl_client_keystash(self) -> Optional[pulumi.Input[str]]:
|
1286
1331
|
"""
|
1287
|
-
(Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
1332
|
+
(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.
|
1288
1333
|
"""
|
1289
1334
|
return pulumi.get(self, "ssl_client_keystash")
|
1290
1335
|
|
@@ -1308,7 +1353,7 @@ class ConnectionArgs:
|
|
1308
1353
|
@pulumi.getter(name="sslClientKeystoredb")
|
1309
1354
|
def ssl_client_keystoredb(self) -> Optional[pulumi.Input[str]]:
|
1310
1355
|
"""
|
1311
|
-
(Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
1356
|
+
(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.
|
1312
1357
|
"""
|
1313
1358
|
return pulumi.get(self, "ssl_client_keystoredb")
|
1314
1359
|
|
@@ -1344,7 +1389,7 @@ class ConnectionArgs:
|
|
1344
1389
|
@pulumi.getter(name="sslKey")
|
1345
1390
|
def ssl_key(self) -> Optional[pulumi.Input[str]]:
|
1346
1391
|
"""
|
1347
|
-
(Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).
|
1392
|
+
(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.
|
1348
1393
|
"""
|
1349
1394
|
return pulumi.get(self, "ssl_key")
|
1350
1395
|
|
@@ -1356,7 +1401,7 @@ class ConnectionArgs:
|
|
1356
1401
|
@pulumi.getter(name="sslKeyPassword")
|
1357
1402
|
def ssl_key_password(self) -> Optional[pulumi.Input[str]]:
|
1358
1403
|
"""
|
1359
|
-
(Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
|
1404
|
+
(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.
|
1360
1405
|
"""
|
1361
1406
|
return pulumi.get(self, "ssl_key_password")
|
1362
1407
|
|
@@ -1413,6 +1458,18 @@ class ConnectionArgs:
|
|
1413
1458
|
def ssl_server_certificate(self, value: Optional[pulumi.Input[str]]):
|
1414
1459
|
pulumi.set(self, "ssl_server_certificate", value)
|
1415
1460
|
|
1461
|
+
@property
|
1462
|
+
@pulumi.getter(name="storageCredentialName")
|
1463
|
+
def storage_credential_name(self) -> Optional[pulumi.Input[str]]:
|
1464
|
+
"""
|
1465
|
+
(Updatable) Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
|
1466
|
+
"""
|
1467
|
+
return pulumi.get(self, "storage_credential_name")
|
1468
|
+
|
1469
|
+
@storage_credential_name.setter
|
1470
|
+
def storage_credential_name(self, value: Optional[pulumi.Input[str]]):
|
1471
|
+
pulumi.set(self, "storage_credential_name", value)
|
1472
|
+
|
1416
1473
|
@property
|
1417
1474
|
@pulumi.getter(name="streamPoolId")
|
1418
1475
|
def stream_pool_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -1449,6 +1506,79 @@ class ConnectionArgs:
|
|
1449
1506
|
def tenancy_id(self, value: Optional[pulumi.Input[str]]):
|
1450
1507
|
pulumi.set(self, "tenancy_id", value)
|
1451
1508
|
|
1509
|
+
@property
|
1510
|
+
@pulumi.getter(name="tenantId")
|
1511
|
+
def tenant_id(self) -> Optional[pulumi.Input[str]]:
|
1512
|
+
"""
|
1513
|
+
(Updatable) Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
1514
|
+
"""
|
1515
|
+
return pulumi.get(self, "tenant_id")
|
1516
|
+
|
1517
|
+
@tenant_id.setter
|
1518
|
+
def tenant_id(self, value: Optional[pulumi.Input[str]]):
|
1519
|
+
pulumi.set(self, "tenant_id", value)
|
1520
|
+
|
1521
|
+
@property
|
1522
|
+
@pulumi.getter(name="tlsCaFile")
|
1523
|
+
def tls_ca_file(self) -> Optional[pulumi.Input[str]]:
|
1524
|
+
"""
|
1525
|
+
(Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
1526
|
+
"""
|
1527
|
+
return pulumi.get(self, "tls_ca_file")
|
1528
|
+
|
1529
|
+
@tls_ca_file.setter
|
1530
|
+
def tls_ca_file(self, value: Optional[pulumi.Input[str]]):
|
1531
|
+
pulumi.set(self, "tls_ca_file", value)
|
1532
|
+
|
1533
|
+
@property
|
1534
|
+
@pulumi.getter(name="tlsCertificateKeyFile")
|
1535
|
+
def tls_certificate_key_file(self) -> Optional[pulumi.Input[str]]:
|
1536
|
+
"""
|
1537
|
+
(Updatable) Client Certificate - The base64 encoded content of a .pem file, containing the client public key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFileSecretId". This field will be removed after February 15 2026.
|
1538
|
+
"""
|
1539
|
+
return pulumi.get(self, "tls_certificate_key_file")
|
1540
|
+
|
1541
|
+
@tls_certificate_key_file.setter
|
1542
|
+
def tls_certificate_key_file(self, value: Optional[pulumi.Input[str]]):
|
1543
|
+
pulumi.set(self, "tls_certificate_key_file", value)
|
1544
|
+
|
1545
|
+
@property
|
1546
|
+
@pulumi.getter(name="tlsCertificateKeyFilePassword")
|
1547
|
+
def tls_certificate_key_file_password(self) -> Optional[pulumi.Input[str]]:
|
1548
|
+
"""
|
1549
|
+
(Updatable) Client Certificate key file password. Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFilePasswordSecretId". This field will be removed after February 15 2026.
|
1550
|
+
"""
|
1551
|
+
return pulumi.get(self, "tls_certificate_key_file_password")
|
1552
|
+
|
1553
|
+
@tls_certificate_key_file_password.setter
|
1554
|
+
def tls_certificate_key_file_password(self, value: Optional[pulumi.Input[str]]):
|
1555
|
+
pulumi.set(self, "tls_certificate_key_file_password", value)
|
1556
|
+
|
1557
|
+
@property
|
1558
|
+
@pulumi.getter(name="tlsCertificateKeyFilePasswordSecretId")
|
1559
|
+
def tls_certificate_key_file_password_secret_id(self) -> Optional[pulumi.Input[str]]:
|
1560
|
+
"""
|
1561
|
+
(Updatable) 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.
|
1562
|
+
"""
|
1563
|
+
return pulumi.get(self, "tls_certificate_key_file_password_secret_id")
|
1564
|
+
|
1565
|
+
@tls_certificate_key_file_password_secret_id.setter
|
1566
|
+
def tls_certificate_key_file_password_secret_id(self, value: Optional[pulumi.Input[str]]):
|
1567
|
+
pulumi.set(self, "tls_certificate_key_file_password_secret_id", value)
|
1568
|
+
|
1569
|
+
@property
|
1570
|
+
@pulumi.getter(name="tlsCertificateKeyFileSecretId")
|
1571
|
+
def tls_certificate_key_file_secret_id(self) -> Optional[pulumi.Input[str]]:
|
1572
|
+
"""
|
1573
|
+
(Updatable) 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.
|
1574
|
+
* The content of a .pem file containing the client private key (for 2-way SSL). Note: When provided, 'tlsCertificateKeyFile' field must not be provided.
|
1575
|
+
"""
|
1576
|
+
return pulumi.get(self, "tls_certificate_key_file_secret_id")
|
1577
|
+
|
1578
|
+
@tls_certificate_key_file_secret_id.setter
|
1579
|
+
def tls_certificate_key_file_secret_id(self, value: Optional[pulumi.Input[str]]):
|
1580
|
+
pulumi.set(self, "tls_certificate_key_file_secret_id", value)
|
1581
|
+
|
1452
1582
|
@property
|
1453
1583
|
@pulumi.getter(name="triggerRefresh")
|
1454
1584
|
def trigger_refresh(self) -> Optional[pulumi.Input[bool]]:
|
@@ -1469,7 +1599,7 @@ class ConnectionArgs:
|
|
1469
1599
|
@pulumi.getter(name="trustStore")
|
1470
1600
|
def trust_store(self) -> Optional[pulumi.Input[str]]:
|
1471
1601
|
"""
|
1472
|
-
(Updatable) The base64 encoded content of the TrustStore file.
|
1602
|
+
(Updatable) The base64 encoded content of the TrustStore file. Deprecated: This field is deprecated and replaced by "trustStoreSecretId". This field will be removed after February 15 2026.
|
1473
1603
|
"""
|
1474
1604
|
return pulumi.get(self, "trust_store")
|
1475
1605
|
|
@@ -1481,7 +1611,7 @@ class ConnectionArgs:
|
|
1481
1611
|
@pulumi.getter(name="trustStorePassword")
|
1482
1612
|
def trust_store_password(self) -> Optional[pulumi.Input[str]]:
|
1483
1613
|
"""
|
1484
|
-
(Updatable) The TrustStore password.
|
1614
|
+
(Updatable) The TrustStore password. Deprecated: This field is deprecated and replaced by "trustStorePasswordSecretId". This field will be removed after February 15 2026.
|
1485
1615
|
"""
|
1486
1616
|
return pulumi.get(self, "trust_store_password")
|
1487
1617
|
|
@@ -1529,7 +1659,7 @@ class ConnectionArgs:
|
|
1529
1659
|
@pulumi.getter(name="userId")
|
1530
1660
|
def user_id(self) -> Optional[pulumi.Input[str]]:
|
1531
1661
|
"""
|
1532
|
-
(Updatable) 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.
|
1662
|
+
(Updatable) 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.
|
1533
1663
|
"""
|
1534
1664
|
return pulumi.get(self, "user_id")
|
1535
1665
|
|
@@ -1565,7 +1695,7 @@ class ConnectionArgs:
|
|
1565
1695
|
@pulumi.getter
|
1566
1696
|
def wallet(self) -> Optional[pulumi.Input[str]]:
|
1567
1697
|
"""
|
1568
|
-
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
|
1698
|
+
(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.
|
1569
1699
|
"""
|
1570
1700
|
return pulumi.get(self, "wallet")
|
1571
1701
|
|
@@ -1659,6 +1789,7 @@ class _ConnectionState:
|
|
1659
1789
|
service_account_key_file_secret_id: Optional[pulumi.Input[str]] = None,
|
1660
1790
|
session_mode: Optional[pulumi.Input[str]] = None,
|
1661
1791
|
should_use_jndi: Optional[pulumi.Input[bool]] = None,
|
1792
|
+
should_use_resource_principal: Optional[pulumi.Input[bool]] = None,
|
1662
1793
|
should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
|
1663
1794
|
ssl_ca: Optional[pulumi.Input[str]] = None,
|
1664
1795
|
ssl_cert: Optional[pulumi.Input[str]] = None,
|
@@ -1674,13 +1805,20 @@ class _ConnectionState:
|
|
1674
1805
|
ssl_mode: Optional[pulumi.Input[str]] = None,
|
1675
1806
|
ssl_server_certificate: Optional[pulumi.Input[str]] = None,
|
1676
1807
|
state: Optional[pulumi.Input[str]] = None,
|
1808
|
+
storage_credential_name: Optional[pulumi.Input[str]] = None,
|
1677
1809
|
stream_pool_id: Optional[pulumi.Input[str]] = None,
|
1678
1810
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1679
1811
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1680
1812
|
technology_type: Optional[pulumi.Input[str]] = None,
|
1681
1813
|
tenancy_id: Optional[pulumi.Input[str]] = None,
|
1814
|
+
tenant_id: Optional[pulumi.Input[str]] = None,
|
1682
1815
|
time_created: Optional[pulumi.Input[str]] = None,
|
1683
1816
|
time_updated: Optional[pulumi.Input[str]] = None,
|
1817
|
+
tls_ca_file: Optional[pulumi.Input[str]] = None,
|
1818
|
+
tls_certificate_key_file: Optional[pulumi.Input[str]] = None,
|
1819
|
+
tls_certificate_key_file_password: Optional[pulumi.Input[str]] = None,
|
1820
|
+
tls_certificate_key_file_password_secret_id: Optional[pulumi.Input[str]] = None,
|
1821
|
+
tls_certificate_key_file_secret_id: Optional[pulumi.Input[str]] = None,
|
1684
1822
|
trigger_refresh: Optional[pulumi.Input[bool]] = None,
|
1685
1823
|
trust_store: Optional[pulumi.Input[str]] = None,
|
1686
1824
|
trust_store_password: Optional[pulumi.Input[str]] = None,
|
@@ -1695,7 +1833,7 @@ class _ConnectionState:
|
|
1695
1833
|
"""
|
1696
1834
|
Input properties used for looking up and filtering Connection resources.
|
1697
1835
|
:param pulumi.Input[str] access_key_id: (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
|
1698
|
-
:param pulumi.Input[str] account_key: (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
|
1836
|
+
:param pulumi.Input[str] account_key: (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ== Deprecated: This field is deprecated and replaced by "accountKeySecretId". This field will be removed after February 15 2026.
|
1699
1837
|
:param pulumi.Input[str] account_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored. Note: When provided, 'accountKey' field must not be provided.
|
1700
1838
|
:param pulumi.Input[str] account_name: (Updatable) Sets the Azure storage account name.
|
1701
1839
|
: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.
|
@@ -1704,13 +1842,13 @@ class _ConnectionState:
|
|
1704
1842
|
:param pulumi.Input[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
|
1705
1843
|
: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"`
|
1706
1844
|
:param pulumi.Input[str] client_id: (Updatable) Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d
|
1707
|
-
:param pulumi.Input[str] client_secret: (Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1
|
1708
|
-
:param pulumi.Input[str] client_secret_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.
|
1845
|
+
:param pulumi.Input[str] client_secret: (Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1 Deprecated: This field is deprecated and replaced by "clientSecretSecretId". This field will be removed after February 15 2026.
|
1846
|
+
:param pulumi.Input[str] client_secret_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Only applicable for authenticationType == OAUTH_M2M. Note: When provided, 'clientSecret' field must not be provided.
|
1709
1847
|
: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.
|
1710
1848
|
:param pulumi.Input[str] connection_factory: (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
|
1711
1849
|
:param pulumi.Input[str] connection_string: (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://<synapse-workspace>.sql.azuresynapse.net:1433;database=<db-name>;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
|
1712
1850
|
:param pulumi.Input[str] connection_type: (Updatable) The connection type.
|
1713
|
-
:param pulumi.Input[str] connection_url: (Updatable)
|
1851
|
+
:param pulumi.Input[str] connection_url: (Updatable) 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'
|
1714
1852
|
:param pulumi.Input[str] consumer_properties: (Updatable) The base64 encoded content of the consumer.properties file.
|
1715
1853
|
:param pulumi.Input[str] core_site_xml: (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
|
1716
1854
|
:param pulumi.Input[str] database_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Autonomous Json Database.
|
@@ -1721,7 +1859,7 @@ class _ConnectionState:
|
|
1721
1859
|
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
1722
1860
|
:param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
|
1723
1861
|
:param pulumi.Input[bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
|
1724
|
-
:param pulumi.Input[str] endpoint: (Updatable)
|
1862
|
+
:param pulumi.Input[str] endpoint: (Updatable)Azure Storage service endpoint. e.g: https://test.blob.core.windows.net, Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
1725
1863
|
:param pulumi.Input[str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
|
1726
1864
|
: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"}`
|
1727
1865
|
:param pulumi.Input[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"`
|
@@ -1730,79 +1868,88 @@ class _ConnectionState:
|
|
1730
1868
|
:param pulumi.Input[str] jndi_connection_factory: (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
|
1731
1869
|
:param pulumi.Input[str] jndi_initial_context_factory: (Updatable) The implementation of javax.naming.spi.InitialContextFactory interface that the client uses to obtain initial naming context. e.g.: 'org.apache.activemq.jndi.ActiveMQInitialContextFactory'
|
1732
1870
|
:param pulumi.Input[str] jndi_provider_url: (Updatable) The URL that Java Message Service will use to contact the JNDI provider. e.g.: 'tcp://myjms.host.domain:61616?jms.prefetchPolicy.all=1000'
|
1733
|
-
:param pulumi.Input[str] jndi_security_credentials: (Updatable) The password associated to the principal.
|
1871
|
+
:param pulumi.Input[str] jndi_security_credentials: (Updatable) The password associated to the principal. Deprecated: This field is deprecated and replaced by "jndiSecurityCredentialsSecretId". This field will be removed after February 15 2026.
|
1734
1872
|
:param pulumi.Input[str] jndi_security_credentials_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the security credentials are stored associated to the principal. Note: When provided, 'jndiSecurityCredentials' field must not be provided.
|
1735
1873
|
:param pulumi.Input[str] jndi_security_principal: (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
|
1736
1874
|
:param pulumi.Input[str] key_id: (Updatable) 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.
|
1737
|
-
:param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file.
|
1738
|
-
:param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password.
|
1875
|
+
:param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file. Deprecated: This field is deprecated and replaced by "keyStoreSecretId". This field will be removed after February 15 2026.
|
1876
|
+
:param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password. Deprecated: This field is deprecated and replaced by "keyStorePasswordSecretId". This field will be removed after February 15 2026.
|
1739
1877
|
:param pulumi.Input[str] key_store_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka Ssl KeyStore password is stored. Note: When provided, 'keyStorePassword' field must not be provided.
|
1740
1878
|
:param pulumi.Input[str] key_store_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the KeyStore file is stored. Note: When provided, 'keyStore' field must not be provided.
|
1741
1879
|
: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.
|
1742
1880
|
:param pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]] locks: Locks associated with this resource.
|
1743
1881
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
|
1744
|
-
: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.
|
1882
|
+
: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.
|
1745
1883
|
:param pulumi.Input[str] password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored. 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. If secretId is used plaintext field must not be provided. Note: When provided, 'password' field must not be provided.
|
1746
1884
|
:param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
|
1747
1885
|
:param pulumi.Input[str] private_ip: (Updatable) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
|
1748
1886
|
|
1749
1887
|
The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
|
1750
|
-
:param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
1888
|
+
:param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm Deprecated: This field is deprecated and replaced by "privateKeyFileSecretId". This field will be removed after February 15 2026.
|
1751
1889
|
:param pulumi.Input[str] private_key_file_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm Note: When provided, 'privateKeyFile' field must not be provided.
|
1752
|
-
:param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
|
1890
|
+
:param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted. Deprecated: This field is deprecated and replaced by "privateKeyPassphraseSecretId". This field will be removed after February 15 2026.
|
1753
1891
|
:param pulumi.Input[str] private_key_passphrase_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password for the private key file. Note: When provided, 'privateKeyPassphrase' field must not be provided.
|
1754
1892
|
:param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
|
1755
1893
|
:param pulumi.Input[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
|
1756
1894
|
:param pulumi.Input[str] redis_cluster_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
|
1757
|
-
:param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
|
1895
|
+
:param pulumi.Input[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.
|
1758
1896
|
:param pulumi.Input[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.
|
1759
|
-
:param pulumi.Input[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
|
1897
|
+
:param pulumi.Input[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.
|
1760
1898
|
:param pulumi.Input[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.
|
1761
|
-
:param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
|
1899
|
+
:param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret" Deprecated: This field is deprecated and replaced by "secretAccessKeySecretId". This field will be removed after February 15 2026.
|
1762
1900
|
:param pulumi.Input[str] secret_access_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the secret access key is stored. Note: When provided, 'secretAccessKey' field must not be provided.
|
1763
1901
|
:param pulumi.Input[str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
|
1764
1902
|
:param pulumi.Input[str] servers: (Updatable) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `"server1.example.com:4000,server2.example.com:4000"`
|
1765
|
-
:param pulumi.Input[str] service_account_key_file: (Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage.
|
1903
|
+
:param pulumi.Input[str] service_account_key_file: (Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage. Deprecated: This field is deprecated and replaced by "serviceAccountKeyFileSecretId". This field will be removed after February 15 2026.
|
1766
1904
|
:param pulumi.Input[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 containing the credentials required to use Google Cloud Storage. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
|
1767
1905
|
: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.
|
1768
1906
|
:param pulumi.Input[bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
|
1907
|
+
:param pulumi.Input[bool] should_use_resource_principal: (Updatable) Indicates that the user intents to connect to the instance through resource principal.
|
1769
1908
|
:param pulumi.Input[bool] should_validate_server_certificate: (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
|
1770
1909
|
:param pulumi.Input[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.
|
1771
1910
|
:param pulumi.Input[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).
|
1772
|
-
:param pulumi.Input[str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
1911
|
+
:param pulumi.Input[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.
|
1773
1912
|
:param pulumi.Input[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.
|
1774
|
-
:param pulumi.Input[str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
1913
|
+
:param pulumi.Input[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.
|
1775
1914
|
:param pulumi.Input[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.
|
1776
1915
|
:param pulumi.Input[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.
|
1777
|
-
:param pulumi.Input[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).
|
1778
|
-
:param pulumi.Input[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.
|
1916
|
+
:param pulumi.Input[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.
|
1917
|
+
:param pulumi.Input[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.
|
1779
1918
|
:param pulumi.Input[str] ssl_key_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided.
|
1780
1919
|
:param pulumi.Input[str] ssl_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
1781
1920
|
* The content of a .pem or .crt file containing the client private key (for 2-way SSL). Note: When provided, 'sslKey' field must not be provided.
|
1782
1921
|
:param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
|
1783
1922
|
:param pulumi.Input[str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
1784
1923
|
:param pulumi.Input[str] state: Possible lifecycle states for connection.
|
1924
|
+
:param pulumi.Input[str] storage_credential_name: (Updatable) Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
|
1785
1925
|
:param pulumi.Input[str] stream_pool_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
|
1786
1926
|
:param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
|
1787
1927
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
1788
1928
|
:param pulumi.Input[str] technology_type: The Kafka (e.g. Confluent) Schema Registry technology type.
|
1789
1929
|
:param pulumi.Input[str] tenancy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Oracle Cloud Infrastructure tenancy.
|
1930
|
+
:param pulumi.Input[str] tenant_id: (Updatable) Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
1790
1931
|
:param pulumi.Input[str] time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
1791
1932
|
: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`.
|
1933
|
+
:param pulumi.Input[str] tls_ca_file: (Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
1934
|
+
:param pulumi.Input[str] tls_certificate_key_file: (Updatable) Client Certificate - The base64 encoded content of a .pem file, containing the client public key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFileSecretId". This field will be removed after February 15 2026.
|
1935
|
+
:param pulumi.Input[str] tls_certificate_key_file_password: (Updatable) Client Certificate key file password. Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFilePasswordSecretId". This field will be removed after February 15 2026.
|
1936
|
+
:param pulumi.Input[str] tls_certificate_key_file_password_secret_id: (Updatable) 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.
|
1937
|
+
:param pulumi.Input[str] tls_certificate_key_file_secret_id: (Updatable) 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.
|
1938
|
+
* The content of a .pem file containing the client private key (for 2-way SSL). Note: When provided, 'tlsCertificateKeyFile' field must not be provided.
|
1792
1939
|
:param pulumi.Input[bool] trigger_refresh: (Updatable) If value is true, it triggers connection refresh action and this attribute change will always show up in the "update" plan and will apply steps in order to refresh secrets and dependent service properties (such as ADB connection strings, wallets, etc..).
|
1793
1940
|
|
1794
1941
|
|
1795
1942
|
** IMPORTANT **
|
1796
1943
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1797
|
-
:param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file.
|
1798
|
-
:param pulumi.Input[str] trust_store_password: (Updatable) The TrustStore password.
|
1944
|
+
:param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file. Deprecated: This field is deprecated and replaced by "trustStoreSecretId". This field will be removed after February 15 2026.
|
1945
|
+
:param pulumi.Input[str] trust_store_password: (Updatable) The TrustStore password. Deprecated: This field is deprecated and replaced by "trustStorePasswordSecretId". This field will be removed after February 15 2026.
|
1799
1946
|
:param pulumi.Input[str] trust_store_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka Ssl TrustStore password is stored. Note: When provided, 'trustStorePassword' field must not be provided.
|
1800
1947
|
:param pulumi.Input[str] trust_store_secret_id: (Updatable) 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.
|
1801
1948
|
:param pulumi.Input[str] url: (Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
|
1802
|
-
:param pulumi.Input[str] user_id: (Updatable) 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.
|
1949
|
+
:param pulumi.Input[str] user_id: (Updatable) 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.
|
1803
1950
|
: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.
|
1804
1951
|
:param pulumi.Input[str] vault_id: (Updatable) 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.
|
1805
|
-
: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.
|
1952
|
+
: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.
|
1806
1953
|
:param pulumi.Input[str] wallet_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the wallet file is stored. The wallet contents Oracle GoldenGate uses to make connections to a database. Note: When provided, 'wallet' field must not be provided.
|
1807
1954
|
"""
|
1808
1955
|
if access_key_id is not None:
|
@@ -1945,6 +2092,8 @@ class _ConnectionState:
|
|
1945
2092
|
pulumi.set(__self__, "session_mode", session_mode)
|
1946
2093
|
if should_use_jndi is not None:
|
1947
2094
|
pulumi.set(__self__, "should_use_jndi", should_use_jndi)
|
2095
|
+
if should_use_resource_principal is not None:
|
2096
|
+
pulumi.set(__self__, "should_use_resource_principal", should_use_resource_principal)
|
1948
2097
|
if should_validate_server_certificate is not None:
|
1949
2098
|
pulumi.set(__self__, "should_validate_server_certificate", should_validate_server_certificate)
|
1950
2099
|
if ssl_ca is not None:
|
@@ -1975,6 +2124,8 @@ class _ConnectionState:
|
|
1975
2124
|
pulumi.set(__self__, "ssl_server_certificate", ssl_server_certificate)
|
1976
2125
|
if state is not None:
|
1977
2126
|
pulumi.set(__self__, "state", state)
|
2127
|
+
if storage_credential_name is not None:
|
2128
|
+
pulumi.set(__self__, "storage_credential_name", storage_credential_name)
|
1978
2129
|
if stream_pool_id is not None:
|
1979
2130
|
pulumi.set(__self__, "stream_pool_id", stream_pool_id)
|
1980
2131
|
if subnet_id is not None:
|
@@ -1985,10 +2136,22 @@ class _ConnectionState:
|
|
1985
2136
|
pulumi.set(__self__, "technology_type", technology_type)
|
1986
2137
|
if tenancy_id is not None:
|
1987
2138
|
pulumi.set(__self__, "tenancy_id", tenancy_id)
|
2139
|
+
if tenant_id is not None:
|
2140
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
1988
2141
|
if time_created is not None:
|
1989
2142
|
pulumi.set(__self__, "time_created", time_created)
|
1990
2143
|
if time_updated is not None:
|
1991
2144
|
pulumi.set(__self__, "time_updated", time_updated)
|
2145
|
+
if tls_ca_file is not None:
|
2146
|
+
pulumi.set(__self__, "tls_ca_file", tls_ca_file)
|
2147
|
+
if tls_certificate_key_file is not None:
|
2148
|
+
pulumi.set(__self__, "tls_certificate_key_file", tls_certificate_key_file)
|
2149
|
+
if tls_certificate_key_file_password is not None:
|
2150
|
+
pulumi.set(__self__, "tls_certificate_key_file_password", tls_certificate_key_file_password)
|
2151
|
+
if tls_certificate_key_file_password_secret_id is not None:
|
2152
|
+
pulumi.set(__self__, "tls_certificate_key_file_password_secret_id", tls_certificate_key_file_password_secret_id)
|
2153
|
+
if tls_certificate_key_file_secret_id is not None:
|
2154
|
+
pulumi.set(__self__, "tls_certificate_key_file_secret_id", tls_certificate_key_file_secret_id)
|
1992
2155
|
if trigger_refresh is not None:
|
1993
2156
|
pulumi.set(__self__, "trigger_refresh", trigger_refresh)
|
1994
2157
|
if trust_store is not None:
|
@@ -2028,7 +2191,7 @@ class _ConnectionState:
|
|
2028
2191
|
@pulumi.getter(name="accountKey")
|
2029
2192
|
def account_key(self) -> Optional[pulumi.Input[str]]:
|
2030
2193
|
"""
|
2031
|
-
(Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
|
2194
|
+
(Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ== Deprecated: This field is deprecated and replaced by "accountKeySecretId". This field will be removed after February 15 2026.
|
2032
2195
|
"""
|
2033
2196
|
return pulumi.get(self, "account_key")
|
2034
2197
|
|
@@ -2136,7 +2299,7 @@ class _ConnectionState:
|
|
2136
2299
|
@pulumi.getter(name="clientSecret")
|
2137
2300
|
def client_secret(self) -> Optional[pulumi.Input[str]]:
|
2138
2301
|
"""
|
2139
|
-
(Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1
|
2302
|
+
(Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1 Deprecated: This field is deprecated and replaced by "clientSecretSecretId". This field will be removed after February 15 2026.
|
2140
2303
|
"""
|
2141
2304
|
return pulumi.get(self, "client_secret")
|
2142
2305
|
|
@@ -2148,7 +2311,7 @@ class _ConnectionState:
|
|
2148
2311
|
@pulumi.getter(name="clientSecretSecretId")
|
2149
2312
|
def client_secret_secret_id(self) -> Optional[pulumi.Input[str]]:
|
2150
2313
|
"""
|
2151
|
-
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.
|
2314
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Only applicable for authenticationType == OAUTH_M2M. Note: When provided, 'clientSecret' field must not be provided.
|
2152
2315
|
"""
|
2153
2316
|
return pulumi.get(self, "client_secret_secret_id")
|
2154
2317
|
|
@@ -2208,7 +2371,7 @@ class _ConnectionState:
|
|
2208
2371
|
@pulumi.getter(name="connectionUrl")
|
2209
2372
|
def connection_url(self) -> Optional[pulumi.Input[str]]:
|
2210
2373
|
"""
|
2211
|
-
(Updatable)
|
2374
|
+
(Updatable) 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'
|
2212
2375
|
"""
|
2213
2376
|
return pulumi.get(self, "connection_url")
|
2214
2377
|
|
@@ -2340,7 +2503,7 @@ class _ConnectionState:
|
|
2340
2503
|
@pulumi.getter
|
2341
2504
|
def endpoint(self) -> Optional[pulumi.Input[str]]:
|
2342
2505
|
"""
|
2343
|
-
(Updatable)
|
2506
|
+
(Updatable)Azure Storage service endpoint. e.g: https://test.blob.core.windows.net, Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
2344
2507
|
"""
|
2345
2508
|
return pulumi.get(self, "endpoint")
|
2346
2509
|
|
@@ -2446,7 +2609,7 @@ class _ConnectionState:
|
|
2446
2609
|
@pulumi.getter(name="jndiSecurityCredentials")
|
2447
2610
|
def jndi_security_credentials(self) -> Optional[pulumi.Input[str]]:
|
2448
2611
|
"""
|
2449
|
-
(Updatable) The password associated to the principal.
|
2612
|
+
(Updatable) The password associated to the principal. Deprecated: This field is deprecated and replaced by "jndiSecurityCredentialsSecretId". This field will be removed after February 15 2026.
|
2450
2613
|
"""
|
2451
2614
|
return pulumi.get(self, "jndi_security_credentials")
|
2452
2615
|
|
@@ -2494,7 +2657,7 @@ class _ConnectionState:
|
|
2494
2657
|
@pulumi.getter(name="keyStore")
|
2495
2658
|
def key_store(self) -> Optional[pulumi.Input[str]]:
|
2496
2659
|
"""
|
2497
|
-
(Updatable) The base64 encoded content of the KeyStore file.
|
2660
|
+
(Updatable) The base64 encoded content of the KeyStore file. Deprecated: This field is deprecated and replaced by "keyStoreSecretId". This field will be removed after February 15 2026.
|
2498
2661
|
"""
|
2499
2662
|
return pulumi.get(self, "key_store")
|
2500
2663
|
|
@@ -2506,7 +2669,7 @@ class _ConnectionState:
|
|
2506
2669
|
@pulumi.getter(name="keyStorePassword")
|
2507
2670
|
def key_store_password(self) -> Optional[pulumi.Input[str]]:
|
2508
2671
|
"""
|
2509
|
-
(Updatable) The KeyStore password.
|
2672
|
+
(Updatable) The KeyStore password. Deprecated: This field is deprecated and replaced by "keyStorePasswordSecretId". This field will be removed after February 15 2026.
|
2510
2673
|
"""
|
2511
2674
|
return pulumi.get(self, "key_store_password")
|
2512
2675
|
|
@@ -2578,7 +2741,7 @@ class _ConnectionState:
|
|
2578
2741
|
@pulumi.getter
|
2579
2742
|
def password(self) -> Optional[pulumi.Input[str]]:
|
2580
2743
|
"""
|
2581
|
-
(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.
|
2744
|
+
(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.
|
2582
2745
|
"""
|
2583
2746
|
return pulumi.get(self, "password")
|
2584
2747
|
|
@@ -2628,7 +2791,7 @@ class _ConnectionState:
|
|
2628
2791
|
@pulumi.getter(name="privateKeyFile")
|
2629
2792
|
def private_key_file(self) -> Optional[pulumi.Input[str]]:
|
2630
2793
|
"""
|
2631
|
-
(Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
2794
|
+
(Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm Deprecated: This field is deprecated and replaced by "privateKeyFileSecretId". This field will be removed after February 15 2026.
|
2632
2795
|
"""
|
2633
2796
|
return pulumi.get(self, "private_key_file")
|
2634
2797
|
|
@@ -2652,7 +2815,7 @@ class _ConnectionState:
|
|
2652
2815
|
@pulumi.getter(name="privateKeyPassphrase")
|
2653
2816
|
def private_key_passphrase(self) -> Optional[pulumi.Input[str]]:
|
2654
2817
|
"""
|
2655
|
-
(Updatable) Password if the private key file is encrypted.
|
2818
|
+
(Updatable) Password if the private key file is encrypted. Deprecated: This field is deprecated and replaced by "privateKeyPassphraseSecretId". This field will be removed after February 15 2026.
|
2656
2819
|
"""
|
2657
2820
|
return pulumi.get(self, "private_key_passphrase")
|
2658
2821
|
|
@@ -2712,7 +2875,7 @@ class _ConnectionState:
|
|
2712
2875
|
@pulumi.getter
|
2713
2876
|
def region(self) -> Optional[pulumi.Input[str]]:
|
2714
2877
|
"""
|
2715
|
-
(Updatable) The name of the region. e.g.: us-ashburn-1
|
2878
|
+
(Updatable) The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
|
2716
2879
|
"""
|
2717
2880
|
return pulumi.get(self, "region")
|
2718
2881
|
|
@@ -2736,7 +2899,7 @@ class _ConnectionState:
|
|
2736
2899
|
@pulumi.getter(name="sasToken")
|
2737
2900
|
def sas_token(self) -> Optional[pulumi.Input[str]]:
|
2738
2901
|
"""
|
2739
|
-
(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
|
2902
|
+
(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.
|
2740
2903
|
"""
|
2741
2904
|
return pulumi.get(self, "sas_token")
|
2742
2905
|
|
@@ -2760,7 +2923,7 @@ class _ConnectionState:
|
|
2760
2923
|
@pulumi.getter(name="secretAccessKey")
|
2761
2924
|
def secret_access_key(self) -> Optional[pulumi.Input[str]]:
|
2762
2925
|
"""
|
2763
|
-
(Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
|
2926
|
+
(Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret" Deprecated: This field is deprecated and replaced by "secretAccessKeySecretId". This field will be removed after February 15 2026.
|
2764
2927
|
"""
|
2765
2928
|
return pulumi.get(self, "secret_access_key")
|
2766
2929
|
|
@@ -2808,7 +2971,7 @@ class _ConnectionState:
|
|
2808
2971
|
@pulumi.getter(name="serviceAccountKeyFile")
|
2809
2972
|
def service_account_key_file(self) -> Optional[pulumi.Input[str]]:
|
2810
2973
|
"""
|
2811
|
-
(Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage.
|
2974
|
+
(Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage. Deprecated: This field is deprecated and replaced by "serviceAccountKeyFileSecretId". This field will be removed after February 15 2026.
|
2812
2975
|
"""
|
2813
2976
|
return pulumi.get(self, "service_account_key_file")
|
2814
2977
|
|
@@ -2852,6 +3015,18 @@ class _ConnectionState:
|
|
2852
3015
|
def should_use_jndi(self, value: Optional[pulumi.Input[bool]]):
|
2853
3016
|
pulumi.set(self, "should_use_jndi", value)
|
2854
3017
|
|
3018
|
+
@property
|
3019
|
+
@pulumi.getter(name="shouldUseResourcePrincipal")
|
3020
|
+
def should_use_resource_principal(self) -> Optional[pulumi.Input[bool]]:
|
3021
|
+
"""
|
3022
|
+
(Updatable) Indicates that the user intents to connect to the instance through resource principal.
|
3023
|
+
"""
|
3024
|
+
return pulumi.get(self, "should_use_resource_principal")
|
3025
|
+
|
3026
|
+
@should_use_resource_principal.setter
|
3027
|
+
def should_use_resource_principal(self, value: Optional[pulumi.Input[bool]]):
|
3028
|
+
pulumi.set(self, "should_use_resource_principal", value)
|
3029
|
+
|
2855
3030
|
@property
|
2856
3031
|
@pulumi.getter(name="shouldValidateServerCertificate")
|
2857
3032
|
def should_validate_server_certificate(self) -> Optional[pulumi.Input[bool]]:
|
@@ -2892,7 +3067,7 @@ class _ConnectionState:
|
|
2892
3067
|
@pulumi.getter(name="sslClientKeystash")
|
2893
3068
|
def ssl_client_keystash(self) -> Optional[pulumi.Input[str]]:
|
2894
3069
|
"""
|
2895
|
-
(Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
3070
|
+
(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.
|
2896
3071
|
"""
|
2897
3072
|
return pulumi.get(self, "ssl_client_keystash")
|
2898
3073
|
|
@@ -2916,7 +3091,7 @@ class _ConnectionState:
|
|
2916
3091
|
@pulumi.getter(name="sslClientKeystoredb")
|
2917
3092
|
def ssl_client_keystoredb(self) -> Optional[pulumi.Input[str]]:
|
2918
3093
|
"""
|
2919
|
-
(Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
3094
|
+
(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.
|
2920
3095
|
"""
|
2921
3096
|
return pulumi.get(self, "ssl_client_keystoredb")
|
2922
3097
|
|
@@ -2952,7 +3127,7 @@ class _ConnectionState:
|
|
2952
3127
|
@pulumi.getter(name="sslKey")
|
2953
3128
|
def ssl_key(self) -> Optional[pulumi.Input[str]]:
|
2954
3129
|
"""
|
2955
|
-
(Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).
|
3130
|
+
(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.
|
2956
3131
|
"""
|
2957
3132
|
return pulumi.get(self, "ssl_key")
|
2958
3133
|
|
@@ -2964,7 +3139,7 @@ class _ConnectionState:
|
|
2964
3139
|
@pulumi.getter(name="sslKeyPassword")
|
2965
3140
|
def ssl_key_password(self) -> Optional[pulumi.Input[str]]:
|
2966
3141
|
"""
|
2967
|
-
(Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
|
3142
|
+
(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.
|
2968
3143
|
"""
|
2969
3144
|
return pulumi.get(self, "ssl_key_password")
|
2970
3145
|
|
@@ -3033,6 +3208,18 @@ class _ConnectionState:
|
|
3033
3208
|
def state(self, value: Optional[pulumi.Input[str]]):
|
3034
3209
|
pulumi.set(self, "state", value)
|
3035
3210
|
|
3211
|
+
@property
|
3212
|
+
@pulumi.getter(name="storageCredentialName")
|
3213
|
+
def storage_credential_name(self) -> Optional[pulumi.Input[str]]:
|
3214
|
+
"""
|
3215
|
+
(Updatable) Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
|
3216
|
+
"""
|
3217
|
+
return pulumi.get(self, "storage_credential_name")
|
3218
|
+
|
3219
|
+
@storage_credential_name.setter
|
3220
|
+
def storage_credential_name(self, value: Optional[pulumi.Input[str]]):
|
3221
|
+
pulumi.set(self, "storage_credential_name", value)
|
3222
|
+
|
3036
3223
|
@property
|
3037
3224
|
@pulumi.getter(name="streamPoolId")
|
3038
3225
|
def stream_pool_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -3093,6 +3280,18 @@ class _ConnectionState:
|
|
3093
3280
|
def tenancy_id(self, value: Optional[pulumi.Input[str]]):
|
3094
3281
|
pulumi.set(self, "tenancy_id", value)
|
3095
3282
|
|
3283
|
+
@property
|
3284
|
+
@pulumi.getter(name="tenantId")
|
3285
|
+
def tenant_id(self) -> Optional[pulumi.Input[str]]:
|
3286
|
+
"""
|
3287
|
+
(Updatable) Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
3288
|
+
"""
|
3289
|
+
return pulumi.get(self, "tenant_id")
|
3290
|
+
|
3291
|
+
@tenant_id.setter
|
3292
|
+
def tenant_id(self, value: Optional[pulumi.Input[str]]):
|
3293
|
+
pulumi.set(self, "tenant_id", value)
|
3294
|
+
|
3096
3295
|
@property
|
3097
3296
|
@pulumi.getter(name="timeCreated")
|
3098
3297
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -3117,6 +3316,67 @@ class _ConnectionState:
|
|
3117
3316
|
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
3118
3317
|
pulumi.set(self, "time_updated", value)
|
3119
3318
|
|
3319
|
+
@property
|
3320
|
+
@pulumi.getter(name="tlsCaFile")
|
3321
|
+
def tls_ca_file(self) -> Optional[pulumi.Input[str]]:
|
3322
|
+
"""
|
3323
|
+
(Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
3324
|
+
"""
|
3325
|
+
return pulumi.get(self, "tls_ca_file")
|
3326
|
+
|
3327
|
+
@tls_ca_file.setter
|
3328
|
+
def tls_ca_file(self, value: Optional[pulumi.Input[str]]):
|
3329
|
+
pulumi.set(self, "tls_ca_file", value)
|
3330
|
+
|
3331
|
+
@property
|
3332
|
+
@pulumi.getter(name="tlsCertificateKeyFile")
|
3333
|
+
def tls_certificate_key_file(self) -> Optional[pulumi.Input[str]]:
|
3334
|
+
"""
|
3335
|
+
(Updatable) Client Certificate - The base64 encoded content of a .pem file, containing the client public key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFileSecretId". This field will be removed after February 15 2026.
|
3336
|
+
"""
|
3337
|
+
return pulumi.get(self, "tls_certificate_key_file")
|
3338
|
+
|
3339
|
+
@tls_certificate_key_file.setter
|
3340
|
+
def tls_certificate_key_file(self, value: Optional[pulumi.Input[str]]):
|
3341
|
+
pulumi.set(self, "tls_certificate_key_file", value)
|
3342
|
+
|
3343
|
+
@property
|
3344
|
+
@pulumi.getter(name="tlsCertificateKeyFilePassword")
|
3345
|
+
def tls_certificate_key_file_password(self) -> Optional[pulumi.Input[str]]:
|
3346
|
+
"""
|
3347
|
+
(Updatable) Client Certificate key file password. Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFilePasswordSecretId". This field will be removed after February 15 2026.
|
3348
|
+
"""
|
3349
|
+
return pulumi.get(self, "tls_certificate_key_file_password")
|
3350
|
+
|
3351
|
+
@tls_certificate_key_file_password.setter
|
3352
|
+
def tls_certificate_key_file_password(self, value: Optional[pulumi.Input[str]]):
|
3353
|
+
pulumi.set(self, "tls_certificate_key_file_password", value)
|
3354
|
+
|
3355
|
+
@property
|
3356
|
+
@pulumi.getter(name="tlsCertificateKeyFilePasswordSecretId")
|
3357
|
+
def tls_certificate_key_file_password_secret_id(self) -> Optional[pulumi.Input[str]]:
|
3358
|
+
"""
|
3359
|
+
(Updatable) 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.
|
3360
|
+
"""
|
3361
|
+
return pulumi.get(self, "tls_certificate_key_file_password_secret_id")
|
3362
|
+
|
3363
|
+
@tls_certificate_key_file_password_secret_id.setter
|
3364
|
+
def tls_certificate_key_file_password_secret_id(self, value: Optional[pulumi.Input[str]]):
|
3365
|
+
pulumi.set(self, "tls_certificate_key_file_password_secret_id", value)
|
3366
|
+
|
3367
|
+
@property
|
3368
|
+
@pulumi.getter(name="tlsCertificateKeyFileSecretId")
|
3369
|
+
def tls_certificate_key_file_secret_id(self) -> Optional[pulumi.Input[str]]:
|
3370
|
+
"""
|
3371
|
+
(Updatable) 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.
|
3372
|
+
* The content of a .pem file containing the client private key (for 2-way SSL). Note: When provided, 'tlsCertificateKeyFile' field must not be provided.
|
3373
|
+
"""
|
3374
|
+
return pulumi.get(self, "tls_certificate_key_file_secret_id")
|
3375
|
+
|
3376
|
+
@tls_certificate_key_file_secret_id.setter
|
3377
|
+
def tls_certificate_key_file_secret_id(self, value: Optional[pulumi.Input[str]]):
|
3378
|
+
pulumi.set(self, "tls_certificate_key_file_secret_id", value)
|
3379
|
+
|
3120
3380
|
@property
|
3121
3381
|
@pulumi.getter(name="triggerRefresh")
|
3122
3382
|
def trigger_refresh(self) -> Optional[pulumi.Input[bool]]:
|
@@ -3137,7 +3397,7 @@ class _ConnectionState:
|
|
3137
3397
|
@pulumi.getter(name="trustStore")
|
3138
3398
|
def trust_store(self) -> Optional[pulumi.Input[str]]:
|
3139
3399
|
"""
|
3140
|
-
(Updatable) The base64 encoded content of the TrustStore file.
|
3400
|
+
(Updatable) The base64 encoded content of the TrustStore file. Deprecated: This field is deprecated and replaced by "trustStoreSecretId". This field will be removed after February 15 2026.
|
3141
3401
|
"""
|
3142
3402
|
return pulumi.get(self, "trust_store")
|
3143
3403
|
|
@@ -3149,7 +3409,7 @@ class _ConnectionState:
|
|
3149
3409
|
@pulumi.getter(name="trustStorePassword")
|
3150
3410
|
def trust_store_password(self) -> Optional[pulumi.Input[str]]:
|
3151
3411
|
"""
|
3152
|
-
(Updatable) The TrustStore password.
|
3412
|
+
(Updatable) The TrustStore password. Deprecated: This field is deprecated and replaced by "trustStorePasswordSecretId". This field will be removed after February 15 2026.
|
3153
3413
|
"""
|
3154
3414
|
return pulumi.get(self, "trust_store_password")
|
3155
3415
|
|
@@ -3197,7 +3457,7 @@ class _ConnectionState:
|
|
3197
3457
|
@pulumi.getter(name="userId")
|
3198
3458
|
def user_id(self) -> Optional[pulumi.Input[str]]:
|
3199
3459
|
"""
|
3200
|
-
(Updatable) 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.
|
3460
|
+
(Updatable) 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.
|
3201
3461
|
"""
|
3202
3462
|
return pulumi.get(self, "user_id")
|
3203
3463
|
|
@@ -3233,7 +3493,7 @@ class _ConnectionState:
|
|
3233
3493
|
@pulumi.getter
|
3234
3494
|
def wallet(self) -> Optional[pulumi.Input[str]]:
|
3235
3495
|
"""
|
3236
|
-
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
|
3496
|
+
(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.
|
3237
3497
|
"""
|
3238
3498
|
return pulumi.get(self, "wallet")
|
3239
3499
|
|
@@ -3327,6 +3587,7 @@ class Connection(pulumi.CustomResource):
|
|
3327
3587
|
service_account_key_file_secret_id: Optional[pulumi.Input[str]] = None,
|
3328
3588
|
session_mode: Optional[pulumi.Input[str]] = None,
|
3329
3589
|
should_use_jndi: Optional[pulumi.Input[bool]] = None,
|
3590
|
+
should_use_resource_principal: Optional[pulumi.Input[bool]] = None,
|
3330
3591
|
should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
|
3331
3592
|
ssl_ca: Optional[pulumi.Input[str]] = None,
|
3332
3593
|
ssl_cert: Optional[pulumi.Input[str]] = None,
|
@@ -3341,10 +3602,17 @@ class Connection(pulumi.CustomResource):
|
|
3341
3602
|
ssl_key_secret_id: Optional[pulumi.Input[str]] = None,
|
3342
3603
|
ssl_mode: Optional[pulumi.Input[str]] = None,
|
3343
3604
|
ssl_server_certificate: Optional[pulumi.Input[str]] = None,
|
3605
|
+
storage_credential_name: Optional[pulumi.Input[str]] = None,
|
3344
3606
|
stream_pool_id: Optional[pulumi.Input[str]] = None,
|
3345
3607
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
3346
3608
|
technology_type: Optional[pulumi.Input[str]] = None,
|
3347
3609
|
tenancy_id: Optional[pulumi.Input[str]] = None,
|
3610
|
+
tenant_id: Optional[pulumi.Input[str]] = None,
|
3611
|
+
tls_ca_file: Optional[pulumi.Input[str]] = None,
|
3612
|
+
tls_certificate_key_file: Optional[pulumi.Input[str]] = None,
|
3613
|
+
tls_certificate_key_file_password: Optional[pulumi.Input[str]] = None,
|
3614
|
+
tls_certificate_key_file_password_secret_id: Optional[pulumi.Input[str]] = None,
|
3615
|
+
tls_certificate_key_file_secret_id: Optional[pulumi.Input[str]] = None,
|
3348
3616
|
trigger_refresh: Optional[pulumi.Input[bool]] = None,
|
3349
3617
|
trust_store: Optional[pulumi.Input[str]] = None,
|
3350
3618
|
trust_store_password: Optional[pulumi.Input[str]] = None,
|
@@ -3451,6 +3719,7 @@ class Connection(pulumi.CustomResource):
|
|
3451
3719
|
service_account_key_file_secret_id=test_secret["id"],
|
3452
3720
|
session_mode=connection_session_mode,
|
3453
3721
|
should_use_jndi=connection_should_use_jndi,
|
3722
|
+
should_use_resource_principal=connection_should_use_resource_principal,
|
3454
3723
|
should_validate_server_certificate=connection_should_validate_server_certificate,
|
3455
3724
|
ssl_ca=connection_ssl_ca,
|
3456
3725
|
ssl_cert=connection_ssl_cert,
|
@@ -3465,9 +3734,16 @@ class Connection(pulumi.CustomResource):
|
|
3465
3734
|
ssl_key_secret_id=test_secret["id"],
|
3466
3735
|
ssl_mode=connection_ssl_mode,
|
3467
3736
|
ssl_server_certificate=connection_ssl_server_certificate,
|
3737
|
+
storage_credential_name=connection_storage_credential_name,
|
3468
3738
|
stream_pool_id=test_stream_pool["id"],
|
3469
3739
|
subnet_id=test_subnet["id"],
|
3470
3740
|
tenancy_id=test_tenancy["id"],
|
3741
|
+
tenant_id=test_tenant["id"],
|
3742
|
+
tls_ca_file=connection_tls_ca_file,
|
3743
|
+
tls_certificate_key_file=connection_tls_certificate_key_file,
|
3744
|
+
tls_certificate_key_file_password=connection_tls_certificate_key_file_password,
|
3745
|
+
tls_certificate_key_file_password_secret_id=test_secret["id"],
|
3746
|
+
tls_certificate_key_file_secret_id=test_secret["id"],
|
3471
3747
|
trust_store=connection_trust_store,
|
3472
3748
|
trust_store_password=connection_trust_store_password,
|
3473
3749
|
trust_store_password_secret_id=test_secret["id"],
|
@@ -3492,7 +3768,7 @@ class Connection(pulumi.CustomResource):
|
|
3492
3768
|
:param str resource_name: The name of the resource.
|
3493
3769
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
3494
3770
|
:param pulumi.Input[str] access_key_id: (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
|
3495
|
-
:param pulumi.Input[str] account_key: (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
|
3771
|
+
:param pulumi.Input[str] account_key: (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ== Deprecated: This field is deprecated and replaced by "accountKeySecretId". This field will be removed after February 15 2026.
|
3496
3772
|
:param pulumi.Input[str] account_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored. Note: When provided, 'accountKey' field must not be provided.
|
3497
3773
|
:param pulumi.Input[str] account_name: (Updatable) Sets the Azure storage account name.
|
3498
3774
|
: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.
|
@@ -3501,13 +3777,13 @@ class Connection(pulumi.CustomResource):
|
|
3501
3777
|
:param pulumi.Input[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
|
3502
3778
|
: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"`
|
3503
3779
|
:param pulumi.Input[str] client_id: (Updatable) Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d
|
3504
|
-
:param pulumi.Input[str] client_secret: (Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1
|
3505
|
-
:param pulumi.Input[str] client_secret_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.
|
3780
|
+
:param pulumi.Input[str] client_secret: (Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1 Deprecated: This field is deprecated and replaced by "clientSecretSecretId". This field will be removed after February 15 2026.
|
3781
|
+
:param pulumi.Input[str] client_secret_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Only applicable for authenticationType == OAUTH_M2M. Note: When provided, 'clientSecret' field must not be provided.
|
3506
3782
|
: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.
|
3507
3783
|
:param pulumi.Input[str] connection_factory: (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
|
3508
3784
|
:param pulumi.Input[str] connection_string: (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://<synapse-workspace>.sql.azuresynapse.net:1433;database=<db-name>;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
|
3509
3785
|
:param pulumi.Input[str] connection_type: (Updatable) The connection type.
|
3510
|
-
:param pulumi.Input[str] connection_url: (Updatable)
|
3786
|
+
:param pulumi.Input[str] connection_url: (Updatable) 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'
|
3511
3787
|
:param pulumi.Input[str] consumer_properties: (Updatable) The base64 encoded content of the consumer.properties file.
|
3512
3788
|
:param pulumi.Input[str] core_site_xml: (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
|
3513
3789
|
:param pulumi.Input[str] database_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Autonomous Json Database.
|
@@ -3518,7 +3794,7 @@ class Connection(pulumi.CustomResource):
|
|
3518
3794
|
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
3519
3795
|
:param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
|
3520
3796
|
:param pulumi.Input[bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
|
3521
|
-
:param pulumi.Input[str] endpoint: (Updatable)
|
3797
|
+
:param pulumi.Input[str] endpoint: (Updatable)Azure Storage service endpoint. e.g: https://test.blob.core.windows.net, Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
3522
3798
|
:param pulumi.Input[str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
|
3523
3799
|
: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"}`
|
3524
3800
|
:param pulumi.Input[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"`
|
@@ -3526,74 +3802,83 @@ class Connection(pulumi.CustomResource):
|
|
3526
3802
|
:param pulumi.Input[str] jndi_connection_factory: (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
|
3527
3803
|
:param pulumi.Input[str] jndi_initial_context_factory: (Updatable) The implementation of javax.naming.spi.InitialContextFactory interface that the client uses to obtain initial naming context. e.g.: 'org.apache.activemq.jndi.ActiveMQInitialContextFactory'
|
3528
3804
|
:param pulumi.Input[str] jndi_provider_url: (Updatable) The URL that Java Message Service will use to contact the JNDI provider. e.g.: 'tcp://myjms.host.domain:61616?jms.prefetchPolicy.all=1000'
|
3529
|
-
:param pulumi.Input[str] jndi_security_credentials: (Updatable) The password associated to the principal.
|
3805
|
+
:param pulumi.Input[str] jndi_security_credentials: (Updatable) The password associated to the principal. Deprecated: This field is deprecated and replaced by "jndiSecurityCredentialsSecretId". This field will be removed after February 15 2026.
|
3530
3806
|
:param pulumi.Input[str] jndi_security_credentials_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the security credentials are stored associated to the principal. Note: When provided, 'jndiSecurityCredentials' field must not be provided.
|
3531
3807
|
:param pulumi.Input[str] jndi_security_principal: (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
|
3532
3808
|
:param pulumi.Input[str] key_id: (Updatable) 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.
|
3533
|
-
:param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file.
|
3534
|
-
:param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password.
|
3809
|
+
:param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file. Deprecated: This field is deprecated and replaced by "keyStoreSecretId". This field will be removed after February 15 2026.
|
3810
|
+
:param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password. Deprecated: This field is deprecated and replaced by "keyStorePasswordSecretId". This field will be removed after February 15 2026.
|
3535
3811
|
:param pulumi.Input[str] key_store_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka Ssl KeyStore password is stored. Note: When provided, 'keyStorePassword' field must not be provided.
|
3536
3812
|
:param pulumi.Input[str] key_store_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the KeyStore file is stored. Note: When provided, 'keyStore' field must not be provided.
|
3537
3813
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ConnectionLockArgs', 'ConnectionLockArgsDict']]]] locks: Locks associated with this resource.
|
3538
3814
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
|
3539
|
-
: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.
|
3815
|
+
: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.
|
3540
3816
|
:param pulumi.Input[str] password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored. 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. If secretId is used plaintext field must not be provided. Note: When provided, 'password' field must not be provided.
|
3541
3817
|
:param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
|
3542
3818
|
:param pulumi.Input[str] private_ip: (Updatable) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
|
3543
3819
|
|
3544
3820
|
The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
|
3545
|
-
:param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
3821
|
+
:param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm Deprecated: This field is deprecated and replaced by "privateKeyFileSecretId". This field will be removed after February 15 2026.
|
3546
3822
|
:param pulumi.Input[str] private_key_file_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm Note: When provided, 'privateKeyFile' field must not be provided.
|
3547
|
-
:param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
|
3823
|
+
:param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted. Deprecated: This field is deprecated and replaced by "privateKeyPassphraseSecretId". This field will be removed after February 15 2026.
|
3548
3824
|
:param pulumi.Input[str] private_key_passphrase_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password for the private key file. Note: When provided, 'privateKeyPassphrase' field must not be provided.
|
3549
3825
|
:param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
|
3550
3826
|
:param pulumi.Input[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
|
3551
3827
|
:param pulumi.Input[str] redis_cluster_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
|
3552
|
-
:param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
|
3828
|
+
:param pulumi.Input[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.
|
3553
3829
|
:param pulumi.Input[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.
|
3554
|
-
:param pulumi.Input[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
|
3830
|
+
:param pulumi.Input[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.
|
3555
3831
|
:param pulumi.Input[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.
|
3556
|
-
:param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
|
3832
|
+
:param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret" Deprecated: This field is deprecated and replaced by "secretAccessKeySecretId". This field will be removed after February 15 2026.
|
3557
3833
|
:param pulumi.Input[str] secret_access_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the secret access key is stored. Note: When provided, 'secretAccessKey' field must not be provided.
|
3558
3834
|
:param pulumi.Input[str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
|
3559
3835
|
:param pulumi.Input[str] servers: (Updatable) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `"server1.example.com:4000,server2.example.com:4000"`
|
3560
|
-
:param pulumi.Input[str] service_account_key_file: (Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage.
|
3836
|
+
:param pulumi.Input[str] service_account_key_file: (Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage. Deprecated: This field is deprecated and replaced by "serviceAccountKeyFileSecretId". This field will be removed after February 15 2026.
|
3561
3837
|
:param pulumi.Input[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 containing the credentials required to use Google Cloud Storage. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
|
3562
3838
|
: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.
|
3563
3839
|
:param pulumi.Input[bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
|
3840
|
+
:param pulumi.Input[bool] should_use_resource_principal: (Updatable) Indicates that the user intents to connect to the instance through resource principal.
|
3564
3841
|
:param pulumi.Input[bool] should_validate_server_certificate: (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
|
3565
3842
|
:param pulumi.Input[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.
|
3566
3843
|
:param pulumi.Input[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).
|
3567
|
-
:param pulumi.Input[str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
3844
|
+
:param pulumi.Input[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.
|
3568
3845
|
:param pulumi.Input[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.
|
3569
|
-
:param pulumi.Input[str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
3846
|
+
:param pulumi.Input[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.
|
3570
3847
|
:param pulumi.Input[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.
|
3571
3848
|
:param pulumi.Input[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.
|
3572
|
-
:param pulumi.Input[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).
|
3573
|
-
:param pulumi.Input[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.
|
3849
|
+
:param pulumi.Input[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.
|
3850
|
+
:param pulumi.Input[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.
|
3574
3851
|
:param pulumi.Input[str] ssl_key_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided.
|
3575
3852
|
:param pulumi.Input[str] ssl_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
3576
3853
|
* The content of a .pem or .crt file containing the client private key (for 2-way SSL). Note: When provided, 'sslKey' field must not be provided.
|
3577
3854
|
:param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
|
3578
3855
|
:param pulumi.Input[str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
3856
|
+
:param pulumi.Input[str] storage_credential_name: (Updatable) Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
|
3579
3857
|
:param pulumi.Input[str] stream_pool_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
|
3580
3858
|
:param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
|
3581
3859
|
:param pulumi.Input[str] technology_type: The Kafka (e.g. Confluent) Schema Registry technology type.
|
3582
3860
|
:param pulumi.Input[str] tenancy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Oracle Cloud Infrastructure tenancy.
|
3861
|
+
:param pulumi.Input[str] tenant_id: (Updatable) Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
3862
|
+
:param pulumi.Input[str] tls_ca_file: (Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
3863
|
+
:param pulumi.Input[str] tls_certificate_key_file: (Updatable) Client Certificate - The base64 encoded content of a .pem file, containing the client public key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFileSecretId". This field will be removed after February 15 2026.
|
3864
|
+
:param pulumi.Input[str] tls_certificate_key_file_password: (Updatable) Client Certificate key file password. Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFilePasswordSecretId". This field will be removed after February 15 2026.
|
3865
|
+
:param pulumi.Input[str] tls_certificate_key_file_password_secret_id: (Updatable) 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.
|
3866
|
+
:param pulumi.Input[str] tls_certificate_key_file_secret_id: (Updatable) 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.
|
3867
|
+
* The content of a .pem file containing the client private key (for 2-way SSL). Note: When provided, 'tlsCertificateKeyFile' field must not be provided.
|
3583
3868
|
:param pulumi.Input[bool] trigger_refresh: (Updatable) If value is true, it triggers connection refresh action and this attribute change will always show up in the "update" plan and will apply steps in order to refresh secrets and dependent service properties (such as ADB connection strings, wallets, etc..).
|
3584
3869
|
|
3585
3870
|
|
3586
3871
|
** IMPORTANT **
|
3587
3872
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
3588
|
-
:param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file.
|
3589
|
-
:param pulumi.Input[str] trust_store_password: (Updatable) The TrustStore password.
|
3873
|
+
:param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file. Deprecated: This field is deprecated and replaced by "trustStoreSecretId". This field will be removed after February 15 2026.
|
3874
|
+
:param pulumi.Input[str] trust_store_password: (Updatable) The TrustStore password. Deprecated: This field is deprecated and replaced by "trustStorePasswordSecretId". This field will be removed after February 15 2026.
|
3590
3875
|
:param pulumi.Input[str] trust_store_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka Ssl TrustStore password is stored. Note: When provided, 'trustStorePassword' field must not be provided.
|
3591
3876
|
:param pulumi.Input[str] trust_store_secret_id: (Updatable) 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.
|
3592
3877
|
:param pulumi.Input[str] url: (Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
|
3593
|
-
:param pulumi.Input[str] user_id: (Updatable) 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.
|
3878
|
+
:param pulumi.Input[str] user_id: (Updatable) 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.
|
3594
3879
|
: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.
|
3595
3880
|
:param pulumi.Input[str] vault_id: (Updatable) 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.
|
3596
|
-
: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.
|
3881
|
+
: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.
|
3597
3882
|
:param pulumi.Input[str] wallet_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the wallet file is stored. The wallet contents Oracle GoldenGate uses to make connections to a database. Note: When provided, 'wallet' field must not be provided.
|
3598
3883
|
"""
|
3599
3884
|
...
|
@@ -3696,6 +3981,7 @@ class Connection(pulumi.CustomResource):
|
|
3696
3981
|
service_account_key_file_secret_id=test_secret["id"],
|
3697
3982
|
session_mode=connection_session_mode,
|
3698
3983
|
should_use_jndi=connection_should_use_jndi,
|
3984
|
+
should_use_resource_principal=connection_should_use_resource_principal,
|
3699
3985
|
should_validate_server_certificate=connection_should_validate_server_certificate,
|
3700
3986
|
ssl_ca=connection_ssl_ca,
|
3701
3987
|
ssl_cert=connection_ssl_cert,
|
@@ -3710,9 +3996,16 @@ class Connection(pulumi.CustomResource):
|
|
3710
3996
|
ssl_key_secret_id=test_secret["id"],
|
3711
3997
|
ssl_mode=connection_ssl_mode,
|
3712
3998
|
ssl_server_certificate=connection_ssl_server_certificate,
|
3999
|
+
storage_credential_name=connection_storage_credential_name,
|
3713
4000
|
stream_pool_id=test_stream_pool["id"],
|
3714
4001
|
subnet_id=test_subnet["id"],
|
3715
4002
|
tenancy_id=test_tenancy["id"],
|
4003
|
+
tenant_id=test_tenant["id"],
|
4004
|
+
tls_ca_file=connection_tls_ca_file,
|
4005
|
+
tls_certificate_key_file=connection_tls_certificate_key_file,
|
4006
|
+
tls_certificate_key_file_password=connection_tls_certificate_key_file_password,
|
4007
|
+
tls_certificate_key_file_password_secret_id=test_secret["id"],
|
4008
|
+
tls_certificate_key_file_secret_id=test_secret["id"],
|
3716
4009
|
trust_store=connection_trust_store,
|
3717
4010
|
trust_store_password=connection_trust_store_password,
|
3718
4011
|
trust_store_password_secret_id=test_secret["id"],
|
@@ -3817,6 +4110,7 @@ class Connection(pulumi.CustomResource):
|
|
3817
4110
|
service_account_key_file_secret_id: Optional[pulumi.Input[str]] = None,
|
3818
4111
|
session_mode: Optional[pulumi.Input[str]] = None,
|
3819
4112
|
should_use_jndi: Optional[pulumi.Input[bool]] = None,
|
4113
|
+
should_use_resource_principal: Optional[pulumi.Input[bool]] = None,
|
3820
4114
|
should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
|
3821
4115
|
ssl_ca: Optional[pulumi.Input[str]] = None,
|
3822
4116
|
ssl_cert: Optional[pulumi.Input[str]] = None,
|
@@ -3831,10 +4125,17 @@ class Connection(pulumi.CustomResource):
|
|
3831
4125
|
ssl_key_secret_id: Optional[pulumi.Input[str]] = None,
|
3832
4126
|
ssl_mode: Optional[pulumi.Input[str]] = None,
|
3833
4127
|
ssl_server_certificate: Optional[pulumi.Input[str]] = None,
|
4128
|
+
storage_credential_name: Optional[pulumi.Input[str]] = None,
|
3834
4129
|
stream_pool_id: Optional[pulumi.Input[str]] = None,
|
3835
4130
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
3836
4131
|
technology_type: Optional[pulumi.Input[str]] = None,
|
3837
4132
|
tenancy_id: Optional[pulumi.Input[str]] = None,
|
4133
|
+
tenant_id: Optional[pulumi.Input[str]] = None,
|
4134
|
+
tls_ca_file: Optional[pulumi.Input[str]] = None,
|
4135
|
+
tls_certificate_key_file: Optional[pulumi.Input[str]] = None,
|
4136
|
+
tls_certificate_key_file_password: Optional[pulumi.Input[str]] = None,
|
4137
|
+
tls_certificate_key_file_password_secret_id: Optional[pulumi.Input[str]] = None,
|
4138
|
+
tls_certificate_key_file_secret_id: Optional[pulumi.Input[str]] = None,
|
3838
4139
|
trigger_refresh: Optional[pulumi.Input[bool]] = None,
|
3839
4140
|
trust_store: Optional[pulumi.Input[str]] = None,
|
3840
4141
|
trust_store_password: Optional[pulumi.Input[str]] = None,
|
@@ -3929,6 +4230,7 @@ class Connection(pulumi.CustomResource):
|
|
3929
4230
|
__props__.__dict__["service_account_key_file_secret_id"] = service_account_key_file_secret_id
|
3930
4231
|
__props__.__dict__["session_mode"] = session_mode
|
3931
4232
|
__props__.__dict__["should_use_jndi"] = should_use_jndi
|
4233
|
+
__props__.__dict__["should_use_resource_principal"] = should_use_resource_principal
|
3932
4234
|
__props__.__dict__["should_validate_server_certificate"] = should_validate_server_certificate
|
3933
4235
|
__props__.__dict__["ssl_ca"] = ssl_ca
|
3934
4236
|
__props__.__dict__["ssl_cert"] = ssl_cert
|
@@ -3943,12 +4245,19 @@ class Connection(pulumi.CustomResource):
|
|
3943
4245
|
__props__.__dict__["ssl_key_secret_id"] = ssl_key_secret_id
|
3944
4246
|
__props__.__dict__["ssl_mode"] = ssl_mode
|
3945
4247
|
__props__.__dict__["ssl_server_certificate"] = ssl_server_certificate
|
4248
|
+
__props__.__dict__["storage_credential_name"] = storage_credential_name
|
3946
4249
|
__props__.__dict__["stream_pool_id"] = stream_pool_id
|
3947
4250
|
__props__.__dict__["subnet_id"] = subnet_id
|
3948
4251
|
if technology_type is None and not opts.urn:
|
3949
4252
|
raise TypeError("Missing required property 'technology_type'")
|
3950
4253
|
__props__.__dict__["technology_type"] = technology_type
|
3951
4254
|
__props__.__dict__["tenancy_id"] = tenancy_id
|
4255
|
+
__props__.__dict__["tenant_id"] = tenant_id
|
4256
|
+
__props__.__dict__["tls_ca_file"] = tls_ca_file
|
4257
|
+
__props__.__dict__["tls_certificate_key_file"] = tls_certificate_key_file
|
4258
|
+
__props__.__dict__["tls_certificate_key_file_password"] = None if tls_certificate_key_file_password is None else pulumi.Output.secret(tls_certificate_key_file_password)
|
4259
|
+
__props__.__dict__["tls_certificate_key_file_password_secret_id"] = None if tls_certificate_key_file_password_secret_id is None else pulumi.Output.secret(tls_certificate_key_file_password_secret_id)
|
4260
|
+
__props__.__dict__["tls_certificate_key_file_secret_id"] = tls_certificate_key_file_secret_id
|
3952
4261
|
__props__.__dict__["trigger_refresh"] = trigger_refresh
|
3953
4262
|
__props__.__dict__["trust_store"] = None if trust_store is None else pulumi.Output.secret(trust_store)
|
3954
4263
|
__props__.__dict__["trust_store_password"] = None if trust_store_password is None else pulumi.Output.secret(trust_store_password)
|
@@ -3966,7 +4275,7 @@ class Connection(pulumi.CustomResource):
|
|
3966
4275
|
__props__.__dict__["system_tags"] = None
|
3967
4276
|
__props__.__dict__["time_created"] = None
|
3968
4277
|
__props__.__dict__["time_updated"] = None
|
3969
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["accountKey", "clientSecret", "jndiSecurityCredentials", "keyStore", "keyStorePassword", "password", "privateKeyFile", "privateKeyPassphrase", "sasToken", "secretAccessKey", "serviceAccountKeyFile", "sslClientKeystash", "sslClientKeystoredb", "sslKey", "sslKeyPassword", "trustStore", "trustStorePassword", "wallet"])
|
4278
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["accountKey", "clientSecret", "jndiSecurityCredentials", "keyStore", "keyStorePassword", "password", "privateKeyFile", "privateKeyPassphrase", "sasToken", "secretAccessKey", "serviceAccountKeyFile", "sslClientKeystash", "sslClientKeystoredb", "sslKey", "sslKeyPassword", "tlsCertificateKeyFilePassword", "tlsCertificateKeyFilePasswordSecretId", "trustStore", "trustStorePassword", "wallet"])
|
3970
4279
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
3971
4280
|
super(Connection, __self__).__init__(
|
3972
4281
|
'oci:GoldenGate/connection:Connection',
|
@@ -4048,6 +4357,7 @@ class Connection(pulumi.CustomResource):
|
|
4048
4357
|
service_account_key_file_secret_id: Optional[pulumi.Input[str]] = None,
|
4049
4358
|
session_mode: Optional[pulumi.Input[str]] = None,
|
4050
4359
|
should_use_jndi: Optional[pulumi.Input[bool]] = None,
|
4360
|
+
should_use_resource_principal: Optional[pulumi.Input[bool]] = None,
|
4051
4361
|
should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
|
4052
4362
|
ssl_ca: Optional[pulumi.Input[str]] = None,
|
4053
4363
|
ssl_cert: Optional[pulumi.Input[str]] = None,
|
@@ -4063,13 +4373,20 @@ class Connection(pulumi.CustomResource):
|
|
4063
4373
|
ssl_mode: Optional[pulumi.Input[str]] = None,
|
4064
4374
|
ssl_server_certificate: Optional[pulumi.Input[str]] = None,
|
4065
4375
|
state: Optional[pulumi.Input[str]] = None,
|
4376
|
+
storage_credential_name: Optional[pulumi.Input[str]] = None,
|
4066
4377
|
stream_pool_id: Optional[pulumi.Input[str]] = None,
|
4067
4378
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
4068
4379
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
4069
4380
|
technology_type: Optional[pulumi.Input[str]] = None,
|
4070
4381
|
tenancy_id: Optional[pulumi.Input[str]] = None,
|
4382
|
+
tenant_id: Optional[pulumi.Input[str]] = None,
|
4071
4383
|
time_created: Optional[pulumi.Input[str]] = None,
|
4072
4384
|
time_updated: Optional[pulumi.Input[str]] = None,
|
4385
|
+
tls_ca_file: Optional[pulumi.Input[str]] = None,
|
4386
|
+
tls_certificate_key_file: Optional[pulumi.Input[str]] = None,
|
4387
|
+
tls_certificate_key_file_password: Optional[pulumi.Input[str]] = None,
|
4388
|
+
tls_certificate_key_file_password_secret_id: Optional[pulumi.Input[str]] = None,
|
4389
|
+
tls_certificate_key_file_secret_id: Optional[pulumi.Input[str]] = None,
|
4073
4390
|
trigger_refresh: Optional[pulumi.Input[bool]] = None,
|
4074
4391
|
trust_store: Optional[pulumi.Input[str]] = None,
|
4075
4392
|
trust_store_password: Optional[pulumi.Input[str]] = None,
|
@@ -4089,7 +4406,7 @@ class Connection(pulumi.CustomResource):
|
|
4089
4406
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
4090
4407
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
4091
4408
|
:param pulumi.Input[str] access_key_id: (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
|
4092
|
-
:param pulumi.Input[str] account_key: (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
|
4409
|
+
:param pulumi.Input[str] account_key: (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ== Deprecated: This field is deprecated and replaced by "accountKeySecretId". This field will be removed after February 15 2026.
|
4093
4410
|
:param pulumi.Input[str] account_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored. Note: When provided, 'accountKey' field must not be provided.
|
4094
4411
|
:param pulumi.Input[str] account_name: (Updatable) Sets the Azure storage account name.
|
4095
4412
|
: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.
|
@@ -4098,13 +4415,13 @@ class Connection(pulumi.CustomResource):
|
|
4098
4415
|
:param pulumi.Input[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
|
4099
4416
|
: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"`
|
4100
4417
|
:param pulumi.Input[str] client_id: (Updatable) Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d
|
4101
|
-
:param pulumi.Input[str] client_secret: (Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1
|
4102
|
-
:param pulumi.Input[str] client_secret_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.
|
4418
|
+
:param pulumi.Input[str] client_secret: (Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1 Deprecated: This field is deprecated and replaced by "clientSecretSecretId". This field will be removed after February 15 2026.
|
4419
|
+
:param pulumi.Input[str] client_secret_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Only applicable for authenticationType == OAUTH_M2M. Note: When provided, 'clientSecret' field must not be provided.
|
4103
4420
|
: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.
|
4104
4421
|
:param pulumi.Input[str] connection_factory: (Updatable) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'
|
4105
4422
|
:param pulumi.Input[str] connection_string: (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://<synapse-workspace>.sql.azuresynapse.net:1433;database=<db-name>;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
|
4106
4423
|
:param pulumi.Input[str] connection_type: (Updatable) The connection type.
|
4107
|
-
:param pulumi.Input[str] connection_url: (Updatable)
|
4424
|
+
:param pulumi.Input[str] connection_url: (Updatable) 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'
|
4108
4425
|
:param pulumi.Input[str] consumer_properties: (Updatable) The base64 encoded content of the consumer.properties file.
|
4109
4426
|
:param pulumi.Input[str] core_site_xml: (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
|
4110
4427
|
:param pulumi.Input[str] database_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Autonomous Json Database.
|
@@ -4115,7 +4432,7 @@ class Connection(pulumi.CustomResource):
|
|
4115
4432
|
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
4116
4433
|
:param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
|
4117
4434
|
:param pulumi.Input[bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
|
4118
|
-
:param pulumi.Input[str] endpoint: (Updatable)
|
4435
|
+
:param pulumi.Input[str] endpoint: (Updatable)Azure Storage service endpoint. e.g: https://test.blob.core.windows.net, Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
4119
4436
|
:param pulumi.Input[str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
|
4120
4437
|
: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"}`
|
4121
4438
|
:param pulumi.Input[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"`
|
@@ -4124,79 +4441,88 @@ class Connection(pulumi.CustomResource):
|
|
4124
4441
|
:param pulumi.Input[str] jndi_connection_factory: (Updatable) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'
|
4125
4442
|
:param pulumi.Input[str] jndi_initial_context_factory: (Updatable) The implementation of javax.naming.spi.InitialContextFactory interface that the client uses to obtain initial naming context. e.g.: 'org.apache.activemq.jndi.ActiveMQInitialContextFactory'
|
4126
4443
|
:param pulumi.Input[str] jndi_provider_url: (Updatable) The URL that Java Message Service will use to contact the JNDI provider. e.g.: 'tcp://myjms.host.domain:61616?jms.prefetchPolicy.all=1000'
|
4127
|
-
:param pulumi.Input[str] jndi_security_credentials: (Updatable) The password associated to the principal.
|
4444
|
+
:param pulumi.Input[str] jndi_security_credentials: (Updatable) The password associated to the principal. Deprecated: This field is deprecated and replaced by "jndiSecurityCredentialsSecretId". This field will be removed after February 15 2026.
|
4128
4445
|
:param pulumi.Input[str] jndi_security_credentials_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the security credentials are stored associated to the principal. Note: When provided, 'jndiSecurityCredentials' field must not be provided.
|
4129
4446
|
:param pulumi.Input[str] jndi_security_principal: (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
|
4130
4447
|
:param pulumi.Input[str] key_id: (Updatable) 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.
|
4131
|
-
:param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file.
|
4132
|
-
:param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password.
|
4448
|
+
:param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file. Deprecated: This field is deprecated and replaced by "keyStoreSecretId". This field will be removed after February 15 2026.
|
4449
|
+
:param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password. Deprecated: This field is deprecated and replaced by "keyStorePasswordSecretId". This field will be removed after February 15 2026.
|
4133
4450
|
:param pulumi.Input[str] key_store_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka Ssl KeyStore password is stored. Note: When provided, 'keyStorePassword' field must not be provided.
|
4134
4451
|
:param pulumi.Input[str] key_store_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the KeyStore file is stored. Note: When provided, 'keyStore' field must not be provided.
|
4135
4452
|
: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.
|
4136
4453
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ConnectionLockArgs', 'ConnectionLockArgsDict']]]] locks: Locks associated with this resource.
|
4137
4454
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
|
4138
|
-
: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.
|
4455
|
+
: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.
|
4139
4456
|
:param pulumi.Input[str] password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored. 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. If secretId is used plaintext field must not be provided. Note: When provided, 'password' field must not be provided.
|
4140
4457
|
:param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
|
4141
4458
|
:param pulumi.Input[str] private_ip: (Updatable) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
|
4142
4459
|
|
4143
4460
|
The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
|
4144
|
-
:param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
4461
|
+
:param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm Deprecated: This field is deprecated and replaced by "privateKeyFileSecretId". This field will be removed after February 15 2026.
|
4145
4462
|
:param pulumi.Input[str] private_key_file_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm Note: When provided, 'privateKeyFile' field must not be provided.
|
4146
|
-
:param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
|
4463
|
+
:param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted. Deprecated: This field is deprecated and replaced by "privateKeyPassphraseSecretId". This field will be removed after February 15 2026.
|
4147
4464
|
:param pulumi.Input[str] private_key_passphrase_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password for the private key file. Note: When provided, 'privateKeyPassphrase' field must not be provided.
|
4148
4465
|
:param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
|
4149
4466
|
:param pulumi.Input[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
|
4150
4467
|
:param pulumi.Input[str] redis_cluster_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
|
4151
|
-
:param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
|
4468
|
+
:param pulumi.Input[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.
|
4152
4469
|
:param pulumi.Input[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.
|
4153
|
-
:param pulumi.Input[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
|
4470
|
+
:param pulumi.Input[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.
|
4154
4471
|
:param pulumi.Input[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.
|
4155
|
-
:param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
|
4472
|
+
:param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret" Deprecated: This field is deprecated and replaced by "secretAccessKeySecretId". This field will be removed after February 15 2026.
|
4156
4473
|
:param pulumi.Input[str] secret_access_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the secret access key is stored. Note: When provided, 'secretAccessKey' field must not be provided.
|
4157
4474
|
:param pulumi.Input[str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
|
4158
4475
|
:param pulumi.Input[str] servers: (Updatable) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `"server1.example.com:4000,server2.example.com:4000"`
|
4159
|
-
:param pulumi.Input[str] service_account_key_file: (Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage.
|
4476
|
+
:param pulumi.Input[str] service_account_key_file: (Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage. Deprecated: This field is deprecated and replaced by "serviceAccountKeyFileSecretId". This field will be removed after February 15 2026.
|
4160
4477
|
:param pulumi.Input[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 containing the credentials required to use Google Cloud Storage. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
|
4161
4478
|
: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.
|
4162
4479
|
:param pulumi.Input[bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
|
4480
|
+
:param pulumi.Input[bool] should_use_resource_principal: (Updatable) Indicates that the user intents to connect to the instance through resource principal.
|
4163
4481
|
:param pulumi.Input[bool] should_validate_server_certificate: (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
|
4164
4482
|
:param pulumi.Input[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.
|
4165
4483
|
:param pulumi.Input[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).
|
4166
|
-
:param pulumi.Input[str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
4484
|
+
:param pulumi.Input[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.
|
4167
4485
|
:param pulumi.Input[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.
|
4168
|
-
:param pulumi.Input[str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
4486
|
+
:param pulumi.Input[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.
|
4169
4487
|
:param pulumi.Input[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.
|
4170
4488
|
:param pulumi.Input[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.
|
4171
|
-
:param pulumi.Input[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).
|
4172
|
-
:param pulumi.Input[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.
|
4489
|
+
:param pulumi.Input[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.
|
4490
|
+
:param pulumi.Input[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.
|
4173
4491
|
:param pulumi.Input[str] ssl_key_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided.
|
4174
4492
|
:param pulumi.Input[str] ssl_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
4175
4493
|
* The content of a .pem or .crt file containing the client private key (for 2-way SSL). Note: When provided, 'sslKey' field must not be provided.
|
4176
4494
|
:param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
|
4177
4495
|
:param pulumi.Input[str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
4178
4496
|
:param pulumi.Input[str] state: Possible lifecycle states for connection.
|
4497
|
+
:param pulumi.Input[str] storage_credential_name: (Updatable) Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
|
4179
4498
|
:param pulumi.Input[str] stream_pool_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
|
4180
4499
|
:param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
|
4181
4500
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
4182
4501
|
:param pulumi.Input[str] technology_type: The Kafka (e.g. Confluent) Schema Registry technology type.
|
4183
4502
|
:param pulumi.Input[str] tenancy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Oracle Cloud Infrastructure tenancy.
|
4503
|
+
:param pulumi.Input[str] tenant_id: (Updatable) Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
4184
4504
|
:param pulumi.Input[str] time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
4185
4505
|
: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`.
|
4506
|
+
:param pulumi.Input[str] tls_ca_file: (Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
4507
|
+
:param pulumi.Input[str] tls_certificate_key_file: (Updatable) Client Certificate - The base64 encoded content of a .pem file, containing the client public key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFileSecretId". This field will be removed after February 15 2026.
|
4508
|
+
:param pulumi.Input[str] tls_certificate_key_file_password: (Updatable) Client Certificate key file password. Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFilePasswordSecretId". This field will be removed after February 15 2026.
|
4509
|
+
:param pulumi.Input[str] tls_certificate_key_file_password_secret_id: (Updatable) 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.
|
4510
|
+
:param pulumi.Input[str] tls_certificate_key_file_secret_id: (Updatable) 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.
|
4511
|
+
* The content of a .pem file containing the client private key (for 2-way SSL). Note: When provided, 'tlsCertificateKeyFile' field must not be provided.
|
4186
4512
|
:param pulumi.Input[bool] trigger_refresh: (Updatable) If value is true, it triggers connection refresh action and this attribute change will always show up in the "update" plan and will apply steps in order to refresh secrets and dependent service properties (such as ADB connection strings, wallets, etc..).
|
4187
4513
|
|
4188
4514
|
|
4189
4515
|
** IMPORTANT **
|
4190
4516
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
4191
|
-
:param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file.
|
4192
|
-
:param pulumi.Input[str] trust_store_password: (Updatable) The TrustStore password.
|
4517
|
+
:param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file. Deprecated: This field is deprecated and replaced by "trustStoreSecretId". This field will be removed after February 15 2026.
|
4518
|
+
:param pulumi.Input[str] trust_store_password: (Updatable) The TrustStore password. Deprecated: This field is deprecated and replaced by "trustStorePasswordSecretId". This field will be removed after February 15 2026.
|
4193
4519
|
:param pulumi.Input[str] trust_store_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka Ssl TrustStore password is stored. Note: When provided, 'trustStorePassword' field must not be provided.
|
4194
4520
|
:param pulumi.Input[str] trust_store_secret_id: (Updatable) 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.
|
4195
4521
|
:param pulumi.Input[str] url: (Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
|
4196
|
-
:param pulumi.Input[str] user_id: (Updatable) 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.
|
4522
|
+
:param pulumi.Input[str] user_id: (Updatable) 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.
|
4197
4523
|
: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.
|
4198
4524
|
:param pulumi.Input[str] vault_id: (Updatable) 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.
|
4199
|
-
: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.
|
4525
|
+
: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.
|
4200
4526
|
:param pulumi.Input[str] wallet_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the wallet file is stored. The wallet contents Oracle GoldenGate uses to make connections to a database. Note: When provided, 'wallet' field must not be provided.
|
4201
4527
|
"""
|
4202
4528
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -4273,6 +4599,7 @@ class Connection(pulumi.CustomResource):
|
|
4273
4599
|
__props__.__dict__["service_account_key_file_secret_id"] = service_account_key_file_secret_id
|
4274
4600
|
__props__.__dict__["session_mode"] = session_mode
|
4275
4601
|
__props__.__dict__["should_use_jndi"] = should_use_jndi
|
4602
|
+
__props__.__dict__["should_use_resource_principal"] = should_use_resource_principal
|
4276
4603
|
__props__.__dict__["should_validate_server_certificate"] = should_validate_server_certificate
|
4277
4604
|
__props__.__dict__["ssl_ca"] = ssl_ca
|
4278
4605
|
__props__.__dict__["ssl_cert"] = ssl_cert
|
@@ -4288,13 +4615,20 @@ class Connection(pulumi.CustomResource):
|
|
4288
4615
|
__props__.__dict__["ssl_mode"] = ssl_mode
|
4289
4616
|
__props__.__dict__["ssl_server_certificate"] = ssl_server_certificate
|
4290
4617
|
__props__.__dict__["state"] = state
|
4618
|
+
__props__.__dict__["storage_credential_name"] = storage_credential_name
|
4291
4619
|
__props__.__dict__["stream_pool_id"] = stream_pool_id
|
4292
4620
|
__props__.__dict__["subnet_id"] = subnet_id
|
4293
4621
|
__props__.__dict__["system_tags"] = system_tags
|
4294
4622
|
__props__.__dict__["technology_type"] = technology_type
|
4295
4623
|
__props__.__dict__["tenancy_id"] = tenancy_id
|
4624
|
+
__props__.__dict__["tenant_id"] = tenant_id
|
4296
4625
|
__props__.__dict__["time_created"] = time_created
|
4297
4626
|
__props__.__dict__["time_updated"] = time_updated
|
4627
|
+
__props__.__dict__["tls_ca_file"] = tls_ca_file
|
4628
|
+
__props__.__dict__["tls_certificate_key_file"] = tls_certificate_key_file
|
4629
|
+
__props__.__dict__["tls_certificate_key_file_password"] = tls_certificate_key_file_password
|
4630
|
+
__props__.__dict__["tls_certificate_key_file_password_secret_id"] = tls_certificate_key_file_password_secret_id
|
4631
|
+
__props__.__dict__["tls_certificate_key_file_secret_id"] = tls_certificate_key_file_secret_id
|
4298
4632
|
__props__.__dict__["trigger_refresh"] = trigger_refresh
|
4299
4633
|
__props__.__dict__["trust_store"] = trust_store
|
4300
4634
|
__props__.__dict__["trust_store_password"] = trust_store_password
|
@@ -4320,7 +4654,7 @@ class Connection(pulumi.CustomResource):
|
|
4320
4654
|
@pulumi.getter(name="accountKey")
|
4321
4655
|
def account_key(self) -> pulumi.Output[Optional[str]]:
|
4322
4656
|
"""
|
4323
|
-
(Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
|
4657
|
+
(Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ== Deprecated: This field is deprecated and replaced by "accountKeySecretId". This field will be removed after February 15 2026.
|
4324
4658
|
"""
|
4325
4659
|
return pulumi.get(self, "account_key")
|
4326
4660
|
|
@@ -4392,7 +4726,7 @@ class Connection(pulumi.CustomResource):
|
|
4392
4726
|
@pulumi.getter(name="clientSecret")
|
4393
4727
|
def client_secret(self) -> pulumi.Output[Optional[str]]:
|
4394
4728
|
"""
|
4395
|
-
(Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1
|
4729
|
+
(Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1 Deprecated: This field is deprecated and replaced by "clientSecretSecretId". This field will be removed after February 15 2026.
|
4396
4730
|
"""
|
4397
4731
|
return pulumi.get(self, "client_secret")
|
4398
4732
|
|
@@ -4400,7 +4734,7 @@ class Connection(pulumi.CustomResource):
|
|
4400
4734
|
@pulumi.getter(name="clientSecretSecretId")
|
4401
4735
|
def client_secret_secret_id(self) -> pulumi.Output[Optional[str]]:
|
4402
4736
|
"""
|
4403
|
-
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.
|
4737
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Only applicable for authenticationType == OAUTH_M2M. Note: When provided, 'clientSecret' field must not be provided.
|
4404
4738
|
"""
|
4405
4739
|
return pulumi.get(self, "client_secret_secret_id")
|
4406
4740
|
|
@@ -4440,7 +4774,7 @@ class Connection(pulumi.CustomResource):
|
|
4440
4774
|
@pulumi.getter(name="connectionUrl")
|
4441
4775
|
def connection_url(self) -> pulumi.Output[str]:
|
4442
4776
|
"""
|
4443
|
-
(Updatable)
|
4777
|
+
(Updatable) 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'
|
4444
4778
|
"""
|
4445
4779
|
return pulumi.get(self, "connection_url")
|
4446
4780
|
|
@@ -4528,7 +4862,7 @@ class Connection(pulumi.CustomResource):
|
|
4528
4862
|
@pulumi.getter
|
4529
4863
|
def endpoint(self) -> pulumi.Output[str]:
|
4530
4864
|
"""
|
4531
|
-
(Updatable)
|
4865
|
+
(Updatable)Azure Storage service endpoint. e.g: https://test.blob.core.windows.net, Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
4532
4866
|
"""
|
4533
4867
|
return pulumi.get(self, "endpoint")
|
4534
4868
|
|
@@ -4598,7 +4932,7 @@ class Connection(pulumi.CustomResource):
|
|
4598
4932
|
@pulumi.getter(name="jndiSecurityCredentials")
|
4599
4933
|
def jndi_security_credentials(self) -> pulumi.Output[Optional[str]]:
|
4600
4934
|
"""
|
4601
|
-
(Updatable) The password associated to the principal.
|
4935
|
+
(Updatable) The password associated to the principal. Deprecated: This field is deprecated and replaced by "jndiSecurityCredentialsSecretId". This field will be removed after February 15 2026.
|
4602
4936
|
"""
|
4603
4937
|
return pulumi.get(self, "jndi_security_credentials")
|
4604
4938
|
|
@@ -4630,7 +4964,7 @@ class Connection(pulumi.CustomResource):
|
|
4630
4964
|
@pulumi.getter(name="keyStore")
|
4631
4965
|
def key_store(self) -> pulumi.Output[Optional[str]]:
|
4632
4966
|
"""
|
4633
|
-
(Updatable) The base64 encoded content of the KeyStore file.
|
4967
|
+
(Updatable) The base64 encoded content of the KeyStore file. Deprecated: This field is deprecated and replaced by "keyStoreSecretId". This field will be removed after February 15 2026.
|
4634
4968
|
"""
|
4635
4969
|
return pulumi.get(self, "key_store")
|
4636
4970
|
|
@@ -4638,7 +4972,7 @@ class Connection(pulumi.CustomResource):
|
|
4638
4972
|
@pulumi.getter(name="keyStorePassword")
|
4639
4973
|
def key_store_password(self) -> pulumi.Output[Optional[str]]:
|
4640
4974
|
"""
|
4641
|
-
(Updatable) The KeyStore password.
|
4975
|
+
(Updatable) The KeyStore password. Deprecated: This field is deprecated and replaced by "keyStorePasswordSecretId". This field will be removed after February 15 2026.
|
4642
4976
|
"""
|
4643
4977
|
return pulumi.get(self, "key_store_password")
|
4644
4978
|
|
@@ -4686,7 +5020,7 @@ class Connection(pulumi.CustomResource):
|
|
4686
5020
|
@pulumi.getter
|
4687
5021
|
def password(self) -> pulumi.Output[Optional[str]]:
|
4688
5022
|
"""
|
4689
|
-
(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.
|
5023
|
+
(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.
|
4690
5024
|
"""
|
4691
5025
|
return pulumi.get(self, "password")
|
4692
5026
|
|
@@ -4720,7 +5054,7 @@ class Connection(pulumi.CustomResource):
|
|
4720
5054
|
@pulumi.getter(name="privateKeyFile")
|
4721
5055
|
def private_key_file(self) -> pulumi.Output[Optional[str]]:
|
4722
5056
|
"""
|
4723
|
-
(Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
5057
|
+
(Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm Deprecated: This field is deprecated and replaced by "privateKeyFileSecretId". This field will be removed after February 15 2026.
|
4724
5058
|
"""
|
4725
5059
|
return pulumi.get(self, "private_key_file")
|
4726
5060
|
|
@@ -4736,7 +5070,7 @@ class Connection(pulumi.CustomResource):
|
|
4736
5070
|
@pulumi.getter(name="privateKeyPassphrase")
|
4737
5071
|
def private_key_passphrase(self) -> pulumi.Output[Optional[str]]:
|
4738
5072
|
"""
|
4739
|
-
(Updatable) Password if the private key file is encrypted.
|
5073
|
+
(Updatable) Password if the private key file is encrypted. Deprecated: This field is deprecated and replaced by "privateKeyPassphraseSecretId". This field will be removed after February 15 2026.
|
4740
5074
|
"""
|
4741
5075
|
return pulumi.get(self, "private_key_passphrase")
|
4742
5076
|
|
@@ -4776,7 +5110,7 @@ class Connection(pulumi.CustomResource):
|
|
4776
5110
|
@pulumi.getter
|
4777
5111
|
def region(self) -> pulumi.Output[str]:
|
4778
5112
|
"""
|
4779
|
-
(Updatable) The name of the region. e.g.: us-ashburn-1
|
5113
|
+
(Updatable) The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
|
4780
5114
|
"""
|
4781
5115
|
return pulumi.get(self, "region")
|
4782
5116
|
|
@@ -4792,7 +5126,7 @@ class Connection(pulumi.CustomResource):
|
|
4792
5126
|
@pulumi.getter(name="sasToken")
|
4793
5127
|
def sas_token(self) -> pulumi.Output[Optional[str]]:
|
4794
5128
|
"""
|
4795
|
-
(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
|
5129
|
+
(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.
|
4796
5130
|
"""
|
4797
5131
|
return pulumi.get(self, "sas_token")
|
4798
5132
|
|
@@ -4808,7 +5142,7 @@ class Connection(pulumi.CustomResource):
|
|
4808
5142
|
@pulumi.getter(name="secretAccessKey")
|
4809
5143
|
def secret_access_key(self) -> pulumi.Output[Optional[str]]:
|
4810
5144
|
"""
|
4811
|
-
(Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
|
5145
|
+
(Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret" Deprecated: This field is deprecated and replaced by "secretAccessKeySecretId". This field will be removed after February 15 2026.
|
4812
5146
|
"""
|
4813
5147
|
return pulumi.get(self, "secret_access_key")
|
4814
5148
|
|
@@ -4840,7 +5174,7 @@ class Connection(pulumi.CustomResource):
|
|
4840
5174
|
@pulumi.getter(name="serviceAccountKeyFile")
|
4841
5175
|
def service_account_key_file(self) -> pulumi.Output[Optional[str]]:
|
4842
5176
|
"""
|
4843
|
-
(Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage.
|
5177
|
+
(Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage. Deprecated: This field is deprecated and replaced by "serviceAccountKeyFileSecretId". This field will be removed after February 15 2026.
|
4844
5178
|
"""
|
4845
5179
|
return pulumi.get(self, "service_account_key_file")
|
4846
5180
|
|
@@ -4868,6 +5202,14 @@ class Connection(pulumi.CustomResource):
|
|
4868
5202
|
"""
|
4869
5203
|
return pulumi.get(self, "should_use_jndi")
|
4870
5204
|
|
5205
|
+
@property
|
5206
|
+
@pulumi.getter(name="shouldUseResourcePrincipal")
|
5207
|
+
def should_use_resource_principal(self) -> pulumi.Output[bool]:
|
5208
|
+
"""
|
5209
|
+
(Updatable) Indicates that the user intents to connect to the instance through resource principal.
|
5210
|
+
"""
|
5211
|
+
return pulumi.get(self, "should_use_resource_principal")
|
5212
|
+
|
4871
5213
|
@property
|
4872
5214
|
@pulumi.getter(name="shouldValidateServerCertificate")
|
4873
5215
|
def should_validate_server_certificate(self) -> pulumi.Output[bool]:
|
@@ -4896,7 +5238,7 @@ class Connection(pulumi.CustomResource):
|
|
4896
5238
|
@pulumi.getter(name="sslClientKeystash")
|
4897
5239
|
def ssl_client_keystash(self) -> pulumi.Output[Optional[str]]:
|
4898
5240
|
"""
|
4899
|
-
(Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
5241
|
+
(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.
|
4900
5242
|
"""
|
4901
5243
|
return pulumi.get(self, "ssl_client_keystash")
|
4902
5244
|
|
@@ -4912,7 +5254,7 @@ class Connection(pulumi.CustomResource):
|
|
4912
5254
|
@pulumi.getter(name="sslClientKeystoredb")
|
4913
5255
|
def ssl_client_keystoredb(self) -> pulumi.Output[Optional[str]]:
|
4914
5256
|
"""
|
4915
|
-
(Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
5257
|
+
(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.
|
4916
5258
|
"""
|
4917
5259
|
return pulumi.get(self, "ssl_client_keystoredb")
|
4918
5260
|
|
@@ -4936,7 +5278,7 @@ class Connection(pulumi.CustomResource):
|
|
4936
5278
|
@pulumi.getter(name="sslKey")
|
4937
5279
|
def ssl_key(self) -> pulumi.Output[Optional[str]]:
|
4938
5280
|
"""
|
4939
|
-
(Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).
|
5281
|
+
(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.
|
4940
5282
|
"""
|
4941
5283
|
return pulumi.get(self, "ssl_key")
|
4942
5284
|
|
@@ -4944,7 +5286,7 @@ class Connection(pulumi.CustomResource):
|
|
4944
5286
|
@pulumi.getter(name="sslKeyPassword")
|
4945
5287
|
def ssl_key_password(self) -> pulumi.Output[Optional[str]]:
|
4946
5288
|
"""
|
4947
|
-
(Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
|
5289
|
+
(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.
|
4948
5290
|
"""
|
4949
5291
|
return pulumi.get(self, "ssl_key_password")
|
4950
5292
|
|
@@ -4989,6 +5331,14 @@ class Connection(pulumi.CustomResource):
|
|
4989
5331
|
"""
|
4990
5332
|
return pulumi.get(self, "state")
|
4991
5333
|
|
5334
|
+
@property
|
5335
|
+
@pulumi.getter(name="storageCredentialName")
|
5336
|
+
def storage_credential_name(self) -> pulumi.Output[str]:
|
5337
|
+
"""
|
5338
|
+
(Updatable) Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
|
5339
|
+
"""
|
5340
|
+
return pulumi.get(self, "storage_credential_name")
|
5341
|
+
|
4992
5342
|
@property
|
4993
5343
|
@pulumi.getter(name="streamPoolId")
|
4994
5344
|
def stream_pool_id(self) -> pulumi.Output[str]:
|
@@ -5029,6 +5379,14 @@ class Connection(pulumi.CustomResource):
|
|
5029
5379
|
"""
|
5030
5380
|
return pulumi.get(self, "tenancy_id")
|
5031
5381
|
|
5382
|
+
@property
|
5383
|
+
@pulumi.getter(name="tenantId")
|
5384
|
+
def tenant_id(self) -> pulumi.Output[str]:
|
5385
|
+
"""
|
5386
|
+
(Updatable) Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
5387
|
+
"""
|
5388
|
+
return pulumi.get(self, "tenant_id")
|
5389
|
+
|
5032
5390
|
@property
|
5033
5391
|
@pulumi.getter(name="timeCreated")
|
5034
5392
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -5045,6 +5403,47 @@ class Connection(pulumi.CustomResource):
|
|
5045
5403
|
"""
|
5046
5404
|
return pulumi.get(self, "time_updated")
|
5047
5405
|
|
5406
|
+
@property
|
5407
|
+
@pulumi.getter(name="tlsCaFile")
|
5408
|
+
def tls_ca_file(self) -> pulumi.Output[str]:
|
5409
|
+
"""
|
5410
|
+
(Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
5411
|
+
"""
|
5412
|
+
return pulumi.get(self, "tls_ca_file")
|
5413
|
+
|
5414
|
+
@property
|
5415
|
+
@pulumi.getter(name="tlsCertificateKeyFile")
|
5416
|
+
def tls_certificate_key_file(self) -> pulumi.Output[str]:
|
5417
|
+
"""
|
5418
|
+
(Updatable) Client Certificate - The base64 encoded content of a .pem file, containing the client public key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFileSecretId". This field will be removed after February 15 2026.
|
5419
|
+
"""
|
5420
|
+
return pulumi.get(self, "tls_certificate_key_file")
|
5421
|
+
|
5422
|
+
@property
|
5423
|
+
@pulumi.getter(name="tlsCertificateKeyFilePassword")
|
5424
|
+
def tls_certificate_key_file_password(self) -> pulumi.Output[str]:
|
5425
|
+
"""
|
5426
|
+
(Updatable) Client Certificate key file password. Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFilePasswordSecretId". This field will be removed after February 15 2026.
|
5427
|
+
"""
|
5428
|
+
return pulumi.get(self, "tls_certificate_key_file_password")
|
5429
|
+
|
5430
|
+
@property
|
5431
|
+
@pulumi.getter(name="tlsCertificateKeyFilePasswordSecretId")
|
5432
|
+
def tls_certificate_key_file_password_secret_id(self) -> pulumi.Output[str]:
|
5433
|
+
"""
|
5434
|
+
(Updatable) 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.
|
5435
|
+
"""
|
5436
|
+
return pulumi.get(self, "tls_certificate_key_file_password_secret_id")
|
5437
|
+
|
5438
|
+
@property
|
5439
|
+
@pulumi.getter(name="tlsCertificateKeyFileSecretId")
|
5440
|
+
def tls_certificate_key_file_secret_id(self) -> pulumi.Output[str]:
|
5441
|
+
"""
|
5442
|
+
(Updatable) 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.
|
5443
|
+
* The content of a .pem file containing the client private key (for 2-way SSL). Note: When provided, 'tlsCertificateKeyFile' field must not be provided.
|
5444
|
+
"""
|
5445
|
+
return pulumi.get(self, "tls_certificate_key_file_secret_id")
|
5446
|
+
|
5048
5447
|
@property
|
5049
5448
|
@pulumi.getter(name="triggerRefresh")
|
5050
5449
|
def trigger_refresh(self) -> pulumi.Output[Optional[bool]]:
|
@@ -5061,7 +5460,7 @@ class Connection(pulumi.CustomResource):
|
|
5061
5460
|
@pulumi.getter(name="trustStore")
|
5062
5461
|
def trust_store(self) -> pulumi.Output[Optional[str]]:
|
5063
5462
|
"""
|
5064
|
-
(Updatable) The base64 encoded content of the TrustStore file.
|
5463
|
+
(Updatable) The base64 encoded content of the TrustStore file. Deprecated: This field is deprecated and replaced by "trustStoreSecretId". This field will be removed after February 15 2026.
|
5065
5464
|
"""
|
5066
5465
|
return pulumi.get(self, "trust_store")
|
5067
5466
|
|
@@ -5069,7 +5468,7 @@ class Connection(pulumi.CustomResource):
|
|
5069
5468
|
@pulumi.getter(name="trustStorePassword")
|
5070
5469
|
def trust_store_password(self) -> pulumi.Output[Optional[str]]:
|
5071
5470
|
"""
|
5072
|
-
(Updatable) The TrustStore password.
|
5471
|
+
(Updatable) The TrustStore password. Deprecated: This field is deprecated and replaced by "trustStorePasswordSecretId". This field will be removed after February 15 2026.
|
5073
5472
|
"""
|
5074
5473
|
return pulumi.get(self, "trust_store_password")
|
5075
5474
|
|
@@ -5101,7 +5500,7 @@ class Connection(pulumi.CustomResource):
|
|
5101
5500
|
@pulumi.getter(name="userId")
|
5102
5501
|
def user_id(self) -> pulumi.Output[str]:
|
5103
5502
|
"""
|
5104
|
-
(Updatable) 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.
|
5503
|
+
(Updatable) 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.
|
5105
5504
|
"""
|
5106
5505
|
return pulumi.get(self, "user_id")
|
5107
5506
|
|
@@ -5125,7 +5524,7 @@ class Connection(pulumi.CustomResource):
|
|
5125
5524
|
@pulumi.getter
|
5126
5525
|
def wallet(self) -> pulumi.Output[Optional[str]]:
|
5127
5526
|
"""
|
5128
|
-
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
|
5527
|
+
(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.
|
5129
5528
|
"""
|
5130
5529
|
return pulumi.get(self, "wallet")
|
5131
5530
|
|