pulumi-oci 2.17.0a1731653778__py3-none-any.whl → 2.18.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. pulumi_oci/__init__.py +40 -0
  2. pulumi_oci/core/_inputs.py +3 -3
  3. pulumi_oci/core/compute_capacity_reservation.py +7 -7
  4. pulumi_oci/core/get_boot_volume.py +1 -1
  5. pulumi_oci/core/get_volume.py +1 -1
  6. pulumi_oci/core/instance_pool.py +7 -7
  7. pulumi_oci/core/outputs.py +46 -46
  8. pulumi_oci/database/_inputs.py +20 -0
  9. pulumi_oci/database/autonomous_container_database.py +0 -7
  10. pulumi_oci/database/autonomous_database.py +7 -7
  11. pulumi_oci/database/get_autonomous_database.py +1 -1
  12. pulumi_oci/database/outputs.py +27 -4
  13. pulumi_oci/generativeai/__init__.py +16 -0
  14. pulumi_oci/generativeai/_inputs.py +1090 -0
  15. pulumi_oci/generativeai/agent_agent.py +665 -0
  16. pulumi_oci/generativeai/agent_agent_endpoint.py +888 -0
  17. pulumi_oci/generativeai/agent_data_ingestion_job.py +647 -0
  18. pulumi_oci/generativeai/agent_data_source.py +697 -0
  19. pulumi_oci/generativeai/agent_knowledge_base.py +659 -0
  20. pulumi_oci/generativeai/get_agent_agent.py +285 -0
  21. pulumi_oci/generativeai/get_agent_agent_endpoint.py +342 -0
  22. pulumi_oci/generativeai/get_agent_agent_endpoints.py +217 -0
  23. pulumi_oci/generativeai/get_agent_agents.py +195 -0
  24. pulumi_oci/generativeai/get_agent_data_ingestion_job.py +286 -0
  25. pulumi_oci/generativeai/get_agent_data_ingestion_job_log_content.py +117 -0
  26. pulumi_oci/generativeai/get_agent_data_ingestion_jobs.py +217 -0
  27. pulumi_oci/generativeai/get_agent_data_source.py +286 -0
  28. pulumi_oci/generativeai/get_agent_data_sources.py +217 -0
  29. pulumi_oci/generativeai/get_agent_knowledge_base.py +272 -0
  30. pulumi_oci/generativeai/get_agent_knowledge_bases.py +195 -0
  31. pulumi_oci/generativeai/outputs.py +2840 -268
  32. pulumi_oci/goldengate/connection.py +1065 -78
  33. pulumi_oci/goldengate/deployment.py +7 -7
  34. pulumi_oci/goldengate/deployment_backup.py +49 -0
  35. pulumi_oci/goldengate/get_connection.py +288 -7
  36. pulumi_oci/goldengate/get_deployment.py +1 -1
  37. pulumi_oci/goldengate/get_deployment_backup.py +15 -1
  38. pulumi_oci/goldengate/outputs.py +240 -3
  39. pulumi_oci/psql/_inputs.py +20 -0
  40. pulumi_oci/psql/db_system.py +2 -0
  41. pulumi_oci/psql/get_db_system_connection_detail.py +18 -4
  42. pulumi_oci/psql/outputs.py +77 -0
  43. pulumi_oci/pulumi-plugin.json +1 -1
  44. {pulumi_oci-2.17.0a1731653778.dist-info → pulumi_oci-2.18.0.dist-info}/METADATA +5 -5
  45. {pulumi_oci-2.17.0a1731653778.dist-info → pulumi_oci-2.18.0.dist-info}/RECORD +47 -31
  46. {pulumi_oci-2.17.0a1731653778.dist-info → pulumi_oci-2.18.0.dist-info}/WHEEL +1 -1
  47. {pulumi_oci-2.17.0a1731653778.dist-info → pulumi_oci-2.18.0.dist-info}/top_level.txt +0 -0
@@ -27,6 +27,7 @@ class ConnectionArgs:
27
27
  technology_type: pulumi.Input[str],
28
28
  access_key_id: Optional[pulumi.Input[str]] = None,
29
29
  account_key: Optional[pulumi.Input[str]] = None,
30
+ account_key_secret_id: Optional[pulumi.Input[str]] = None,
30
31
  account_name: Optional[pulumi.Input[str]] = None,
31
32
  additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionAdditionalAttributeArgs']]]] = None,
32
33
  authentication_mode: Optional[pulumi.Input[str]] = None,
@@ -35,6 +36,7 @@ class ConnectionArgs:
35
36
  bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]]] = None,
36
37
  client_id: Optional[pulumi.Input[str]] = None,
37
38
  client_secret: Optional[pulumi.Input[str]] = None,
39
+ client_secret_secret_id: Optional[pulumi.Input[str]] = None,
38
40
  connection_factory: Optional[pulumi.Input[str]] = None,
39
41
  connection_string: Optional[pulumi.Input[str]] = None,
40
42
  connection_url: Optional[pulumi.Input[str]] = None,
@@ -46,6 +48,7 @@ class ConnectionArgs:
46
48
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
47
49
  deployment_id: Optional[pulumi.Input[str]] = None,
48
50
  description: Optional[pulumi.Input[str]] = None,
51
+ does_use_secret_ids: Optional[pulumi.Input[bool]] = None,
49
52
  endpoint: Optional[pulumi.Input[str]] = None,
50
53
  fingerprint: Optional[pulumi.Input[str]] = None,
51
54
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -55,49 +58,66 @@ class ConnectionArgs:
55
58
  jndi_initial_context_factory: Optional[pulumi.Input[str]] = None,
56
59
  jndi_provider_url: Optional[pulumi.Input[str]] = None,
57
60
  jndi_security_credentials: Optional[pulumi.Input[str]] = None,
61
+ jndi_security_credentials_secret_id: Optional[pulumi.Input[str]] = None,
58
62
  jndi_security_principal: Optional[pulumi.Input[str]] = None,
59
63
  key_id: Optional[pulumi.Input[str]] = None,
60
64
  key_store: Optional[pulumi.Input[str]] = None,
61
65
  key_store_password: Optional[pulumi.Input[str]] = None,
66
+ key_store_password_secret_id: Optional[pulumi.Input[str]] = None,
67
+ key_store_secret_id: Optional[pulumi.Input[str]] = None,
62
68
  locks: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]]] = None,
63
69
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
64
70
  password: Optional[pulumi.Input[str]] = None,
71
+ password_secret_id: Optional[pulumi.Input[str]] = None,
65
72
  port: Optional[pulumi.Input[int]] = None,
66
73
  private_ip: Optional[pulumi.Input[str]] = None,
67
74
  private_key_file: Optional[pulumi.Input[str]] = None,
75
+ private_key_file_secret_id: Optional[pulumi.Input[str]] = None,
68
76
  private_key_passphrase: Optional[pulumi.Input[str]] = None,
77
+ private_key_passphrase_secret_id: Optional[pulumi.Input[str]] = None,
69
78
  producer_properties: Optional[pulumi.Input[str]] = None,
70
79
  public_key_fingerprint: Optional[pulumi.Input[str]] = None,
71
80
  redis_cluster_id: Optional[pulumi.Input[str]] = None,
72
81
  region: Optional[pulumi.Input[str]] = None,
73
82
  routing_method: Optional[pulumi.Input[str]] = None,
74
83
  sas_token: Optional[pulumi.Input[str]] = None,
84
+ sas_token_secret_id: Optional[pulumi.Input[str]] = None,
75
85
  secret_access_key: Optional[pulumi.Input[str]] = None,
86
+ secret_access_key_secret_id: Optional[pulumi.Input[str]] = None,
76
87
  security_protocol: Optional[pulumi.Input[str]] = None,
77
88
  servers: Optional[pulumi.Input[str]] = None,
78
89
  service_account_key_file: Optional[pulumi.Input[str]] = None,
90
+ service_account_key_file_secret_id: Optional[pulumi.Input[str]] = None,
79
91
  session_mode: Optional[pulumi.Input[str]] = None,
80
92
  should_use_jndi: Optional[pulumi.Input[bool]] = None,
81
93
  should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
82
94
  ssl_ca: Optional[pulumi.Input[str]] = None,
83
95
  ssl_cert: Optional[pulumi.Input[str]] = None,
84
96
  ssl_client_keystash: Optional[pulumi.Input[str]] = None,
97
+ ssl_client_keystash_secret_id: Optional[pulumi.Input[str]] = None,
85
98
  ssl_client_keystoredb: Optional[pulumi.Input[str]] = None,
99
+ ssl_client_keystoredb_secret_id: Optional[pulumi.Input[str]] = None,
86
100
  ssl_crl: Optional[pulumi.Input[str]] = None,
87
101
  ssl_key: Optional[pulumi.Input[str]] = None,
88
102
  ssl_key_password: Optional[pulumi.Input[str]] = None,
103
+ ssl_key_password_secret_id: Optional[pulumi.Input[str]] = None,
104
+ ssl_key_secret_id: Optional[pulumi.Input[str]] = None,
89
105
  ssl_mode: Optional[pulumi.Input[str]] = None,
90
106
  ssl_server_certificate: Optional[pulumi.Input[str]] = None,
91
107
  stream_pool_id: Optional[pulumi.Input[str]] = None,
92
108
  subnet_id: Optional[pulumi.Input[str]] = None,
93
109
  tenancy_id: Optional[pulumi.Input[str]] = None,
110
+ trigger_refresh: Optional[pulumi.Input[bool]] = None,
94
111
  trust_store: Optional[pulumi.Input[str]] = None,
95
112
  trust_store_password: Optional[pulumi.Input[str]] = None,
113
+ trust_store_password_secret_id: Optional[pulumi.Input[str]] = None,
114
+ trust_store_secret_id: Optional[pulumi.Input[str]] = None,
96
115
  url: Optional[pulumi.Input[str]] = None,
97
116
  user_id: Optional[pulumi.Input[str]] = None,
98
117
  username: Optional[pulumi.Input[str]] = None,
99
118
  vault_id: Optional[pulumi.Input[str]] = None,
100
- wallet: Optional[pulumi.Input[str]] = None):
119
+ wallet: Optional[pulumi.Input[str]] = None,
120
+ wallet_secret_id: Optional[pulumi.Input[str]] = None):
101
121
  """
102
122
  The set of arguments for constructing a Connection resource.
103
123
  :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.
@@ -106,6 +126,7 @@ class ConnectionArgs:
106
126
  :param pulumi.Input[str] technology_type: The Kafka (e.g. Confluent) Schema Registry technology type.
107
127
  :param pulumi.Input[str] access_key_id: (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
108
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==
129
+ :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.
109
130
  :param pulumi.Input[str] account_name: (Updatable) Sets the Azure storage account name.
110
131
  :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.
111
132
  :param pulumi.Input[str] authentication_mode: (Updatable) Authentication mode. It can be provided at creation of Oracle Autonomous Database Serverless connections, when a databaseId is provided. The default value is MTLS.
@@ -114,6 +135,7 @@ class ConnectionArgs:
114
135
  :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"`
115
136
  :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
116
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.
117
139
  :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'
118
140
  :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'.
119
141
  :param pulumi.Input[str] connection_url: (Updatable) JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=<warehouse-name>&db=<db-name>'
@@ -125,6 +147,7 @@ class ConnectionArgs:
125
147
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
126
148
  :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.
127
149
  :param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
150
+ :param pulumi.Input[bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
128
151
  :param pulumi.Input[str] endpoint: (Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
129
152
  :param pulumi.Input[str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
130
153
  :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"}`
@@ -134,55 +157,73 @@ class ConnectionArgs:
134
157
  :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'
135
158
  :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'
136
159
  :param pulumi.Input[str] jndi_security_credentials: (Updatable) The password associated to the principal.
160
+ :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.
137
161
  :param pulumi.Input[str] jndi_security_principal: (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
138
162
  :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.
139
163
  :param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file.
140
164
  :param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password.
165
+ :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
+ :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.
141
167
  :param pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]] locks: Locks associated with this resource.
142
168
  :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.
143
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.
170
+ :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.
144
171
  :param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
145
172
  :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.
146
173
 
147
174
  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.
148
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
176
+ :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.
149
177
  :param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
178
+ :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.
150
179
  :param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
151
180
  :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
152
181
  :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.
153
182
  :param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
154
183
  :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.
155
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
185
+ :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.
156
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"
187
+ :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.
157
188
  :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.
158
189
  :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"`
159
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.
191
+ :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.
160
192
  :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.
161
193
  :param pulumi.Input[bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
162
194
  :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.
163
195
  :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.
164
196
  :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).
165
197
  :param pulumi.Input[str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
198
+ :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.
166
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.
200
+ :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.
167
201
  :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.
168
- :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).
202
+ :param pulumi.Input[str] ssl_key: (Updatable) Client Key – The base64 encoded content of a .pem or .crt filecontaining the client private key (for 2-way SSL).
169
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.
204
+ :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
+ :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
+ * 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.
170
207
  :param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
171
208
  :param pulumi.Input[str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
172
209
  :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.
173
210
  :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.
174
211
  :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.
212
+ :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
+
214
+
215
+ ** IMPORTANT **
216
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
175
217
  :param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file.
176
218
  :param pulumi.Input[str] trust_store_password: (Updatable) The TrustStore password.
219
+ :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
+ :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.
177
221
  :param pulumi.Input[str] url: (Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
178
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.
179
223
  :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.
180
224
  :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.
181
- :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.
182
-
183
-
184
- ** IMPORTANT **
185
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
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.
226
+ :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.
186
227
  """
187
228
  pulumi.set(__self__, "compartment_id", compartment_id)
188
229
  pulumi.set(__self__, "connection_type", connection_type)
@@ -192,6 +233,8 @@ class ConnectionArgs:
192
233
  pulumi.set(__self__, "access_key_id", access_key_id)
193
234
  if account_key is not None:
194
235
  pulumi.set(__self__, "account_key", account_key)
236
+ if account_key_secret_id is not None:
237
+ pulumi.set(__self__, "account_key_secret_id", account_key_secret_id)
195
238
  if account_name is not None:
196
239
  pulumi.set(__self__, "account_name", account_name)
197
240
  if additional_attributes is not None:
@@ -208,6 +251,8 @@ class ConnectionArgs:
208
251
  pulumi.set(__self__, "client_id", client_id)
209
252
  if client_secret is not None:
210
253
  pulumi.set(__self__, "client_secret", client_secret)
254
+ if client_secret_secret_id is not None:
255
+ pulumi.set(__self__, "client_secret_secret_id", client_secret_secret_id)
211
256
  if connection_factory is not None:
212
257
  pulumi.set(__self__, "connection_factory", connection_factory)
213
258
  if connection_string is not None:
@@ -230,6 +275,8 @@ class ConnectionArgs:
230
275
  pulumi.set(__self__, "deployment_id", deployment_id)
231
276
  if description is not None:
232
277
  pulumi.set(__self__, "description", description)
278
+ if does_use_secret_ids is not None:
279
+ pulumi.set(__self__, "does_use_secret_ids", does_use_secret_ids)
233
280
  if endpoint is not None:
234
281
  pulumi.set(__self__, "endpoint", endpoint)
235
282
  if fingerprint is not None:
@@ -248,6 +295,8 @@ class ConnectionArgs:
248
295
  pulumi.set(__self__, "jndi_provider_url", jndi_provider_url)
249
296
  if jndi_security_credentials is not None:
250
297
  pulumi.set(__self__, "jndi_security_credentials", jndi_security_credentials)
298
+ if jndi_security_credentials_secret_id is not None:
299
+ pulumi.set(__self__, "jndi_security_credentials_secret_id", jndi_security_credentials_secret_id)
251
300
  if jndi_security_principal is not None:
252
301
  pulumi.set(__self__, "jndi_security_principal", jndi_security_principal)
253
302
  if key_id is not None:
@@ -256,20 +305,30 @@ class ConnectionArgs:
256
305
  pulumi.set(__self__, "key_store", key_store)
257
306
  if key_store_password is not None:
258
307
  pulumi.set(__self__, "key_store_password", key_store_password)
308
+ if key_store_password_secret_id is not None:
309
+ pulumi.set(__self__, "key_store_password_secret_id", key_store_password_secret_id)
310
+ if key_store_secret_id is not None:
311
+ pulumi.set(__self__, "key_store_secret_id", key_store_secret_id)
259
312
  if locks is not None:
260
313
  pulumi.set(__self__, "locks", locks)
261
314
  if nsg_ids is not None:
262
315
  pulumi.set(__self__, "nsg_ids", nsg_ids)
263
316
  if password is not None:
264
317
  pulumi.set(__self__, "password", password)
318
+ if password_secret_id is not None:
319
+ pulumi.set(__self__, "password_secret_id", password_secret_id)
265
320
  if port is not None:
266
321
  pulumi.set(__self__, "port", port)
267
322
  if private_ip is not None:
268
323
  pulumi.set(__self__, "private_ip", private_ip)
269
324
  if private_key_file is not None:
270
325
  pulumi.set(__self__, "private_key_file", private_key_file)
326
+ if private_key_file_secret_id is not None:
327
+ pulumi.set(__self__, "private_key_file_secret_id", private_key_file_secret_id)
271
328
  if private_key_passphrase is not None:
272
329
  pulumi.set(__self__, "private_key_passphrase", private_key_passphrase)
330
+ if private_key_passphrase_secret_id is not None:
331
+ pulumi.set(__self__, "private_key_passphrase_secret_id", private_key_passphrase_secret_id)
273
332
  if producer_properties is not None:
274
333
  pulumi.set(__self__, "producer_properties", producer_properties)
275
334
  if public_key_fingerprint is not None:
@@ -282,14 +341,20 @@ class ConnectionArgs:
282
341
  pulumi.set(__self__, "routing_method", routing_method)
283
342
  if sas_token is not None:
284
343
  pulumi.set(__self__, "sas_token", sas_token)
344
+ if sas_token_secret_id is not None:
345
+ pulumi.set(__self__, "sas_token_secret_id", sas_token_secret_id)
285
346
  if secret_access_key is not None:
286
347
  pulumi.set(__self__, "secret_access_key", secret_access_key)
348
+ if secret_access_key_secret_id is not None:
349
+ pulumi.set(__self__, "secret_access_key_secret_id", secret_access_key_secret_id)
287
350
  if security_protocol is not None:
288
351
  pulumi.set(__self__, "security_protocol", security_protocol)
289
352
  if servers is not None:
290
353
  pulumi.set(__self__, "servers", servers)
291
354
  if service_account_key_file is not None:
292
355
  pulumi.set(__self__, "service_account_key_file", service_account_key_file)
356
+ if service_account_key_file_secret_id is not None:
357
+ pulumi.set(__self__, "service_account_key_file_secret_id", service_account_key_file_secret_id)
293
358
  if session_mode is not None:
294
359
  pulumi.set(__self__, "session_mode", session_mode)
295
360
  if should_use_jndi is not None:
@@ -302,14 +367,22 @@ class ConnectionArgs:
302
367
  pulumi.set(__self__, "ssl_cert", ssl_cert)
303
368
  if ssl_client_keystash is not None:
304
369
  pulumi.set(__self__, "ssl_client_keystash", ssl_client_keystash)
