pulumi-oci 2.16.0a1731393786__py3-none-any.whl → 2.17.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +59 -0
- pulumi_oci/core/_inputs.py +3 -3
- pulumi_oci/core/compute_capacity_reservation.py +7 -7
- pulumi_oci/core/get_boot_volume.py +1 -1
- pulumi_oci/core/get_volume.py +1 -1
- pulumi_oci/core/instance_pool.py +7 -7
- pulumi_oci/core/outputs.py +46 -46
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +105 -0
- pulumi_oci/database/cloud_vm_cluster.py +49 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/db_system.py +47 -0
- pulumi_oci/database/exadb_vm_cluster.py +68 -7
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_data_guard_association.py +12 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +16 -2
- pulumi_oci/database/outputs.py +97 -2
- pulumi_oci/dataflow/get_sql_endpoint.py +1 -15
- pulumi_oci/dataflow/outputs.py +0 -11
- pulumi_oci/dataflow/sql_endpoint.py +88 -85
- pulumi_oci/generativeai/__init__.py +16 -0
- pulumi_oci/generativeai/_inputs.py +1090 -0
- pulumi_oci/generativeai/agent_agent.py +665 -0
- pulumi_oci/generativeai/agent_agent_endpoint.py +888 -0
- pulumi_oci/generativeai/agent_data_ingestion_job.py +647 -0
- pulumi_oci/generativeai/agent_data_source.py +697 -0
- pulumi_oci/generativeai/agent_knowledge_base.py +659 -0
- pulumi_oci/generativeai/get_agent_agent.py +285 -0
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +342 -0
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +217 -0
- pulumi_oci/generativeai/get_agent_agents.py +195 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +286 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job_log_content.py +117 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_jobs.py +217 -0
- pulumi_oci/generativeai/get_agent_data_source.py +286 -0
- pulumi_oci/generativeai/get_agent_data_sources.py +217 -0
- pulumi_oci/generativeai/get_agent_knowledge_base.py +272 -0
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +195 -0
- pulumi_oci/generativeai/outputs.py +2840 -268
- pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
- pulumi_oci/globallydistributeddatabase/_inputs.py +1289 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +348 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +191 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +746 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +191 -0
- pulumi_oci/globallydistributeddatabase/outputs.py +2114 -0
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +822 -0
- pulumi_oci/globallydistributeddatabase/sharded_database.py +2157 -0
- pulumi_oci/goldengate/connection.py +1065 -78
- pulumi_oci/goldengate/deployment.py +7 -7
- pulumi_oci/goldengate/deployment_backup.py +49 -0
- pulumi_oci/goldengate/get_connection.py +288 -7
- pulumi_oci/goldengate/get_deployment.py +1 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +240 -3
- pulumi_oci/identity/__init__.py +2 -0
- pulumi_oci/identity/_inputs.py +55 -6
- pulumi_oci/identity/domains_condition.py +9 -2
- pulumi_oci/identity/domains_policy.py +9 -2
- pulumi_oci/identity/domains_rule.py +9 -2
- pulumi_oci/identity/get_domains_condition.py +2 -2
- pulumi_oci/identity/get_domains_conditions.py +2 -2
- pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consent.py +503 -0
- pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consents.py +338 -0
- pulumi_oci/identity/get_domains_policies.py +2 -2
- pulumi_oci/identity/get_domains_policy.py +2 -2
- pulumi_oci/identity/get_domains_rule.py +2 -2
- pulumi_oci/identity/get_domains_rules.py +2 -2
- pulumi_oci/identity/outputs.py +917 -4
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.16.0a1731393786.dist-info → pulumi_oci-2.17.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.16.0a1731393786.dist-info → pulumi_oci-2.17.0.dist-info}/RECORD +76 -49
- {pulumi_oci-2.16.0a1731393786.dist-info → pulumi_oci-2.17.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.16.0a1731393786.dist-info → pulumi_oci-2.17.0.dist-info}/top_level.txt +0 -0
@@ -27,13 +27,16 @@ class GetConnectionResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getConnection.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, access_key_id=None, account_key=None, account_name=None, additional_attributes=None, authentication_mode=None, authentication_type=None, azure_tenant_id=None, bootstrap_servers=None, client_id=None, client_secret=None, compartment_id=None, connection_factory=None, connection_id=None, connection_string=None, connection_type=None, connection_url=None, consumer_properties=None, core_site_xml=None, database_id=None, database_name=None, db_system_id=None, defined_tags=None, deployment_id=None, description=None, display_name=None, endpoint=None, fingerprint=None, freeform_tags=None, host=None, id=None, ingress_ips=None, is_lock_override=None, jndi_connection_factory=None, jndi_initial_context_factory=None, jndi_provider_url=None, jndi_security_credentials=None, jndi_security_principal=None, key_id=None, key_store=None, key_store_password=None, lifecycle_details=None, locks=None, nsg_ids=None, password=None, port=None, private_ip=None, private_key_file=None, private_key_passphrase=None, producer_properties=None, public_key_fingerprint=None, redis_cluster_id=None, region=None, routing_method=None, sas_token=None, secret_access_key=None, security_protocol=None, servers=None, service_account_key_file=None, session_mode=None, should_use_jndi=None, should_validate_server_certificate=None, ssl_ca=None, ssl_cert=None, ssl_client_keystash=None, ssl_client_keystoredb=None, ssl_crl=None, ssl_key=None, ssl_key_password=None, ssl_mode=None, ssl_server_certificate=None, state=None, stream_pool_id=None, subnet_id=None, system_tags=None, technology_type=None, tenancy_id=None, time_created=None, time_updated=None, trust_store=None, trust_store_password=None, url=None, user_id=None, username=None, vault_id=None, wallet=None):
|
30
|
+
def __init__(__self__, access_key_id=None, account_key=None, account_key_secret_id=None, account_name=None, additional_attributes=None, authentication_mode=None, authentication_type=None, azure_tenant_id=None, bootstrap_servers=None, client_id=None, client_secret=None, client_secret_secret_id=None, compartment_id=None, connection_factory=None, connection_id=None, connection_string=None, connection_type=None, connection_url=None, consumer_properties=None, core_site_xml=None, database_id=None, database_name=None, db_system_id=None, defined_tags=None, deployment_id=None, description=None, display_name=None, does_use_secret_ids=None, endpoint=None, fingerprint=None, freeform_tags=None, host=None, id=None, ingress_ips=None, is_lock_override=None, jndi_connection_factory=None, jndi_initial_context_factory=None, jndi_provider_url=None, jndi_security_credentials=None, jndi_security_credentials_secret_id=None, jndi_security_principal=None, key_id=None, key_store=None, key_store_password=None, key_store_password_secret_id=None, key_store_secret_id=None, lifecycle_details=None, locks=None, nsg_ids=None, password=None, password_secret_id=None, port=None, private_ip=None, private_key_file=None, private_key_file_secret_id=None, private_key_passphrase=None, private_key_passphrase_secret_id=None, producer_properties=None, public_key_fingerprint=None, redis_cluster_id=None, region=None, routing_method=None, sas_token=None, sas_token_secret_id=None, secret_access_key=None, secret_access_key_secret_id=None, security_protocol=None, servers=None, service_account_key_file=None, service_account_key_file_secret_id=None, session_mode=None, should_use_jndi=None, should_validate_server_certificate=None, ssl_ca=None, ssl_cert=None, ssl_client_keystash=None, ssl_client_keystash_secret_id=None, ssl_client_keystoredb=None, ssl_client_keystoredb_secret_id=None, ssl_crl=None, ssl_key=None, ssl_key_password=None, ssl_key_password_secret_id=None, ssl_key_secret_id=None, ssl_mode=None, ssl_server_certificate=None, state=None, stream_pool_id=None, subnet_id=None, system_tags=None, technology_type=None, tenancy_id=None, time_created=None, time_updated=None, trigger_refresh=None, trust_store=None, trust_store_password=None, trust_store_password_secret_id=None, trust_store_secret_id=None, url=None, user_id=None, username=None, vault_id=None, wallet=None, wallet_secret_id=None):
|
31
31
|
if access_key_id and not isinstance(access_key_id, str):
|
32
32
|
raise TypeError("Expected argument 'access_key_id' to be a str")
|
33
33
|
pulumi.set(__self__, "access_key_id", access_key_id)
|
34
34
|
if account_key and not isinstance(account_key, str):
|
35
35
|
raise TypeError("Expected argument 'account_key' to be a str")
|
36
36
|
pulumi.set(__self__, "account_key", account_key)
|
37
|
+
if account_key_secret_id and not isinstance(account_key_secret_id, str):
|
38
|
+
raise TypeError("Expected argument 'account_key_secret_id' to be a str")
|
39
|
+
pulumi.set(__self__, "account_key_secret_id", account_key_secret_id)
|
37
40
|
if account_name and not isinstance(account_name, str):
|
38
41
|
raise TypeError("Expected argument 'account_name' to be a str")
|
39
42
|
pulumi.set(__self__, "account_name", account_name)
|
@@ -58,6 +61,9 @@ class GetConnectionResult:
|
|
58
61
|
if client_secret and not isinstance(client_secret, str):
|
59
62
|
raise TypeError("Expected argument 'client_secret' to be a str")
|
60
63
|
pulumi.set(__self__, "client_secret", client_secret)
|
64
|
+
if client_secret_secret_id and not isinstance(client_secret_secret_id, str):
|
65
|
+
raise TypeError("Expected argument 'client_secret_secret_id' to be a str")
|
66
|
+
pulumi.set(__self__, "client_secret_secret_id", client_secret_secret_id)
|
61
67
|
if compartment_id and not isinstance(compartment_id, str):
|
62
68
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
63
69
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -103,6 +109,9 @@ class GetConnectionResult:
|
|
103
109
|
if display_name and not isinstance(display_name, str):
|
104
110
|
raise TypeError("Expected argument 'display_name' to be a str")
|
105
111
|
pulumi.set(__self__, "display_name", display_name)
|
112
|
+
if does_use_secret_ids and not isinstance(does_use_secret_ids, bool):
|
113
|
+
raise TypeError("Expected argument 'does_use_secret_ids' to be a bool")
|
114
|
+
pulumi.set(__self__, "does_use_secret_ids", does_use_secret_ids)
|
106
115
|
if endpoint and not isinstance(endpoint, str):
|
107
116
|
raise TypeError("Expected argument 'endpoint' to be a str")
|
108
117
|
pulumi.set(__self__, "endpoint", endpoint)
|
@@ -136,6 +145,9 @@ class GetConnectionResult:
|
|
136
145
|
if jndi_security_credentials and not isinstance(jndi_security_credentials, str):
|
137
146
|
raise TypeError("Expected argument 'jndi_security_credentials' to be a str")
|
138
147
|
pulumi.set(__self__, "jndi_security_credentials", jndi_security_credentials)
|
148
|
+
if jndi_security_credentials_secret_id and not isinstance(jndi_security_credentials_secret_id, str):
|
149
|
+
raise TypeError("Expected argument 'jndi_security_credentials_secret_id' to be a str")
|
150
|
+
pulumi.set(__self__, "jndi_security_credentials_secret_id", jndi_security_credentials_secret_id)
|
139
151
|
if jndi_security_principal and not isinstance(jndi_security_principal, str):
|
140
152
|
raise TypeError("Expected argument 'jndi_security_principal' to be a str")
|
141
153
|
pulumi.set(__self__, "jndi_security_principal", jndi_security_principal)
|
@@ -148,6 +160,12 @@ class GetConnectionResult:
|
|
148
160
|
if key_store_password and not isinstance(key_store_password, str):
|
149
161
|
raise TypeError("Expected argument 'key_store_password' to be a str")
|
150
162
|
pulumi.set(__self__, "key_store_password", key_store_password)
|
163
|
+
if key_store_password_secret_id and not isinstance(key_store_password_secret_id, str):
|
164
|
+
raise TypeError("Expected argument 'key_store_password_secret_id' to be a str")
|
165
|
+
pulumi.set(__self__, "key_store_password_secret_id", key_store_password_secret_id)
|
166
|
+
if key_store_secret_id and not isinstance(key_store_secret_id, str):
|
167
|
+
raise TypeError("Expected argument 'key_store_secret_id' to be a str")
|
168
|
+
pulumi.set(__self__, "key_store_secret_id", key_store_secret_id)
|
151
169
|
if lifecycle_details and not isinstance(lifecycle_details, str):
|
152
170
|
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
153
171
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
@@ -160,6 +178,9 @@ class GetConnectionResult:
|
|
160
178
|
if password and not isinstance(password, str):
|
161
179
|
raise TypeError("Expected argument 'password' to be a str")
|
162
180
|
pulumi.set(__self__, "password", password)
|
181
|
+
if password_secret_id and not isinstance(password_secret_id, str):
|
182
|
+
raise TypeError("Expected argument 'password_secret_id' to be a str")
|
183
|
+
pulumi.set(__self__, "password_secret_id", password_secret_id)
|
163
184
|
if port and not isinstance(port, int):
|
164
185
|
raise TypeError("Expected argument 'port' to be a int")
|
165
186
|
pulumi.set(__self__, "port", port)
|
@@ -169,9 +190,15 @@ class GetConnectionResult:
|
|
169
190
|
if private_key_file and not isinstance(private_key_file, str):
|
170
191
|
raise TypeError("Expected argument 'private_key_file' to be a str")
|
171
192
|
pulumi.set(__self__, "private_key_file", private_key_file)
|
193
|
+
if private_key_file_secret_id and not isinstance(private_key_file_secret_id, str):
|
194
|
+
raise TypeError("Expected argument 'private_key_file_secret_id' to be a str")
|
195
|
+
pulumi.set(__self__, "private_key_file_secret_id", private_key_file_secret_id)
|
172
196
|
if private_key_passphrase and not isinstance(private_key_passphrase, str):
|
173
197
|
raise TypeError("Expected argument 'private_key_passphrase' to be a str")
|
174
198
|
pulumi.set(__self__, "private_key_passphrase", private_key_passphrase)
|
199
|
+
if private_key_passphrase_secret_id and not isinstance(private_key_passphrase_secret_id, str):
|
200
|
+
raise TypeError("Expected argument 'private_key_passphrase_secret_id' to be a str")
|
201
|
+
pulumi.set(__self__, "private_key_passphrase_secret_id", private_key_passphrase_secret_id)
|
175
202
|
if producer_properties and not isinstance(producer_properties, str):
|
176
203
|
raise TypeError("Expected argument 'producer_properties' to be a str")
|
177
204
|
pulumi.set(__self__, "producer_properties", producer_properties)
|
@@ -190,9 +217,15 @@ class GetConnectionResult:
|
|
190
217
|
if sas_token and not isinstance(sas_token, str):
|
191
218
|
raise TypeError("Expected argument 'sas_token' to be a str")
|
192
219
|
pulumi.set(__self__, "sas_token", sas_token)
|
220
|
+
if sas_token_secret_id and not isinstance(sas_token_secret_id, str):
|
221
|
+
raise TypeError("Expected argument 'sas_token_secret_id' to be a str")
|
222
|
+
pulumi.set(__self__, "sas_token_secret_id", sas_token_secret_id)
|
193
223
|
if secret_access_key and not isinstance(secret_access_key, str):
|
194
224
|
raise TypeError("Expected argument 'secret_access_key' to be a str")
|
195
225
|
pulumi.set(__self__, "secret_access_key", secret_access_key)
|
226
|
+
if secret_access_key_secret_id and not isinstance(secret_access_key_secret_id, str):
|
227
|
+
raise TypeError("Expected argument 'secret_access_key_secret_id' to be a str")
|
228
|
+
pulumi.set(__self__, "secret_access_key_secret_id", secret_access_key_secret_id)
|
196
229
|
if security_protocol and not isinstance(security_protocol, str):
|
197
230
|
raise TypeError("Expected argument 'security_protocol' to be a str")
|
198
231
|
pulumi.set(__self__, "security_protocol", security_protocol)
|
@@ -202,6 +235,9 @@ class GetConnectionResult:
|
|
202
235
|
if service_account_key_file and not isinstance(service_account_key_file, str):
|
203
236
|
raise TypeError("Expected argument 'service_account_key_file' to be a str")
|
204
237
|
pulumi.set(__self__, "service_account_key_file", service_account_key_file)
|
238
|
+
if service_account_key_file_secret_id and not isinstance(service_account_key_file_secret_id, str):
|
239
|
+
raise TypeError("Expected argument 'service_account_key_file_secret_id' to be a str")
|
240
|
+
pulumi.set(__self__, "service_account_key_file_secret_id", service_account_key_file_secret_id)
|
205
241
|
if session_mode and not isinstance(session_mode, str):
|
206
242
|
raise TypeError("Expected argument 'session_mode' to be a str")
|
207
243
|
pulumi.set(__self__, "session_mode", session_mode)
|
@@ -220,9 +256,15 @@ class GetConnectionResult:
|
|
220
256
|
if ssl_client_keystash and not isinstance(ssl_client_keystash, str):
|
221
257
|
raise TypeError("Expected argument 'ssl_client_keystash' to be a str")
|
222
258
|
pulumi.set(__self__, "ssl_client_keystash", ssl_client_keystash)
|
259
|
+
if ssl_client_keystash_secret_id and not isinstance(ssl_client_keystash_secret_id, str):
|
260
|
+
raise TypeError("Expected argument 'ssl_client_keystash_secret_id' to be a str")
|
261
|
+
pulumi.set(__self__, "ssl_client_keystash_secret_id", ssl_client_keystash_secret_id)
|
223
262
|
if ssl_client_keystoredb and not isinstance(ssl_client_keystoredb, str):
|
224
263
|
raise TypeError("Expected argument 'ssl_client_keystoredb' to be a str")
|
225
264
|
pulumi.set(__self__, "ssl_client_keystoredb", ssl_client_keystoredb)
|
265
|
+
if ssl_client_keystoredb_secret_id and not isinstance(ssl_client_keystoredb_secret_id, str):
|
266
|
+
raise TypeError("Expected argument 'ssl_client_keystoredb_secret_id' to be a str")
|
267
|
+
pulumi.set(__self__, "ssl_client_keystoredb_secret_id", ssl_client_keystoredb_secret_id)
|
226
268
|
if ssl_crl and not isinstance(ssl_crl, str):
|
227
269
|
raise TypeError("Expected argument 'ssl_crl' to be a str")
|
228
270
|
pulumi.set(__self__, "ssl_crl", ssl_crl)
|
@@ -232,6 +274,12 @@ class GetConnectionResult:
|
|
232
274
|
if ssl_key_password and not isinstance(ssl_key_password, str):
|
233
275
|
raise TypeError("Expected argument 'ssl_key_password' to be a str")
|
234
276
|
pulumi.set(__self__, "ssl_key_password", ssl_key_password)
|
277
|
+
if ssl_key_password_secret_id and not isinstance(ssl_key_password_secret_id, str):
|
278
|
+
raise TypeError("Expected argument 'ssl_key_password_secret_id' to be a str")
|
279
|
+
pulumi.set(__self__, "ssl_key_password_secret_id", ssl_key_password_secret_id)
|
280
|
+
if ssl_key_secret_id and not isinstance(ssl_key_secret_id, str):
|
281
|
+
raise TypeError("Expected argument 'ssl_key_secret_id' to be a str")
|
282
|
+
pulumi.set(__self__, "ssl_key_secret_id", ssl_key_secret_id)
|
235
283
|
if ssl_mode and not isinstance(ssl_mode, str):
|
236
284
|
raise TypeError("Expected argument 'ssl_mode' to be a str")
|
237
285
|
pulumi.set(__self__, "ssl_mode", ssl_mode)
|
@@ -262,12 +310,21 @@ class GetConnectionResult:
|
|
262
310
|
if time_updated and not isinstance(time_updated, str):
|
263
311
|
raise TypeError("Expected argument 'time_updated' to be a str")
|
264
312
|
pulumi.set(__self__, "time_updated", time_updated)
|
313
|
+
if trigger_refresh and not isinstance(trigger_refresh, bool):
|
314
|
+
raise TypeError("Expected argument 'trigger_refresh' to be a bool")
|
315
|
+
pulumi.set(__self__, "trigger_refresh", trigger_refresh)
|
265
316
|
if trust_store and not isinstance(trust_store, str):
|
266
317
|
raise TypeError("Expected argument 'trust_store' to be a str")
|
267
318
|
pulumi.set(__self__, "trust_store", trust_store)
|
268
319
|
if trust_store_password and not isinstance(trust_store_password, str):
|
269
320
|
raise TypeError("Expected argument 'trust_store_password' to be a str")
|
270
321
|
pulumi.set(__self__, "trust_store_password", trust_store_password)
|
322
|
+
if trust_store_password_secret_id and not isinstance(trust_store_password_secret_id, str):
|
323
|
+
raise TypeError("Expected argument 'trust_store_password_secret_id' to be a str")
|
324
|
+
pulumi.set(__self__, "trust_store_password_secret_id", trust_store_password_secret_id)
|
325
|
+
if trust_store_secret_id and not isinstance(trust_store_secret_id, str):
|
326
|
+
raise TypeError("Expected argument 'trust_store_secret_id' to be a str")
|
327
|
+
pulumi.set(__self__, "trust_store_secret_id", trust_store_secret_id)
|
271
328
|
if url and not isinstance(url, str):
|
272
329
|
raise TypeError("Expected argument 'url' to be a str")
|
273
330
|
pulumi.set(__self__, "url", url)
|
@@ -283,6 +340,9 @@ class GetConnectionResult:
|
|
283
340
|
if wallet and not isinstance(wallet, str):
|
284
341
|
raise TypeError("Expected argument 'wallet' to be a str")
|
285
342
|
pulumi.set(__self__, "wallet", wallet)
|
343
|
+
if wallet_secret_id and not isinstance(wallet_secret_id, str):
|
344
|
+
raise TypeError("Expected argument 'wallet_secret_id' to be a str")
|
345
|
+
pulumi.set(__self__, "wallet_secret_id", wallet_secret_id)
|
286
346
|
|
287
347
|
@property
|
288
348
|
@pulumi.getter(name="accessKeyId")
|
@@ -297,6 +357,14 @@ class GetConnectionResult:
|
|
297
357
|
def account_key(self) -> str:
|
298
358
|
return pulumi.get(self, "account_key")
|
299
359
|
|
360
|
+
@property
|
361
|
+
@pulumi.getter(name="accountKeySecretId")
|
362
|
+
def account_key_secret_id(self) -> str:
|
363
|
+
"""
|
364
|
+
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.
|
365
|
+
"""
|
366
|
+
return pulumi.get(self, "account_key_secret_id")
|
367
|
+
|
300
368
|
@property
|
301
369
|
@pulumi.getter(name="accountName")
|
302
370
|
def account_name(self) -> str:
|
@@ -360,6 +428,14 @@ class GetConnectionResult:
|
|
360
428
|
def client_secret(self) -> str:
|
361
429
|
return pulumi.get(self, "client_secret")
|
362
430
|
|
431
|
+
@property
|
432
|
+
@pulumi.getter(name="clientSecretSecretId")
|
433
|
+
def client_secret_secret_id(self) -> str:
|
434
|
+
"""
|
435
|
+
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.
|
436
|
+
"""
|
437
|
+
return pulumi.get(self, "client_secret_secret_id")
|
438
|
+
|
363
439
|
@property
|
364
440
|
@pulumi.getter(name="compartmentId")
|
365
441
|
def compartment_id(self) -> str:
|
@@ -412,6 +488,9 @@ class GetConnectionResult:
|
|
412
488
|
@property
|
413
489
|
@pulumi.getter(name="consumerProperties")
|
414
490
|
def consumer_properties(self) -> str:
|
491
|
+
"""
|
492
|
+
The base64 encoded content of the consumer.properties file.
|
493
|
+
"""
|
415
494
|
return pulumi.get(self, "consumer_properties")
|
416
495
|
|
417
496
|
@property
|
@@ -476,11 +555,16 @@ class GetConnectionResult:
|
|
476
555
|
return pulumi.get(self, "display_name")
|
477
556
|
|
478
557
|
@property
|
479
|
-
@pulumi.getter
|
480
|
-
def
|
558
|
+
@pulumi.getter(name="doesUseSecretIds")
|
559
|
+
def does_use_secret_ids(self) -> bool:
|
481
560
|
"""
|
482
|
-
|
561
|
+
Indicates that sensitive attributes are provided via Secrets.
|
483
562
|
"""
|
563
|
+
return pulumi.get(self, "does_use_secret_ids")
|
564
|
+
|
565
|
+
@property
|
566
|
+
@pulumi.getter
|
567
|
+
def endpoint(self) -> str:
|
484
568
|
return pulumi.get(self, "endpoint")
|
485
569
|
|
486
570
|
@property
|
@@ -556,6 +640,14 @@ class GetConnectionResult:
|
|
556
640
|
def jndi_security_credentials(self) -> str:
|
557
641
|
return pulumi.get(self, "jndi_security_credentials")
|
558
642
|
|
643
|
+
@property
|
644
|
+
@pulumi.getter(name="jndiSecurityCredentialsSecretId")
|
645
|
+
def jndi_security_credentials_secret_id(self) -> str:
|
646
|
+
"""
|
647
|
+
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.
|
648
|
+
"""
|
649
|
+
return pulumi.get(self, "jndi_security_credentials_secret_id")
|
650
|
+
|
559
651
|
@property
|
560
652
|
@pulumi.getter(name="jndiSecurityPrincipal")
|
561
653
|
def jndi_security_principal(self) -> str:
|
@@ -582,6 +674,22 @@ class GetConnectionResult:
|
|
582
674
|
def key_store_password(self) -> str:
|
583
675
|
return pulumi.get(self, "key_store_password")
|
584
676
|
|
677
|
+
@property
|
678
|
+
@pulumi.getter(name="keyStorePasswordSecretId")
|
679
|
+
def key_store_password_secret_id(self) -> str:
|
680
|
+
"""
|
681
|
+
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.
|
682
|
+
"""
|
683
|
+
return pulumi.get(self, "key_store_password_secret_id")
|
684
|
+
|
685
|
+
@property
|
686
|
+
@pulumi.getter(name="keyStoreSecretId")
|
687
|
+
def key_store_secret_id(self) -> str:
|
688
|
+
"""
|
689
|
+
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.
|
690
|
+
"""
|
691
|
+
return pulumi.get(self, "key_store_secret_id")
|
692
|
+
|
585
693
|
@property
|
586
694
|
@pulumi.getter(name="lifecycleDetails")
|
587
695
|
def lifecycle_details(self) -> str:
|
@@ -611,6 +719,14 @@ class GetConnectionResult:
|
|
611
719
|
def password(self) -> str:
|
612
720
|
return pulumi.get(self, "password")
|
613
721
|
|
722
|
+
@property
|
723
|
+
@pulumi.getter(name="passwordSecretId")
|
724
|
+
def password_secret_id(self) -> str:
|
725
|
+
"""
|
726
|
+
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. Note: When provided, 'password' field must not be provided.
|
727
|
+
"""
|
728
|
+
return pulumi.get(self, "password_secret_id")
|
729
|
+
|
614
730
|
@property
|
615
731
|
@pulumi.getter
|
616
732
|
def port(self) -> int:
|
@@ -633,14 +749,33 @@ class GetConnectionResult:
|
|
633
749
|
def private_key_file(self) -> str:
|
634
750
|
return pulumi.get(self, "private_key_file")
|
635
751
|
|
752
|
+
@property
|
753
|
+
@pulumi.getter(name="privateKeyFileSecretId")
|
754
|
+
def private_key_file_secret_id(self) -> str:
|
755
|
+
"""
|
756
|
+
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.
|
757
|
+
"""
|
758
|
+
return pulumi.get(self, "private_key_file_secret_id")
|
759
|
+
|
636
760
|
@property
|
637
761
|
@pulumi.getter(name="privateKeyPassphrase")
|
638
762
|
def private_key_passphrase(self) -> str:
|
639
763
|
return pulumi.get(self, "private_key_passphrase")
|
640
764
|
|
765
|
+
@property
|
766
|
+
@pulumi.getter(name="privateKeyPassphraseSecretId")
|
767
|
+
def private_key_passphrase_secret_id(self) -> str:
|
768
|
+
"""
|
769
|
+
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.
|
770
|
+
"""
|
771
|
+
return pulumi.get(self, "private_key_passphrase_secret_id")
|
772
|
+
|
641
773
|
@property
|
642
774
|
@pulumi.getter(name="producerProperties")
|
643
775
|
def producer_properties(self) -> str:
|
776
|
+
"""
|
777
|
+
The base64 encoded content of the producer.properties file.
|
778
|
+
"""
|
644
779
|
return pulumi.get(self, "producer_properties")
|
645
780
|
|
646
781
|
@property
|
@@ -677,11 +812,27 @@ class GetConnectionResult:
|
|
677
812
|
def sas_token(self) -> str:
|
678
813
|
return pulumi.get(self, "sas_token")
|
679
814
|
|
815
|
+
@property
|
816
|
+
@pulumi.getter(name="sasTokenSecretId")
|
817
|
+
def sas_token_secret_id(self) -> str:
|
818
|
+
"""
|
819
|
+
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.
|
820
|
+
"""
|
821
|
+
return pulumi.get(self, "sas_token_secret_id")
|
822
|
+
|
680
823
|
@property
|
681
824
|
@pulumi.getter(name="secretAccessKey")
|
682
825
|
def secret_access_key(self) -> str:
|
683
826
|
return pulumi.get(self, "secret_access_key")
|
684
827
|
|
828
|
+
@property
|
829
|
+
@pulumi.getter(name="secretAccessKeySecretId")
|
830
|
+
def secret_access_key_secret_id(self) -> str:
|
831
|
+
"""
|
832
|
+
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.
|
833
|
+
"""
|
834
|
+
return pulumi.get(self, "secret_access_key_secret_id")
|
835
|
+
|
685
836
|
@property
|
686
837
|
@pulumi.getter(name="securityProtocol")
|
687
838
|
def security_protocol(self) -> str:
|
@@ -706,6 +857,14 @@ class GetConnectionResult:
|
|
706
857
|
def service_account_key_file(self) -> str:
|
707
858
|
return pulumi.get(self, "service_account_key_file")
|
708
859
|
|
860
|
+
@property
|
861
|
+
@pulumi.getter(name="serviceAccountKeyFileSecretId")
|
862
|
+
def service_account_key_file_secret_id(self) -> str:
|
863
|
+
"""
|
864
|
+
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.
|
865
|
+
"""
|
866
|
+
return pulumi.get(self, "service_account_key_file_secret_id")
|
867
|
+
|
709
868
|
@property
|
710
869
|
@pulumi.getter(name="sessionMode")
|
711
870
|
def session_mode(self) -> str:
|
@@ -748,11 +907,27 @@ class GetConnectionResult:
|
|
748
907
|
def ssl_client_keystash(self) -> str:
|
749
908
|
return pulumi.get(self, "ssl_client_keystash")
|
750
909
|
|
910
|
+
@property
|
911
|
+
@pulumi.getter(name="sslClientKeystashSecretId")
|
912
|
+
def ssl_client_keystash_secret_id(self) -> str:
|
913
|
+
"""
|
914
|
+
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.
|
915
|
+
"""
|
916
|
+
return pulumi.get(self, "ssl_client_keystash_secret_id")
|
917
|
+
|
751
918
|
@property
|
752
919
|
@pulumi.getter(name="sslClientKeystoredb")
|
753
920
|
def ssl_client_keystoredb(self) -> str:
|
754
921
|
return pulumi.get(self, "ssl_client_keystoredb")
|
755
922
|
|
923
|
+
@property
|
924
|
+
@pulumi.getter(name="sslClientKeystoredbSecretId")
|
925
|
+
def ssl_client_keystoredb_secret_id(self) -> str:
|
926
|
+
"""
|
927
|
+
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.
|
928
|
+
"""
|
929
|
+
return pulumi.get(self, "ssl_client_keystoredb_secret_id")
|
930
|
+
|
756
931
|
@property
|
757
932
|
@pulumi.getter(name="sslCrl")
|
758
933
|
def ssl_crl(self) -> str:
|
@@ -768,6 +943,23 @@ class GetConnectionResult:
|
|
768
943
|
def ssl_key_password(self) -> str:
|
769
944
|
return pulumi.get(self, "ssl_key_password")
|
770
945
|
|
946
|
+
@property
|
947
|
+
@pulumi.getter(name="sslKeyPasswordSecretId")
|
948
|
+
def ssl_key_password_secret_id(self) -> str:
|
949
|
+
"""
|
950
|
+
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.
|
951
|
+
"""
|
952
|
+
return pulumi.get(self, "ssl_key_password_secret_id")
|
953
|
+
|
954
|
+
@property
|
955
|
+
@pulumi.getter(name="sslKeySecretId")
|
956
|
+
def ssl_key_secret_id(self) -> str:
|
957
|
+
"""
|
958
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
959
|
+
* 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.
|
960
|
+
"""
|
961
|
+
return pulumi.get(self, "ssl_key_secret_id")
|
962
|
+
|
771
963
|
@property
|
772
964
|
@pulumi.getter(name="sslMode")
|
773
965
|
def ssl_mode(self) -> str:
|
@@ -845,6 +1037,11 @@ class GetConnectionResult:
|
|
845
1037
|
"""
|
846
1038
|
return pulumi.get(self, "time_updated")
|
847
1039
|
|
1040
|
+
@property
|
1041
|
+
@pulumi.getter(name="triggerRefresh")
|
1042
|
+
def trigger_refresh(self) -> bool:
|
1043
|
+
return pulumi.get(self, "trigger_refresh")
|
1044
|
+
|
848
1045
|
@property
|
849
1046
|
@pulumi.getter(name="trustStore")
|
850
1047
|
def trust_store(self) -> str:
|
@@ -855,6 +1052,22 @@ class GetConnectionResult:
|
|
855
1052
|
def trust_store_password(self) -> str:
|
856
1053
|
return pulumi.get(self, "trust_store_password")
|
857
1054
|
|
1055
|
+
@property
|
1056
|
+
@pulumi.getter(name="trustStorePasswordSecretId")
|
1057
|
+
def trust_store_password_secret_id(self) -> str:
|
1058
|
+
"""
|
1059
|
+
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.
|
1060
|
+
"""
|
1061
|
+
return pulumi.get(self, "trust_store_password_secret_id")
|
1062
|
+
|
1063
|
+
@property
|
1064
|
+
@pulumi.getter(name="trustStoreSecretId")
|
1065
|
+
def trust_store_secret_id(self) -> str:
|
1066
|
+
"""
|
1067
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the TrustStore file is stored. Note: When provided, 'trustStore' field must not be provided
|
1068
|
+
"""
|
1069
|
+
return pulumi.get(self, "trust_store_secret_id")
|
1070
|
+
|
858
1071
|
@property
|
859
1072
|
@pulumi.getter
|
860
1073
|
def url(self) -> str:
|
@@ -892,6 +1105,14 @@ class GetConnectionResult:
|
|
892
1105
|
def wallet(self) -> str:
|
893
1106
|
return pulumi.get(self, "wallet")
|
894
1107
|
|
1108
|
+
@property
|
1109
|
+
@pulumi.getter(name="walletSecretId")
|
1110
|
+
def wallet_secret_id(self) -> str:
|
1111
|
+
"""
|
1112
|
+
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.
|
1113
|
+
"""
|
1114
|
+
return pulumi.get(self, "wallet_secret_id")
|
1115
|
+
|
895
1116
|
|
896
1117
|
class AwaitableGetConnectionResult(GetConnectionResult):
|
897
1118
|
# pylint: disable=using-constant-test
|
@@ -901,6 +1122,7 @@ class AwaitableGetConnectionResult(GetConnectionResult):
|
|
901
1122
|
return GetConnectionResult(
|
902
1123
|
access_key_id=self.access_key_id,
|
903
1124
|
account_key=self.account_key,
|
1125
|
+
account_key_secret_id=self.account_key_secret_id,
|
904
1126
|
account_name=self.account_name,
|
905
1127
|
additional_attributes=self.additional_attributes,
|
906
1128
|
authentication_mode=self.authentication_mode,
|
@@ -909,6 +1131,7 @@ class AwaitableGetConnectionResult(GetConnectionResult):
|
|
909
1131
|
bootstrap_servers=self.bootstrap_servers,
|
910
1132
|
client_id=self.client_id,
|
911
1133
|
client_secret=self.client_secret,
|
1134
|
+
client_secret_secret_id=self.client_secret_secret_id,
|
912
1135
|
compartment_id=self.compartment_id,
|
913
1136
|
connection_factory=self.connection_factory,
|
914
1137
|
connection_id=self.connection_id,
|
@@ -924,6 +1147,7 @@ class AwaitableGetConnectionResult(GetConnectionResult):
|
|
924
1147
|
deployment_id=self.deployment_id,
|
925
1148
|
description=self.description,
|
926
1149
|
display_name=self.display_name,
|
1150
|
+
does_use_secret_ids=self.does_use_secret_ids,
|
927
1151
|
endpoint=self.endpoint,
|
928
1152
|
fingerprint=self.fingerprint,
|
929
1153
|
freeform_tags=self.freeform_tags,
|
@@ -935,38 +1159,51 @@ class AwaitableGetConnectionResult(GetConnectionResult):
|
|
935
1159
|
jndi_initial_context_factory=self.jndi_initial_context_factory,
|
936
1160
|
jndi_provider_url=self.jndi_provider_url,
|
937
1161
|
jndi_security_credentials=self.jndi_security_credentials,
|
1162
|
+
jndi_security_credentials_secret_id=self.jndi_security_credentials_secret_id,
|
938
1163
|
jndi_security_principal=self.jndi_security_principal,
|
939
1164
|
key_id=self.key_id,
|
940
1165
|
key_store=self.key_store,
|
941
1166
|
key_store_password=self.key_store_password,
|
1167
|
+
key_store_password_secret_id=self.key_store_password_secret_id,
|
1168
|
+
key_store_secret_id=self.key_store_secret_id,
|
942
1169
|
lifecycle_details=self.lifecycle_details,
|
943
1170
|
locks=self.locks,
|
944
1171
|
nsg_ids=self.nsg_ids,
|
945
1172
|
password=self.password,
|
1173
|
+
password_secret_id=self.password_secret_id,
|
946
1174
|
port=self.port,
|
947
1175
|
private_ip=self.private_ip,
|
948
1176
|
private_key_file=self.private_key_file,
|
1177
|
+
private_key_file_secret_id=self.private_key_file_secret_id,
|
949
1178
|
private_key_passphrase=self.private_key_passphrase,
|
1179
|
+
private_key_passphrase_secret_id=self.private_key_passphrase_secret_id,
|
950
1180
|
producer_properties=self.producer_properties,
|
951
1181
|
public_key_fingerprint=self.public_key_fingerprint,
|
952
1182
|
redis_cluster_id=self.redis_cluster_id,
|
953
1183
|
region=self.region,
|
954
1184
|
routing_method=self.routing_method,
|
955
1185
|
sas_token=self.sas_token,
|
1186
|
+
sas_token_secret_id=self.sas_token_secret_id,
|
956
1187
|
secret_access_key=self.secret_access_key,
|
1188
|
+
secret_access_key_secret_id=self.secret_access_key_secret_id,
|
957
1189
|
security_protocol=self.security_protocol,
|
958
1190
|
servers=self.servers,
|
959
1191
|
service_account_key_file=self.service_account_key_file,
|
1192
|
+
service_account_key_file_secret_id=self.service_account_key_file_secret_id,
|
960
1193
|
session_mode=self.session_mode,
|
961
1194
|
should_use_jndi=self.should_use_jndi,
|
962
1195
|
should_validate_server_certificate=self.should_validate_server_certificate,
|
963
1196
|
ssl_ca=self.ssl_ca,
|
964
1197
|
ssl_cert=self.ssl_cert,
|
965
1198
|
ssl_client_keystash=self.ssl_client_keystash,
|
1199
|
+
ssl_client_keystash_secret_id=self.ssl_client_keystash_secret_id,
|
966
1200
|
ssl_client_keystoredb=self.ssl_client_keystoredb,
|
1201
|
+
ssl_client_keystoredb_secret_id=self.ssl_client_keystoredb_secret_id,
|
967
1202
|
ssl_crl=self.ssl_crl,
|
968
1203
|
ssl_key=self.ssl_key,
|
969
1204
|
ssl_key_password=self.ssl_key_password,
|
1205
|
+
ssl_key_password_secret_id=self.ssl_key_password_secret_id,
|
1206
|
+
ssl_key_secret_id=self.ssl_key_secret_id,
|
970
1207
|
ssl_mode=self.ssl_mode,
|
971
1208
|
ssl_server_certificate=self.ssl_server_certificate,
|
972
1209
|
state=self.state,
|
@@ -977,13 +1214,17 @@ class AwaitableGetConnectionResult(GetConnectionResult):
|
|
977
1214
|
tenancy_id=self.tenancy_id,
|
978
1215
|
time_created=self.time_created,
|
979
1216
|
time_updated=self.time_updated,
|
1217
|
+
trigger_refresh=self.trigger_refresh,
|
980
1218
|
trust_store=self.trust_store,
|
981
1219
|
trust_store_password=self.trust_store_password,
|
1220
|
+
trust_store_password_secret_id=self.trust_store_password_secret_id,
|
1221
|
+
trust_store_secret_id=self.trust_store_secret_id,
|
982
1222
|
url=self.url,
|
983
1223
|
user_id=self.user_id,
|
984
1224
|
username=self.username,
|
985
1225
|
vault_id=self.vault_id,
|
986
|
-
wallet=self.wallet
|
1226
|
+
wallet=self.wallet,
|
1227
|
+
wallet_secret_id=self.wallet_secret_id)
|
987
1228
|
|
988
1229
|
|
989
1230
|
def get_connection(connection_id: Optional[str] = None,
|
@@ -1013,6 +1254,7 @@ def get_connection(connection_id: Optional[str] = None,
|
|
1013
1254
|
return AwaitableGetConnectionResult(
|
1014
1255
|
access_key_id=pulumi.get(__ret__, 'access_key_id'),
|
1015
1256
|
account_key=pulumi.get(__ret__, 'account_key'),
|
1257
|
+
account_key_secret_id=pulumi.get(__ret__, 'account_key_secret_id'),
|
1016
1258
|
account_name=pulumi.get(__ret__, 'account_name'),
|
1017
1259
|
additional_attributes=pulumi.get(__ret__, 'additional_attributes'),
|
1018
1260
|
authentication_mode=pulumi.get(__ret__, 'authentication_mode'),
|
@@ -1021,6 +1263,7 @@ def get_connection(connection_id: Optional[str] = None,
|
|
1021
1263
|
bootstrap_servers=pulumi.get(__ret__, 'bootstrap_servers'),
|
1022
1264
|
client_id=pulumi.get(__ret__, 'client_id'),
|
1023
1265
|
client_secret=pulumi.get(__ret__, 'client_secret'),
|
1266
|
+
client_secret_secret_id=pulumi.get(__ret__, 'client_secret_secret_id'),
|
1024
1267
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
1025
1268
|
connection_factory=pulumi.get(__ret__, 'connection_factory'),
|
1026
1269
|
connection_id=pulumi.get(__ret__, 'connection_id'),
|
@@ -1036,6 +1279,7 @@ def get_connection(connection_id: Optional[str] = None,
|
|
1036
1279
|
deployment_id=pulumi.get(__ret__, 'deployment_id'),
|
1037
1280
|
description=pulumi.get(__ret__, 'description'),
|
1038
1281
|
display_name=pulumi.get(__ret__, 'display_name'),
|
1282
|
+
does_use_secret_ids=pulumi.get(__ret__, 'does_use_secret_ids'),
|
1039
1283
|
endpoint=pulumi.get(__ret__, 'endpoint'),
|
1040
1284
|
fingerprint=pulumi.get(__ret__, 'fingerprint'),
|
1041
1285
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
@@ -1047,38 +1291,51 @@ def get_connection(connection_id: Optional[str] = None,
|
|
1047
1291
|
jndi_initial_context_factory=pulumi.get(__ret__, 'jndi_initial_context_factory'),
|
1048
1292
|
jndi_provider_url=pulumi.get(__ret__, 'jndi_provider_url'),
|
1049
1293
|
jndi_security_credentials=pulumi.get(__ret__, 'jndi_security_credentials'),
|
1294
|
+
jndi_security_credentials_secret_id=pulumi.get(__ret__, 'jndi_security_credentials_secret_id'),
|
1050
1295
|
jndi_security_principal=pulumi.get(__ret__, 'jndi_security_principal'),
|
1051
1296
|
key_id=pulumi.get(__ret__, 'key_id'),
|
1052
1297
|
key_store=pulumi.get(__ret__, 'key_store'),
|
1053
1298
|
key_store_password=pulumi.get(__ret__, 'key_store_password'),
|
1299
|
+
key_store_password_secret_id=pulumi.get(__ret__, 'key_store_password_secret_id'),
|
1300
|
+
key_store_secret_id=pulumi.get(__ret__, 'key_store_secret_id'),
|
1054
1301
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
1055
1302
|
locks=pulumi.get(__ret__, 'locks'),
|
1056
1303
|
nsg_ids=pulumi.get(__ret__, 'nsg_ids'),
|
1057
1304
|
password=pulumi.get(__ret__, 'password'),
|
1305
|
+
password_secret_id=pulumi.get(__ret__, 'password_secret_id'),
|
1058
1306
|
port=pulumi.get(__ret__, 'port'),
|
1059
1307
|
private_ip=pulumi.get(__ret__, 'private_ip'),
|
1060
1308
|
private_key_file=pulumi.get(__ret__, 'private_key_file'),
|
1309
|
+
private_key_file_secret_id=pulumi.get(__ret__, 'private_key_file_secret_id'),
|
1061
1310
|
private_key_passphrase=pulumi.get(__ret__, 'private_key_passphrase'),
|
1311
|
+
private_key_passphrase_secret_id=pulumi.get(__ret__, 'private_key_passphrase_secret_id'),
|
1062
1312
|
producer_properties=pulumi.get(__ret__, 'producer_properties'),
|
1063
1313
|
public_key_fingerprint=pulumi.get(__ret__, 'public_key_fingerprint'),
|
1064
1314
|
redis_cluster_id=pulumi.get(__ret__, 'redis_cluster_id'),
|
1065
1315
|
region=pulumi.get(__ret__, 'region'),
|
1066
1316
|
routing_method=pulumi.get(__ret__, 'routing_method'),
|
1067
1317
|
sas_token=pulumi.get(__ret__, 'sas_token'),
|
1318
|
+
sas_token_secret_id=pulumi.get(__ret__, 'sas_token_secret_id'),
|
1068
1319
|
secret_access_key=pulumi.get(__ret__, 'secret_access_key'),
|
1320
|
+
secret_access_key_secret_id=pulumi.get(__ret__, 'secret_access_key_secret_id'),
|
1069
1321
|
security_protocol=pulumi.get(__ret__, 'security_protocol'),
|
1070
1322
|
servers=pulumi.get(__ret__, 'servers'),
|
1071
1323
|
service_account_key_file=pulumi.get(__ret__, 'service_account_key_file'),
|
1324
|
+
service_account_key_file_secret_id=pulumi.get(__ret__, 'service_account_key_file_secret_id'),
|
1072
1325
|
session_mode=pulumi.get(__ret__, 'session_mode'),
|
1073
1326
|
should_use_jndi=pulumi.get(__ret__, 'should_use_jndi'),
|
1074
1327
|
should_validate_server_certificate=pulumi.get(__ret__, 'should_validate_server_certificate'),
|
1075
1328
|
ssl_ca=pulumi.get(__ret__, 'ssl_ca'),
|
1076
1329
|
ssl_cert=pulumi.get(__ret__, 'ssl_cert'),
|
1077
1330
|
ssl_client_keystash=pulumi.get(__ret__, 'ssl_client_keystash'),
|
1331
|
+
ssl_client_keystash_secret_id=pulumi.get(__ret__, 'ssl_client_keystash_secret_id'),
|
1078
1332
|
ssl_client_keystoredb=pulumi.get(__ret__, 'ssl_client_keystoredb'),
|
1333
|
+
ssl_client_keystoredb_secret_id=pulumi.get(__ret__, 'ssl_client_keystoredb_secret_id'),
|
1079
1334
|
ssl_crl=pulumi.get(__ret__, 'ssl_crl'),
|
1080
1335
|
ssl_key=pulumi.get(__ret__, 'ssl_key'),
|
1081
1336
|
ssl_key_password=pulumi.get(__ret__, 'ssl_key_password'),
|
1337
|
+
ssl_key_password_secret_id=pulumi.get(__ret__, 'ssl_key_password_secret_id'),
|
1338
|
+
ssl_key_secret_id=pulumi.get(__ret__, 'ssl_key_secret_id'),
|
1082
1339
|
ssl_mode=pulumi.get(__ret__, 'ssl_mode'),
|
1083
1340
|
ssl_server_certificate=pulumi.get(__ret__, 'ssl_server_certificate'),
|
1084
1341
|
state=pulumi.get(__ret__, 'state'),
|
@@ -1089,13 +1346,17 @@ def get_connection(connection_id: Optional[str] = None,
|
|
1089
1346
|
tenancy_id=pulumi.get(__ret__, 'tenancy_id'),
|
1090
1347
|
time_created=pulumi.get(__ret__, 'time_created'),
|
1091
1348
|
time_updated=pulumi.get(__ret__, 'time_updated'),
|
1349
|
+
trigger_refresh=pulumi.get(__ret__, 'trigger_refresh'),
|
1092
1350
|
trust_store=pulumi.get(__ret__, 'trust_store'),
|
1093
1351
|
trust_store_password=pulumi.get(__ret__, 'trust_store_password'),
|
1352
|
+
trust_store_password_secret_id=pulumi.get(__ret__, 'trust_store_password_secret_id'),
|
1353
|
+
trust_store_secret_id=pulumi.get(__ret__, 'trust_store_secret_id'),
|
1094
1354
|
url=pulumi.get(__ret__, 'url'),
|
1095
1355
|
user_id=pulumi.get(__ret__, 'user_id'),
|
1096
1356
|
username=pulumi.get(__ret__, 'username'),
|
1097
1357
|
vault_id=pulumi.get(__ret__, 'vault_id'),
|
1098
|
-
wallet=pulumi.get(__ret__, 'wallet')
|
1358
|
+
wallet=pulumi.get(__ret__, 'wallet'),
|
1359
|
+
wallet_secret_id=pulumi.get(__ret__, 'wallet_secret_id'))
|
1099
1360
|
def get_connection_output(connection_id: Optional[pulumi.Input[str]] = None,
|
1100
1361
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetConnectionResult]:
|
1101
1362
|
"""
|
@@ -1122,6 +1383,7 @@ def get_connection_output(connection_id: Optional[pulumi.Input[str]] = None,
|
|
1122
1383
|
return __ret__.apply(lambda __response__: GetConnectionResult(
|
1123
1384
|
access_key_id=pulumi.get(__response__, 'access_key_id'),
|
1124
1385
|
account_key=pulumi.get(__response__, 'account_key'),
|
1386
|
+
account_key_secret_id=pulumi.get(__response__, 'account_key_secret_id'),
|
1125
1387
|
account_name=pulumi.get(__response__, 'account_name'),
|
1126
1388
|
additional_attributes=pulumi.get(__response__, 'additional_attributes'),
|
1127
1389
|
authentication_mode=pulumi.get(__response__, 'authentication_mode'),
|
@@ -1130,6 +1392,7 @@ def get_connection_output(connection_id: Optional[pulumi.Input[str]] = None,
|
|
1130
1392
|
bootstrap_servers=pulumi.get(__response__, 'bootstrap_servers'),
|
1131
1393
|
client_id=pulumi.get(__response__, 'client_id'),
|
1132
1394
|
client_secret=pulumi.get(__response__, 'client_secret'),
|
1395
|
+
client_secret_secret_id=pulumi.get(__response__, 'client_secret_secret_id'),
|
1133
1396
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
1134
1397
|
connection_factory=pulumi.get(__response__, 'connection_factory'),
|
1135
1398
|
connection_id=pulumi.get(__response__, 'connection_id'),
|
@@ -1145,6 +1408,7 @@ def get_connection_output(connection_id: Optional[pulumi.Input[str]] = None,
|
|
1145
1408
|
deployment_id=pulumi.get(__response__, 'deployment_id'),
|
1146
1409
|
description=pulumi.get(__response__, 'description'),
|
1147
1410
|
display_name=pulumi.get(__response__, 'display_name'),
|
1411
|
+
does_use_secret_ids=pulumi.get(__response__, 'does_use_secret_ids'),
|
1148
1412
|
endpoint=pulumi.get(__response__, 'endpoint'),
|
1149
1413
|
fingerprint=pulumi.get(__response__, 'fingerprint'),
|
1150
1414
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
@@ -1156,38 +1420,51 @@ def get_connection_output(connection_id: Optional[pulumi.Input[str]] = None,
|
|
1156
1420
|
jndi_initial_context_factory=pulumi.get(__response__, 'jndi_initial_context_factory'),
|
1157
1421
|
jndi_provider_url=pulumi.get(__response__, 'jndi_provider_url'),
|
1158
1422
|
jndi_security_credentials=pulumi.get(__response__, 'jndi_security_credentials'),
|
1423
|
+
jndi_security_credentials_secret_id=pulumi.get(__response__, 'jndi_security_credentials_secret_id'),
|
1159
1424
|
jndi_security_principal=pulumi.get(__response__, 'jndi_security_principal'),
|
1160
1425
|
key_id=pulumi.get(__response__, 'key_id'),
|
1161
1426
|
key_store=pulumi.get(__response__, 'key_store'),
|
1162
1427
|
key_store_password=pulumi.get(__response__, 'key_store_password'),
|
1428
|
+
key_store_password_secret_id=pulumi.get(__response__, 'key_store_password_secret_id'),
|
1429
|
+
key_store_secret_id=pulumi.get(__response__, 'key_store_secret_id'),
|
1163
1430
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
1164
1431
|
locks=pulumi.get(__response__, 'locks'),
|
1165
1432
|
nsg_ids=pulumi.get(__response__, 'nsg_ids'),
|
1166
1433
|
password=pulumi.get(__response__, 'password'),
|
1434
|
+
password_secret_id=pulumi.get(__response__, 'password_secret_id'),
|
1167
1435
|
port=pulumi.get(__response__, 'port'),
|
1168
1436
|
private_ip=pulumi.get(__response__, 'private_ip'),
|
1169
1437
|
private_key_file=pulumi.get(__response__, 'private_key_file'),
|
1438
|
+
private_key_file_secret_id=pulumi.get(__response__, 'private_key_file_secret_id'),
|
1170
1439
|
private_key_passphrase=pulumi.get(__response__, 'private_key_passphrase'),
|
1440
|
+
private_key_passphrase_secret_id=pulumi.get(__response__, 'private_key_passphrase_secret_id'),
|
1171
1441
|
producer_properties=pulumi.get(__response__, 'producer_properties'),
|
1172
1442
|
public_key_fingerprint=pulumi.get(__response__, 'public_key_fingerprint'),
|
1173
1443
|
redis_cluster_id=pulumi.get(__response__, 'redis_cluster_id'),
|
1174
1444
|
region=pulumi.get(__response__, 'region'),
|
1175
1445
|
routing_method=pulumi.get(__response__, 'routing_method'),
|
1176
1446
|
sas_token=pulumi.get(__response__, 'sas_token'),
|
1447
|
+
sas_token_secret_id=pulumi.get(__response__, 'sas_token_secret_id'),
|
1177
1448
|
secret_access_key=pulumi.get(__response__, 'secret_access_key'),
|
1449
|
+
secret_access_key_secret_id=pulumi.get(__response__, 'secret_access_key_secret_id'),
|
1178
1450
|
security_protocol=pulumi.get(__response__, 'security_protocol'),
|
1179
1451
|
servers=pulumi.get(__response__, 'servers'),
|
1180
1452
|
service_account_key_file=pulumi.get(__response__, 'service_account_key_file'),
|
1453
|
+
service_account_key_file_secret_id=pulumi.get(__response__, 'service_account_key_file_secret_id'),
|
1181
1454
|
session_mode=pulumi.get(__response__, 'session_mode'),
|
1182
1455
|
should_use_jndi=pulumi.get(__response__, 'should_use_jndi'),
|
1183
1456
|
should_validate_server_certificate=pulumi.get(__response__, 'should_validate_server_certificate'),
|
1184
1457
|
ssl_ca=pulumi.get(__response__, 'ssl_ca'),
|
1185
1458
|
ssl_cert=pulumi.get(__response__, 'ssl_cert'),
|
1186
1459
|
ssl_client_keystash=pulumi.get(__response__, 'ssl_client_keystash'),
|
1460
|
+
ssl_client_keystash_secret_id=pulumi.get(__response__, 'ssl_client_keystash_secret_id'),
|
1187
1461
|
ssl_client_keystoredb=pulumi.get(__response__, 'ssl_client_keystoredb'),
|
1462
|
+
ssl_client_keystoredb_secret_id=pulumi.get(__response__, 'ssl_client_keystoredb_secret_id'),
|
1188
1463
|
ssl_crl=pulumi.get(__response__, 'ssl_crl'),
|
1189
1464
|
ssl_key=pulumi.get(__response__, 'ssl_key'),
|
1190
1465
|
ssl_key_password=pulumi.get(__response__, 'ssl_key_password'),
|
1466
|
+
ssl_key_password_secret_id=pulumi.get(__response__, 'ssl_key_password_secret_id'),
|
1467
|
+
ssl_key_secret_id=pulumi.get(__response__, 'ssl_key_secret_id'),
|
1191
1468
|
ssl_mode=pulumi.get(__response__, 'ssl_mode'),
|
1192
1469
|
ssl_server_certificate=pulumi.get(__response__, 'ssl_server_certificate'),
|
1193
1470
|
state=pulumi.get(__response__, 'state'),
|
@@ -1198,10 +1475,14 @@ def get_connection_output(connection_id: Optional[pulumi.Input[str]] = None,
|
|
1198
1475
|
tenancy_id=pulumi.get(__response__, 'tenancy_id'),
|
1199
1476
|
time_created=pulumi.get(__response__, 'time_created'),
|
1200
1477
|
time_updated=pulumi.get(__response__, 'time_updated'),
|
1478
|
+
trigger_refresh=pulumi.get(__response__, 'trigger_refresh'),
|
1201
1479
|
trust_store=pulumi.get(__response__, 'trust_store'),
|
1202
1480
|
trust_store_password=pulumi.get(__response__, 'trust_store_password'),
|
1481
|
+
trust_store_password_secret_id=pulumi.get(__response__, 'trust_store_password_secret_id'),
|
1482
|
+
trust_store_secret_id=pulumi.get(__response__, 'trust_store_secret_id'),
|
1203
1483
|
url=pulumi.get(__response__, 'url'),
|
1204
1484
|
user_id=pulumi.get(__response__, 'user_id'),
|
1205
1485
|
username=pulumi.get(__response__, 'username'),
|
1206
1486
|
vault_id=pulumi.get(__response__, 'vault_id'),
|
1207
|
-
wallet=pulumi.get(__response__, 'wallet')
|
1487
|
+
wallet=pulumi.get(__response__, 'wallet'),
|
1488
|
+
wallet_secret_id=pulumi.get(__response__, 'wallet_secret_id')))
|