pulumi-oci 1.39.0a1717740308__py3-none-any.whl → 1.40.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +11 -0
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +44 -4
- pulumi_oci/database/autonomous_database.py +61 -14
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +25 -7
- pulumi_oci/database/get_autonomous_character_sets.py +4 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_database_peers.py +133 -0
- pulumi_oci/database/outputs.py +102 -6
- pulumi_oci/demandsignal/__init__.py +12 -0
- pulumi_oci/demandsignal/_inputs.py +267 -0
- pulumi_oci/demandsignal/get_occ_demand_signal.py +259 -0
- pulumi_oci/demandsignal/get_occ_demand_signals.py +183 -0
- pulumi_oci/demandsignal/occ_demand_signal.py +630 -0
- pulumi_oci/demandsignal/outputs.py +700 -0
- pulumi_oci/goldengate/_inputs.py +219 -6
- pulumi_oci/goldengate/connection.py +334 -0
- pulumi_oci/goldengate/connection_assignment.py +68 -19
- pulumi_oci/goldengate/deployment.py +88 -7
- pulumi_oci/goldengate/deployment_backup.py +122 -3
- pulumi_oci/goldengate/deployment_certificate.py +59 -10
- pulumi_oci/goldengate/get_connection.py +80 -1
- pulumi_oci/goldengate/get_connection_assignment.py +11 -1
- pulumi_oci/goldengate/get_deployment.py +25 -2
- pulumi_oci/goldengate/get_deployment_backup.py +38 -1
- pulumi_oci/goldengate/get_deployment_certificate.py +12 -2
- pulumi_oci/goldengate/get_deployment_certificates.py +3 -0
- pulumi_oci/goldengate/get_trail_files.py +2 -2
- pulumi_oci/goldengate/get_trail_sequences.py +2 -2
- pulumi_oci/goldengate/outputs.py +720 -12
- pulumi_oci/loganalytics/namespace.py +2 -2
- pulumi_oci/monitoring/_inputs.py +10 -6
- pulumi_oci/monitoring/alarm.py +189 -28
- pulumi_oci/monitoring/get_alarm.py +44 -5
- pulumi_oci/monitoring/outputs.py +87 -28
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-1.39.0a1717740308.dist-info → pulumi_oci-1.40.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.39.0a1717740308.dist-info → pulumi_oci-1.40.0.dist-info}/RECORD +40 -33
- {pulumi_oci-1.39.0a1717740308.dist-info → pulumi_oci-1.40.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.39.0a1717740308.dist-info → pulumi_oci-1.40.0.dist-info}/top_level.txt +0 -0
@@ -24,6 +24,7 @@ class ConnectionArgs:
|
|
24
24
|
account_key: Optional[pulumi.Input[str]] = None,
|
25
25
|
account_name: Optional[pulumi.Input[str]] = None,
|
26
26
|
additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionAdditionalAttributeArgs']]]] = None,
|
27
|
+
authentication_mode: Optional[pulumi.Input[str]] = None,
|
27
28
|
authentication_type: Optional[pulumi.Input[str]] = None,
|
28
29
|
azure_tenant_id: Optional[pulumi.Input[str]] = None,
|
29
30
|
bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]]] = None,
|
@@ -44,6 +45,7 @@ class ConnectionArgs:
|
|
44
45
|
fingerprint: Optional[pulumi.Input[str]] = None,
|
45
46
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
46
47
|
host: Optional[pulumi.Input[str]] = None,
|
48
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
47
49
|
jndi_connection_factory: Optional[pulumi.Input[str]] = None,
|
48
50
|
jndi_initial_context_factory: Optional[pulumi.Input[str]] = None,
|
49
51
|
jndi_provider_url: Optional[pulumi.Input[str]] = None,
|
@@ -52,6 +54,7 @@ class ConnectionArgs:
|
|
52
54
|
key_id: Optional[pulumi.Input[str]] = None,
|
53
55
|
key_store: Optional[pulumi.Input[str]] = None,
|
54
56
|
key_store_password: Optional[pulumi.Input[str]] = None,
|
57
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]]] = None,
|
55
58
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
56
59
|
password: Optional[pulumi.Input[str]] = None,
|
57
60
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -60,6 +63,7 @@ class ConnectionArgs:
|
|
60
63
|
private_key_passphrase: Optional[pulumi.Input[str]] = None,
|
61
64
|
producer_properties: Optional[pulumi.Input[str]] = None,
|
62
65
|
public_key_fingerprint: Optional[pulumi.Input[str]] = None,
|
66
|
+
redis_cluster_id: Optional[pulumi.Input[str]] = None,
|
63
67
|
region: Optional[pulumi.Input[str]] = None,
|
64
68
|
routing_method: Optional[pulumi.Input[str]] = None,
|
65
69
|
sas_token: Optional[pulumi.Input[str]] = None,
|
@@ -72,10 +76,13 @@ class ConnectionArgs:
|
|
72
76
|
should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
|
73
77
|
ssl_ca: Optional[pulumi.Input[str]] = None,
|
74
78
|
ssl_cert: Optional[pulumi.Input[str]] = None,
|
79
|
+
ssl_client_keystash: Optional[pulumi.Input[str]] = None,
|
80
|
+
ssl_client_keystoredb: Optional[pulumi.Input[str]] = None,
|
75
81
|
ssl_crl: Optional[pulumi.Input[str]] = None,
|
76
82
|
ssl_key: Optional[pulumi.Input[str]] = None,
|
77
83
|
ssl_key_password: Optional[pulumi.Input[str]] = None,
|
78
84
|
ssl_mode: Optional[pulumi.Input[str]] = None,
|
85
|
+
ssl_server_certificate: Optional[pulumi.Input[str]] = None,
|
79
86
|
stream_pool_id: Optional[pulumi.Input[str]] = None,
|
80
87
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
81
88
|
tenancy_id: Optional[pulumi.Input[str]] = None,
|
@@ -96,6 +103,7 @@ class ConnectionArgs:
|
|
96
103
|
: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==
|
97
104
|
:param pulumi.Input[str] account_name: (Updatable) Sets the Azure storage account name.
|
98
105
|
: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.
|
106
|
+
: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.
|
99
107
|
:param pulumi.Input[str] authentication_type: (Updatable) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
|
100
108
|
:param pulumi.Input[str] azure_tenant_id: (Updatable) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
101
109
|
: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"`
|
@@ -125,6 +133,7 @@ class ConnectionArgs:
|
|
125
133
|
: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.
|
126
134
|
:param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file.
|
127
135
|
:param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password.
|
136
|
+
:param pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]] locks: Locks associated with this resource.
|
128
137
|
: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.
|
129
138
|
: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.
|
130
139
|
:param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
|
@@ -134,6 +143,7 @@ class ConnectionArgs:
|
|
134
143
|
:param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
|
135
144
|
:param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
|
136
145
|
: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
|
146
|
+
: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.
|
137
147
|
:param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
|
138
148
|
: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.
|
139
149
|
: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
|
@@ -146,10 +156,13 @@ class ConnectionArgs:
|
|
146
156
|
: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.
|
147
157
|
:param pulumi.Input[str] ssl_ca: (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
|
148
158
|
:param pulumi.Input[str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
|
159
|
+
:param pulumi.Input[str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
160
|
+
:param pulumi.Input[str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
149
161
|
:param pulumi.Input[str] ssl_crl: (Updatable) Certificates revoked by certificate authorities (CA). Server certificate must not be on this list (for 1 and 2-way SSL). Note: This is an optional and that too only applicable if TLS/MTLS option is selected.
|
150
162
|
:param pulumi.Input[str] ssl_key: (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
|
151
163
|
: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.
|
152
164
|
:param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
|
165
|
+
:param pulumi.Input[str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
153
166
|
: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.
|
154
167
|
: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.
|
155
168
|
: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.
|
@@ -176,6 +189,8 @@ class ConnectionArgs:
|
|
176
189
|
pulumi.set(__self__, "account_name", account_name)
|
177
190
|
if additional_attributes is not None:
|
178
191
|
pulumi.set(__self__, "additional_attributes", additional_attributes)
|
192
|
+
if authentication_mode is not None:
|
193
|
+
pulumi.set(__self__, "authentication_mode", authentication_mode)
|
179
194
|
if authentication_type is not None:
|
180
195
|
pulumi.set(__self__, "authentication_type", authentication_type)
|
181
196
|
if azure_tenant_id is not None:
|
@@ -216,6 +231,8 @@ class ConnectionArgs:
|
|
216
231
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
217
232
|
if host is not None:
|
218
233
|
pulumi.set(__self__, "host", host)
|
234
|
+
if is_lock_override is not None:
|
235
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
219
236
|
if jndi_connection_factory is not None:
|
220
237
|
pulumi.set(__self__, "jndi_connection_factory", jndi_connection_factory)
|
221
238
|
if jndi_initial_context_factory is not None:
|
@@ -232,6 +249,8 @@ class ConnectionArgs:
|
|
232
249
|
pulumi.set(__self__, "key_store", key_store)
|
233
250
|
if key_store_password is not None:
|
234
251
|
pulumi.set(__self__, "key_store_password", key_store_password)
|
252
|
+
if locks is not None:
|
253
|
+
pulumi.set(__self__, "locks", locks)
|
235
254
|
if nsg_ids is not None:
|
236
255
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
237
256
|
if password is not None:
|
@@ -248,6 +267,8 @@ class ConnectionArgs:
|
|
248
267
|
pulumi.set(__self__, "producer_properties", producer_properties)
|
249
268
|
if public_key_fingerprint is not None:
|
250
269
|
pulumi.set(__self__, "public_key_fingerprint", public_key_fingerprint)
|
270
|
+
if redis_cluster_id is not None:
|
271
|
+
pulumi.set(__self__, "redis_cluster_id", redis_cluster_id)
|
251
272
|
if region is not None:
|
252
273
|
pulumi.set(__self__, "region", region)
|
253
274
|
if routing_method is not None:
|
@@ -272,6 +293,10 @@ class ConnectionArgs:
|
|
272
293
|
pulumi.set(__self__, "ssl_ca", ssl_ca)
|
273
294
|
if ssl_cert is not None:
|
274
295
|
pulumi.set(__self__, "ssl_cert", ssl_cert)
|
296
|
+
if ssl_client_keystash is not None:
|
297
|
+
pulumi.set(__self__, "ssl_client_keystash", ssl_client_keystash)
|
298
|
+
if ssl_client_keystoredb is not None:
|
299
|
+
pulumi.set(__self__, "ssl_client_keystoredb", ssl_client_keystoredb)
|
275
300
|
if ssl_crl is not None:
|
276
301
|
pulumi.set(__self__, "ssl_crl", ssl_crl)
|
277
302
|
if ssl_key is not None:
|
@@ -280,6 +305,8 @@ class ConnectionArgs:
|
|
280
305
|
pulumi.set(__self__, "ssl_key_password", ssl_key_password)
|
281
306
|
if ssl_mode is not None:
|
282
307
|
pulumi.set(__self__, "ssl_mode", ssl_mode)
|
308
|
+
if ssl_server_certificate is not None:
|
309
|
+
pulumi.set(__self__, "ssl_server_certificate", ssl_server_certificate)
|
283
310
|
if stream_pool_id is not None:
|
284
311
|
pulumi.set(__self__, "stream_pool_id", stream_pool_id)
|
285
312
|
if subnet_id is not None:
|
@@ -397,6 +424,18 @@ class ConnectionArgs:
|
|
397
424
|
def additional_attributes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionAdditionalAttributeArgs']]]]):
|
398
425
|
pulumi.set(self, "additional_attributes", value)
|
399
426
|
|
427
|
+
@property
|
428
|
+
@pulumi.getter(name="authenticationMode")
|
429
|
+
def authentication_mode(self) -> Optional[pulumi.Input[str]]:
|
430
|
+
"""
|
431
|
+
(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.
|
432
|
+
"""
|
433
|
+
return pulumi.get(self, "authentication_mode")
|
434
|
+
|
435
|
+
@authentication_mode.setter
|
436
|
+
def authentication_mode(self, value: Optional[pulumi.Input[str]]):
|
437
|
+
pulumi.set(self, "authentication_mode", value)
|
438
|
+
|
400
439
|
@property
|
401
440
|
@pulumi.getter(name="authenticationType")
|
402
441
|
def authentication_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -638,6 +677,15 @@ class ConnectionArgs:
|
|
638
677
|
def host(self, value: Optional[pulumi.Input[str]]):
|
639
678
|
pulumi.set(self, "host", value)
|
640
679
|
|
680
|
+
@property
|
681
|
+
@pulumi.getter(name="isLockOverride")
|
682
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
683
|
+
return pulumi.get(self, "is_lock_override")
|
684
|
+
|
685
|
+
@is_lock_override.setter
|
686
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
687
|
+
pulumi.set(self, "is_lock_override", value)
|
688
|
+
|
641
689
|
@property
|
642
690
|
@pulumi.getter(name="jndiConnectionFactory")
|
643
691
|
def jndi_connection_factory(self) -> Optional[pulumi.Input[str]]:
|
@@ -734,6 +782,18 @@ class ConnectionArgs:
|
|
734
782
|
def key_store_password(self, value: Optional[pulumi.Input[str]]):
|
735
783
|
pulumi.set(self, "key_store_password", value)
|
736
784
|
|
785
|
+
@property
|
786
|
+
@pulumi.getter
|
787
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]]]:
|
788
|
+
"""
|
789
|
+
Locks associated with this resource.
|
790
|
+
"""
|
791
|
+
return pulumi.get(self, "locks")
|
792
|
+
|
793
|
+
@locks.setter
|
794
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]]]):
|
795
|
+
pulumi.set(self, "locks", value)
|
796
|
+
|
737
797
|
@property
|
738
798
|
@pulumi.getter(name="nsgIds")
|
739
799
|
def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -831,6 +891,18 @@ class ConnectionArgs:
|
|
831
891
|
def public_key_fingerprint(self, value: Optional[pulumi.Input[str]]):
|
832
892
|
pulumi.set(self, "public_key_fingerprint", value)
|
833
893
|
|
894
|
+
@property
|
895
|
+
@pulumi.getter(name="redisClusterId")
|
896
|
+
def redis_cluster_id(self) -> Optional[pulumi.Input[str]]:
|
897
|
+
"""
|
898
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
|
899
|
+
"""
|
900
|
+
return pulumi.get(self, "redis_cluster_id")
|
901
|
+
|
902
|
+
@redis_cluster_id.setter
|
903
|
+
def redis_cluster_id(self, value: Optional[pulumi.Input[str]]):
|
904
|
+
pulumi.set(self, "redis_cluster_id", value)
|
905
|
+
|
834
906
|
@property
|
835
907
|
@pulumi.getter
|
836
908
|
def region(self) -> Optional[pulumi.Input[str]]:
|
@@ -975,6 +1047,30 @@ class ConnectionArgs:
|
|
975
1047
|
def ssl_cert(self, value: Optional[pulumi.Input[str]]):
|
976
1048
|
pulumi.set(self, "ssl_cert", value)
|
977
1049
|
|
1050
|
+
@property
|
1051
|
+
@pulumi.getter(name="sslClientKeystash")
|
1052
|
+
def ssl_client_keystash(self) -> Optional[pulumi.Input[str]]:
|
1053
|
+
"""
|
1054
|
+
(Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
1055
|
+
"""
|
1056
|
+
return pulumi.get(self, "ssl_client_keystash")
|
1057
|
+
|
1058
|
+
@ssl_client_keystash.setter
|
1059
|
+
def ssl_client_keystash(self, value: Optional[pulumi.Input[str]]):
|
1060
|
+
pulumi.set(self, "ssl_client_keystash", value)
|
1061
|
+
|
1062
|
+
@property
|
1063
|
+
@pulumi.getter(name="sslClientKeystoredb")
|
1064
|
+
def ssl_client_keystoredb(self) -> Optional[pulumi.Input[str]]:
|
1065
|
+
"""
|
1066
|
+
(Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
1067
|
+
"""
|
1068
|
+
return pulumi.get(self, "ssl_client_keystoredb")
|
1069
|
+
|
1070
|
+
@ssl_client_keystoredb.setter
|
1071
|
+
def ssl_client_keystoredb(self, value: Optional[pulumi.Input[str]]):
|
1072
|
+
pulumi.set(self, "ssl_client_keystoredb", value)
|
1073
|
+
|
978
1074
|
@property
|
979
1075
|
@pulumi.getter(name="sslCrl")
|
980
1076
|
def ssl_crl(self) -> Optional[pulumi.Input[str]]:
|
@@ -1023,6 +1119,18 @@ class ConnectionArgs:
|
|
1023
1119
|
def ssl_mode(self, value: Optional[pulumi.Input[str]]):
|
1024
1120
|
pulumi.set(self, "ssl_mode", value)
|
1025
1121
|
|
1122
|
+
@property
|
1123
|
+
@pulumi.getter(name="sslServerCertificate")
|
1124
|
+
def ssl_server_certificate(self) -> Optional[pulumi.Input[str]]:
|
1125
|
+
"""
|
1126
|
+
(Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
1127
|
+
"""
|
1128
|
+
return pulumi.get(self, "ssl_server_certificate")
|
1129
|
+
|
1130
|
+
@ssl_server_certificate.setter
|
1131
|
+
def ssl_server_certificate(self, value: Optional[pulumi.Input[str]]):
|
1132
|
+
pulumi.set(self, "ssl_server_certificate", value)
|
1133
|
+
|
1026
1134
|
@property
|
1027
1135
|
@pulumi.getter(name="streamPoolId")
|
1028
1136
|
def stream_pool_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -1154,6 +1262,7 @@ class _ConnectionState:
|
|
1154
1262
|
account_key: Optional[pulumi.Input[str]] = None,
|
1155
1263
|
account_name: Optional[pulumi.Input[str]] = None,
|
1156
1264
|
additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionAdditionalAttributeArgs']]]] = None,
|
1265
|
+
authentication_mode: Optional[pulumi.Input[str]] = None,
|
1157
1266
|
authentication_type: Optional[pulumi.Input[str]] = None,
|
1158
1267
|
azure_tenant_id: Optional[pulumi.Input[str]] = None,
|
1159
1268
|
bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]]] = None,
|
@@ -1178,6 +1287,7 @@ class _ConnectionState:
|
|
1178
1287
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1179
1288
|
host: Optional[pulumi.Input[str]] = None,
|
1180
1289
|
ingress_ips: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionIngressIpArgs']]]] = None,
|
1290
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
1181
1291
|
jndi_connection_factory: Optional[pulumi.Input[str]] = None,
|
1182
1292
|
jndi_initial_context_factory: Optional[pulumi.Input[str]] = None,
|
1183
1293
|
jndi_provider_url: Optional[pulumi.Input[str]] = None,
|
@@ -1187,6 +1297,7 @@ class _ConnectionState:
|
|
1187
1297
|
key_store: Optional[pulumi.Input[str]] = None,
|
1188
1298
|
key_store_password: Optional[pulumi.Input[str]] = None,
|
1189
1299
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
1300
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]]] = None,
|
1190
1301
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1191
1302
|
password: Optional[pulumi.Input[str]] = None,
|
1192
1303
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -1195,6 +1306,7 @@ class _ConnectionState:
|
|
1195
1306
|
private_key_passphrase: Optional[pulumi.Input[str]] = None,
|
1196
1307
|
producer_properties: Optional[pulumi.Input[str]] = None,
|
1197
1308
|
public_key_fingerprint: Optional[pulumi.Input[str]] = None,
|
1309
|
+
redis_cluster_id: Optional[pulumi.Input[str]] = None,
|
1198
1310
|
region: Optional[pulumi.Input[str]] = None,
|
1199
1311
|
routing_method: Optional[pulumi.Input[str]] = None,
|
1200
1312
|
sas_token: Optional[pulumi.Input[str]] = None,
|
@@ -1207,10 +1319,13 @@ class _ConnectionState:
|
|
1207
1319
|
should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
|
1208
1320
|
ssl_ca: Optional[pulumi.Input[str]] = None,
|
1209
1321
|
ssl_cert: Optional[pulumi.Input[str]] = None,
|
1322
|
+
ssl_client_keystash: Optional[pulumi.Input[str]] = None,
|
1323
|
+
ssl_client_keystoredb: Optional[pulumi.Input[str]] = None,
|
1210
1324
|
ssl_crl: Optional[pulumi.Input[str]] = None,
|
1211
1325
|
ssl_key: Optional[pulumi.Input[str]] = None,
|
1212
1326
|
ssl_key_password: Optional[pulumi.Input[str]] = None,
|
1213
1327
|
ssl_mode: Optional[pulumi.Input[str]] = None,
|
1328
|
+
ssl_server_certificate: Optional[pulumi.Input[str]] = None,
|
1214
1329
|
state: Optional[pulumi.Input[str]] = None,
|
1215
1330
|
stream_pool_id: Optional[pulumi.Input[str]] = None,
|
1216
1331
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
@@ -1232,6 +1347,7 @@ class _ConnectionState:
|
|
1232
1347
|
: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==
|
1233
1348
|
:param pulumi.Input[str] account_name: (Updatable) Sets the Azure storage account name.
|
1234
1349
|
: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.
|
1350
|
+
: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.
|
1235
1351
|
:param pulumi.Input[str] authentication_type: (Updatable) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
|
1236
1352
|
:param pulumi.Input[str] azure_tenant_id: (Updatable) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
1237
1353
|
: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"`
|
@@ -1266,6 +1382,7 @@ class _ConnectionState:
|
|
1266
1382
|
:param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file.
|
1267
1383
|
:param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password.
|
1268
1384
|
: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.
|
1385
|
+
:param pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]] locks: Locks associated with this resource.
|
1269
1386
|
: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.
|
1270
1387
|
: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.
|
1271
1388
|
:param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
|
@@ -1275,6 +1392,7 @@ class _ConnectionState:
|
|
1275
1392
|
:param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
|
1276
1393
|
:param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
|
1277
1394
|
: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
|
1395
|
+
: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.
|
1278
1396
|
:param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
|
1279
1397
|
: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.
|
1280
1398
|
: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
|
@@ -1287,10 +1405,13 @@ class _ConnectionState:
|
|
1287
1405
|
: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.
|
1288
1406
|
:param pulumi.Input[str] ssl_ca: (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
|
1289
1407
|
:param pulumi.Input[str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
|
1408
|
+
:param pulumi.Input[str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
1409
|
+
:param pulumi.Input[str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
1290
1410
|
:param pulumi.Input[str] ssl_crl: (Updatable) Certificates revoked by certificate authorities (CA). Server certificate must not be on this list (for 1 and 2-way SSL). Note: This is an optional and that too only applicable if TLS/MTLS option is selected.
|
1291
1411
|
:param pulumi.Input[str] ssl_key: (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
|
1292
1412
|
: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.
|
1293
1413
|
:param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
|
1414
|
+
:param pulumi.Input[str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
1294
1415
|
:param pulumi.Input[str] state: Possible lifecycle states for connection.
|
1295
1416
|
: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.
|
1296
1417
|
: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.
|
@@ -1318,6 +1439,8 @@ class _ConnectionState:
|
|
1318
1439
|
pulumi.set(__self__, "account_name", account_name)
|
1319
1440
|
if additional_attributes is not None:
|
1320
1441
|
pulumi.set(__self__, "additional_attributes", additional_attributes)
|
1442
|
+
if authentication_mode is not None:
|
1443
|
+
pulumi.set(__self__, "authentication_mode", authentication_mode)
|
1321
1444
|
if authentication_type is not None:
|
1322
1445
|
pulumi.set(__self__, "authentication_type", authentication_type)
|
1323
1446
|
if azure_tenant_id is not None:
|
@@ -1366,6 +1489,8 @@ class _ConnectionState:
|
|
1366
1489
|
pulumi.set(__self__, "host", host)
|
1367
1490
|
if ingress_ips is not None:
|
1368
1491
|
pulumi.set(__self__, "ingress_ips", ingress_ips)
|
1492
|
+
if is_lock_override is not None:
|
1493
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
1369
1494
|
if jndi_connection_factory is not None:
|
1370
1495
|
pulumi.set(__self__, "jndi_connection_factory", jndi_connection_factory)
|
1371
1496
|
if jndi_initial_context_factory is not None:
|
@@ -1384,6 +1509,8 @@ class _ConnectionState:
|
|
1384
1509
|
pulumi.set(__self__, "key_store_password", key_store_password)
|
1385
1510
|
if lifecycle_details is not None:
|
1386
1511
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
1512
|
+
if locks is not None:
|
1513
|
+
pulumi.set(__self__, "locks", locks)
|
1387
1514
|
if nsg_ids is not None:
|
1388
1515
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
1389
1516
|
if password is not None:
|
@@ -1400,6 +1527,8 @@ class _ConnectionState:
|
|
1400
1527
|
pulumi.set(__self__, "producer_properties", producer_properties)
|
1401
1528
|
if public_key_fingerprint is not None:
|
1402
1529
|
pulumi.set(__self__, "public_key_fingerprint", public_key_fingerprint)
|
1530
|
+
if redis_cluster_id is not None:
|
1531
|
+
pulumi.set(__self__, "redis_cluster_id", redis_cluster_id)
|
1403
1532
|
if region is not None:
|
1404
1533
|
pulumi.set(__self__, "region", region)
|
1405
1534
|
if routing_method is not None:
|
@@ -1424,6 +1553,10 @@ class _ConnectionState:
|
|
1424
1553
|
pulumi.set(__self__, "ssl_ca", ssl_ca)
|
1425
1554
|
if ssl_cert is not None:
|
1426
1555
|
pulumi.set(__self__, "ssl_cert", ssl_cert)
|
1556
|
+
if ssl_client_keystash is not None:
|
1557
|
+
pulumi.set(__self__, "ssl_client_keystash", ssl_client_keystash)
|
1558
|
+
if ssl_client_keystoredb is not None:
|
1559
|
+
pulumi.set(__self__, "ssl_client_keystoredb", ssl_client_keystoredb)
|
1427
1560
|
if ssl_crl is not None:
|
1428
1561
|
pulumi.set(__self__, "ssl_crl", ssl_crl)
|
1429
1562
|
if ssl_key is not None:
|
@@ -1432,6 +1565,8 @@ class _ConnectionState:
|
|
1432
1565
|
pulumi.set(__self__, "ssl_key_password", ssl_key_password)
|
1433
1566
|
if ssl_mode is not None:
|
1434
1567
|
pulumi.set(__self__, "ssl_mode", ssl_mode)
|
1568
|
+
if ssl_server_certificate is not None:
|
1569
|
+
pulumi.set(__self__, "ssl_server_certificate", ssl_server_certificate)
|
1435
1570
|
if state is not None:
|
1436
1571
|
pulumi.set(__self__, "state", state)
|
1437
1572
|
if stream_pool_id is not None:
|
@@ -1511,6 +1646,18 @@ class _ConnectionState:
|
|
1511
1646
|
def additional_attributes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionAdditionalAttributeArgs']]]]):
|
1512
1647
|
pulumi.set(self, "additional_attributes", value)
|
1513
1648
|
|
1649
|
+
@property
|
1650
|
+
@pulumi.getter(name="authenticationMode")
|
1651
|
+
def authentication_mode(self) -> Optional[pulumi.Input[str]]:
|
1652
|
+
"""
|
1653
|
+
(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.
|
1654
|
+
"""
|
1655
|
+
return pulumi.get(self, "authentication_mode")
|
1656
|
+
|
1657
|
+
@authentication_mode.setter
|
1658
|
+
def authentication_mode(self, value: Optional[pulumi.Input[str]]):
|
1659
|
+
pulumi.set(self, "authentication_mode", value)
|
1660
|
+
|
1514
1661
|
@property
|
1515
1662
|
@pulumi.getter(name="authenticationType")
|
1516
1663
|
def authentication_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -1800,6 +1947,15 @@ class _ConnectionState:
|
|
1800
1947
|
def ingress_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionIngressIpArgs']]]]):
|
1801
1948
|
pulumi.set(self, "ingress_ips", value)
|
1802
1949
|
|
1950
|
+
@property
|
1951
|
+
@pulumi.getter(name="isLockOverride")
|
1952
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
1953
|
+
return pulumi.get(self, "is_lock_override")
|
1954
|
+
|
1955
|
+
@is_lock_override.setter
|
1956
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
1957
|
+
pulumi.set(self, "is_lock_override", value)
|
1958
|
+
|
1803
1959
|
@property
|
1804
1960
|
@pulumi.getter(name="jndiConnectionFactory")
|
1805
1961
|
def jndi_connection_factory(self) -> Optional[pulumi.Input[str]]:
|
@@ -1908,6 +2064,18 @@ class _ConnectionState:
|
|
1908
2064
|
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
1909
2065
|
pulumi.set(self, "lifecycle_details", value)
|
1910
2066
|
|
2067
|
+
@property
|
2068
|
+
@pulumi.getter
|
2069
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]]]:
|
2070
|
+
"""
|
2071
|
+
Locks associated with this resource.
|
2072
|
+
"""
|
2073
|
+
return pulumi.get(self, "locks")
|
2074
|
+
|
2075
|
+
@locks.setter
|
2076
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionLockArgs']]]]):
|
2077
|
+
pulumi.set(self, "locks", value)
|
2078
|
+
|
1911
2079
|
@property
|
1912
2080
|
@pulumi.getter(name="nsgIds")
|
1913
2081
|
def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -2005,6 +2173,18 @@ class _ConnectionState:
|
|
2005
2173
|
def public_key_fingerprint(self, value: Optional[pulumi.Input[str]]):
|
2006
2174
|
pulumi.set(self, "public_key_fingerprint", value)
|
2007
2175
|
|
2176
|
+
@property
|
2177
|
+
@pulumi.getter(name="redisClusterId")
|
2178
|
+
def redis_cluster_id(self) -> Optional[pulumi.Input[str]]:
|
2179
|
+
"""
|
2180
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
|
2181
|
+
"""
|
2182
|
+
return pulumi.get(self, "redis_cluster_id")
|
2183
|
+
|
2184
|
+
@redis_cluster_id.setter
|
2185
|
+
def redis_cluster_id(self, value: Optional[pulumi.Input[str]]):
|
2186
|
+
pulumi.set(self, "redis_cluster_id", value)
|
2187
|
+
|
2008
2188
|
@property
|
2009
2189
|
@pulumi.getter
|
2010
2190
|
def region(self) -> Optional[pulumi.Input[str]]:
|
@@ -2149,6 +2329,30 @@ class _ConnectionState:
|
|
2149
2329
|
def ssl_cert(self, value: Optional[pulumi.Input[str]]):
|
2150
2330
|
pulumi.set(self, "ssl_cert", value)
|
2151
2331
|
|
2332
|
+
@property
|
2333
|
+
@pulumi.getter(name="sslClientKeystash")
|
2334
|
+
def ssl_client_keystash(self) -> Optional[pulumi.Input[str]]:
|
2335
|
+
"""
|
2336
|
+
(Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
2337
|
+
"""
|
2338
|
+
return pulumi.get(self, "ssl_client_keystash")
|
2339
|
+
|
2340
|
+
@ssl_client_keystash.setter
|
2341
|
+
def ssl_client_keystash(self, value: Optional[pulumi.Input[str]]):
|
2342
|
+
pulumi.set(self, "ssl_client_keystash", value)
|
2343
|
+
|
2344
|
+
@property
|
2345
|
+
@pulumi.getter(name="sslClientKeystoredb")
|
2346
|
+
def ssl_client_keystoredb(self) -> Optional[pulumi.Input[str]]:
|
2347
|
+
"""
|
2348
|
+
(Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
2349
|
+
"""
|
2350
|
+
return pulumi.get(self, "ssl_client_keystoredb")
|
2351
|
+
|
2352
|
+
@ssl_client_keystoredb.setter
|
2353
|
+
def ssl_client_keystoredb(self, value: Optional[pulumi.Input[str]]):
|
2354
|
+
pulumi.set(self, "ssl_client_keystoredb", value)
|
2355
|
+
|
2152
2356
|
@property
|
2153
2357
|
@pulumi.getter(name="sslCrl")
|
2154
2358
|
def ssl_crl(self) -> Optional[pulumi.Input[str]]:
|
@@ -2197,6 +2401,18 @@ class _ConnectionState:
|
|
2197
2401
|
def ssl_mode(self, value: Optional[pulumi.Input[str]]):
|
2198
2402
|
pulumi.set(self, "ssl_mode", value)
|
2199
2403
|
|
2404
|
+
@property
|
2405
|
+
@pulumi.getter(name="sslServerCertificate")
|
2406
|
+
def ssl_server_certificate(self) -> Optional[pulumi.Input[str]]:
|
2407
|
+
"""
|
2408
|
+
(Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
2409
|
+
"""
|
2410
|
+
return pulumi.get(self, "ssl_server_certificate")
|
2411
|
+
|
2412
|
+
@ssl_server_certificate.setter
|
2413
|
+
def ssl_server_certificate(self, value: Optional[pulumi.Input[str]]):
|
2414
|
+
pulumi.set(self, "ssl_server_certificate", value)
|
2415
|
+
|
2200
2416
|
@property
|
2201
2417
|
@pulumi.getter
|
2202
2418
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -2390,6 +2606,7 @@ class Connection(pulumi.CustomResource):
|
|
2390
2606
|
account_key: Optional[pulumi.Input[str]] = None,
|
2391
2607
|
account_name: Optional[pulumi.Input[str]] = None,
|
2392
2608
|
additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionAdditionalAttributeArgs']]]]] = None,
|
2609
|
+
authentication_mode: Optional[pulumi.Input[str]] = None,
|
2393
2610
|
authentication_type: Optional[pulumi.Input[str]] = None,
|
2394
2611
|
azure_tenant_id: Optional[pulumi.Input[str]] = None,
|
2395
2612
|
bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionBootstrapServerArgs']]]]] = None,
|
@@ -2413,6 +2630,7 @@ class Connection(pulumi.CustomResource):
|
|
2413
2630
|
fingerprint: Optional[pulumi.Input[str]] = None,
|
2414
2631
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
2415
2632
|
host: Optional[pulumi.Input[str]] = None,
|
2633
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
2416
2634
|
jndi_connection_factory: Optional[pulumi.Input[str]] = None,
|
2417
2635
|
jndi_initial_context_factory: Optional[pulumi.Input[str]] = None,
|
2418
2636
|
jndi_provider_url: Optional[pulumi.Input[str]] = None,
|
@@ -2421,6 +2639,7 @@ class Connection(pulumi.CustomResource):
|
|
2421
2639
|
key_id: Optional[pulumi.Input[str]] = None,
|
2422
2640
|
key_store: Optional[pulumi.Input[str]] = None,
|
2423
2641
|
key_store_password: Optional[pulumi.Input[str]] = None,
|
2642
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionLockArgs']]]]] = None,
|
2424
2643
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
2425
2644
|
password: Optional[pulumi.Input[str]] = None,
|
2426
2645
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -2429,6 +2648,7 @@ class Connection(pulumi.CustomResource):
|
|
2429
2648
|
private_key_passphrase: Optional[pulumi.Input[str]] = None,
|
2430
2649
|
producer_properties: Optional[pulumi.Input[str]] = None,
|
2431
2650
|
public_key_fingerprint: Optional[pulumi.Input[str]] = None,
|
2651
|
+
redis_cluster_id: Optional[pulumi.Input[str]] = None,
|
2432
2652
|
region: Optional[pulumi.Input[str]] = None,
|
2433
2653
|
routing_method: Optional[pulumi.Input[str]] = None,
|
2434
2654
|
sas_token: Optional[pulumi.Input[str]] = None,
|
@@ -2441,10 +2661,13 @@ class Connection(pulumi.CustomResource):
|
|
2441
2661
|
should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
|
2442
2662
|
ssl_ca: Optional[pulumi.Input[str]] = None,
|
2443
2663
|
ssl_cert: Optional[pulumi.Input[str]] = None,
|
2664
|
+
ssl_client_keystash: Optional[pulumi.Input[str]] = None,
|
2665
|
+
ssl_client_keystoredb: Optional[pulumi.Input[str]] = None,
|
2444
2666
|
ssl_crl: Optional[pulumi.Input[str]] = None,
|
2445
2667
|
ssl_key: Optional[pulumi.Input[str]] = None,
|
2446
2668
|
ssl_key_password: Optional[pulumi.Input[str]] = None,
|
2447
2669
|
ssl_mode: Optional[pulumi.Input[str]] = None,
|
2670
|
+
ssl_server_certificate: Optional[pulumi.Input[str]] = None,
|
2448
2671
|
stream_pool_id: Optional[pulumi.Input[str]] = None,
|
2449
2672
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
2450
2673
|
technology_type: Optional[pulumi.Input[str]] = None,
|
@@ -2480,6 +2703,7 @@ class Connection(pulumi.CustomResource):
|
|
2480
2703
|
name=connection_additional_attributes_name,
|
2481
2704
|
value=connection_additional_attributes_value,
|
2482
2705
|
)],
|
2706
|
+
authentication_mode=connection_authentication_mode,
|
2483
2707
|
authentication_type=connection_authentication_type,
|
2484
2708
|
azure_tenant_id=test_azure_tenant["id"],
|
2485
2709
|
bootstrap_servers=[oci.golden_gate.ConnectionBootstrapServerArgs(
|
@@ -2516,6 +2740,10 @@ class Connection(pulumi.CustomResource):
|
|
2516
2740
|
key_id=test_key["id"],
|
2517
2741
|
key_store=connection_key_store,
|
2518
2742
|
key_store_password=connection_key_store_password,
|
2743
|
+
locks=[oci.golden_gate.ConnectionLockArgs(
|
2744
|
+
type=connection_locks_type,
|
2745
|
+
message=connection_locks_message,
|
2746
|
+
)],
|
2519
2747
|
nsg_ids=connection_nsg_ids,
|
2520
2748
|
password=connection_password,
|
2521
2749
|
port=connection_port,
|
@@ -2524,6 +2752,7 @@ class Connection(pulumi.CustomResource):
|
|
2524
2752
|
private_key_passphrase=connection_private_key_passphrase,
|
2525
2753
|
producer_properties=connection_producer_properties,
|
2526
2754
|
public_key_fingerprint=connection_public_key_fingerprint,
|
2755
|
+
redis_cluster_id=test_redis_cluster["id"],
|
2527
2756
|
region=connection_region,
|
2528
2757
|
routing_method=connection_routing_method,
|
2529
2758
|
sas_token=connection_sas_token,
|
@@ -2536,10 +2765,13 @@ class Connection(pulumi.CustomResource):
|
|
2536
2765
|
should_validate_server_certificate=connection_should_validate_server_certificate,
|
2537
2766
|
ssl_ca=connection_ssl_ca,
|
2538
2767
|
ssl_cert=connection_ssl_cert,
|
2768
|
+
ssl_client_keystash=connection_ssl_client_keystash,
|
2769
|
+
ssl_client_keystoredb=connection_ssl_client_keystoredb,
|
2539
2770
|
ssl_crl=connection_ssl_crl,
|
2540
2771
|
ssl_key=connection_ssl_key,
|
2541
2772
|
ssl_key_password=connection_ssl_key_password,
|
2542
2773
|
ssl_mode=connection_ssl_mode,
|
2774
|
+
ssl_server_certificate=connection_ssl_server_certificate,
|
2543
2775
|
stream_pool_id=test_stream_pool["id"],
|
2544
2776
|
subnet_id=test_subnet["id"],
|
2545
2777
|
tenancy_id=test_tenancy["id"],
|
@@ -2566,6 +2798,7 @@ class Connection(pulumi.CustomResource):
|
|
2566
2798
|
: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==
|
2567
2799
|
:param pulumi.Input[str] account_name: (Updatable) Sets the Azure storage account name.
|
2568
2800
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionAdditionalAttributeArgs']]]] additional_attributes: (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
|
2801
|
+
: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.
|
2569
2802
|
:param pulumi.Input[str] authentication_type: (Updatable) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
|
2570
2803
|
:param pulumi.Input[str] azure_tenant_id: (Updatable) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
2571
2804
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['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"`
|
@@ -2598,6 +2831,7 @@ class Connection(pulumi.CustomResource):
|
|
2598
2831
|
: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.
|
2599
2832
|
:param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file.
|
2600
2833
|
:param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password.
|
2834
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionLockArgs']]]] locks: Locks associated with this resource.
|
2601
2835
|
: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.
|
2602
2836
|
: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.
|
2603
2837
|
:param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
|
@@ -2607,6 +2841,7 @@ class Connection(pulumi.CustomResource):
|
|
2607
2841
|
:param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
|
2608
2842
|
:param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
|
2609
2843
|
: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
|
2844
|
+
: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.
|
2610
2845
|
:param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
|
2611
2846
|
: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.
|
2612
2847
|
: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
|
@@ -2619,10 +2854,13 @@ class Connection(pulumi.CustomResource):
|
|
2619
2854
|
: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.
|
2620
2855
|
:param pulumi.Input[str] ssl_ca: (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
|
2621
2856
|
:param pulumi.Input[str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
|
2857
|
+
:param pulumi.Input[str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
2858
|
+
:param pulumi.Input[str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
2622
2859
|
:param pulumi.Input[str] ssl_crl: (Updatable) Certificates revoked by certificate authorities (CA). Server certificate must not be on this list (for 1 and 2-way SSL). Note: This is an optional and that too only applicable if TLS/MTLS option is selected.
|
2623
2860
|
:param pulumi.Input[str] ssl_key: (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
|
2624
2861
|
: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.
|
2625
2862
|
:param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
|
2863
|
+
:param pulumi.Input[str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
2626
2864
|
: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.
|
2627
2865
|
: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.
|
2628
2866
|
:param pulumi.Input[str] technology_type: The Kafka (e.g. Confluent) Schema Registry technology type.
|
@@ -2667,6 +2905,7 @@ class Connection(pulumi.CustomResource):
|
|
2667
2905
|
name=connection_additional_attributes_name,
|
2668
2906
|
value=connection_additional_attributes_value,
|
2669
2907
|
)],
|
2908
|
+
authentication_mode=connection_authentication_mode,
|
2670
2909
|
authentication_type=connection_authentication_type,
|
2671
2910
|
azure_tenant_id=test_azure_tenant["id"],
|
2672
2911
|
bootstrap_servers=[oci.golden_gate.ConnectionBootstrapServerArgs(
|
@@ -2703,6 +2942,10 @@ class Connection(pulumi.CustomResource):
|
|
2703
2942
|
key_id=test_key["id"],
|
2704
2943
|
key_store=connection_key_store,
|
2705
2944
|
key_store_password=connection_key_store_password,
|
2945
|
+
locks=[oci.golden_gate.ConnectionLockArgs(
|
2946
|
+
type=connection_locks_type,
|
2947
|
+
message=connection_locks_message,
|
2948
|
+
)],
|
2706
2949
|
nsg_ids=connection_nsg_ids,
|
2707
2950
|
password=connection_password,
|
2708
2951
|
port=connection_port,
|
@@ -2711,6 +2954,7 @@ class Connection(pulumi.CustomResource):
|
|
2711
2954
|
private_key_passphrase=connection_private_key_passphrase,
|
2712
2955
|
producer_properties=connection_producer_properties,
|
2713
2956
|
public_key_fingerprint=connection_public_key_fingerprint,
|
2957
|
+
redis_cluster_id=test_redis_cluster["id"],
|
2714
2958
|
region=connection_region,
|
2715
2959
|
routing_method=connection_routing_method,
|
2716
2960
|
sas_token=connection_sas_token,
|
@@ -2723,10 +2967,13 @@ class Connection(pulumi.CustomResource):
|
|
2723
2967
|
should_validate_server_certificate=connection_should_validate_server_certificate,
|
2724
2968
|
ssl_ca=connection_ssl_ca,
|
2725
2969
|
ssl_cert=connection_ssl_cert,
|
2970
|
+
ssl_client_keystash=connection_ssl_client_keystash,
|
2971
|
+
ssl_client_keystoredb=connection_ssl_client_keystoredb,
|
2726
2972
|
ssl_crl=connection_ssl_crl,
|
2727
2973
|
ssl_key=connection_ssl_key,
|
2728
2974
|
ssl_key_password=connection_ssl_key_password,
|
2729
2975
|
ssl_mode=connection_ssl_mode,
|
2976
|
+
ssl_server_certificate=connection_ssl_server_certificate,
|
2730
2977
|
stream_pool_id=test_stream_pool["id"],
|
2731
2978
|
subnet_id=test_subnet["id"],
|
2732
2979
|
tenancy_id=test_tenancy["id"],
|
@@ -2766,6 +3013,7 @@ class Connection(pulumi.CustomResource):
|
|
2766
3013
|
account_key: Optional[pulumi.Input[str]] = None,
|
2767
3014
|
account_name: Optional[pulumi.Input[str]] = None,
|
2768
3015
|
additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionAdditionalAttributeArgs']]]]] = None,
|
3016
|
+
authentication_mode: Optional[pulumi.Input[str]] = None,
|
2769
3017
|
authentication_type: Optional[pulumi.Input[str]] = None,
|
2770
3018
|
azure_tenant_id: Optional[pulumi.Input[str]] = None,
|
2771
3019
|
bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionBootstrapServerArgs']]]]] = None,
|
@@ -2789,6 +3037,7 @@ class Connection(pulumi.CustomResource):
|
|
2789
3037
|
fingerprint: Optional[pulumi.Input[str]] = None,
|
2790
3038
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
2791
3039
|
host: Optional[pulumi.Input[str]] = None,
|
3040
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
2792
3041
|
jndi_connection_factory: Optional[pulumi.Input[str]] = None,
|
2793
3042
|
jndi_initial_context_factory: Optional[pulumi.Input[str]] = None,
|
2794
3043
|
jndi_provider_url: Optional[pulumi.Input[str]] = None,
|
@@ -2797,6 +3046,7 @@ class Connection(pulumi.CustomResource):
|
|
2797
3046
|
key_id: Optional[pulumi.Input[str]] = None,
|
2798
3047
|
key_store: Optional[pulumi.Input[str]] = None,
|
2799
3048
|
key_store_password: Optional[pulumi.Input[str]] = None,
|
3049
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionLockArgs']]]]] = None,
|
2800
3050
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
2801
3051
|
password: Optional[pulumi.Input[str]] = None,
|
2802
3052
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -2805,6 +3055,7 @@ class Connection(pulumi.CustomResource):
|
|
2805
3055
|
private_key_passphrase: Optional[pulumi.Input[str]] = None,
|
2806
3056
|
producer_properties: Optional[pulumi.Input[str]] = None,
|
2807
3057
|
public_key_fingerprint: Optional[pulumi.Input[str]] = None,
|
3058
|
+
redis_cluster_id: Optional[pulumi.Input[str]] = None,
|
2808
3059
|
region: Optional[pulumi.Input[str]] = None,
|
2809
3060
|
routing_method: Optional[pulumi.Input[str]] = None,
|
2810
3061
|
sas_token: Optional[pulumi.Input[str]] = None,
|
@@ -2817,10 +3068,13 @@ class Connection(pulumi.CustomResource):
|
|
2817
3068
|
should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
|
2818
3069
|
ssl_ca: Optional[pulumi.Input[str]] = None,
|
2819
3070
|
ssl_cert: Optional[pulumi.Input[str]] = None,
|
3071
|
+
ssl_client_keystash: Optional[pulumi.Input[str]] = None,
|
3072
|
+
ssl_client_keystoredb: Optional[pulumi.Input[str]] = None,
|
2820
3073
|
ssl_crl: Optional[pulumi.Input[str]] = None,
|
2821
3074
|
ssl_key: Optional[pulumi.Input[str]] = None,
|
2822
3075
|
ssl_key_password: Optional[pulumi.Input[str]] = None,
|
2823
3076
|
ssl_mode: Optional[pulumi.Input[str]] = None,
|
3077
|
+
ssl_server_certificate: Optional[pulumi.Input[str]] = None,
|
2824
3078
|
stream_pool_id: Optional[pulumi.Input[str]] = None,
|
2825
3079
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
2826
3080
|
technology_type: Optional[pulumi.Input[str]] = None,
|
@@ -2845,6 +3099,7 @@ class Connection(pulumi.CustomResource):
|
|
2845
3099
|
__props__.__dict__["account_key"] = account_key
|
2846
3100
|
__props__.__dict__["account_name"] = account_name
|
2847
3101
|
__props__.__dict__["additional_attributes"] = additional_attributes
|
3102
|
+
__props__.__dict__["authentication_mode"] = authentication_mode
|
2848
3103
|
__props__.__dict__["authentication_type"] = authentication_type
|
2849
3104
|
__props__.__dict__["azure_tenant_id"] = azure_tenant_id
|
2850
3105
|
__props__.__dict__["bootstrap_servers"] = bootstrap_servers
|
@@ -2874,6 +3129,7 @@ class Connection(pulumi.CustomResource):
|
|
2874
3129
|
__props__.__dict__["fingerprint"] = fingerprint
|
2875
3130
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
2876
3131
|
__props__.__dict__["host"] = host
|
3132
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
2877
3133
|
__props__.__dict__["jndi_connection_factory"] = jndi_connection_factory
|
2878
3134
|
__props__.__dict__["jndi_initial_context_factory"] = jndi_initial_context_factory
|
2879
3135
|
__props__.__dict__["jndi_provider_url"] = jndi_provider_url
|
@@ -2882,6 +3138,7 @@ class Connection(pulumi.CustomResource):
|
|
2882
3138
|
__props__.__dict__["key_id"] = key_id
|
2883
3139
|
__props__.__dict__["key_store"] = key_store
|
2884
3140
|
__props__.__dict__["key_store_password"] = None if key_store_password is None else pulumi.Output.secret(key_store_password)
|
3141
|
+
__props__.__dict__["locks"] = locks
|
2885
3142
|
__props__.__dict__["nsg_ids"] = nsg_ids
|
2886
3143
|
__props__.__dict__["password"] = None if password is None else pulumi.Output.secret(password)
|
2887
3144
|
__props__.__dict__["port"] = port
|
@@ -2890,6 +3147,7 @@ class Connection(pulumi.CustomResource):
|
|
2890
3147
|
__props__.__dict__["private_key_passphrase"] = None if private_key_passphrase is None else pulumi.Output.secret(private_key_passphrase)
|
2891
3148
|
__props__.__dict__["producer_properties"] = producer_properties
|
2892
3149
|
__props__.__dict__["public_key_fingerprint"] = public_key_fingerprint
|
3150
|
+
__props__.__dict__["redis_cluster_id"] = redis_cluster_id
|
2893
3151
|
__props__.__dict__["region"] = region
|
2894
3152
|
__props__.__dict__["routing_method"] = routing_method
|
2895
3153
|
__props__.__dict__["sas_token"] = sas_token
|
@@ -2902,10 +3160,13 @@ class Connection(pulumi.CustomResource):
|
|
2902
3160
|
__props__.__dict__["should_validate_server_certificate"] = should_validate_server_certificate
|
2903
3161
|
__props__.__dict__["ssl_ca"] = ssl_ca
|
2904
3162
|
__props__.__dict__["ssl_cert"] = ssl_cert
|
3163
|
+
__props__.__dict__["ssl_client_keystash"] = ssl_client_keystash
|
3164
|
+
__props__.__dict__["ssl_client_keystoredb"] = ssl_client_keystoredb
|
2905
3165
|
__props__.__dict__["ssl_crl"] = ssl_crl
|
2906
3166
|
__props__.__dict__["ssl_key"] = ssl_key
|
2907
3167
|
__props__.__dict__["ssl_key_password"] = None if ssl_key_password is None else pulumi.Output.secret(ssl_key_password)
|
2908
3168
|
__props__.__dict__["ssl_mode"] = ssl_mode
|
3169
|
+
__props__.__dict__["ssl_server_certificate"] = ssl_server_certificate
|
2909
3170
|
__props__.__dict__["stream_pool_id"] = stream_pool_id
|
2910
3171
|
__props__.__dict__["subnet_id"] = subnet_id
|
2911
3172
|
if technology_type is None and not opts.urn:
|
@@ -2941,6 +3202,7 @@ class Connection(pulumi.CustomResource):
|
|
2941
3202
|
account_key: Optional[pulumi.Input[str]] = None,
|
2942
3203
|
account_name: Optional[pulumi.Input[str]] = None,
|
2943
3204
|
additional_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionAdditionalAttributeArgs']]]]] = None,
|
3205
|
+
authentication_mode: Optional[pulumi.Input[str]] = None,
|
2944
3206
|
authentication_type: Optional[pulumi.Input[str]] = None,
|
2945
3207
|
azure_tenant_id: Optional[pulumi.Input[str]] = None,
|
2946
3208
|
bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionBootstrapServerArgs']]]]] = None,
|
@@ -2965,6 +3227,7 @@ class Connection(pulumi.CustomResource):
|
|
2965
3227
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
2966
3228
|
host: Optional[pulumi.Input[str]] = None,
|
2967
3229
|
ingress_ips: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionIngressIpArgs']]]]] = None,
|
3230
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
2968
3231
|
jndi_connection_factory: Optional[pulumi.Input[str]] = None,
|
2969
3232
|
jndi_initial_context_factory: Optional[pulumi.Input[str]] = None,
|
2970
3233
|
jndi_provider_url: Optional[pulumi.Input[str]] = None,
|
@@ -2974,6 +3237,7 @@ class Connection(pulumi.CustomResource):
|
|
2974
3237
|
key_store: Optional[pulumi.Input[str]] = None,
|
2975
3238
|
key_store_password: Optional[pulumi.Input[str]] = None,
|
2976
3239
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
3240
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionLockArgs']]]]] = None,
|
2977
3241
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
2978
3242
|
password: Optional[pulumi.Input[str]] = None,
|
2979
3243
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -2982,6 +3246,7 @@ class Connection(pulumi.CustomResource):
|
|
2982
3246
|
private_key_passphrase: Optional[pulumi.Input[str]] = None,
|
2983
3247
|
producer_properties: Optional[pulumi.Input[str]] = None,
|
2984
3248
|
public_key_fingerprint: Optional[pulumi.Input[str]] = None,
|
3249
|
+
redis_cluster_id: Optional[pulumi.Input[str]] = None,
|
2985
3250
|
region: Optional[pulumi.Input[str]] = None,
|
2986
3251
|
routing_method: Optional[pulumi.Input[str]] = None,
|
2987
3252
|
sas_token: Optional[pulumi.Input[str]] = None,
|
@@ -2994,10 +3259,13 @@ class Connection(pulumi.CustomResource):
|
|
2994
3259
|
should_validate_server_certificate: Optional[pulumi.Input[bool]] = None,
|
2995
3260
|
ssl_ca: Optional[pulumi.Input[str]] = None,
|
2996
3261
|
ssl_cert: Optional[pulumi.Input[str]] = None,
|
3262
|
+
ssl_client_keystash: Optional[pulumi.Input[str]] = None,
|
3263
|
+
ssl_client_keystoredb: Optional[pulumi.Input[str]] = None,
|
2997
3264
|
ssl_crl: Optional[pulumi.Input[str]] = None,
|
2998
3265
|
ssl_key: Optional[pulumi.Input[str]] = None,
|
2999
3266
|
ssl_key_password: Optional[pulumi.Input[str]] = None,
|
3000
3267
|
ssl_mode: Optional[pulumi.Input[str]] = None,
|
3268
|
+
ssl_server_certificate: Optional[pulumi.Input[str]] = None,
|
3001
3269
|
state: Optional[pulumi.Input[str]] = None,
|
3002
3270
|
stream_pool_id: Optional[pulumi.Input[str]] = None,
|
3003
3271
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
@@ -3024,6 +3292,7 @@ class Connection(pulumi.CustomResource):
|
|
3024
3292
|
: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==
|
3025
3293
|
:param pulumi.Input[str] account_name: (Updatable) Sets the Azure storage account name.
|
3026
3294
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionAdditionalAttributeArgs']]]] additional_attributes: (Updatable) An array of name-value pair attribute entries. Used as additional parameters in connection string.
|
3295
|
+
: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.
|
3027
3296
|
:param pulumi.Input[str] authentication_type: (Updatable) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
|
3028
3297
|
:param pulumi.Input[str] azure_tenant_id: (Updatable) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
3029
3298
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['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"`
|
@@ -3058,6 +3327,7 @@ class Connection(pulumi.CustomResource):
|
|
3058
3327
|
:param pulumi.Input[str] key_store: (Updatable) The base64 encoded content of the KeyStore file.
|
3059
3328
|
:param pulumi.Input[str] key_store_password: (Updatable) The KeyStore password.
|
3060
3329
|
: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.
|
3330
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConnectionLockArgs']]]] locks: Locks associated with this resource.
|
3061
3331
|
: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.
|
3062
3332
|
: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.
|
3063
3333
|
:param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
|
@@ -3067,6 +3337,7 @@ class Connection(pulumi.CustomResource):
|
|
3067
3337
|
:param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
|
3068
3338
|
:param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
|
3069
3339
|
: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
|
3340
|
+
: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.
|
3070
3341
|
:param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
|
3071
3342
|
: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.
|
3072
3343
|
: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
|
@@ -3079,10 +3350,13 @@ class Connection(pulumi.CustomResource):
|
|
3079
3350
|
: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.
|
3080
3351
|
:param pulumi.Input[str] ssl_ca: (Updatable) Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
|
3081
3352
|
:param pulumi.Input[str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of client-cert.pem file containing the client public key (for 2-way SSL).
|
3353
|
+
:param pulumi.Input[str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
3354
|
+
:param pulumi.Input[str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
3082
3355
|
:param pulumi.Input[str] ssl_crl: (Updatable) Certificates revoked by certificate authorities (CA). Server certificate must not be on this list (for 1 and 2-way SSL). Note: This is an optional and that too only applicable if TLS/MTLS option is selected.
|
3083
3356
|
:param pulumi.Input[str] ssl_key: (Updatable) Client Key - The client-key.pem containing the client private key (for 2-way SSL).
|
3084
3357
|
: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.
|
3085
3358
|
:param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
|
3359
|
+
:param pulumi.Input[str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
3086
3360
|
:param pulumi.Input[str] state: Possible lifecycle states for connection.
|
3087
3361
|
: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.
|
3088
3362
|
: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.
|
@@ -3110,6 +3384,7 @@ class Connection(pulumi.CustomResource):
|
|
3110
3384
|
__props__.__dict__["account_key"] = account_key
|
3111
3385
|
__props__.__dict__["account_name"] = account_name
|
3112
3386
|
__props__.__dict__["additional_attributes"] = additional_attributes
|
3387
|
+
__props__.__dict__["authentication_mode"] = authentication_mode
|
3113
3388
|
__props__.__dict__["authentication_type"] = authentication_type
|
3114
3389
|
__props__.__dict__["azure_tenant_id"] = azure_tenant_id
|
3115
3390
|
__props__.__dict__["bootstrap_servers"] = bootstrap_servers
|
@@ -3134,6 +3409,7 @@ class Connection(pulumi.CustomResource):
|
|
3134
3409
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
3135
3410
|
__props__.__dict__["host"] = host
|
3136
3411
|
__props__.__dict__["ingress_ips"] = ingress_ips
|
3412
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
3137
3413
|
__props__.__dict__["jndi_connection_factory"] = jndi_connection_factory
|
3138
3414
|
__props__.__dict__["jndi_initial_context_factory"] = jndi_initial_context_factory
|
3139
3415
|
__props__.__dict__["jndi_provider_url"] = jndi_provider_url
|
@@ -3143,6 +3419,7 @@ class Connection(pulumi.CustomResource):
|
|
3143
3419
|
__props__.__dict__["key_store"] = key_store
|
3144
3420
|
__props__.__dict__["key_store_password"] = key_store_password
|
3145
3421
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
3422
|
+
__props__.__dict__["locks"] = locks
|
3146
3423
|
__props__.__dict__["nsg_ids"] = nsg_ids
|
3147
3424
|
__props__.__dict__["password"] = password
|
3148
3425
|
__props__.__dict__["port"] = port
|
@@ -3151,6 +3428,7 @@ class Connection(pulumi.CustomResource):
|
|
3151
3428
|
__props__.__dict__["private_key_passphrase"] = private_key_passphrase
|
3152
3429
|
__props__.__dict__["producer_properties"] = producer_properties
|
3153
3430
|
__props__.__dict__["public_key_fingerprint"] = public_key_fingerprint
|
3431
|
+
__props__.__dict__["redis_cluster_id"] = redis_cluster_id
|
3154
3432
|
__props__.__dict__["region"] = region
|
3155
3433
|
__props__.__dict__["routing_method"] = routing_method
|
3156
3434
|
__props__.__dict__["sas_token"] = sas_token
|
@@ -3163,10 +3441,13 @@ class Connection(pulumi.CustomResource):
|
|
3163
3441
|
__props__.__dict__["should_validate_server_certificate"] = should_validate_server_certificate
|
3164
3442
|
__props__.__dict__["ssl_ca"] = ssl_ca
|
3165
3443
|
__props__.__dict__["ssl_cert"] = ssl_cert
|
3444
|
+
__props__.__dict__["ssl_client_keystash"] = ssl_client_keystash
|
3445
|
+
__props__.__dict__["ssl_client_keystoredb"] = ssl_client_keystoredb
|
3166
3446
|
__props__.__dict__["ssl_crl"] = ssl_crl
|
3167
3447
|
__props__.__dict__["ssl_key"] = ssl_key
|
3168
3448
|
__props__.__dict__["ssl_key_password"] = ssl_key_password
|
3169
3449
|
__props__.__dict__["ssl_mode"] = ssl_mode
|
3450
|
+
__props__.__dict__["ssl_server_certificate"] = ssl_server_certificate
|
3170
3451
|
__props__.__dict__["state"] = state
|
3171
3452
|
__props__.__dict__["stream_pool_id"] = stream_pool_id
|
3172
3453
|
__props__.__dict__["subnet_id"] = subnet_id
|
@@ -3216,6 +3497,14 @@ class Connection(pulumi.CustomResource):
|
|
3216
3497
|
"""
|
3217
3498
|
return pulumi.get(self, "additional_attributes")
|
3218
3499
|
|
3500
|
+
@property
|
3501
|
+
@pulumi.getter(name="authenticationMode")
|
3502
|
+
def authentication_mode(self) -> pulumi.Output[str]:
|
3503
|
+
"""
|
3504
|
+
(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.
|
3505
|
+
"""
|
3506
|
+
return pulumi.get(self, "authentication_mode")
|
3507
|
+
|
3219
3508
|
@property
|
3220
3509
|
@pulumi.getter(name="authenticationType")
|
3221
3510
|
def authentication_type(self) -> pulumi.Output[str]:
|
@@ -3409,6 +3698,11 @@ class Connection(pulumi.CustomResource):
|
|
3409
3698
|
"""
|
3410
3699
|
return pulumi.get(self, "ingress_ips")
|
3411
3700
|
|
3701
|
+
@property
|
3702
|
+
@pulumi.getter(name="isLockOverride")
|
3703
|
+
def is_lock_override(self) -> pulumi.Output[bool]:
|
3704
|
+
return pulumi.get(self, "is_lock_override")
|
3705
|
+
|
3412
3706
|
@property
|
3413
3707
|
@pulumi.getter(name="jndiConnectionFactory")
|
3414
3708
|
def jndi_connection_factory(self) -> pulumi.Output[str]:
|
@@ -3481,6 +3775,14 @@ class Connection(pulumi.CustomResource):
|
|
3481
3775
|
"""
|
3482
3776
|
return pulumi.get(self, "lifecycle_details")
|
3483
3777
|
|
3778
|
+
@property
|
3779
|
+
@pulumi.getter
|
3780
|
+
def locks(self) -> pulumi.Output[Sequence['outputs.ConnectionLock']]:
|
3781
|
+
"""
|
3782
|
+
Locks associated with this resource.
|
3783
|
+
"""
|
3784
|
+
return pulumi.get(self, "locks")
|
3785
|
+
|
3484
3786
|
@property
|
3485
3787
|
@pulumi.getter(name="nsgIds")
|
3486
3788
|
def nsg_ids(self) -> pulumi.Output[Sequence[str]]:
|
@@ -3546,6 +3848,14 @@ class Connection(pulumi.CustomResource):
|
|
3546
3848
|
"""
|
3547
3849
|
return pulumi.get(self, "public_key_fingerprint")
|
3548
3850
|
|
3851
|
+
@property
|
3852
|
+
@pulumi.getter(name="redisClusterId")
|
3853
|
+
def redis_cluster_id(self) -> pulumi.Output[str]:
|
3854
|
+
"""
|
3855
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
|
3856
|
+
"""
|
3857
|
+
return pulumi.get(self, "redis_cluster_id")
|
3858
|
+
|
3549
3859
|
@property
|
3550
3860
|
@pulumi.getter
|
3551
3861
|
def region(self) -> pulumi.Output[str]:
|
@@ -3642,6 +3952,22 @@ class Connection(pulumi.CustomResource):
|
|
3642
3952
|
"""
|
3643
3953
|
return pulumi.get(self, "ssl_cert")
|
3644
3954
|
|
3955
|
+
@property
|
3956
|
+
@pulumi.getter(name="sslClientKeystash")
|
3957
|
+
def ssl_client_keystash(self) -> pulumi.Output[str]:
|
3958
|
+
"""
|
3959
|
+
(Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file.
|
3960
|
+
"""
|
3961
|
+
return pulumi.get(self, "ssl_client_keystash")
|
3962
|
+
|
3963
|
+
@property
|
3964
|
+
@pulumi.getter(name="sslClientKeystoredb")
|
3965
|
+
def ssl_client_keystoredb(self) -> pulumi.Output[str]:
|
3966
|
+
"""
|
3967
|
+
(Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
3968
|
+
"""
|
3969
|
+
return pulumi.get(self, "ssl_client_keystoredb")
|
3970
|
+
|
3645
3971
|
@property
|
3646
3972
|
@pulumi.getter(name="sslCrl")
|
3647
3973
|
def ssl_crl(self) -> pulumi.Output[str]:
|
@@ -3674,6 +4000,14 @@ class Connection(pulumi.CustomResource):
|
|
3674
4000
|
"""
|
3675
4001
|
return pulumi.get(self, "ssl_mode")
|
3676
4002
|
|
4003
|
+
@property
|
4004
|
+
@pulumi.getter(name="sslServerCertificate")
|
4005
|
+
def ssl_server_certificate(self) -> pulumi.Output[str]:
|
4006
|
+
"""
|
4007
|
+
(Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
4008
|
+
"""
|
4009
|
+
return pulumi.get(self, "ssl_server_certificate")
|
4010
|
+
|
3677
4011
|
@property
|
3678
4012
|
@pulumi.getter
|
3679
4013
|
def state(self) -> pulumi.Output[str]:
|