370
+ if ssl_client_keystash_secret_id is not None:
371
+ pulumi.set(__self__, "ssl_client_keystash_secret_id", ssl_client_keystash_secret_id)
305
372
  if ssl_client_keystoredb is not None:
306
373
  pulumi.set(__self__, "ssl_client_keystoredb", ssl_client_keystoredb)
374
+ if ssl_client_keystoredb_secret_id is not None:
375
+ pulumi.set(__self__, "ssl_client_keystoredb_secret_id", ssl_client_keystoredb_secret_id)
307
376
  if ssl_crl is not None:
308
377
  pulumi.set(__self__, "ssl_crl", ssl_crl)
309
378
  if ssl_key is not None:
310
379
  pulumi.set(__self__, "ssl_key", ssl_key)
311
380
  if ssl_key_password is not None:
312
381
  pulumi.set(__self__, "ssl_key_password", ssl_key_password)
382
+ if ssl_key_password_secret_id is not None:
383
+ pulumi.set(__self__, "ssl_key_password_secret_id", ssl_key_password_secret_id)
384
+ if ssl_key_secret_id is not None:
385
+ pulumi.set(__self__, "ssl_key_secret_id", ssl_key_secret_id)
313
386
  if ssl_mode is not None:
314
387
  pulumi.set(__self__, "ssl_mode", ssl_mode)
315
388
  if ssl_server_certificate is not None:
@@ -320,10 +393,16 @@ class ConnectionArgs:
320
393
  pulumi.set(__self__, "subnet_id", subnet_id)
321
394
  if tenancy_id is not None:
322
395
  pulumi.set(__self__, "tenancy_id", tenancy_id)
396
+ if trigger_refresh is not None:
397
+ pulumi.set(__self__, "trigger_refresh", trigger_refresh)
323
398
  if trust_store is not None:
324
399
  pulumi.set(__self__, "trust_store", trust_store)
325
400
  if trust_store_password is not None:
326
401
  pulumi.set(__self__, "trust_store_password", trust_store_password)
402
+ if trust_store_password_secret_id is not None:
403
+ pulumi.set(__self__, "trust_store_password_secret_id", trust_store_password_secret_id)
404
+ if trust_store_secret_id is not None:
405
+ pulumi.set(__self__, "trust_store_secret_id", trust_store_secret_id)
327
406
  if url is not None:
328
407
  pulumi.set(__self__, "url", url)
329
408
  if user_id is not None:
@@ -334,6 +413,8 @@ class ConnectionArgs:
334
413
  pulumi.set(__self__, "vault_id", vault_id)
335
414
  if wallet is not None:
336
415
  pulumi.set(__self__, "wallet", wallet)
416
+ if wallet_secret_id is not None:
417
+ pulumi.set(__self__, "wallet_secret_id", wallet_secret_id)
337
418
 
338
419
  @property
339
420
  @pulumi.getter(name="compartmentId")
@@ -407,6 +488,18 @@ class ConnectionArgs:
407
488
  def account_key(self, value: Optional[pulumi.Input[str]]):
408
489
  pulumi.set(self, "account_key", value)
409
490
 
491
+ @property
492
+ @pulumi.getter(name="accountKeySecretId")
493
+ def account_key_secret_id(self) -> Optional[pulumi.Input[str]]:
494
+ """
495
+ (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.
496
+ """
497
+ return pulumi.get(self, "account_key_secret_id")
498
+
499
+ @account_key_secret_id.setter
500
+ def account_key_secret_id(self, value: Optional[pulumi.Input[str]]):
501
+ pulumi.set(self, "account_key_secret_id", value)
502
+
410
503
  @property
411
504
  @pulumi.getter(name="accountName")
412
505
  def account_name(self) -> Optional[pulumi.Input[str]]:
@@ -503,6 +596,18 @@ class ConnectionArgs:
503
596
  def client_secret(self, value: Optional[pulumi.Input[str]]):
504
597
  pulumi.set(self, "client_secret", value)
505
598
 
599
+ @property
600
+ @pulumi.getter(name="clientSecretSecretId")
601
+ def client_secret_secret_id(self) -> Optional[pulumi.Input[str]]:
602
+ """
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.
604
+ """
605
+ return pulumi.get(self, "client_secret_secret_id")
606
+
607
+ @client_secret_secret_id.setter
608
+ def client_secret_secret_id(self, value: Optional[pulumi.Input[str]]):
609
+ pulumi.set(self, "client_secret_secret_id", value)
610
+
506
611
  @property
507
612
  @pulumi.getter(name="connectionFactory")
508
613
  def connection_factory(self) -> Optional[pulumi.Input[str]]:
@@ -635,6 +740,18 @@ class ConnectionArgs:
635
740
  def description(self, value: Optional[pulumi.Input[str]]):
636
741
  pulumi.set(self, "description", value)
637
742
 
743
+ @property
744
+ @pulumi.getter(name="doesUseSecretIds")
745
+ def does_use_secret_ids(self) -> Optional[pulumi.Input[bool]]:
746
+ """
747
+ (Updatable) Indicates that sensitive attributes are provided via Secrets.
748
+ """
749
+ return pulumi.get(self, "does_use_secret_ids")
750
+
751
+ @does_use_secret_ids.setter
752
+ def does_use_secret_ids(self, value: Optional[pulumi.Input[bool]]):
753
+ pulumi.set(self, "does_use_secret_ids", value)
754
+
638
755
  @property
639
756
  @pulumi.getter
640
757
  def endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -741,6 +858,18 @@ class ConnectionArgs:
741
858
  def jndi_security_credentials(self, value: Optional[pulumi.Input[str]]):
742
859
  pulumi.set(self, "jndi_security_credentials", value)
743
860
 
861
+ @property
862
+ @pulumi.getter(name="jndiSecurityCredentialsSecretId")
863
+ def jndi_security_credentials_secret_id(self) -> Optional[pulumi.Input[str]]:
864
+ """
865
+ (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.
866
+ """
867
+ return pulumi.get(self, "jndi_security_credentials_secret_id")
868
+
869
+ @jndi_security_credentials_secret_id.setter
870
+ def jndi_security_credentials_secret_id(self, value: Optional[pulumi.Input[str]]):
871
+ pulumi.set(self, "jndi_security_credentials_secret_id", value)
872
+
744
873
  @property
745
874
  @pulumi.getter(name="jndiSecurityPrincipal")
746
875
  def jndi_security_principal(self) -> Optional[pulumi.Input[str]]:
@@ -789,6 +918,30 @@ class ConnectionArgs:
789
918
  def key_store_password(self, value: Optional[pulumi.Input[str]]):
790
919
  pulumi.set(self, "key_store_password", value)
791
920
 
921
+ @property
922
+ @pulumi.getter(name="keyStorePasswordSecretId")
923
+ def key_store_password_secret_id(self) -> Optional[pulumi.Input[str]]:
924
+ """
925
+ (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.
926
+ """
927
+ return pulumi.get(self, "key_store_password_secret_id")
928
+
929
+ @key_store_password_secret_id.setter
930
+ def key_store_password_secret_id(self, value: Optional[pulumi.Input[str]]):
931
+ pulumi.set(self, "key_store_password_secret_id", value)
932
+
933
+ @property
934
+ @pulumi.getter(name="keyStoreSecretId")
935
+ def key_store_secret_id(self) -> Optional[pulumi.Input[str]]:
936
+ """
937
+ (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.
938
+ """
939
+ return pulumi.get(self, "key_store_secret_id")
940
+
941
+ @key_store_secret_id.setter
942
+ def key_store_secret_id(self, value: Optional[pulumi.Input[str]]):
943
+ pulumi.set(self, "key_store_secret_id", value)
944
+
792
945
  @property
793
946
  @pulumi.getter
794
947
  def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]]]:
@@ -825,6 +978,18 @@ class ConnectionArgs:
825
978
  def password(self, value: Optional[pulumi.Input[str]]):
826
979
  pulumi.set(self, "password", value)
827
980
 
981
+ @property
982
+ @pulumi.getter(name="passwordSecretId")
983
+ def password_secret_id(self) -> Optional[pulumi.Input[str]]:
984
+ """
985
+ (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.
986
+ """
987
+ return pulumi.get(self, "password_secret_id")
988
+
989
+ @password_secret_id.setter
990
+ def password_secret_id(self, value: Optional[pulumi.Input[str]]):
991
+ pulumi.set(self, "password_secret_id", value)
992
+
828
993
  @property
829
994
  @pulumi.getter
830
995
  def port(self) -> Optional[pulumi.Input[int]]:
@@ -863,6 +1028,18 @@ class ConnectionArgs:
863
1028
  def private_key_file(self, value: Optional[pulumi.Input[str]]):
864
1029
  pulumi.set(self, "private_key_file", value)
865
1030
 
1031
+ @property
1032
+ @pulumi.getter(name="privateKeyFileSecretId")
1033
+ def private_key_file_secret_id(self) -> Optional[pulumi.Input[str]]:
1034
+ """
1035
+ (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.
1036
+ """
1037
+ return pulumi.get(self, "private_key_file_secret_id")
1038
+
1039
+ @private_key_file_secret_id.setter
1040
+ def private_key_file_secret_id(self, value: Optional[pulumi.Input[str]]):
1041
+ pulumi.set(self, "private_key_file_secret_id", value)
1042
+
866
1043
  @property
867
1044
  @pulumi.getter(name="privateKeyPassphrase")
868
1045
  def private_key_passphrase(self) -> Optional[pulumi.Input[str]]:
@@ -875,6 +1052,18 @@ class ConnectionArgs:
875
1052
  def private_key_passphrase(self, value: Optional[pulumi.Input[str]]):
876
1053
  pulumi.set(self, "private_key_passphrase", value)
877
1054
 
1055
+ @property
1056
+ @pulumi.getter(name="privateKeyPassphraseSecretId")
1057
+ def private_key_passphrase_secret_id(self) -> Optional[pulumi.Input[str]]:
1058
+ """
1059
+ (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.
1060
+ """
1061
+ return pulumi.get(self, "private_key_passphrase_secret_id")
1062
+
1063
+ @private_key_passphrase_secret_id.setter
1064
+ def private_key_passphrase_secret_id(self, value: Optional[pulumi.Input[str]]):
1065
+ pulumi.set(self, "private_key_passphrase_secret_id", value)
1066
+
878
1067
  @property
879
1068
  @pulumi.getter(name="producerProperties")
880
1069
  def producer_properties(self) -> Optional[pulumi.Input[str]]:
@@ -947,6 +1136,18 @@ class ConnectionArgs:
947
1136
  def sas_token(self, value: Optional[pulumi.Input[str]]):
948
1137
  pulumi.set(self, "sas_token", value)
949
1138
 
1139
+ @property
1140
+ @pulumi.getter(name="sasTokenSecretId")
1141
+ def sas_token_secret_id(self) -> Optional[pulumi.Input[str]]:
1142
+ """
1143
+ (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.
1144
+ """
1145
+ return pulumi.get(self, "sas_token_secret_id")
1146
+
1147
+ @sas_token_secret_id.setter
1148
+ def sas_token_secret_id(self, value: Optional[pulumi.Input[str]]):
1149
+ pulumi.set(self, "sas_token_secret_id", value)
1150
+
950
1151
  @property
951
1152
  @pulumi.getter(name="secretAccessKey")
952
1153
  def secret_access_key(self) -> Optional[pulumi.Input[str]]:
@@ -959,6 +1160,18 @@ class ConnectionArgs:
959
1160
  def secret_access_key(self, value: Optional[pulumi.Input[str]]):
960
1161
  pulumi.set(self, "secret_access_key", value)
961
1162
 
1163
+ @property
1164
+ @pulumi.getter(name="secretAccessKeySecretId")
1165
+ def secret_access_key_secret_id(self) -> Optional[pulumi.Input[str]]:
1166
+ """
1167
+ (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.
1168
+ """
1169
+ return pulumi.get(self, "secret_access_key_secret_id")
1170
+
1171
+ @secret_access_key_secret_id.setter
1172
+ def secret_access_key_secret_id(self, value: Optional[pulumi.Input[str]]):
1173
+ pulumi.set(self, "secret_access_key_secret_id", value)
1174
+
962
1175
  @property
963
1176
  @pulumi.getter(name="securityProtocol")
964
1177
  def security_protocol(self) -> Optional[pulumi.Input[str]]:
@@ -995,6 +1208,18 @@ class ConnectionArgs:
995
1208
  def service_account_key_file(self, value: Optional[pulumi.Input[str]]):
996
1209
  pulumi.set(self, "service_account_key_file", value)
997
1210
 
1211
+ @property
1212
+ @pulumi.getter(name="serviceAccountKeyFileSecretId")
1213
+ def service_account_key_file_secret_id(self) -> Optional[pulumi.Input[str]]:
1214
+ """
1215
+ (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.
1216
+ """
1217
+ return pulumi.get(self, "service_account_key_file_secret_id")
1218
+
1219
+ @service_account_key_file_secret_id.setter
1220
+ def service_account_key_file_secret_id(self, value: Optional[pulumi.Input[str]]):
1221
+ pulumi.set(self, "service_account_key_file_secret_id", value)
1222
+
998
1223
  @property
999
1224
  @pulumi.getter(name="sessionMode")
1000
1225
  def session_mode(self) -> Optional[pulumi.Input[str]]:
@@ -1067,6 +1292,18 @@ class ConnectionArgs:
1067
1292
  def ssl_client_keystash(self, value: Optional[pulumi.Input[str]]):
1068
1293
  pulumi.set(self, "ssl_client_keystash", value)
1069
1294
 
1295
+ @property
1296
+ @pulumi.getter(name="sslClientKeystashSecretId")
1297
+ def ssl_client_keystash_secret_id(self) -> Optional[pulumi.Input[str]]:
1298
+ """
1299
+ (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.
1300
+ """
1301
+ return pulumi.get(self, "ssl_client_keystash_secret_id")
1302
+
1303
+ @ssl_client_keystash_secret_id.setter
1304
+ def ssl_client_keystash_secret_id(self, value: Optional[pulumi.Input[str]]):
1305
+ pulumi.set(self, "ssl_client_keystash_secret_id", value)
1306
+
1070
1307
  @property
1071
1308
  @pulumi.getter(name="sslClientKeystoredb")
1072
1309
  def ssl_client_keystoredb(self) -> Optional[pulumi.Input[str]]:
@@ -1079,6 +1316,18 @@ class ConnectionArgs:
1079
1316
  def ssl_client_keystoredb(self, value: Optional[pulumi.Input[str]]):
1080
1317
  pulumi.set(self, "ssl_client_keystoredb", value)
1081
1318
 
1319
+ @property
1320
+ @pulumi.getter(name="sslClientKeystoredbSecretId")
1321
+ def ssl_client_keystoredb_secret_id(self) -> Optional[pulumi.Input[str]]:
1322
+ """
1323
+ (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.
1324
+ """
1325
+ return pulumi.get(self, "ssl_client_keystoredb_secret_id")
1326
+
1327
+ @ssl_client_keystoredb_secret_id.setter
1328
+ def ssl_client_keystoredb_secret_id(self, value: Optional[pulumi.Input[str]]):
1329
+ pulumi.set(self, "ssl_client_keystoredb_secret_id", value)
1330
+
1082
1331
  @property
1083
1332
  @pulumi.getter(name="sslCrl")
1084
1333
  def ssl_crl(self) -> Optional[pulumi.Input[str]]:
@@ -1095,7 +1344,7 @@ class ConnectionArgs:
1095
1344
  @pulumi.getter(name="sslKey")
1096
1345
  def ssl_key(self) -> Optional[pulumi.Input[str]]:
1097
1346
  """
1098
- (Updatable) Client Key – The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).
1347
+ (Updatable) Client Key – The base64 encoded content of a .pem or .crt filecontaining the client private key (for 2-way SSL).
1099
1348
  """
1100
1349
  return pulumi.get(self, "ssl_key")
1101
1350
 
@@ -1115,6 +1364,31 @@ class ConnectionArgs:
1115
1364
  def ssl_key_password(self, value: Optional[pulumi.Input[str]]):
1116
1365
  pulumi.set(self, "ssl_key_password", value)
1117
1366
 
1367
+ @property
1368
+ @pulumi.getter(name="sslKeyPasswordSecretId")
1369
+ def ssl_key_password_secret_id(self) -> Optional[pulumi.Input[str]]:
1370
+ """
1371
+ (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.
1372
+ """
1373
+ return pulumi.get(self, "ssl_key_password_secret_id")
1374
+
1375
+ @ssl_key_password_secret_id.setter
1376
+ def ssl_key_password_secret_id(self, value: Optional[pulumi.Input[str]]):
1377
+ pulumi.set(self, "ssl_key_password_secret_id", value)
1378
+
1379
+ @property
1380
+ @pulumi.getter(name="sslKeySecretId")
1381
+ def ssl_key_secret_id(self) -> Optional[pulumi.Input[str]]:
1382
+ """
1383
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
1384
+ * 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.
1385
+ """
1386
+ return pulumi.get(self, "ssl_key_secret_id")
1387
+
1388
+ @ssl_key_secret_id.setter
1389
+ def ssl_key_secret_id(self, value: Optional[pulumi.Input[str]]):
1390
+ pulumi.set(self, "ssl_key_secret_id", value)
1391
+
1118
1392
  @property
1119
1393
  @pulumi.getter(name="sslMode")
1120
1394
  def ssl_mode(self) -> Optional[pulumi.Input[str]]:
@@ -1175,6 +1449,22 @@ class ConnectionArgs:
1175
1449
  def tenancy_id(self, value: Optional[pulumi.Input[str]]):
1176
1450
  pulumi.set(self, "tenancy_id", value)
1177
1451
 
1452
+ @property
1453
+ @pulumi.getter(name="triggerRefresh")
1454
+ def trigger_refresh(self) -> Optional[pulumi.Input[bool]]:
1455
+ """
1456
+ (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..).
1457
+
1458
+
1459
+ ** IMPORTANT **
1460
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1461
+ """
1462
+ return pulumi.get(self, "trigger_refresh")
1463
+
1464
+ @trigger_refresh.setter
1465
+ def trigger_refresh(self, value: Optional[pulumi.Input[bool]]):
1466
+ pulumi.set(self, "trigger_refresh", value)
1467
+
1178
1468
  @property
1179
1469
  @pulumi.getter(name="trustStore")
1180
1470
  def trust_store(self) -> Optional[pulumi.Input[str]]:
@@ -1199,6 +1489,30 @@ class ConnectionArgs:
1199
1489
  def trust_store_password(self, value: Optional[pulumi.Input[str]]):
1200
1490
  pulumi.set(self, "trust_store_password", value)
1201
1491
 
1492
+ @property
1493
+ @pulumi.getter(name="trustStorePasswordSecretId")
1494
+ def trust_store_password_secret_id(self) -> Optional[pulumi.Input[str]]:
1495
+ """
1496
+ (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.
1497
+ """
1498
+ return pulumi.get(self, "trust_store_password_secret_id")
1499
+
1500
+ @trust_store_password_secret_id.setter
1501
+ def trust_store_password_secret_id(self, value: Optional[pulumi.Input[str]]):
1502
+ pulumi.set(self, "trust_store_password_secret_id", value)
1503
+
1504
+ @property
1505
+ @pulumi.getter(name="trustStoreSecretId")
1506
+ def trust_store_secret_id(self) -> Optional[pulumi.Input[str]]:
1507
+ """
1508
+ (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.
1509
+ """
1510
+ return pulumi.get(self, "trust_store_secret_id")
1511
+
1512
+ @trust_store_secret_id.setter
1513
+ def trust_store_secret_id(self, value: Optional[pulumi.Input[str]]):
1514
+ pulumi.set(self, "trust_store_secret_id", value)
1515
+
1202
1516
  @property
1203
1517
  @pulumi.getter
1204
1518
  def url(self) -> Optional[pulumi.Input[str]]:
@@ -1251,11 +1565,7 @@ class ConnectionArgs:
1251
1565
  @pulumi.getter
1252
1566
  def wallet(self) -> Optional[pulumi.Input[str]]:
1253
1567
  """
1254
- (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
1255
-
1256
-
1257
- ** IMPORTANT **
1258
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1568
+ (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
1259
1569
  """
1260
1570
  return pulumi.get(self, "wallet")
1261
1571
 
@@ -1263,12 +1573,25 @@ class ConnectionArgs:
1263
1573
  def wallet(self, value: Optional[pulumi.Input[str]]):
1264
1574
  pulumi.set(self, "wallet", value)
1265
1575
 
1576
+ @property
1577
+ @pulumi.getter(name="walletSecretId")
1578
+ def wallet_secret_id(self) -> Optional[pulumi.Input[str]]:
1579
+ """
1580
+ (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.
1581
+ """
1582
+ return pulumi.get(self, "wallet_secret_id")
1583
+
1584
+ @wallet_secret_id.setter
1585
+ def wallet_secret_id(self, value: Optional[pulumi.Input[str]]):
1586
+ pulumi.set(self, "wallet_secret_id", value)
1587
+
1266
1588
 
1267
1589
  @pulumi.input_type
1268
1590
  class _ConnectionState:
1269
1591
  def __init__(__self__, *,
1270
1592
  access_key_id: Optional[pulumi.Input[str]] = None,
1271
1593
  account_key: Optional[pulumi.Input[str]] = None,
1594
+ account_key_secret_id: Optional[pulumi.Input[str]] = None,
1272
1595
  account_name: Optional[pulumi.Input[str]] = None,
1273
1596
  additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionAdditionalAttributeArgs']]]] = None,
1274
1597
  authentication_mode: Optional[pulumi.Input[str]] = None,
@@ -1277,6 +1600,7 @@ class _ConnectionState:
1277
1600
  bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]]] = None,
1278
1601
  client_id: Optional[pulumi.Input[str]] = None,
1279
1602
  client_secret: Optional[pulumi.Input[str]] = None,
1603
+ client_secret_secret_id: Optional[pulumi.Input[str]] = None,
1280
1604
  compartment_id: Optional[pulumi.Input[str]] = None,
1281
1605
  connection_factory: Optional[pulumi.Input[str]] = None,
1282
1606
  connection_string: Optional[pulumi.Input[str]] = None,
@@ -1291,6 +1615,7 @@ class _ConnectionState:
1291
1615
  deployment_id: Optional[pulumi.Input[str]] = None,
1292
1616
  description: Optional[pulumi.Input[str]] = None,
1293
1617
  display_name: Optional[pulumi.Input[str]] = None,
1618
+ does_use_secret_ids: Optional[pulumi.Input[bool]] = None,
1294
1619
  endpoint: Optional[pulumi.Input[str]] = None,
1295
1620
  fingerprint: Optional[pulumi.Input[str]] = None,
1296
1621
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -1301,38 +1626,51 @@ class _ConnectionState:
1301
1626
  jndi_initial_context_factory: Optional[pulumi.Input[str]] = None,
1302
1627
  jndi_provider_url: Optional[pulumi.Input[str]] = None,
1303
1628
  jndi_security_credentials: Optional[pulumi.Input[str]] = None,
1629
+ jndi_security_credentials_secret_id: Optional[pulumi.Input[str]] = None,
1304
1630
  jndi_security_principal: Optional[pulumi.Input[str]] = None,
1305
1631
  key_id: Optional[pulumi.Input[str]] = None,
1306
1632
  key_store: Optional[pulumi.Input[str]] = None,
1307
1633
  key_store_password: Optional[pulumi.Input[str]] = None,
1634
+ key_store_password_secret_id: Optional[pulumi.Input[str]] = None,
1635
+ key_store_secret_id: Optional[pulumi.Input[str]] = None,
1308
1636
  lifecycle_details: Optional[pulumi.Input[str]] = None,
1309
1637
  locks: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]]] = None,
1310
1638
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1311
1639
  password: Optional[pulumi.Input[str]] = None,
1640
+ password_secret_id: Optional[pulumi.Input[str]] = None,
1312
1641
  port: Optional[pulumi.Input[int]] = None,
1313
1642
  private_ip: Optional[pulumi.Input[str]] = None,
1314
1643
  private_key_file: Optional[pulumi.Input[str]] = None,
1644
+ private_key_file_secret_id: Optional[pulumi.Input[str]] = None,
1315
1645
  private_key_passphrase: Optional[pulumi.Input[str]] = None,
1646
+ private_key_passphrase_secret_id: Optional[pulumi.Input[str]] = None,
1316
1647
  producer_properties: Optional[pulumi.Input[str]] = None,
1317
1648
  public_key_fingerprint: Optional[pulumi.Input[str]] = None,
1318
1649
  redis_cluster_id: Optional[pulumi.Input[str]] = None,
1319
1650
  region: Optional[pulumi.Input[str]] = None,
1320
1651
  routing_method: Optional[pulumi.Input[str]] = None,
1321
1652
  sas_token: Optional[pulumi.Input[str]] = None,
1653
+ sas_token_secret_id: Optional[pulumi.Input[str]] = None,
1322
1654
  secret_access_key: Optional[pulumi.Input[str]] = None,
1655
+ secret_access_key_secret_id: Optional[pulumi.Input[str]] = None,
1323
1656
  security_protocol: Optional[pulumi.Input[str]] = None,
1324
1657
  servers: Optional[pulumi.Input[str]] = None,
1325
1658
  service_account_key_file: Optional[pulumi.Input[str]] = None,
1659
+ service_account_key_file_secret_id: Optional[pulumi.Input[str]] = None,
1326
1660
  session_mode: Optional[pulumi.Input[str]] = None,
1327
1661
  should_use_jndi: Optional[pulumi.Input[bool]] = None,
1328
1662
  should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
1329
1663
  ssl_ca: Optional[pulumi.Input[str]] = None,
1330
1664
  ssl_cert: Optional[pulumi.Input[str]] = None,
1331
1665
  ssl_client_keystash: Optional[pulumi.Input[str]] = None,
1666
+ ssl_client_keystash_secret_id: Optional[pulumi.Input[str]] = None,
1332
1667
  ssl_client_keystoredb: Optional[pulumi.Input[str]] = None,
1668
+ ssl_client_keystoredb_secret_id: Optional[pulumi.Input[str]] = None,
1333
1669
  ssl_crl: Optional[pulumi.Input[str]] = None,
1334
1670
  ssl_key: Optional[pulumi.Input[str]] = None,
1335
1671
  ssl_key_password: Optional[pulumi.Input[str]] = None,
1672
+ ssl_key_password_secret_id: Optional[pulumi.Input[str]] = None,
1673
+ ssl_key_secret_id: Optional[pulumi.Input[str]] = None,
1336
1674
  ssl_mode: Optional[pulumi.Input[str]] = None,
1337
1675
  ssl_server_certificate: Optional[pulumi.Input[str]] = None,
1338
1676
  state: Optional[pulumi.Input[str]] = None,
@@ -1343,17 +1681,22 @@ class _ConnectionState:
1343
1681
  tenancy_id: Optional[pulumi.Input[str]] = None,
1344
1682
  time_created: Optional[pulumi.Input[str]] = None,
1345
1683
  time_updated: Optional[pulumi.Input[str]] = None,
1684
+ trigger_refresh: Optional[pulumi.Input[bool]] = None,
1346
1685
  trust_store: Optional[pulumi.Input[str]] = None,
1347
1686
  trust_store_password: Optional[pulumi.Input[str]] = None,
1687
+ trust_store_password_secret_id: Optional[pulumi.Input[str]] = None,
1688
+ trust_store_secret_id: Optional[pulumi.Input[str]] = None,
1348
1689
  url: Optional[pulumi.Input[str]] = None,
1349
1690
  user_id: Optional[pulumi.Input[str]] = None,
1350
1691
  username: Optional[pulumi.Input[str]] = None,
1351
1692
  vault_id: Optional[pulumi.Input[str]] = None,
1352
- wallet: Optional[pulumi.Input[str]] = None):
1693
+ wallet: Optional[pulumi.Input[str]] = None,
1694
+ wallet_secret_id: Optional[pulumi.Input[str]] = None):
1353
1695
  """
1354
1696
  Input properties used for looking up and filtering Connection resources.
1355
1697
  :param pulumi.Input[str] access_key_id: (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
1356
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==
1699
+ :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.
1357
1700
  :param pulumi.Input[str] account_name: (Updatable) Sets the Azure storage account name.
1358
1701
  :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.
1359
1702
  :param pulumi.Input[str] authentication_mode: (Updatable) Authentication mode. It can be provided at creation of Oracle Autonomous Database Serverless connections, when a databaseId is provided. The default value is MTLS.
@@ -1362,6 +1705,7 @@ class _ConnectionState:
1362
1705
  :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"`
1363
1706
  :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
1364
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.
1365
1709
  :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.
1366
1710
  :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'
1367
1711
  :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'.
@@ -1376,6 +1720,7 @@ class _ConnectionState:
1376
1720
  :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.
1377
1721
  :param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
1378
1722
  :param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
1723
+ :param pulumi.Input[bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
1379
1724
  :param pulumi.Input[str] endpoint: (Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
1380
1725
  :param pulumi.Input[str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
1381
1726
  :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"}`
@@ -1386,40 +1731,54 @@ class _ConnectionState:
1386
1731
  :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'
1387
1732
  :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'
1388
1733
  :param pulumi.Input[str] jndi_security_credentials: (Updatable) The password associated to the principal.
1734
+ :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.
1389
1735
  :param pulumi.Input[str] jndi_security_principal: (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
1390
1736
  :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.
1391
1737
  :param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file.
1392
1738
  :param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password.
1739
+ :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
+ :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.
1393
1741
  :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.
1394
1742
  :param pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]] locks: Locks associated with this resource.
1395
1743
  :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.
1396
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.
1745
+ :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.
1397
1746
  :param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
1398
1747
  :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.
1399
1748
 
1400
1749
  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.
1401
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
1751
+ :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.
1402
1752
  :param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
1753
+ :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.
1403
1754
  :param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
1404
1755
  :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
1405
1756
  :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.
1406
1757
  :param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
1407
1758
  :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.
1408
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
1760
+ :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.
1409
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"
1762
+ :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.
1410
1763
  :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.
1411
1764
  :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"`
1412
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.
1766
+ :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.
1413
1767
  :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.
1414
1768
  :param pulumi.Input[bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
1415
1769
  :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.
1416
1770
  :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.
1417
1771
  :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).
1418
1772
  :param pulumi.Input[str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
1773
+ :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.
1419
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.
1775
+ :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.
1420
1776
  :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.
1421
- :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).
1777
+ :param pulumi.Input[str] ssl_key: (Updatable) Client Key – The base64 encoded content of a .pem or .crt filecontaining the client private key (for 2-way SSL).
1422
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.
1779
+ :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
+ :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
+ * 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.
1423
1782
  :param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
1424
1783
  :param pulumi.Input[str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
1425
1784
  :param pulumi.Input[str] state: Possible lifecycle states for connection.
@@ -1430,22 +1789,28 @@ class _ConnectionState:
1430
1789
  :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.
1431
1790
  :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`.
1432
1791
  :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`.
1792
+ :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
+
1794
+
1795
+ ** IMPORTANT **
1796
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1433
1797
  :param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file.
1434
1798
  :param pulumi.Input[str] trust_store_password: (Updatable) The TrustStore password.
1799
+ :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
+ :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.
1435
1801
  :param pulumi.Input[str] url: (Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
1436
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.
1437
1803
  :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.
1438
1804
  :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.
1439
- :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.
1440
-
1441
-
1442
- ** IMPORTANT **
1443
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
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.
1806
+ :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.
1444
1807
  """
1445
1808
  if access_key_id is not None:
1446
1809
  pulumi.set(__self__, "access_key_id", access_key_id)
1447
1810
  if account_key is not None:
1448
1811
  pulumi.set(__self__, "account_key", account_key)
1812
+ if account_key_secret_id is not None:
1813
+ pulumi.set(__self__, "account_key_secret_id", account_key_secret_id)
1449
1814
  if account_name is not None:
1450
1815
  pulumi.set(__self__, "account_name", account_name)
1451
1816
  if additional_attributes is not None:
@@ -1462,6 +1827,8 @@ class _ConnectionState:
1462
1827
  pulumi.set(__self__, "client_id", client_id)
1463
1828
  if client_secret is not None:
1464
1829
  pulumi.set(__self__, "client_secret", client_secret)
1830
+ if client_secret_secret_id is not None:
1831
+ pulumi.set(__self__, "client_secret_secret_id", client_secret_secret_id)
1465
1832
  if compartment_id is not None:
1466
1833
  pulumi.set(__self__, "compartment_id", compartment_id)
1467
1834
  if connection_factory is not None:
@@ -1490,6 +1857,8 @@ class _ConnectionState:
1490
1857
  pulumi.set(__self__, "description", description)
1491
1858
  if display_name is not None:
1492
1859
  pulumi.set(__self__, "display_name", display_name)
1860
+ if does_use_secret_ids is not None:
1861
+ pulumi.set(__self__, "does_use_secret_ids", does_use_secret_ids)
1493
1862
  if endpoint is not None:
1494
1863
  pulumi.set(__self__, "endpoint", endpoint)
1495
1864
  if fingerprint is not None:
@@ -1510,6 +1879,8 @@ class _ConnectionState:
1510
1879
  pulumi.set(__self__, "jndi_provider_url", jndi_provider_url)
1511
1880
  if jndi_security_credentials is not None:
1512
1881
  pulumi.set(__self__, "jndi_security_credentials", jndi_security_credentials)
1882
+ if jndi_security_credentials_secret_id is not None:
1883
+ pulumi.set(__self__, "jndi_security_credentials_secret_id", jndi_security_credentials_secret_id)
1513
1884
  if jndi_security_principal is not None:
1514
1885
  pulumi.set(__self__, "jndi_security_principal", jndi_security_principal)
1515
1886
  if key_id is not None:
@@ -1518,6 +1889,10 @@ class _ConnectionState:
1518
1889
  pulumi.set(__self__, "key_store", key_store)
1519
1890
  if key_store_password is not None:
1520
1891
  pulumi.set(__self__, "key_store_password", key_store_password)
1892
+ if key_store_password_secret_id is not None:
1893
+ pulumi.set(__self__, "key_store_password_secret_id", key_store_password_secret_id)
1894
+ if key_store_secret_id is not None:
1895
+ pulumi.set(__self__, "key_store_secret_id", key_store_secret_id)
1521
1896
  if lifecycle_details is not None:
1522
1897
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
1523
1898
  if locks is not None:
@@ -1526,14 +1901,20 @@ class _ConnectionState:
1526
1901
  pulumi.set(__self__, "nsg_ids", nsg_ids)
1527
1902
  if password is not None:
1528
1903
  pulumi.set(__self__, "password", password)
1904
+ if password_secret_id is not None:
1905
+ pulumi.set(__self__, "password_secret_id", password_secret_id)
1529
1906
  if port is not None:
1530
1907
  pulumi.set(__self__, "port", port)
1531
1908
  if private_ip is not None:
1532
1909
  pulumi.set(__self__, "private_ip", private_ip)
1533
1910
  if private_key_file is not None:
1534
1911
  pulumi.set(__self__, "private_key_file", private_key_file)
1912
+ if private_key_file_secret_id is not None:
1913
+ pulumi.set(__self__, "private_key_file_secret_id", private_key_file_secret_id)
1535
1914
  if private_key_passphrase is not None:
1536
1915
  pulumi.set(__self__, "private_key_passphrase", private_key_passphrase)
1916
+ if private_key_passphrase_secret_id is not None:
1917
+ pulumi.set(__self__, "private_key_passphrase_secret_id", private_key_passphrase_secret_id)
1537
1918
  if producer_properties is not None:
1538
1919
  pulumi.set(__self__, "producer_properties", producer_properties)
1539
1920
  if public_key_fingerprint is not None:
@@ -1546,14 +1927,20 @@ class _ConnectionState:
1546
1927
  pulumi.set(__self__, "routing_method", routing_method)
1547
1928
  if sas_token is not None:
1548
1929
  pulumi.set(__self__, "sas_token", sas_token)
1930
+ if sas_token_secret_id is not None:
1931
+ pulumi.set(__self__, "sas_token_secret_id", sas_token_secret_id)
1549
1932
  if secret_access_key is not None:
1550
1933
  pulumi.set(__self__, "secret_access_key", secret_access_key)
1934
+ if secret_access_key_secret_id is not None:
1935
+ pulumi.set(__self__, "secret_access_key_secret_id", secret_access_key_secret_id)
1551
1936
  if security_protocol is not None:
1552
1937
  pulumi.set(__self__, "security_protocol", security_protocol)
1553
1938
  if servers is not None:
1554
1939
  pulumi.set(__self__, "servers", servers)
1555
1940
  if service_account_key_file is not None:
1556
1941
  pulumi.set(__self__, "service_account_key_file", service_account_key_file)
1942
+ if service_account_key_file_secret_id is not None:
1943
+ pulumi.set(__self__, "service_account_key_file_secret_id", service_account_key_file_secret_id)
1557
1944
  if session_mode is not None:
1558
1945
  pulumi.set(__self__, "session_mode", session_mode)
1559
1946
  if should_use_jndi is not None:
@@ -1566,14 +1953,22 @@ class _ConnectionState:
1566
1953
  pulumi.set(__self__, "ssl_cert", ssl_cert)
1567
1954
  if ssl_client_keystash is not None:
1568
1955
  pulumi.set(__self__, "ssl_client_keystash", ssl_client_keystash)
1956
+ if ssl_client_keystash_secret_id is not None:
1957
+ pulumi.set(__self__, "ssl_client_keystash_secret_id", ssl_client_keystash_secret_id)
1569
1958
  if ssl_client_keystoredb is not None:
1570
1959
  pulumi.set(__self__, "ssl_client_keystoredb", ssl_client_keystoredb)
1960
+ if ssl_client_keystoredb_secret_id is not None:
1961
+ pulumi.set(__self__, "ssl_client_keystoredb_secret_id", ssl_client_keystoredb_secret_id)
1571
1962
  if ssl_crl is not None:
1572
1963
  pulumi.set(__self__, "ssl_crl", ssl_crl)
1573
1964
  if ssl_key is not None:
1574
1965
  pulumi.set(__self__, "ssl_key", ssl_key)
1575
1966
  if ssl_key_password is not None:
1576
1967
  pulumi.set(__self__, "ssl_key_password", ssl_key_password)
1968
+ if ssl_key_password_secret_id is not None:
1969
+ pulumi.set(__self__, "ssl_key_password_secret_id", ssl_key_password_secret_id)
1970
+ if ssl_key_secret_id is not None:
1971
+ pulumi.set(__self__, "ssl_key_secret_id", ssl_key_secret_id)
1577
1972
  if ssl_mode is not None:
1578
1973
  pulumi.set(__self__, "ssl_mode", ssl_mode)
1579
1974
  if ssl_server_certificate is not None:
@@ -1594,10 +1989,16 @@ class _ConnectionState:
1594
1989
  pulumi.set(__self__, "time_created", time_created)
1595
1990
  if time_updated is not None:
1596
1991
  pulumi.set(__self__, "time_updated", time_updated)
1992
+ if trigger_refresh is not None:
1993
+ pulumi.set(__self__, "trigger_refresh", trigger_refresh)
1597
1994
  if trust_store is not None:
1598
1995
  pulumi.set(__self__, "trust_store", trust_store)
1599
1996
  if trust_store_password is not None:
1600
1997
  pulumi.set(__self__, "trust_store_password", trust_store_password)
1998
+ if trust_store_password_secret_id is not None:
1999
+ pulumi.set(__self__, "trust_store_password_secret_id", trust_store_password_secret_id)
2000
+ if trust_store_secret_id is not None:
2001
+ pulumi.set(__self__, "trust_store_secret_id", trust_store_secret_id)
1601
2002
  if url is not None:
1602
2003
  pulumi.set(__self__, "url", url)
1603
2004
  if user_id is not None:
@@ -1608,6 +2009,8 @@ class _ConnectionState:
1608
2009
  pulumi.set(__self__, "vault_id", vault_id)
1609
2010
  if wallet is not None:
1610
2011
  pulumi.set(__self__, "wallet", wallet)
2012
+ if wallet_secret_id is not None:
2013
+ pulumi.set(__self__, "wallet_secret_id", wallet_secret_id)
1611
2014
 
1612
2015
  @property
1613
2016
  @pulumi.getter(name="accessKeyId")
@@ -1633,6 +2036,18 @@ class _ConnectionState:
1633
2036
  def account_key(self, value: Optional[pulumi.Input[str]]):
1634
2037
  pulumi.set(self, "account_key", value)
1635
2038
 
2039
+ @property
2040
+ @pulumi.getter(name="accountKeySecretId")
2041
+ def account_key_secret_id(self) -> Optional[pulumi.Input[str]]:
2042
+ """
2043
+ (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.
2044
+ """
2045
+ return pulumi.get(self, "account_key_secret_id")
2046
+
2047
+ @account_key_secret_id.setter
2048
+ def account_key_secret_id(self, value: Optional[pulumi.Input[str]]):
2049
+ pulumi.set(self, "account_key_secret_id", value)
2050
+
1636
2051
  @property
1637
2052
  @pulumi.getter(name="accountName")
1638
2053
  def account_name(self) -> Optional[pulumi.Input[str]]:
@@ -1729,6 +2144,18 @@ class _ConnectionState:
1729
2144
  def client_secret(self, value: Optional[pulumi.Input[str]]):
1730
2145
  pulumi.set(self, "client_secret", value)
1731
2146
 
2147
+ @property
2148
+ @pulumi.getter(name="clientSecretSecretId")
2149
+ def client_secret_secret_id(self) -> Optional[pulumi.Input[str]]:
2150
+ """
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.
2152
+ """
2153
+ return pulumi.get(self, "client_secret_secret_id")
2154
+
2155
+ @client_secret_secret_id.setter
2156
+ def client_secret_secret_id(self, value: Optional[pulumi.Input[str]]):
2157
+ pulumi.set(self, "client_secret_secret_id", value)
2158
+
1732
2159
  @property
1733
2160
  @pulumi.getter(name="compartmentId")
1734
2161
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
@@ -1897,6 +2324,18 @@ class _ConnectionState:
1897
2324
  def display_name(self, value: Optional[pulumi.Input[str]]):
1898
2325
  pulumi.set(self, "display_name", value)
1899
2326
 
2327
+ @property
2328
+ @pulumi.getter(name="doesUseSecretIds")
2329
+ def does_use_secret_ids(self) -> Optional[pulumi.Input[bool]]:
2330
+ """
2331
+ (Updatable) Indicates that sensitive attributes are provided via Secrets.
2332
+ """
2333
+ return pulumi.get(self, "does_use_secret_ids")
2334
+
2335
+ @does_use_secret_ids.setter
2336
+ def does_use_secret_ids(self, value: Optional[pulumi.Input[bool]]):
2337
+ pulumi.set(self, "does_use_secret_ids", value)
2338
+
1900
2339
  @property
1901
2340
  @pulumi.getter
1902
2341
  def endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -2015,6 +2454,18 @@ class _ConnectionState:
2015
2454
  def jndi_security_credentials(self, value: Optional[pulumi.Input[str]]):
2016
2455
  pulumi.set(self, "jndi_security_credentials", value)
2017
2456
 
2457
+ @property
2458
+ @pulumi.getter(name="jndiSecurityCredentialsSecretId")
2459
+ def jndi_security_credentials_secret_id(self) -> Optional[pulumi.Input[str]]:
2460
+ """
2461
+ (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.
2462
+ """
2463
+ return pulumi.get(self, "jndi_security_credentials_secret_id")
2464
+
2465
+ @jndi_security_credentials_secret_id.setter
2466
+ def jndi_security_credentials_secret_id(self, value: Optional[pulumi.Input[str]]):
2467
+ pulumi.set(self, "jndi_security_credentials_secret_id", value)
2468
+
2018
2469
  @property
2019
2470
  @pulumi.getter(name="jndiSecurityPrincipal")
2020
2471
  def jndi_security_principal(self) -> Optional[pulumi.Input[str]]:
@@ -2063,6 +2514,30 @@ class _ConnectionState:
2063
2514
  def key_store_password(self, value: Optional[pulumi.Input[str]]):
2064
2515
  pulumi.set(self, "key_store_password", value)
2065
2516
 
2517
+ @property
2518
+ @pulumi.getter(name="keyStorePasswordSecretId")
2519
+ def key_store_password_secret_id(self) -> Optional[pulumi.Input[str]]:
2520
+ """
2521
+ (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.
2522
+ """
2523
+ return pulumi.get(self, "key_store_password_secret_id")
2524
+
2525
+ @key_store_password_secret_id.setter
2526
+ def key_store_password_secret_id(self, value: Optional[pulumi.Input[str]]):
2527
+ pulumi.set(self, "key_store_password_secret_id", value)
2528
+
2529
+ @property
2530
+ @pulumi.getter(name="keyStoreSecretId")
2531
+ def key_store_secret_id(self) -> Optional[pulumi.Input[str]]:
2532
+ """
2533
+ (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.
2534
+ """
2535
+ return pulumi.get(self, "key_store_secret_id")
2536
+
2537
+ @key_store_secret_id.setter
2538
+ def key_store_secret_id(self, value: Optional[pulumi.Input[str]]):
2539
+ pulumi.set(self, "key_store_secret_id", value)
2540
+
2066
2541
  @property
2067
2542
  @pulumi.getter(name="lifecycleDetails")
2068
2543
  def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
@@ -2111,6 +2586,18 @@ class _ConnectionState:
2111
2586
  def password(self, value: Optional[pulumi.Input[str]]):
2112
2587
  pulumi.set(self, "password", value)
2113
2588
 
2589
+ @property
2590
+ @pulumi.getter(name="passwordSecretId")
2591
+ def password_secret_id(self) -> Optional[pulumi.Input[str]]:
2592
+ """
2593
+ (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.
2594
+ """
2595
+ return pulumi.get(self, "password_secret_id")
2596
+
2597
+ @password_secret_id.setter
2598
+ def password_secret_id(self, value: Optional[pulumi.Input[str]]):
2599
+ pulumi.set(self, "password_secret_id", value)
2600
+
2114
2601
  @property
2115
2602
  @pulumi.getter
2116
2603
  def port(self) -> Optional[pulumi.Input[int]]:
@@ -2149,6 +2636,18 @@ class _ConnectionState:
2149
2636
  def private_key_file(self, value: Optional[pulumi.Input[str]]):
2150
2637
  pulumi.set(self, "private_key_file", value)
2151
2638
 
2639
+ @property
2640
+ @pulumi.getter(name="privateKeyFileSecretId")
2641
+ def private_key_file_secret_id(self) -> Optional[pulumi.Input[str]]:
2642
+ """
2643
+ (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.
2644
+ """
2645
+ return pulumi.get(self, "private_key_file_secret_id")
2646
+
2647
+ @private_key_file_secret_id.setter
2648
+ def private_key_file_secret_id(self, value: Optional[pulumi.Input[str]]):
2649
+ pulumi.set(self, "private_key_file_secret_id", value)
2650
+
2152
2651
  @property
2153
2652
  @pulumi.getter(name="privateKeyPassphrase")
2154
2653
  def private_key_passphrase(self) -> Optional[pulumi.Input[str]]:
@@ -2161,6 +2660,18 @@ class _ConnectionState:
2161
2660
  def private_key_passphrase(self, value: Optional[pulumi.Input[str]]):
2162
2661
  pulumi.set(self, "private_key_passphrase", value)
2163
2662
 
2663
+ @property
2664
+ @pulumi.getter(name="privateKeyPassphraseSecretId")
2665
+ def private_key_passphrase_secret_id(self) -> Optional[pulumi.Input[str]]:
2666
+ """
2667
+ (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.
2668
+ """
2669
+ return pulumi.get(self, "private_key_passphrase_secret_id")
2670
+
2671
+ @private_key_passphrase_secret_id.setter
2672
+ def private_key_passphrase_secret_id(self, value: Optional[pulumi.Input[str]]):
2673
+ pulumi.set(self, "private_key_passphrase_secret_id", value)
2674
+
2164
2675
  @property
2165
2676
  @pulumi.getter(name="producerProperties")
2166
2677
  def producer_properties(self) -> Optional[pulumi.Input[str]]:
@@ -2233,6 +2744,18 @@ class _ConnectionState:
2233
2744
  def sas_token(self, value: Optional[pulumi.Input[str]]):
2234
2745
  pulumi.set(self, "sas_token", value)
2235
2746
 
2747
+ @property
2748
+ @pulumi.getter(name="sasTokenSecretId")
2749
+ def sas_token_secret_id(self) -> Optional[pulumi.Input[str]]:
2750
+ """
2751
+ (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.
2752
+ """
2753
+ return pulumi.get(self, "sas_token_secret_id")
2754
+
2755
+ @sas_token_secret_id.setter
2756
+ def sas_token_secret_id(self, value: Optional[pulumi.Input[str]]):
2757
+ pulumi.set(self, "sas_token_secret_id", value)
2758
+
2236
2759
  @property
2237
2760
  @pulumi.getter(name="secretAccessKey")
2238
2761
  def secret_access_key(self) -> Optional[pulumi.Input[str]]:
@@ -2245,6 +2768,18 @@ class _ConnectionState:
2245
2768
  def secret_access_key(self, value: Optional[pulumi.Input[str]]):
2246
2769
  pulumi.set(self, "secret_access_key", value)
2247
2770
 
2771
+ @property
2772
+ @pulumi.getter(name="secretAccessKeySecretId")
2773
+ def secret_access_key_secret_id(self) -> Optional[pulumi.Input[str]]:
2774
+ """
2775
+ (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.
2776
+ """
2777
+ return pulumi.get(self, "secret_access_key_secret_id")
2778
+
2779
+ @secret_access_key_secret_id.setter
2780
+ def secret_access_key_secret_id(self, value: Optional[pulumi.Input[str]]):
2781
+ pulumi.set(self, "secret_access_key_secret_id", value)
2782
+
2248
2783
  @property
2249
2784
  @pulumi.getter(name="securityProtocol")
2250
2785
  def security_protocol(self) -> Optional[pulumi.Input[str]]:
@@ -2281,6 +2816,18 @@ class _ConnectionState:
2281
2816
  def service_account_key_file(self, value: Optional[pulumi.Input[str]]):
2282
2817
  pulumi.set(self, "service_account_key_file", value)
2283
2818
 
2819
+ @property
2820
+ @pulumi.getter(name="serviceAccountKeyFileSecretId")
2821
+ def service_account_key_file_secret_id(self) -> Optional[pulumi.Input[str]]:
2822
+ """
2823
+ (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.
2824
+ """
2825
+ return pulumi.get(self, "service_account_key_file_secret_id")
2826
+
2827
+ @service_account_key_file_secret_id.setter
2828
+ def service_account_key_file_secret_id(self, value: Optional[pulumi.Input[str]]):
2829
+ pulumi.set(self, "service_account_key_file_secret_id", value)
2830
+
2284
2831
  @property
2285
2832
  @pulumi.getter(name="sessionMode")
2286
2833
  def session_mode(self) -> Optional[pulumi.Input[str]]:
@@ -2353,6 +2900,18 @@ class _ConnectionState:
2353
2900
  def ssl_client_keystash(self, value: Optional[pulumi.Input[str]]):
2354
2901
  pulumi.set(self, "ssl_client_keystash", value)
2355
2902
 
2903
+ @property
2904
+ @pulumi.getter(name="sslClientKeystashSecretId")
2905
+ def ssl_client_keystash_secret_id(self) -> Optional[pulumi.Input[str]]:
2906
+ """
2907
+ (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.
2908
+ """
2909
+ return pulumi.get(self, "ssl_client_keystash_secret_id")
2910
+
2911
+ @ssl_client_keystash_secret_id.setter
2912
+ def ssl_client_keystash_secret_id(self, value: Optional[pulumi.Input[str]]):
2913
+ pulumi.set(self, "ssl_client_keystash_secret_id", value)
2914
+
2356
2915
  @property
2357
2916
  @pulumi.getter(name="sslClientKeystoredb")
2358
2917
  def ssl_client_keystoredb(self) -> Optional[pulumi.Input[str]]:
@@ -2365,6 +2924,18 @@ class _ConnectionState:
2365
2924
  def ssl_client_keystoredb(self, value: Optional[pulumi.Input[str]]):
2366
2925
  pulumi.set(self, "ssl_client_keystoredb", value)
2367
2926
 
2927
+ @property
2928
+ @pulumi.getter(name="sslClientKeystoredbSecretId")
2929
+ def ssl_client_keystoredb_secret_id(self) -> Optional[pulumi.Input[str]]:
2930
+ """
2931
+ (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.
2932
+ """
2933
+ return pulumi.get(self, "ssl_client_keystoredb_secret_id")
2934
+
2935
+ @ssl_client_keystoredb_secret_id.setter
2936
+ def ssl_client_keystoredb_secret_id(self, value: Optional[pulumi.Input[str]]):
2937
+ pulumi.set(self, "ssl_client_keystoredb_secret_id", value)
2938
+
2368
2939
  @property
2369
2940
  @pulumi.getter(name="sslCrl")
2370
2941
  def ssl_crl(self) -> Optional[pulumi.Input[str]]:
@@ -2381,7 +2952,7 @@ class _ConnectionState:
2381
2952
  @pulumi.getter(name="sslKey")
2382
2953
  def ssl_key(self) -> Optional[pulumi.Input[str]]:
2383
2954
  """
2384
- (Updatable) Client Key – The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).
2955
+ (Updatable) Client Key – The base64 encoded content of a .pem or .crt filecontaining the client private key (for 2-way SSL).
2385
2956
  """
2386
2957
  return pulumi.get(self, "ssl_key")
2387
2958
 
@@ -2401,6 +2972,31 @@ class _ConnectionState:
2401
2972
  def ssl_key_password(self, value: Optional[pulumi.Input[str]]):
2402
2973
  pulumi.set(self, "ssl_key_password", value)
2403
2974
 
2975
+ @property
2976
+ @pulumi.getter(name="sslKeyPasswordSecretId")
2977
+ def ssl_key_password_secret_id(self) -> Optional[pulumi.Input[str]]:
2978
+ """
2979
+ (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.
2980
+ """
2981
+ return pulumi.get(self, "ssl_key_password_secret_id")
2982
+
2983
+ @ssl_key_password_secret_id.setter
2984
+ def ssl_key_password_secret_id(self, value: Optional[pulumi.Input[str]]):
2985
+ pulumi.set(self, "ssl_key_password_secret_id", value)
2986
+
2987
+ @property
2988
+ @pulumi.getter(name="sslKeySecretId")
2989
+ def ssl_key_secret_id(self) -> Optional[pulumi.Input[str]]:
2990
+ """
2991
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
2992
+ * 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.
2993
+ """
2994
+ return pulumi.get(self, "ssl_key_secret_id")
2995
+
2996
+ @ssl_key_secret_id.setter
2997
+ def ssl_key_secret_id(self, value: Optional[pulumi.Input[str]]):
2998
+ pulumi.set(self, "ssl_key_secret_id", value)
2999
+
2404
3000
  @property
2405
3001
  @pulumi.getter(name="sslMode")
2406
3002
  def ssl_mode(self) -> Optional[pulumi.Input[str]]:
@@ -2521,6 +3117,22 @@ class _ConnectionState:
2521
3117
  def time_updated(self, value: Optional[pulumi.Input[str]]):
2522
3118
  pulumi.set(self, "time_updated", value)
2523
3119
 
3120
+ @property
3121
+ @pulumi.getter(name="triggerRefresh")
3122
+ def trigger_refresh(self) -> Optional[pulumi.Input[bool]]:
3123
+ """
3124
+ (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..).
3125
+
3126
+
3127
+ ** IMPORTANT **
3128
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
3129
+ """
3130
+ return pulumi.get(self, "trigger_refresh")
3131
+
3132
+ @trigger_refresh.setter
3133
+ def trigger_refresh(self, value: Optional[pulumi.Input[bool]]):
3134
+ pulumi.set(self, "trigger_refresh", value)
3135
+
2524
3136
  @property
2525
3137
  @pulumi.getter(name="trustStore")
2526
3138
  def trust_store(self) -> Optional[pulumi.Input[str]]:
@@ -2545,6 +3157,30 @@ class _ConnectionState:
2545
3157
  def trust_store_password(self, value: Optional[pulumi.Input[str]]):
2546
3158
  pulumi.set(self, "trust_store_password", value)
2547
3159
 
3160
+ @property
3161
+ @pulumi.getter(name="trustStorePasswordSecretId")
3162
+ def trust_store_password_secret_id(self) -> Optional[pulumi.Input[str]]:
3163
+ """
3164
+ (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.
3165
+ """
3166
+ return pulumi.get(self, "trust_store_password_secret_id")
3167
+
3168
+ @trust_store_password_secret_id.setter
3169
+ def trust_store_password_secret_id(self, value: Optional[pulumi.Input[str]]):
3170
+ pulumi.set(self, "trust_store_password_secret_id", value)
3171
+
3172
+ @property
3173
+ @pulumi.getter(name="trustStoreSecretId")
3174
+ def trust_store_secret_id(self) -> Optional[pulumi.Input[str]]:
3175
+ """
3176
+ (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.
3177
+ """
3178
+ return pulumi.get(self, "trust_store_secret_id")
3179
+
3180
+ @trust_store_secret_id.setter
3181
+ def trust_store_secret_id(self, value: Optional[pulumi.Input[str]]):
3182
+ pulumi.set(self, "trust_store_secret_id", value)
3183
+
2548
3184
  @property
2549
3185
  @pulumi.getter
2550
3186
  def url(self) -> Optional[pulumi.Input[str]]:
@@ -2597,11 +3233,7 @@ class _ConnectionState:
2597
3233
  @pulumi.getter
2598
3234
  def wallet(self) -> Optional[pulumi.Input[str]]:
2599
3235
  """
2600
- (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
2601
-
2602
-
2603
- ** IMPORTANT **
2604
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
3236
+ (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
2605
3237
  """
2606
3238
  return pulumi.get(self, "wallet")
2607
3239
 
@@ -2609,6 +3241,18 @@ class _ConnectionState:
2609
3241
  def wallet(self, value: Optional[pulumi.Input[str]]):
2610
3242
  pulumi.set(self, "wallet", value)
2611
3243
 
3244
+ @property
3245
+ @pulumi.getter(name="walletSecretId")
3246
+ def wallet_secret_id(self) -> Optional[pulumi.Input[str]]:
3247
+ """
3248
+ (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.
3249
+ """
3250
+ return pulumi.get(self, "wallet_secret_id")
3251
+
3252
+ @wallet_secret_id.setter
3253
+ def wallet_secret_id(self, value: Optional[pulumi.Input[str]]):
3254
+ pulumi.set(self, "wallet_secret_id", value)
3255
+
2612
3256
 
2613
3257
  class Connection(pulumi.CustomResource):
2614
3258
  @overload
@@ -2617,6 +3261,7 @@ class Connection(pulumi.CustomResource):
2617
3261
  opts: Optional[pulumi.ResourceOptions] = None,
2618
3262
  access_key_id: Optional[pulumi.Input[str]] = None,
2619
3263
  account_key: Optional[pulumi.Input[str]] = None,
3264
+ account_key_secret_id: Optional[pulumi.Input[str]] = None,
2620
3265
  account_name: Optional[pulumi.Input[str]] = None,
2621
3266
  additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionAdditionalAttributeArgs', 'ConnectionAdditionalAttributeArgsDict']]]]] = None,
2622
3267
  authentication_mode: Optional[pulumi.Input[str]] = None,
@@ -2625,6 +3270,7 @@ class Connection(pulumi.CustomResource):
2625
3270
  bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionBootstrapServerArgs', 'ConnectionBootstrapServerArgsDict']]]]] = None,
2626
3271
  client_id: Optional[pulumi.Input[str]] = None,
2627
3272
  client_secret: Optional[pulumi.Input[str]] = None,
3273
+ client_secret_secret_id: Optional[pulumi.Input[str]] = None,
2628
3274
  compartment_id: Optional[pulumi.Input[str]] = None,
2629
3275
  connection_factory: Optional[pulumi.Input[str]] = None,
2630
3276
  connection_string: Optional[pulumi.Input[str]] = None,
@@ -2639,6 +3285,7 @@ class Connection(pulumi.CustomResource):
2639
3285
  deployment_id: Optional[pulumi.Input[str]] = None,
2640
3286
  description: Optional[pulumi.Input[str]] = None,
2641
3287
  display_name: Optional[pulumi.Input[str]] = None,
3288
+ does_use_secret_ids: Optional[pulumi.Input[bool]] = None,
2642
3289
  endpoint: Optional[pulumi.Input[str]] = None,
2643
3290
  fingerprint: Optional[pulumi.Input[str]] = None,
2644
3291
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -2648,50 +3295,67 @@ class Connection(pulumi.CustomResource):
2648
3295
  jndi_initial_context_factory: Optional[pulumi.Input[str]] = None,
2649
3296
  jndi_provider_url: Optional[pulumi.Input[str]] = None,
2650
3297
  jndi_security_credentials: Optional[pulumi.Input[str]] = None,
3298
+ jndi_security_credentials_secret_id: Optional[pulumi.Input[str]] = None,
2651
3299
  jndi_security_principal: Optional[pulumi.Input[str]] = None,
2652
3300
  key_id: Optional[pulumi.Input[str]] = None,
2653
3301
  key_store: Optional[pulumi.Input[str]] = None,
2654
3302
  key_store_password: Optional[pulumi.Input[str]] = None,
3303
+ key_store_password_secret_id: Optional[pulumi.Input[str]] = None,
3304
+ key_store_secret_id: Optional[pulumi.Input[str]] = None,
2655
3305
  locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionLockArgs', 'ConnectionLockArgsDict']]]]] = None,
2656
3306
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2657
3307
  password: Optional[pulumi.Input[str]] = None,
3308
+ password_secret_id: Optional[pulumi.Input[str]] = None,
2658
3309
  port: Optional[pulumi.Input[int]] = None,
2659
3310
  private_ip: Optional[pulumi.Input[str]] = None,
2660
3311
  private_key_file: Optional[pulumi.Input[str]] = None,
3312
+ private_key_file_secret_id: Optional[pulumi.Input[str]] = None,
2661
3313
  private_key_passphrase: Optional[pulumi.Input[str]] = None,
3314
+ private_key_passphrase_secret_id: Optional[pulumi.Input[str]] = None,
2662
3315
  producer_properties: Optional[pulumi.Input[str]] = None,
2663
3316
  public_key_fingerprint: Optional[pulumi.Input[str]] = None,
2664
3317
  redis_cluster_id: Optional[pulumi.Input[str]] = None,
2665
3318
  region: Optional[pulumi.Input[str]] = None,
2666
3319
  routing_method: Optional[pulumi.Input[str]] = None,
2667
3320
  sas_token: Optional[pulumi.Input[str]] = None,
3321
+ sas_token_secret_id: Optional[pulumi.Input[str]] = None,
2668
3322
  secret_access_key: Optional[pulumi.Input[str]] = None,
3323
+ secret_access_key_secret_id: Optional[pulumi.Input[str]] = None,
2669
3324
  security_protocol: Optional[pulumi.Input[str]] = None,
2670
3325
  servers: Optional[pulumi.Input[str]] = None,
2671
3326
  service_account_key_file: Optional[pulumi.Input[str]] = None,
3327
+ service_account_key_file_secret_id: Optional[pulumi.Input[str]] = None,
2672
3328
  session_mode: Optional[pulumi.Input[str]] = None,
2673
3329
  should_use_jndi: Optional[pulumi.Input[bool]] = None,
2674
3330
  should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
2675
3331
  ssl_ca: Optional[pulumi.Input[str]] = None,
2676
3332
  ssl_cert: Optional[pulumi.Input[str]] = None,
2677
3333
  ssl_client_keystash: Optional[pulumi.Input[str]] = None,
3334
+ ssl_client_keystash_secret_id: Optional[pulumi.Input[str]] = None,
2678
3335
  ssl_client_keystoredb: Optional[pulumi.Input[str]] = None,
3336
+ ssl_client_keystoredb_secret_id: Optional[pulumi.Input[str]] = None,
2679
3337
  ssl_crl: Optional[pulumi.Input[str]] = None,
2680
3338
  ssl_key: Optional[pulumi.Input[str]] = None,
2681
3339
  ssl_key_password: Optional[pulumi.Input[str]] = None,
3340
+ ssl_key_password_secret_id: Optional[pulumi.Input[str]] = None,
3341
+ ssl_key_secret_id: Optional[pulumi.Input[str]] = None,
2682
3342
  ssl_mode: Optional[pulumi.Input[str]] = None,
2683
3343
  ssl_server_certificate: Optional[pulumi.Input[str]] = None,
2684
3344
  stream_pool_id: Optional[pulumi.Input[str]] = None,
2685
3345
  subnet_id: Optional[pulumi.Input[str]] = None,
2686
3346
  technology_type: Optional[pulumi.Input[str]] = None,
2687
3347
  tenancy_id: Optional[pulumi.Input[str]] = None,
3348
+ trigger_refresh: Optional[pulumi.Input[bool]] = None,
2688
3349
  trust_store: Optional[pulumi.Input[str]] = None,
2689
3350
  trust_store_password: Optional[pulumi.Input[str]] = None,
3351
+ trust_store_password_secret_id: Optional[pulumi.Input[str]] = None,
3352
+ trust_store_secret_id: Optional[pulumi.Input[str]] = None,
2690
3353
  url: Optional[pulumi.Input[str]] = None,
2691
3354
  user_id: Optional[pulumi.Input[str]] = None,
2692
3355
  username: Optional[pulumi.Input[str]] = None,
2693
3356
  vault_id: Optional[pulumi.Input[str]] = None,
2694
3357
  wallet: Optional[pulumi.Input[str]] = None,
3358
+ wallet_secret_id: Optional[pulumi.Input[str]] = None,
2695
3359
  __props__=None):
2696
3360
  """
2697
3361
  This resource provides the Connection resource in Oracle Cloud Infrastructure Golden Gate service.
@@ -2711,6 +3375,7 @@ class Connection(pulumi.CustomResource):
2711
3375
  technology_type=connection_technology_type,
2712
3376
  access_key_id=test_key["id"],
2713
3377
  account_key=connection_account_key,
3378
+ account_key_secret_id=test_secret["id"],
2714
3379
  account_name=connection_account_name,
2715
3380
  additional_attributes=[{
2716
3381
  "name": connection_additional_attributes_name,
@@ -2726,6 +3391,7 @@ class Connection(pulumi.CustomResource):
2726
3391
  }],
2727
3392
  client_id=test_client["id"],
2728
3393
  client_secret=connection_client_secret,
3394
+ client_secret_secret_id=test_secret["id"],
2729
3395
  connection_factory=connection_connection_factory,
2730
3396
  connection_string=connection_connection_string,
2731
3397
  connection_url=connection_connection_url,
@@ -2739,6 +3405,7 @@ class Connection(pulumi.CustomResource):
2739
3405
  },
2740
3406
  deployment_id=test_deployment["id"],
2741
3407
  description=connection_description,
3408
+ does_use_secret_ids=connection_does_use_secret_ids,
2742
3409
  endpoint=connection_endpoint,
2743
3410
  fingerprint=connection_fingerprint,
2744
3411
  freeform_tags={
@@ -2749,40 +3416,53 @@ class Connection(pulumi.CustomResource):
2749
3416
  jndi_initial_context_factory=connection_jndi_initial_context_factory,
2750
3417
  jndi_provider_url=connection_jndi_provider_url,
2751
3418
  jndi_security_credentials=connection_jndi_security_credentials,
3419
+ jndi_security_credentials_secret_id=test_secret["id"],
2752
3420
  jndi_security_principal=connection_jndi_security_principal,
2753
3421
  key_id=test_key["id"],
2754
3422
  key_store=connection_key_store,
2755
3423
  key_store_password=connection_key_store_password,
3424
+ key_store_secret_id=test_secret["id"],
3425
+ key_store_password_secret_id=test_secret["id"],
2756
3426
  locks=[{
2757
3427
  "type": connection_locks_type,
2758
3428
  "message": connection_locks_message,
2759
3429
  }],
2760
3430
  nsg_ids=connection_nsg_ids,
2761
3431
  password=connection_password,
3432
+ password_secret_id=test_secret["id"],
2762
3433
  port=connection_port,
2763
3434
  private_ip=connection_private_ip,
2764
3435
  private_key_file=connection_private_key_file,
3436
+ private_key_file_secret_id=test_secret["id"],
2765
3437
  private_key_passphrase=connection_private_key_passphrase,
3438
+ private_key_passphrase_secret_id=test_secret["id"],
2766
3439
  producer_properties=connection_producer_properties,
2767
3440
  public_key_fingerprint=connection_public_key_fingerprint,
2768
3441
  redis_cluster_id=test_redis_cluster["id"],
2769
3442
  region=connection_region,
2770
3443
  routing_method=connection_routing_method,
2771
3444
  sas_token=connection_sas_token,
3445
+ sas_token_secret_id=test_secret["id"],
2772
3446
  secret_access_key=connection_secret_access_key,
3447
+ secret_access_key_secret_id=test_secret["id"],
2773
3448
  security_protocol=connection_security_protocol,
2774
3449
  servers=connection_servers,
2775
3450
  service_account_key_file=connection_service_account_key_file,
3451
+ service_account_key_file_secret_id=test_secret["id"],
2776
3452
  session_mode=connection_session_mode,
2777
3453
  should_use_jndi=connection_should_use_jndi,
2778
3454
  should_validate_server_certificate=connection_should_validate_server_certificate,
2779
3455
  ssl_ca=connection_ssl_ca,
2780
3456
  ssl_cert=connection_ssl_cert,
2781
3457
  ssl_client_keystash=connection_ssl_client_keystash,
3458
+ ssl_client_keystash_secret_id=test_secret["id"],
2782
3459
  ssl_client_keystoredb=connection_ssl_client_keystoredb,
3460
+ ssl_client_keystoredb_secret_id=test_secret["id"],
2783
3461
  ssl_crl=connection_ssl_crl,
2784
3462
  ssl_key=connection_ssl_key,
2785
3463
  ssl_key_password=connection_ssl_key_password,
3464
+ ssl_key_password_secret_id=test_secret["id"],
3465
+ ssl_key_secret_id=test_secret["id"],
2786
3466
  ssl_mode=connection_ssl_mode,
2787
3467
  ssl_server_certificate=connection_ssl_server_certificate,
2788
3468
  stream_pool_id=test_stream_pool["id"],
@@ -2790,11 +3470,15 @@ class Connection(pulumi.CustomResource):
2790
3470
  tenancy_id=test_tenancy["id"],
2791
3471
  trust_store=connection_trust_store,
2792
3472
  trust_store_password=connection_trust_store_password,
3473
+ trust_store_password_secret_id=test_secret["id"],
3474
+ trust_store_secret_id=test_secret["id"],
2793
3475
  url=connection_url,
2794
3476
  user_id=test_user["id"],
2795
3477
  username=connection_username,
2796
3478
  vault_id=test_vault["id"],
2797
- wallet=connection_wallet)
3479
+ wallet=connection_wallet,
3480
+ wallet_secret_id=test_secret["id"],
3481
+ trigger_refresh=True)
2798
3482
  ```
2799
3483
 
2800
3484
  ## Import
@@ -2809,6 +3493,7 @@ class Connection(pulumi.CustomResource):
2809
3493
  :param pulumi.ResourceOptions opts: Options for the resource.
2810
3494
  :param pulumi.Input[str] access_key_id: (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
2811
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==
3496
+ :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.
2812
3497
  :param pulumi.Input[str] account_name: (Updatable) Sets the Azure storage account name.
2813
3498
  :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.
2814
3499
  :param pulumi.Input[str] authentication_mode: (Updatable) Authentication mode. It can be provided at creation of Oracle Autonomous Database Serverless connections, when a databaseId is provided. The default value is MTLS.
@@ -2817,6 +3502,7 @@ class Connection(pulumi.CustomResource):
2817
3502
  :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"`
2818
3503
  :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
2819
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.
2820
3506
  :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.
2821
3507
  :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'
2822
3508
  :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'.
@@ -2831,6 +3517,7 @@ class Connection(pulumi.CustomResource):
2831
3517
  :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.
2832
3518
  :param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
2833
3519
  :param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
3520
+ :param pulumi.Input[bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
2834
3521
  :param pulumi.Input[str] endpoint: (Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
2835
3522
  :param pulumi.Input[str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
2836
3523
  :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"}`
@@ -2840,56 +3527,74 @@ class Connection(pulumi.CustomResource):
2840
3527
  :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'
2841
3528
  :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'
2842
3529
  :param pulumi.Input[str] jndi_security_credentials: (Updatable) The password associated to the principal.
3530
+ :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.
2843
3531
  :param pulumi.Input[str] jndi_security_principal: (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
2844
3532
  :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.
2845
3533
  :param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file.
2846
3534
  :param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password.
3535
+ :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
+ :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.
2847
3537
  :param pulumi.Input[Sequence[pulumi.Input[Union['ConnectionLockArgs', 'ConnectionLockArgsDict']]]] locks: Locks associated with this resource.
2848
3538
  :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.
2849
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.
3540
+ :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.
2850
3541
  :param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
2851
3542
  :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.
2852
3543
 
2853
3544
  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.
2854
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
3546
+ :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.
2855
3547
  :param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
3548
+ :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.
2856
3549
  :param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
2857
3550
  :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
2858
3551
  :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.
2859
3552
  :param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
2860
3553
  :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.
2861
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
3555
+ :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.
2862
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"
3557
+ :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.
2863
3558
  :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.
2864
3559
  :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"`
2865
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.
3561
+ :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.
2866
3562
  :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.
2867
3563
  :param pulumi.Input[bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
2868
3564
  :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.
2869
3565
  :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.
2870
3566
  :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).
2871
3567
  :param pulumi.Input[str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
3568
+ :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.
2872
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.
3570
+ :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.
2873
3571
  :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.
2874
- :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).
3572
+ :param pulumi.Input[str] ssl_key: (Updatable) Client Key – The base64 encoded content of a .pem or .crt filecontaining the client private key (for 2-way SSL).
2875
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.
3574
+ :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
+ :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
+ * 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.
2876
3577
  :param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
2877
3578
  :param pulumi.Input[str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
2878
3579
  :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.
2879
3580
  :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.
2880
3581
  :param pulumi.Input[str] technology_type: The Kafka (e.g. Confluent) Schema Registry technology type.
2881
3582
  :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.
3583
+ :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
+
3585
+
3586
+ ** IMPORTANT **
3587
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
2882
3588
  :param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file.
2883
3589
  :param pulumi.Input[str] trust_store_password: (Updatable) The TrustStore password.
3590
+ :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
+ :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.
2884
3592
  :param pulumi.Input[str] url: (Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
2885
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.
2886
3594
  :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.
2887
3595
  :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.
2888
- :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.
2889
-
2890
-
2891
- ** IMPORTANT **
2892
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
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.
3597
+ :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.
2893
3598
  """
2894
3599
  ...
2895
3600
  @overload
@@ -2915,6 +3620,7 @@ class Connection(pulumi.CustomResource):
2915
3620
  technology_type=connection_technology_type,
2916
3621
  access_key_id=test_key["id"],
2917
3622
  account_key=connection_account_key,
3623
+ account_key_secret_id=test_secret["id"],
2918
3624
  account_name=connection_account_name,
2919
3625
  additional_attributes=[{
2920
3626
  "name": connection_additional_attributes_name,
@@ -2930,6 +3636,7 @@ class Connection(pulumi.CustomResource):
2930
3636
  }],
2931
3637
  client_id=test_client["id"],
2932
3638
  client_secret=connection_client_secret,
3639
+ client_secret_secret_id=test_secret["id"],
2933
3640
  connection_factory=connection_connection_factory,
2934
3641
  connection_string=connection_connection_string,
2935
3642
  connection_url=connection_connection_url,
@@ -2943,6 +3650,7 @@ class Connection(pulumi.CustomResource):
2943
3650
  },
2944
3651
  deployment_id=test_deployment["id"],
2945
3652
  description=connection_description,
3653
+ does_use_secret_ids=connection_does_use_secret_ids,
2946
3654
  endpoint=connection_endpoint,
2947
3655
  fingerprint=connection_fingerprint,
2948
3656
  freeform_tags={
@@ -2953,40 +3661,53 @@ class Connection(pulumi.CustomResource):
2953
3661
  jndi_initial_context_factory=connection_jndi_initial_context_factory,
2954
3662
  jndi_provider_url=connection_jndi_provider_url,
2955
3663
  jndi_security_credentials=connection_jndi_security_credentials,
3664
+ jndi_security_credentials_secret_id=test_secret["id"],
2956
3665
  jndi_security_principal=connection_jndi_security_principal,
2957
3666
  key_id=test_key["id"],
2958
3667
  key_store=connection_key_store,
2959
3668
  key_store_password=connection_key_store_password,
3669
+ key_store_secret_id=test_secret["id"],
3670
+ key_store_password_secret_id=test_secret["id"],
2960
3671
  locks=[{
2961
3672
  "type": connection_locks_type,
2962
3673
  "message": connection_locks_message,
2963
3674
  }],
2964
3675
  nsg_ids=connection_nsg_ids,
2965
3676
  password=connection_password,
3677
+ password_secret_id=test_secret["id"],
2966
3678
  port=connection_port,
2967
3679
  private_ip=connection_private_ip,
2968
3680
  private_key_file=connection_private_key_file,
3681
+ private_key_file_secret_id=test_secret["id"],
2969
3682
  private_key_passphrase=connection_private_key_passphrase,
3683
+ private_key_passphrase_secret_id=test_secret["id"],
2970
3684
  producer_properties=connection_producer_properties,
2971
3685
  public_key_fingerprint=connection_public_key_fingerprint,
2972
3686
  redis_cluster_id=test_redis_cluster["id"],
2973
3687
  region=connection_region,
2974
3688
  routing_method=connection_routing_method,
2975
3689
  sas_token=connection_sas_token,
3690
+ sas_token_secret_id=test_secret["id"],
2976
3691
  secret_access_key=connection_secret_access_key,
3692
+ secret_access_key_secret_id=test_secret["id"],
2977
3693
  security_protocol=connection_security_protocol,
2978
3694
  servers=connection_servers,
2979
3695
  service_account_key_file=connection_service_account_key_file,
3696
+ service_account_key_file_secret_id=test_secret["id"],
2980
3697
  session_mode=connection_session_mode,
2981
3698
  should_use_jndi=connection_should_use_jndi,
2982
3699
  should_validate_server_certificate=connection_should_validate_server_certificate,
2983
3700
  ssl_ca=connection_ssl_ca,
2984
3701
  ssl_cert=connection_ssl_cert,
2985
3702
  ssl_client_keystash=connection_ssl_client_keystash,
3703
+ ssl_client_keystash_secret_id=test_secret["id"],
2986
3704
  ssl_client_keystoredb=connection_ssl_client_keystoredb,
3705
+ ssl_client_keystoredb_secret_id=test_secret["id"],
2987
3706
  ssl_crl=connection_ssl_crl,
2988
3707
  ssl_key=connection_ssl_key,
2989
3708
  ssl_key_password=connection_ssl_key_password,
3709
+ ssl_key_password_secret_id=test_secret["id"],
3710
+ ssl_key_secret_id=test_secret["id"],
2990
3711
  ssl_mode=connection_ssl_mode,
2991
3712
  ssl_server_certificate=connection_ssl_server_certificate,
2992
3713
  stream_pool_id=test_stream_pool["id"],
@@ -2994,11 +3715,15 @@ class Connection(pulumi.CustomResource):
2994
3715
  tenancy_id=test_tenancy["id"],
2995
3716
  trust_store=connection_trust_store,
2996
3717
  trust_store_password=connection_trust_store_password,
3718
+ trust_store_password_secret_id=test_secret["id"],
3719
+ trust_store_secret_id=test_secret["id"],
2997
3720
  url=connection_url,
2998
3721
  user_id=test_user["id"],
2999
3722
  username=connection_username,
3000
3723
  vault_id=test_vault["id"],
3001
- wallet=connection_wallet)
3724
+ wallet=connection_wallet,
3725
+ wallet_secret_id=test_secret["id"],
3726
+ trigger_refresh=True)
3002
3727
  ```
3003
3728
 
3004
3729
  ## Import
@@ -3026,6 +3751,7 @@ class Connection(pulumi.CustomResource):
3026
3751
  opts: Optional[pulumi.ResourceOptions] = None,
3027
3752
  access_key_id: Optional[pulumi.Input[str]] = None,
3028
3753
  account_key: Optional[pulumi.Input[str]] = None,
3754
+ account_key_secret_id: Optional[pulumi.Input[str]] = None,
3029
3755
  account_name: Optional[pulumi.Input[str]] = None,
3030
3756
  additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionAdditionalAttributeArgs', 'ConnectionAdditionalAttributeArgsDict']]]]] = None,
3031
3757
  authentication_mode: Optional[pulumi.Input[str]] = None,
@@ -3034,6 +3760,7 @@ class Connection(pulumi.CustomResource):
3034
3760
  bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionBootstrapServerArgs', 'ConnectionBootstrapServerArgsDict']]]]] = None,
3035
3761
  client_id: Optional[pulumi.Input[str]] = None,
3036
3762
  client_secret: Optional[pulumi.Input[str]] = None,
3763
+ client_secret_secret_id: Optional[pulumi.Input[str]] = None,
3037
3764
  compartment_id: Optional[pulumi.Input[str]] = None,
3038
3765
  connection_factory: Optional[pulumi.Input[str]] = None,
3039
3766
  connection_string: Optional[pulumi.Input[str]] = None,
@@ -3048,6 +3775,7 @@ class Connection(pulumi.CustomResource):
3048
3775
  deployment_id: Optional[pulumi.Input[str]] = None,
3049
3776
  description: Optional[pulumi.Input[str]] = None,
3050
3777
  display_name: Optional[pulumi.Input[str]] = None,
3778
+ does_use_secret_ids: Optional[pulumi.Input[bool]] = None,
3051
3779
  endpoint: Optional[pulumi.Input[str]] = None,
3052
3780
  fingerprint: Optional[pulumi.Input[str]] = None,
3053
3781
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -3057,50 +3785,67 @@ class Connection(pulumi.CustomResource):
3057
3785
  jndi_initial_context_factory: Optional[pulumi.Input[str]] = None,
3058
3786
  jndi_provider_url: Optional[pulumi.Input[str]] = None,
3059
3787
  jndi_security_credentials: Optional[pulumi.Input[str]] = None,
3788
+ jndi_security_credentials_secret_id: Optional[pulumi.Input[str]] = None,
3060
3789
  jndi_security_principal: Optional[pulumi.Input[str]] = None,
3061
3790
  key_id: Optional[pulumi.Input[str]] = None,
3062
3791
  key_store: Optional[pulumi.Input[str]] = None,
3063
3792
  key_store_password: Optional[pulumi.Input[str]] = None,
3793
+ key_store_password_secret_id: Optional[pulumi.Input[str]] = None,
3794
+ key_store_secret_id: Optional[pulumi.Input[str]] = None,
3064
3795
  locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionLockArgs', 'ConnectionLockArgsDict']]]]] = None,
3065
3796
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3066
3797
  password: Optional[pulumi.Input[str]] = None,
3798
+ password_secret_id: Optional[pulumi.Input[str]] = None,
3067
3799
  port: Optional[pulumi.Input[int]] = None,
3068
3800
  private_ip: Optional[pulumi.Input[str]] = None,
3069
3801
  private_key_file: Optional[pulumi.Input[str]] = None,
3802
+ private_key_file_secret_id: Optional[pulumi.Input[str]] = None,
3070
3803
  private_key_passphrase: Optional[pulumi.Input[str]] = None,
3804
+ private_key_passphrase_secret_id: Optional[pulumi.Input[str]] = None,
3071
3805
  producer_properties: Optional[pulumi.Input[str]] = None,
3072
3806
  public_key_fingerprint: Optional[pulumi.Input[str]] = None,
3073
3807
  redis_cluster_id: Optional[pulumi.Input[str]] = None,
3074
3808
  region: Optional[pulumi.Input[str]] = None,
3075
3809
  routing_method: Optional[pulumi.Input[str]] = None,
3076
3810
  sas_token: Optional[pulumi.Input[str]] = None,
3811
+ sas_token_secret_id: Optional[pulumi.Input[str]] = None,
3077
3812
  secret_access_key: Optional[pulumi.Input[str]] = None,
3813
+ secret_access_key_secret_id: Optional[pulumi.Input[str]] = None,
3078
3814
  security_protocol: Optional[pulumi.Input[str]] = None,
3079
3815
  servers: Optional[pulumi.Input[str]] = None,
3080
3816
  service_account_key_file: Optional[pulumi.Input[str]] = None,
3817
+ service_account_key_file_secret_id: Optional[pulumi.Input[str]] = None,
3081
3818
  session_mode: Optional[pulumi.Input[str]] = None,
3082
3819
  should_use_jndi: Optional[pulumi.Input[bool]] = None,
3083
3820
  should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
3084
3821
  ssl_ca: Optional[pulumi.Input[str]] = None,
3085
3822
  ssl_cert: Optional[pulumi.Input[str]] = None,
3086
3823
  ssl_client_keystash: Optional[pulumi.Input[str]] = None,
3824
+ ssl_client_keystash_secret_id: Optional[pulumi.Input[str]] = None,
3087
3825
  ssl_client_keystoredb: Optional[pulumi.Input[str]] = None,
3826
+ ssl_client_keystoredb_secret_id: Optional[pulumi.Input[str]] = None,
3088
3827
  ssl_crl: Optional[pulumi.Input[str]] = None,
3089
3828
  ssl_key: Optional[pulumi.Input[str]] = None,
3090
3829
  ssl_key_password: Optional[pulumi.Input[str]] = None,
3830
+ ssl_key_password_secret_id: Optional[pulumi.Input[str]] = None,
3831
+ ssl_key_secret_id: Optional[pulumi.Input[str]] = None,
3091
3832
  ssl_mode: Optional[pulumi.Input[str]] = None,
3092
3833
  ssl_server_certificate: Optional[pulumi.Input[str]] = None,
3093
3834
  stream_pool_id: Optional[pulumi.Input[str]] = None,
3094
3835
  subnet_id: Optional[pulumi.Input[str]] = None,
3095
3836
  technology_type: Optional[pulumi.Input[str]] = None,
3096
3837
  tenancy_id: Optional[pulumi.Input[str]] = None,
3838
+ trigger_refresh: Optional[pulumi.Input[bool]] = None,
3097
3839
  trust_store: Optional[pulumi.Input[str]] = None,
3098
3840
  trust_store_password: Optional[pulumi.Input[str]] = None,
3841
+ trust_store_password_secret_id: Optional[pulumi.Input[str]] = None,
3842
+ trust_store_secret_id: Optional[pulumi.Input[str]] = None,
3099
3843
  url: Optional[pulumi.Input[str]] = None,
3100
3844
  user_id: Optional[pulumi.Input[str]] = None,
3101
3845
  username: Optional[pulumi.Input[str]] = None,
3102
3846
  vault_id: Optional[pulumi.Input[str]] = None,
3103
3847
  wallet: Optional[pulumi.Input[str]] = None,
3848
+ wallet_secret_id: Optional[pulumi.Input[str]] = None,
3104
3849
  __props__=None):
3105
3850
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
3106
3851
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -3111,7 +3856,8 @@ class Connection(pulumi.CustomResource):
3111
3856
  __props__ = ConnectionArgs.__new__(ConnectionArgs)
3112
3857
 
3113
3858
  __props__.__dict__["access_key_id"] = access_key_id
3114
- __props__.__dict__["account_key"] = account_key
3859
+ __props__.__dict__["account_key"] = None if account_key is None else pulumi.Output.secret(account_key)
3860
+ __props__.__dict__["account_key_secret_id"] = account_key_secret_id
3115
3861
  __props__.__dict__["account_name"] = account_name
3116
3862
  __props__.__dict__["additional_attributes"] = additional_attributes
3117
3863
  __props__.__dict__["authentication_mode"] = authentication_mode
@@ -3119,7 +3865,8 @@ class Connection(pulumi.CustomResource):
3119
3865
  __props__.__dict__["azure_tenant_id"] = azure_tenant_id
3120
3866
  __props__.__dict__["bootstrap_servers"] = bootstrap_servers
3121
3867
  __props__.__dict__["client_id"] = client_id
3122
- __props__.__dict__["client_secret"] = client_secret
3868
+ __props__.__dict__["client_secret"] = None if client_secret is None else pulumi.Output.secret(client_secret)
3869
+ __props__.__dict__["client_secret_secret_id"] = client_secret_secret_id
3123
3870
  if compartment_id is None and not opts.urn:
3124
3871
  raise TypeError("Missing required property 'compartment_id'")
3125
3872
  __props__.__dict__["compartment_id"] = compartment_id
@@ -3140,6 +3887,7 @@ class Connection(pulumi.CustomResource):
3140
3887
  if display_name is None and not opts.urn:
3141
3888
  raise TypeError("Missing required property 'display_name'")
3142
3889
  __props__.__dict__["display_name"] = display_name
3890
+ __props__.__dict__["does_use_secret_ids"] = does_use_secret_ids
3143
3891
  __props__.__dict__["endpoint"] = endpoint
3144
3892
  __props__.__dict__["fingerprint"] = fingerprint
3145
3893
  __props__.__dict__["freeform_tags"] = freeform_tags
@@ -3148,38 +3896,51 @@ class Connection(pulumi.CustomResource):
3148
3896
  __props__.__dict__["jndi_connection_factory"] = jndi_connection_factory
3149
3897
  __props__.__dict__["jndi_initial_context_factory"] = jndi_initial_context_factory
3150
3898
  __props__.__dict__["jndi_provider_url"] = jndi_provider_url
3151
- __props__.__dict__["jndi_security_credentials"] = jndi_security_credentials
3899
+ __props__.__dict__["jndi_security_credentials"] = None if jndi_security_credentials is None else pulumi.Output.secret(jndi_security_credentials)
3900
+ __props__.__dict__["jndi_security_credentials_secret_id"] = jndi_security_credentials_secret_id
3152
3901
  __props__.__dict__["jndi_security_principal"] = jndi_security_principal
3153
3902
  __props__.__dict__["key_id"] = key_id
3154
- __props__.__dict__["key_store"] = key_store
3903
+ __props__.__dict__["key_store"] = None if key_store is None else pulumi.Output.secret(key_store)
3155
3904
  __props__.__dict__["key_store_password"] = None if key_store_password is None else pulumi.Output.secret(key_store_password)
3905
+ __props__.__dict__["key_store_password_secret_id"] = key_store_password_secret_id
3906
+ __props__.__dict__["key_store_secret_id"] = key_store_secret_id
3156
3907
  __props__.__dict__["locks"] = locks
3157
3908
  __props__.__dict__["nsg_ids"] = nsg_ids
3158
3909
  __props__.__dict__["password"] = None if password is None else pulumi.Output.secret(password)
3910
+ __props__.__dict__["password_secret_id"] = password_secret_id
3159
3911
  __props__.__dict__["port"] = port
3160
3912
  __props__.__dict__["private_ip"] = private_ip
3161
3913
  __props__.__dict__["private_key_file"] = None if private_key_file is None else pulumi.Output.secret(private_key_file)
3914
+ __props__.__dict__["private_key_file_secret_id"] = private_key_file_secret_id
3162
3915
  __props__.__dict__["private_key_passphrase"] = None if private_key_passphrase is None else pulumi.Output.secret(private_key_passphrase)
3916
+ __props__.__dict__["private_key_passphrase_secret_id"] = private_key_passphrase_secret_id
3163
3917
  __props__.__dict__["producer_properties"] = producer_properties
3164
3918
  __props__.__dict__["public_key_fingerprint"] = public_key_fingerprint
3165
3919
  __props__.__dict__["redis_cluster_id"] = redis_cluster_id
3166
3920
  __props__.__dict__["region"] = region
3167
3921
  __props__.__dict__["routing_method"] = routing_method
3168
- __props__.__dict__["sas_token"] = sas_token
3169
- __props__.__dict__["secret_access_key"] = secret_access_key
3922
+ __props__.__dict__["sas_token"] = None if sas_token is None else pulumi.Output.secret(sas_token)
3923
+ __props__.__dict__["sas_token_secret_id"] = sas_token_secret_id
3924
+ __props__.__dict__["secret_access_key"] = None if secret_access_key is None else pulumi.Output.secret(secret_access_key)
3925
+ __props__.__dict__["secret_access_key_secret_id"] = secret_access_key_secret_id
3170
3926
  __props__.__dict__["security_protocol"] = security_protocol
3171
3927
  __props__.__dict__["servers"] = servers
3172
- __props__.__dict__["service_account_key_file"] = service_account_key_file
3928
+ __props__.__dict__["service_account_key_file"] = None if service_account_key_file is None else pulumi.Output.secret(service_account_key_file)
3929
+ __props__.__dict__["service_account_key_file_secret_id"] = service_account_key_file_secret_id
3173
3930
  __props__.__dict__["session_mode"] = session_mode
3174
3931
  __props__.__dict__["should_use_jndi"] = should_use_jndi
3175
3932
  __props__.__dict__["should_validate_server_certificate"] = should_validate_server_certificate
3176
3933
  __props__.__dict__["ssl_ca"] = ssl_ca
3177
3934
  __props__.__dict__["ssl_cert"] = ssl_cert
3178
- __props__.__dict__["ssl_client_keystash"] = ssl_client_keystash
3179
- __props__.__dict__["ssl_client_keystoredb"] = ssl_client_keystoredb
3935
+ __props__.__dict__["ssl_client_keystash"] = None if ssl_client_keystash is None else pulumi.Output.secret(ssl_client_keystash)
3936
+ __props__.__dict__["ssl_client_keystash_secret_id"] = ssl_client_keystash_secret_id
3937
+ __props__.__dict__["ssl_client_keystoredb"] = None if ssl_client_keystoredb is None else pulumi.Output.secret(ssl_client_keystoredb)
3938
+ __props__.__dict__["ssl_client_keystoredb_secret_id"] = ssl_client_keystoredb_secret_id
3180
3939
  __props__.__dict__["ssl_crl"] = ssl_crl
3181
- __props__.__dict__["ssl_key"] = ssl_key
3940
+ __props__.__dict__["ssl_key"] = None if ssl_key is None else pulumi.Output.secret(ssl_key)
3182
3941
  __props__.__dict__["ssl_key_password"] = None if ssl_key_password is None else pulumi.Output.secret(ssl_key_password)
3942
+ __props__.__dict__["ssl_key_password_secret_id"] = ssl_key_password_secret_id
3943
+ __props__.__dict__["ssl_key_secret_id"] = ssl_key_secret_id
3183
3944
  __props__.__dict__["ssl_mode"] = ssl_mode
3184
3945
  __props__.__dict__["ssl_server_certificate"] = ssl_server_certificate
3185
3946
  __props__.__dict__["stream_pool_id"] = stream_pool_id
@@ -3188,20 +3949,24 @@ class Connection(pulumi.CustomResource):
3188
3949
  raise TypeError("Missing required property 'technology_type'")
3189
3950
  __props__.__dict__["technology_type"] = technology_type
3190
3951
  __props__.__dict__["tenancy_id"] = tenancy_id
3191
- __props__.__dict__["trust_store"] = trust_store
3952
+ __props__.__dict__["trigger_refresh"] = trigger_refresh
3953
+ __props__.__dict__["trust_store"] = None if trust_store is None else pulumi.Output.secret(trust_store)
3192
3954
  __props__.__dict__["trust_store_password"] = None if trust_store_password is None else pulumi.Output.secret(trust_store_password)
3955
+ __props__.__dict__["trust_store_password_secret_id"] = trust_store_password_secret_id
3956
+ __props__.__dict__["trust_store_secret_id"] = trust_store_secret_id
3193
3957
  __props__.__dict__["url"] = url
3194
3958
  __props__.__dict__["user_id"] = user_id
3195
3959
  __props__.__dict__["username"] = username
3196
3960
  __props__.__dict__["vault_id"] = vault_id
3197
- __props__.__dict__["wallet"] = wallet
3961
+ __props__.__dict__["wallet"] = None if wallet is None else pulumi.Output.secret(wallet)
3962
+ __props__.__dict__["wallet_secret_id"] = wallet_secret_id
3198
3963
  __props__.__dict__["ingress_ips"] = None
3199
3964
  __props__.__dict__["lifecycle_details"] = None
3200
3965
  __props__.__dict__["state"] = None
3201
3966
  __props__.__dict__["system_tags"] = None
3202
3967
  __props__.__dict__["time_created"] = None
3203
3968
  __props__.__dict__["time_updated"] = None
3204
- secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["keyStorePassword", "password", "privateKeyFile", "privateKeyPassphrase", "sslKeyPassword", "trustStorePassword"])
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"])
3205
3970
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
3206
3971
  super(Connection, __self__).__init__(
3207
3972
  'oci:GoldenGate/connection:Connection',
@@ -3215,6 +3980,7 @@ class Connection(pulumi.CustomResource):
3215
3980
  opts: Optional[pulumi.ResourceOptions] = None,
3216
3981
  access_key_id: Optional[pulumi.Input[str]] = None,
3217
3982
  account_key: Optional[pulumi.Input[str]] = None,
3983
+ account_key_secret_id: Optional[pulumi.Input[str]] = None,
3218
3984
  account_name: Optional[pulumi.Input[str]] = None,
3219
3985
  additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionAdditionalAttributeArgs', 'ConnectionAdditionalAttributeArgsDict']]]]] = None,
3220
3986
  authentication_mode: Optional[pulumi.Input[str]] = None,
@@ -3223,6 +3989,7 @@ class Connection(pulumi.CustomResource):
3223
3989
  bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionBootstrapServerArgs', 'ConnectionBootstrapServerArgsDict']]]]] = None,
3224
3990
  client_id: Optional[pulumi.Input[str]] = None,
3225
3991
  client_secret: Optional[pulumi.Input[str]] = None,
3992
+ client_secret_secret_id: Optional[pulumi.Input[str]] = None,
3226
3993
  compartment_id: Optional[pulumi.Input[str]] = None,
3227
3994
  connection_factory: Optional[pulumi.Input[str]] = None,
3228
3995
  connection_string: Optional[pulumi.Input[str]] = None,
@@ -3237,6 +4004,7 @@ class Connection(pulumi.CustomResource):
3237
4004
  deployment_id: Optional[pulumi.Input[str]] = None,
3238
4005
  description: Optional[pulumi.Input[str]] = None,
3239
4006
  display_name: Optional[pulumi.Input[str]] = None,
4007
+ does_use_secret_ids: Optional[pulumi.Input[bool]] = None,
3240
4008
  endpoint: Optional[pulumi.Input[str]] = None,
3241
4009
  fingerprint: Optional[pulumi.Input[str]] = None,
3242
4010
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -3247,38 +4015,51 @@ class Connection(pulumi.CustomResource):
3247
4015
  jndi_initial_context_factory: Optional[pulumi.Input[str]] = None,
3248
4016
  jndi_provider_url: Optional[pulumi.Input[str]] = None,
3249
4017
  jndi_security_credentials: Optional[pulumi.Input[str]] = None,
4018
+ jndi_security_credentials_secret_id: Optional[pulumi.Input[str]] = None,
3250
4019
  jndi_security_principal: Optional[pulumi.Input[str]] = None,
3251
4020
  key_id: Optional[pulumi.Input[str]] = None,
3252
4021
  key_store: Optional[pulumi.Input[str]] = None,
3253
4022
  key_store_password: Optional[pulumi.Input[str]] = None,
4023
+ key_store_password_secret_id: Optional[pulumi.Input[str]] = None,
4024
+ key_store_secret_id: Optional[pulumi.Input[str]] = None,
3254
4025
  lifecycle_details: Optional[pulumi.Input[str]] = None,
3255
4026
  locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionLockArgs', 'ConnectionLockArgsDict']]]]] = None,
3256
4027
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3257
4028
  password: Optional[pulumi.Input[str]] = None,
4029
+ password_secret_id: Optional[pulumi.Input[str]] = None,
3258
4030
  port: Optional[pulumi.Input[int]] = None,
3259
4031
  private_ip: Optional[pulumi.Input[str]] = None,
3260
4032
  private_key_file: Optional[pulumi.Input[str]] = None,
4033
+ private_key_file_secret_id: Optional[pulumi.Input[str]] = None,
3261
4034
  private_key_passphrase: Optional[pulumi.Input[str]] = None,
4035
+ private_key_passphrase_secret_id: Optional[pulumi.Input[str]] = None,
3262
4036
  producer_properties: Optional[pulumi.Input[str]] = None,
3263
4037
  public_key_fingerprint: Optional[pulumi.Input[str]] = None,
3264
4038
  redis_cluster_id: Optional[pulumi.Input[str]] = None,
3265
4039
  region: Optional[pulumi.Input[str]] = None,
3266
4040
  routing_method: Optional[pulumi.Input[str]] = None,
3267
4041
  sas_token: Optional[pulumi.Input[str]] = None,
4042
+ sas_token_secret_id: Optional[pulumi.Input[str]] = None,
3268
4043
  secret_access_key: Optional[pulumi.Input[str]] = None,
4044
+ secret_access_key_secret_id: Optional[pulumi.Input[str]] = None,
3269
4045
  security_protocol: Optional[pulumi.Input[str]] = None,
3270
4046
  servers: Optional[pulumi.Input[str]] = None,
3271
4047
  service_account_key_file: Optional[pulumi.Input[str]] = None,
4048
+ service_account_key_file_secret_id: Optional[pulumi.Input[str]] = None,
3272
4049
  session_mode: Optional[pulumi.Input[str]] = None,
3273
4050
  should_use_jndi: Optional[pulumi.Input[bool]] = None,
3274
4051
  should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
3275
4052
  ssl_ca: Optional[pulumi.Input[str]] = None,
3276
4053
  ssl_cert: Optional[pulumi.Input[str]] = None,
3277
4054
  ssl_client_keystash: Optional[pulumi.Input[str]] = None,
4055
+ ssl_client_keystash_secret_id: Optional[pulumi.Input[str]] = None,
3278
4056
  ssl_client_keystoredb: Optional[pulumi.Input[str]] = None,
4057
+ ssl_client_keystoredb_secret_id: Optional[pulumi.Input[str]] = None,
3279
4058
  ssl_crl: Optional[pulumi.Input[str]] = None,
3280
4059
  ssl_key: Optional[pulumi.Input[str]] = None,
3281
4060
  ssl_key_password: Optional[pulumi.Input[str]] = None,
4061
+ ssl_key_password_secret_id: Optional[pulumi.Input[str]] = None,
4062
+ ssl_key_secret_id: Optional[pulumi.Input[str]] = None,
3282
4063
  ssl_mode: Optional[pulumi.Input[str]] = None,
3283
4064
  ssl_server_certificate: Optional[pulumi.Input[str]] = None,
3284
4065
  state: Optional[pulumi.Input[str]] = None,
@@ -3289,13 +4070,17 @@ class Connection(pulumi.CustomResource):
3289
4070
  tenancy_id: Optional[pulumi.Input[str]] = None,
3290
4071
  time_created: Optional[pulumi.Input[str]] = None,
3291
4072
  time_updated: Optional[pulumi.Input[str]] = None,
4073
+ trigger_refresh: Optional[pulumi.Input[bool]] = None,
3292
4074
  trust_store: Optional[pulumi.Input[str]] = None,
3293
4075
  trust_store_password: Optional[pulumi.Input[str]] = None,
4076
+ trust_store_password_secret_id: Optional[pulumi.Input[str]] = None,
4077
+ trust_store_secret_id: Optional[pulumi.Input[str]] = None,
3294
4078
  url: Optional[pulumi.Input[str]] = None,
3295
4079
  user_id: Optional[pulumi.Input[str]] = None,
3296
4080
  username: Optional[pulumi.Input[str]] = None,
3297
4081
  vault_id: Optional[pulumi.Input[str]] = None,
3298
- wallet: Optional[pulumi.Input[str]] = None) -> 'Connection':
4082
+ wallet: Optional[pulumi.Input[str]] = None,
4083
+ wallet_secret_id: Optional[pulumi.Input[str]] = None) -> 'Connection':
3299
4084
  """
3300
4085
  Get an existing Connection resource's state with the given name, id, and optional extra
3301
4086
  properties used to qualify the lookup.
@@ -3305,6 +4090,7 @@ class Connection(pulumi.CustomResource):
3305
4090
  :param pulumi.ResourceOptions opts: Options for the resource.
3306
4091
  :param pulumi.Input[str] access_key_id: (Updatable) Access key ID to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
3307
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==
4093
+ :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.
3308
4094
  :param pulumi.Input[str] account_name: (Updatable) Sets the Azure storage account name.
3309
4095
  :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.
3310
4096
  :param pulumi.Input[str] authentication_mode: (Updatable) Authentication mode. It can be provided at creation of Oracle Autonomous Database Serverless connections, when a databaseId is provided. The default value is MTLS.
@@ -3313,6 +4099,7 @@ class Connection(pulumi.CustomResource):
3313
4099
  :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"`
3314
4100
  :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
3315
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.
3316
4103
  :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.
3317
4104
  :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'
3318
4105
  :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'.
@@ -3327,6 +4114,7 @@ class Connection(pulumi.CustomResource):
3327
4114
  :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.
3328
4115
  :param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
3329
4116
  :param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
4117
+ :param pulumi.Input[bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
3330
4118
  :param pulumi.Input[str] endpoint: (Updatable) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
3331
4119
  :param pulumi.Input[str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
3332
4120
  :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"}`
@@ -3337,40 +4125,54 @@ class Connection(pulumi.CustomResource):
3337
4125
  :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'
3338
4126
  :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'
3339
4127
  :param pulumi.Input[str] jndi_security_credentials: (Updatable) The password associated to the principal.
4128
+ :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.
3340
4129
  :param pulumi.Input[str] jndi_security_principal: (Updatable) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'
3341
4130
  :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.
3342
4131
  :param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file.
3343
4132
  :param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password.
4133
+ :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
+ :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.
3344
4135
  :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.
3345
4136
  :param pulumi.Input[Sequence[pulumi.Input[Union['ConnectionLockArgs', 'ConnectionLockArgsDict']]]] locks: Locks associated with this resource.
3346
4137
  :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.
3347
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.
4139
+ :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.
3348
4140
  :param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
3349
4141
  :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.
3350
4142
 
3351
4143
  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.
3352
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
4145
+ :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.
3353
4146
  :param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
4147
+ :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.
3354
4148
  :param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
3355
4149
  :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
3356
4150
  :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.
3357
4151
  :param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
3358
4152
  :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.
3359
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
4154
+ :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.
3360
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"
4156
+ :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.
3361
4157
  :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.
3362
4158
  :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"`
3363
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.
4160
+ :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.
3364
4161
  :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.
3365
4162
  :param pulumi.Input[bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
3366
4163
  :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.
3367
4164
  :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.
3368
4165
  :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).
3369
4166
  :param pulumi.Input[str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
4167
+ :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.
3370
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.
4169
+ :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.
3371
4170
  :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.
3372
- :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).
4171
+ :param pulumi.Input[str] ssl_key: (Updatable) Client Key – The base64 encoded content of a .pem or .crt filecontaining the client private key (for 2-way SSL).
3373
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.
4173
+ :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
+ :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
+ * 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.
3374
4176
  :param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
3375
4177
  :param pulumi.Input[str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
3376
4178
  :param pulumi.Input[str] state: Possible lifecycle states for connection.
@@ -3381,17 +4183,21 @@ class Connection(pulumi.CustomResource):
3381
4183
  :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.
3382
4184
  :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`.
3383
4185
  :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`.
4186
+ :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
+
4188
+
4189
+ ** IMPORTANT **
4190
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
3384
4191
  :param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file.
3385
4192
  :param pulumi.Input[str] trust_store_password: (Updatable) The TrustStore password.
4193
+ :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
+ :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.
3386
4195
  :param pulumi.Input[str] url: (Updatable) Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
3387
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.
3388
4197
  :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.
3389
4198
  :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.
3390
- :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.
3391
-
3392
-
3393
- ** IMPORTANT **
3394
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
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.
4200
+ :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.
3395
4201
  """
3396
4202
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
3397
4203
 
@@ -3399,6 +4205,7 @@ class Connection(pulumi.CustomResource):
3399
4205
 
3400
4206
  __props__.__dict__["access_key_id"] = access_key_id
3401
4207
  __props__.__dict__["account_key"] = account_key
4208
+ __props__.__dict__["account_key_secret_id"] = account_key_secret_id
3402
4209
  __props__.__dict__["account_name"] = account_name
3403
4210
  __props__.__dict__["additional_attributes"] = additional_attributes
3404
4211
  __props__.__dict__["authentication_mode"] = authentication_mode
@@ -3407,6 +4214,7 @@ class Connection(pulumi.CustomResource):
3407
4214
  __props__.__dict__["bootstrap_servers"] = bootstrap_servers
3408
4215
  __props__.__dict__["client_id"] = client_id
3409
4216
  __props__.__dict__["client_secret"] = client_secret
4217
+ __props__.__dict__["client_secret_secret_id"] = client_secret_secret_id
3410
4218
  __props__.__dict__["compartment_id"] = compartment_id
3411
4219
  __props__.__dict__["connection_factory"] = connection_factory
3412
4220
  __props__.__dict__["connection_string"] = connection_string
@@ -3421,6 +4229,7 @@ class Connection(pulumi.CustomResource):
3421
4229
  __props__.__dict__["deployment_id"] = deployment_id
3422
4230
  __props__.__dict__["description"] = description
3423
4231
  __props__.__dict__["display_name"] = display_name
4232
+ __props__.__dict__["does_use_secret_ids"] = does_use_secret_ids
3424
4233
  __props__.__dict__["endpoint"] = endpoint
3425
4234
  __props__.__dict__["fingerprint"] = fingerprint
3426
4235
  __props__.__dict__["freeform_tags"] = freeform_tags
@@ -3431,38 +4240,51 @@ class Connection(pulumi.CustomResource):
3431
4240
  __props__.__dict__["jndi_initial_context_factory"] = jndi_initial_context_factory
3432
4241
  __props__.__dict__["jndi_provider_url"] = jndi_provider_url
3433
4242
  __props__.__dict__["jndi_security_credentials"] = jndi_security_credentials
4243
+ __props__.__dict__["jndi_security_credentials_secret_id"] = jndi_security_credentials_secret_id
3434
4244
  __props__.__dict__["jndi_security_principal"] = jndi_security_principal
3435
4245
  __props__.__dict__["key_id"] = key_id
3436
4246
  __props__.__dict__["key_store"] = key_store
3437
4247
  __props__.__dict__["key_store_password"] = key_store_password
4248
+ __props__.__dict__["key_store_password_secret_id"] = key_store_password_secret_id
4249
+ __props__.__dict__["key_store_secret_id"] = key_store_secret_id
3438
4250
  __props__.__dict__["lifecycle_details"] = lifecycle_details
3439
4251
  __props__.__dict__["locks"] = locks
3440
4252
  __props__.__dict__["nsg_ids"] = nsg_ids
3441
4253
  __props__.__dict__["password"] = password
4254
+ __props__.__dict__["password_secret_id"] = password_secret_id
3442
4255
  __props__.__dict__["port"] = port
3443
4256
  __props__.__dict__["private_ip"] = private_ip
3444
4257
  __props__.__dict__["private_key_file"] = private_key_file
4258
+ __props__.__dict__["private_key_file_secret_id"] = private_key_file_secret_id
3445
4259
  __props__.__dict__["private_key_passphrase"] = private_key_passphrase
4260
+ __props__.__dict__["private_key_passphrase_secret_id"] = private_key_passphrase_secret_id
3446
4261
  __props__.__dict__["producer_properties"] = producer_properties
3447
4262
  __props__.__dict__["public_key_fingerprint"] = public_key_fingerprint
3448
4263
  __props__.__dict__["redis_cluster_id"] = redis_cluster_id
3449
4264
  __props__.__dict__["region"] = region
3450
4265
  __props__.__dict__["routing_method"] = routing_method
3451
4266
  __props__.__dict__["sas_token"] = sas_token
4267
+ __props__.__dict__["sas_token_secret_id"] = sas_token_secret_id
3452
4268
  __props__.__dict__["secret_access_key"] = secret_access_key
4269
+ __props__.__dict__["secret_access_key_secret_id"] = secret_access_key_secret_id
3453
4270
  __props__.__dict__["security_protocol"] = security_protocol
3454
4271
  __props__.__dict__["servers"] = servers
3455
4272
  __props__.__dict__["service_account_key_file"] = service_account_key_file
4273
+ __props__.__dict__["service_account_key_file_secret_id"] = service_account_key_file_secret_id
3456
4274
  __props__.__dict__["session_mode"] = session_mode
3457
4275
  __props__.__dict__["should_use_jndi"] = should_use_jndi
3458
4276
  __props__.__dict__["should_validate_server_certificate"] = should_validate_server_certificate
3459
4277
  __props__.__dict__["ssl_ca"] = ssl_ca
3460
4278
  __props__.__dict__["ssl_cert"] = ssl_cert
3461
4279
  __props__.__dict__["ssl_client_keystash"] = ssl_client_keystash
4280
+ __props__.__dict__["ssl_client_keystash_secret_id"] = ssl_client_keystash_secret_id
3462
4281
  __props__.__dict__["ssl_client_keystoredb"] = ssl_client_keystoredb
4282
+ __props__.__dict__["ssl_client_keystoredb_secret_id"] = ssl_client_keystoredb_secret_id
3463
4283
  __props__.__dict__["ssl_crl"] = ssl_crl
3464
4284
  __props__.__dict__["ssl_key"] = ssl_key
3465
4285
  __props__.__dict__["ssl_key_password"] = ssl_key_password
4286
+ __props__.__dict__["ssl_key_password_secret_id"] = ssl_key_password_secret_id
4287
+ __props__.__dict__["ssl_key_secret_id"] = ssl_key_secret_id
3466
4288
  __props__.__dict__["ssl_mode"] = ssl_mode
3467
4289
  __props__.__dict__["ssl_server_certificate"] = ssl_server_certificate
3468
4290
  __props__.__dict__["state"] = state
@@ -3473,13 +4295,17 @@ class Connection(pulumi.CustomResource):
3473
4295
  __props__.__dict__["tenancy_id"] = tenancy_id
3474
4296
  __props__.__dict__["time_created"] = time_created
3475
4297
  __props__.__dict__["time_updated"] = time_updated
4298
+ __props__.__dict__["trigger_refresh"] = trigger_refresh
3476
4299
  __props__.__dict__["trust_store"] = trust_store
3477
4300
  __props__.__dict__["trust_store_password"] = trust_store_password
4301
+ __props__.__dict__["trust_store_password_secret_id"] = trust_store_password_secret_id
4302
+ __props__.__dict__["trust_store_secret_id"] = trust_store_secret_id
3478
4303
  __props__.__dict__["url"] = url
3479
4304
  __props__.__dict__["user_id"] = user_id
3480
4305
  __props__.__dict__["username"] = username
3481
4306
  __props__.__dict__["vault_id"] = vault_id
3482
4307
  __props__.__dict__["wallet"] = wallet
4308
+ __props__.__dict__["wallet_secret_id"] = wallet_secret_id
3483
4309
  return Connection(resource_name, opts=opts, __props__=__props__)
3484
4310
 
3485
4311
  @property
@@ -3492,12 +4318,20 @@ class Connection(pulumi.CustomResource):
3492
4318
 
3493
4319
  @property
3494
4320
  @pulumi.getter(name="accountKey")
3495
- def account_key(self) -> pulumi.Output[str]:
4321
+ def account_key(self) -> pulumi.Output[Optional[str]]:
3496
4322
  """
3497
4323
  (Updatable) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==
3498
4324
  """
3499
4325
  return pulumi.get(self, "account_key")
3500
4326
 
4327
+ @property
4328
+ @pulumi.getter(name="accountKeySecretId")
4329
+ def account_key_secret_id(self) -> pulumi.Output[str]:
4330
+ """
4331
+ (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.
4332
+ """
4333
+ return pulumi.get(self, "account_key_secret_id")
4334
+
3501
4335
  @property
3502
4336
  @pulumi.getter(name="accountName")
3503
4337
  def account_name(self) -> pulumi.Output[str]:
@@ -3556,12 +4390,20 @@ class Connection(pulumi.CustomResource):
3556
4390
 
3557
4391
  @property
3558
4392
  @pulumi.getter(name="clientSecret")
3559
- def client_secret(self) -> pulumi.Output[str]:
4393
+ def client_secret(self) -> pulumi.Output[Optional[str]]:
3560
4394
  """
3561
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
3562
4396
  """
3563
4397
  return pulumi.get(self, "client_secret")
3564
4398
 
4399
+ @property
4400
+ @pulumi.getter(name="clientSecretSecretId")
4401
+ def client_secret_secret_id(self) -> pulumi.Output[Optional[str]]:
4402
+ """
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.
4404
+ """
4405
+ return pulumi.get(self, "client_secret_secret_id")
4406
+
3565
4407
  @property
3566
4408
  @pulumi.getter(name="compartmentId")
3567
4409
  def compartment_id(self) -> pulumi.Output[str]:
@@ -3674,6 +4516,14 @@ class Connection(pulumi.CustomResource):
3674
4516
  """
3675
4517
  return pulumi.get(self, "display_name")
3676
4518
 
4519
+ @property
4520
+ @pulumi.getter(name="doesUseSecretIds")
4521
+ def does_use_secret_ids(self) -> pulumi.Output[bool]:
4522
+ """
4523
+ (Updatable) Indicates that sensitive attributes are provided via Secrets.
4524
+ """
4525
+ return pulumi.get(self, "does_use_secret_ids")
4526
+
3677
4527
  @property
3678
4528
  @pulumi.getter
3679
4529
  def endpoint(self) -> pulumi.Output[str]:
@@ -3746,12 +4596,20 @@ class Connection(pulumi.CustomResource):
3746
4596
 
3747
4597
  @property
3748
4598
  @pulumi.getter(name="jndiSecurityCredentials")
3749
- def jndi_security_credentials(self) -> pulumi.Output[str]:
4599
+ def jndi_security_credentials(self) -> pulumi.Output[Optional[str]]:
3750
4600
  """
3751
4601
  (Updatable) The password associated to the principal.
3752
4602
  """
3753
4603
  return pulumi.get(self, "jndi_security_credentials")
3754
4604
 
4605
+ @property
4606
+ @pulumi.getter(name="jndiSecurityCredentialsSecretId")
4607
+ def jndi_security_credentials_secret_id(self) -> pulumi.Output[Optional[str]]:
4608
+ """
4609
+ (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.
4610
+ """
4611
+ return pulumi.get(self, "jndi_security_credentials_secret_id")
4612
+
3755
4613
  @property
3756
4614
  @pulumi.getter(name="jndiSecurityPrincipal")
3757
4615
  def jndi_security_principal(self) -> pulumi.Output[str]:
@@ -3770,7 +4628,7 @@ class Connection(pulumi.CustomResource):
3770
4628
 
3771
4629
  @property
3772
4630
  @pulumi.getter(name="keyStore")
3773
- def key_store(self) -> pulumi.Output[str]:
4631
+ def key_store(self) -> pulumi.Output[Optional[str]]:
3774
4632
  """
3775
4633
  (Updatable) The base64 encoded content of the KeyStore file.
3776
4634
  """
@@ -3778,12 +4636,28 @@ class Connection(pulumi.CustomResource):
3778
4636
 
3779
4637
  @property
3780
4638
  @pulumi.getter(name="keyStorePassword")
3781
- def key_store_password(self) -> pulumi.Output[str]:
4639
+ def key_store_password(self) -> pulumi.Output[Optional[str]]:
3782
4640
  """
3783
4641
  (Updatable) The KeyStore password.
3784
4642
  """
3785
4643
  return pulumi.get(self, "key_store_password")
3786
4644
 
4645
+ @property
4646
+ @pulumi.getter(name="keyStorePasswordSecretId")
4647
+ def key_store_password_secret_id(self) -> pulumi.Output[Optional[str]]:
4648
+ """
4649
+ (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.
4650
+ """
4651
+ return pulumi.get(self, "key_store_password_secret_id")
4652
+
4653
+ @property
4654
+ @pulumi.getter(name="keyStoreSecretId")
4655
+ def key_store_secret_id(self) -> pulumi.Output[Optional[str]]:
4656
+ """
4657
+ (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.
4658
+ """
4659
+ return pulumi.get(self, "key_store_secret_id")
4660
+
3787
4661
  @property
3788
4662
  @pulumi.getter(name="lifecycleDetails")
3789
4663
  def lifecycle_details(self) -> pulumi.Output[str]:
@@ -3810,12 +4684,20 @@ class Connection(pulumi.CustomResource):
3810
4684
 
3811
4685
  @property
3812
4686
  @pulumi.getter
3813
- def password(self) -> pulumi.Output[str]:
4687
+ def password(self) -> pulumi.Output[Optional[str]]:
3814
4688
  """
3815
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.
3816
4690
  """
3817
4691
  return pulumi.get(self, "password")
3818
4692
 
4693
+ @property
4694
+ @pulumi.getter(name="passwordSecretId")
4695
+ def password_secret_id(self) -> pulumi.Output[Optional[str]]:
4696
+ """
4697
+ (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.
4698
+ """
4699
+ return pulumi.get(self, "password_secret_id")
4700
+
3819
4701
  @property
3820
4702
  @pulumi.getter
3821
4703
  def port(self) -> pulumi.Output[int]:
@@ -3836,20 +4718,36 @@ class Connection(pulumi.CustomResource):
3836
4718
 
3837
4719
  @property
3838
4720
  @pulumi.getter(name="privateKeyFile")
3839
- def private_key_file(self) -> pulumi.Output[str]:
4721
+ def private_key_file(self) -> pulumi.Output[Optional[str]]:
3840
4722
  """
3841
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
3842
4724
  """
3843
4725
  return pulumi.get(self, "private_key_file")
3844
4726
 
4727
+ @property
4728
+ @pulumi.getter(name="privateKeyFileSecretId")
4729
+ def private_key_file_secret_id(self) -> pulumi.Output[Optional[str]]:
4730
+ """
4731
+ (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.
4732
+ """
4733
+ return pulumi.get(self, "private_key_file_secret_id")
4734
+
3845
4735
  @property
3846
4736
  @pulumi.getter(name="privateKeyPassphrase")
3847
- def private_key_passphrase(self) -> pulumi.Output[str]:
4737
+ def private_key_passphrase(self) -> pulumi.Output[Optional[str]]:
3848
4738
  """
3849
4739
  (Updatable) Password if the private key file is encrypted.
3850
4740
  """
3851
4741
  return pulumi.get(self, "private_key_passphrase")
3852
4742
 
4743
+ @property
4744
+ @pulumi.getter(name="privateKeyPassphraseSecretId")
4745
+ def private_key_passphrase_secret_id(self) -> pulumi.Output[Optional[str]]:
4746
+ """
4747
+ (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.
4748
+ """
4749
+ return pulumi.get(self, "private_key_passphrase_secret_id")
4750
+
3853
4751
  @property
3854
4752
  @pulumi.getter(name="producerProperties")
3855
4753
  def producer_properties(self) -> pulumi.Output[str]:
@@ -3892,20 +4790,36 @@ class Connection(pulumi.CustomResource):
3892
4790
 
3893
4791
  @property
3894
4792
  @pulumi.getter(name="sasToken")
3895
- def sas_token(self) -> pulumi.Output[str]:
4793
+ def sas_token(self) -> pulumi.Output[Optional[str]]:
3896
4794
  """
3897
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
3898
4796
  """
3899
4797
  return pulumi.get(self, "sas_token")
3900
4798
 
4799
+ @property
4800
+ @pulumi.getter(name="sasTokenSecretId")
4801
+ def sas_token_secret_id(self) -> pulumi.Output[Optional[str]]:
4802
+ """
4803
+ (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.
4804
+ """
4805
+ return pulumi.get(self, "sas_token_secret_id")
4806
+
3901
4807
  @property
3902
4808
  @pulumi.getter(name="secretAccessKey")
3903
- def secret_access_key(self) -> pulumi.Output[str]:
4809
+ def secret_access_key(self) -> pulumi.Output[Optional[str]]:
3904
4810
  """
3905
4811
  (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
3906
4812
  """
3907
4813
  return pulumi.get(self, "secret_access_key")
3908
4814
 
4815
+ @property
4816
+ @pulumi.getter(name="secretAccessKeySecretId")
4817
+ def secret_access_key_secret_id(self) -> pulumi.Output[Optional[str]]:
4818
+ """
4819
+ (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.
4820
+ """
4821
+ return pulumi.get(self, "secret_access_key_secret_id")
4822
+
3909
4823
  @property
3910
4824
  @pulumi.getter(name="securityProtocol")
3911
4825
  def security_protocol(self) -> pulumi.Output[str]:
@@ -3924,12 +4838,20 @@ class Connection(pulumi.CustomResource):
3924
4838
 
3925
4839
  @property
3926
4840
  @pulumi.getter(name="serviceAccountKeyFile")
3927
- def service_account_key_file(self) -> pulumi.Output[str]:
4841
+ def service_account_key_file(self) -> pulumi.Output[Optional[str]]:
3928
4842
  """
3929
4843
  (Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage.
3930
4844
  """
3931
4845
  return pulumi.get(self, "service_account_key_file")
3932
4846
 
4847
+ @property
4848
+ @pulumi.getter(name="serviceAccountKeyFileSecretId")
4849
+ def service_account_key_file_secret_id(self) -> pulumi.Output[Optional[str]]:
4850
+ """
4851
+ (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.
4852
+ """
4853
+ return pulumi.get(self, "service_account_key_file_secret_id")
4854
+
3933
4855
  @property
3934
4856
  @pulumi.getter(name="sessionMode")
3935
4857
  def session_mode(self) -> pulumi.Output[str]:
@@ -3972,20 +4894,36 @@ class Connection(pulumi.CustomResource):
3972
4894
 
3973
4895
  @property
3974
4896
  @pulumi.getter(name="sslClientKeystash")
3975
- def ssl_client_keystash(self) -> pulumi.Output[str]:
4897
+ def ssl_client_keystash(self) -> pulumi.Output[Optional[str]]:
3976
4898
  """
3977
4899
  (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
3978
4900
  """
3979
4901
  return pulumi.get(self, "ssl_client_keystash")
3980
4902
 
4903
+ @property
4904
+ @pulumi.getter(name="sslClientKeystashSecretId")
4905
+ def ssl_client_keystash_secret_id(self) -> pulumi.Output[Optional[str]]:
4906
+ """
4907
+ (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.
4908
+ """
4909
+ return pulumi.get(self, "ssl_client_keystash_secret_id")
4910
+
3981
4911
  @property
3982
4912
  @pulumi.getter(name="sslClientKeystoredb")
3983
- def ssl_client_keystoredb(self) -> pulumi.Output[str]:
4913
+ def ssl_client_keystoredb(self) -> pulumi.Output[Optional[str]]:
3984
4914
  """
3985
4915
  (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
3986
4916
  """
3987
4917
  return pulumi.get(self, "ssl_client_keystoredb")
3988
4918
 
4919
+ @property
4920
+ @pulumi.getter(name="sslClientKeystoredbSecretId")
4921
+ def ssl_client_keystoredb_secret_id(self) -> pulumi.Output[Optional[str]]:
4922
+ """
4923
+ (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.
4924
+ """
4925
+ return pulumi.get(self, "ssl_client_keystoredb_secret_id")
4926
+
3989
4927
  @property
3990
4928
  @pulumi.getter(name="sslCrl")
3991
4929
  def ssl_crl(self) -> pulumi.Output[str]:
@@ -3996,20 +4934,37 @@ class Connection(pulumi.CustomResource):
3996
4934
 
3997
4935
  @property
3998
4936
  @pulumi.getter(name="sslKey")
3999
- def ssl_key(self) -> pulumi.Output[str]:
4937
+ def ssl_key(self) -> pulumi.Output[Optional[str]]:
4000
4938
  """
4001
- (Updatable) Client Key – The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).
4939
+ (Updatable) Client Key – The base64 encoded content of a .pem or .crt filecontaining the client private key (for 2-way SSL).
4002
4940
  """
4003
4941
  return pulumi.get(self, "ssl_key")
4004
4942
 
4005
4943
  @property
4006
4944
  @pulumi.getter(name="sslKeyPassword")
4007
- def ssl_key_password(self) -> pulumi.Output[str]:
4945
+ def ssl_key_password(self) -> pulumi.Output[Optional[str]]:
4008
4946
  """
4009
4947
  (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
4010
4948
  """
4011
4949
  return pulumi.get(self, "ssl_key_password")
4012
4950
 
4951
+ @property
4952
+ @pulumi.getter(name="sslKeyPasswordSecretId")
4953
+ def ssl_key_password_secret_id(self) -> pulumi.Output[Optional[str]]:
4954
+ """
4955
+ (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.
4956
+ """
4957
+ return pulumi.get(self, "ssl_key_password_secret_id")
4958
+
4959
+ @property
4960
+ @pulumi.getter(name="sslKeySecretId")
4961
+ def ssl_key_secret_id(self) -> pulumi.Output[Optional[str]]:
4962
+ """
4963
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
4964
+ * 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.
4965
+ """
4966
+ return pulumi.get(self, "ssl_key_secret_id")
4967
+
4013
4968
  @property
4014
4969
  @pulumi.getter(name="sslMode")
4015
4970
  def ssl_mode(self) -> pulumi.Output[str]:
@@ -4090,9 +5045,21 @@ class Connection(pulumi.CustomResource):
4090
5045
  """
4091
5046
  return pulumi.get(self, "time_updated")
4092
5047
 
5048
+ @property
5049
+ @pulumi.getter(name="triggerRefresh")
5050
+ def trigger_refresh(self) -> pulumi.Output[Optional[bool]]:
5051
+ """
5052
+ (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..).
5053
+
5054
+
5055
+ ** IMPORTANT **
5056
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
5057
+ """
5058
+ return pulumi.get(self, "trigger_refresh")
5059
+
4093
5060
  @property
4094
5061
  @pulumi.getter(name="trustStore")
4095
- def trust_store(self) -> pulumi.Output[str]:
5062
+ def trust_store(self) -> pulumi.Output[Optional[str]]:
4096
5063
  """
4097
5064
  (Updatable) The base64 encoded content of the TrustStore file.
4098
5065
  """
@@ -4100,12 +5067,28 @@ class Connection(pulumi.CustomResource):
4100
5067
 
4101
5068
  @property
4102
5069
  @pulumi.getter(name="trustStorePassword")
4103
- def trust_store_password(self) -> pulumi.Output[str]:
5070
+ def trust_store_password(self) -> pulumi.Output[Optional[str]]:
4104
5071
  """
4105
5072
  (Updatable) The TrustStore password.
4106
5073
  """
4107
5074
  return pulumi.get(self, "trust_store_password")
4108
5075
 
5076
+ @property
5077
+ @pulumi.getter(name="trustStorePasswordSecretId")
5078
+ def trust_store_password_secret_id(self) -> pulumi.Output[Optional[str]]:
5079
+ """
5080
+ (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.
5081
+ """
5082
+ return pulumi.get(self, "trust_store_password_secret_id")
5083
+
5084
+ @property
5085
+ @pulumi.getter(name="trustStoreSecretId")
5086
+ def trust_store_secret_id(self) -> pulumi.Output[Optional[str]]:
5087
+ """
5088
+ (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.
5089
+ """
5090
+ return pulumi.get(self, "trust_store_secret_id")
5091
+
4109
5092
  @property
4110
5093
  @pulumi.getter
4111
5094
  def url(self) -> pulumi.Output[str]:
@@ -4140,13 +5123,17 @@ class Connection(pulumi.CustomResource):
4140
5123
 
4141
5124
  @property
4142
5125
  @pulumi.getter
4143
- def wallet(self) -> pulumi.Output[str]:
5126
+ def wallet(self) -> pulumi.Output[Optional[str]]:
4144
5127
  """
4145
- (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
4146
-
4147
-
4148
- ** IMPORTANT **
4149
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
5128
+ (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
4150
5129
  """
4151
5130
  return pulumi.get(self, "wallet")
4152
5131
 
5132
+ @property
5133
+ @pulumi.getter(name="walletSecretId")
5134
+ def wallet_secret_id(self) -> pulumi.Output[Optional[str]]:
5135
+ """
5136
+ (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.
5137
+ """
5138
+ return pulumi.get(self, "wallet_secret_id")
5139
+